@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --primary-color: #ff8906;
  --secondary-color: #e5306f;
  --text-dark: #0e0d16;
  --text-light: #767268;
  --extra-light: #f7f8fd;
  --white: #ffffff;
  --max-width: 1200px;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* Custom Cursor Styles */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
}

.cursor-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, opacity 0.3s ease;
  pointer-events: none;
  box-shadow: 0 0 20px rgba(255, 137, 6, 0.5);
}

.cursor-outline {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              height 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.3s ease;
  pointer-events: none;
  opacity: 0.6;
}

/* Cursor hover state classes (controlled by JavaScript) */
.custom-cursor.hover .cursor-outline {
  width: 60px !important;
  height: 60px !important;
  border-color: var(--secondary-color) !important;
  opacity: 0.8 !important;
}

.custom-cursor.hover .cursor-dot {
  width: 12px !important;
  height: 12px !important;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color)) !important;
}

/* Hide default cursor on desktop */
@media (min-width: 769px) {
  * {
    cursor: none !important;
  }
  
  body {
    cursor: none;
  }
}

/* Hide custom cursor on mobile/touch devices */
@media (max-width: 768px) {
  .custom-cursor {
    display: none;
  }
  
  * {
    cursor: auto !important;
  }
}

/* Global Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

/* Smooth fade-in for page load */
body {
  animation: fadeIn 0.8s ease-in;
}

.btn {
  padding: 0.75rem 1.5rem;
  outline: none;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  white-space: nowrap;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 5px;
  transition: 0.3s;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

img {
  display: flex;
  width: 100%;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

ul {
  list-style: none;
}

html,
body {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Smooth scroll animation */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  font-family: "Montserrat", sans-serif;
  animation: fadeIn 0.8s ease-in;
}

/* Fixed Social Media Sidebar */
/* Contact Sidebar (Left) - WhatsApp & Email */
.contact-sidebar {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 0.75rem;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.95), rgba(25, 160, 75, 0.95));
  backdrop-filter: blur(10px);
  border-radius: 0 50px 50px 0;
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.2);
  animation: slideInLeft 0.8s ease-out 0.5s both;
}

.contact-sidebar__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: visible;
  flex-shrink: 0;
}

.contact-sidebar__link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
}

.contact-sidebar__link:hover::before {
  width: 100%;
  height: 100%;
}

.contact-sidebar__link:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateX(8px) scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.contact-sidebar__link i {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.contact-sidebar__link:hover i {
  transform: scale(1.2) rotate(-5deg);
}

.contact-sidebar__text {
  position: absolute;
  left: 60px;
  white-space: nowrap;
  background: rgba(0, 0, 0, 0.9);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
  pointer-events: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.contact-sidebar__text::after {
  content: '';
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 6px solid rgba(0, 0, 0, 0.9);
}

.contact-sidebar__link:hover .contact-sidebar__text {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* WhatsApp specific color */
.contact-sidebar__link:nth-child(1):hover {
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-color: #25d366;
}

/* Email specific color */
.contact-sidebar__link:nth-child(2):hover {
  background: linear-gradient(135deg, #ea4335, #c5221f);
  border-color: #ea4335;
}

/* Social Sidebar (Right) */
.social-sidebar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 0.75rem;
  background: linear-gradient(135deg, rgba(255, 137, 6, 0.95), rgba(229, 48, 111, 0.95));
  backdrop-filter: blur(10px);
  border-radius: 50px 0 0 50px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
  animation: slideInRight 0.8s ease-out 0.5s both;
}

.social-sidebar__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: visible;
  flex-shrink: 0;
}

.social-sidebar__link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
}

.social-sidebar__link:hover::before {
  width: 100%;
  height: 100%;
}

.social-sidebar__link:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateX(-8px) scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.social-sidebar__link i {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.social-sidebar__link:hover i {
  transform: scale(1.2) rotate(5deg);
}

.social-sidebar__text {
  position: absolute;
  right: 60px;
  white-space: nowrap;
  background: rgba(0, 0, 0, 0.9);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  pointer-events: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.social-sidebar__text::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid rgba(0, 0, 0, 0.9);
}

.social-sidebar__link:hover .social-sidebar__text {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* LinkedIn specific color */
.social-sidebar__link:nth-child(1):hover {
  background: linear-gradient(135deg, #0077b5, #005885);
  border-color: #0077b5;
}

/* YouTube specific color */
.social-sidebar__link:nth-child(2):hover {
  background: linear-gradient(135deg, #ff0000, #cc0000);
  border-color: #ff0000;
}

/* Facebook specific color */
.social-sidebar__link:nth-child(3):hover {
  background: linear-gradient(135deg, #1877f2, #0d5dbf);
  border-color: #1877f2;
}

@media (max-width: 768px) {
  /* Contact & Social Sidebars */
  .contact-sidebar {
    flex-direction: column;
    top: 50%;
    bottom: auto;
    left: 0;
    right: auto;
    transform: translateY(-50%);
    border-radius: 0 50px 50px 0;
    padding: 1rem 0.5rem;
    width: auto;
    gap: 0.75rem;
  }

  .contact-sidebar__link {
    width: 45px;
    height: 45px;
    font-size: 1.25rem;
  }

  .contact-sidebar__text {
    display: none;
  }

  .social-sidebar {
    flex-direction: column;
    top: 50%;
    bottom: auto;
    right: 0;
    left: auto;
    transform: translateY(-50%);
    border-radius: 50px 0 0 50px;
    padding: 1rem 0.5rem;
    width: auto;
    gap: 0.75rem;
  }

  .social-sidebar__link {
    width: 45px;
    height: 45px;
    font-size: 1.25rem;
  }

  .social-sidebar__text {
    display: none;
  }

  /* Navigation */
  .nav__logo-center {
    display: flex !important;
    order: 0;
    margin: 0 1rem 0 0;
  }

  .nav__logo-center .nav__logo-img {
    height: 50px !important;
  }

  .nav__links--left,
  .nav__links--right {
    display: none !important;
  }

  .nav__menu__btn {
    display: flex !important;
    order: 2;
  }

  .nav__links--mobile {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 100;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }

  .nav__links--mobile.open {
    transform: translateX(0);
  }

  .nav__links--mobile li {
    width: 100%;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--extra-light);
  }

  .nav__links--mobile li:last-child {
    border-bottom: none;
  }

  .nav__links--mobile a {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    display: block;
    transition: all 0.3s ease;
  }

  .nav__links--mobile a:hover {
    color: var(--secondary-color);
    padding-left: 1.5rem;
  }

  /* Header Section */
  .header__container {
    padding: 1rem !important;
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }

  .header__content {
    padding: 1.5rem 1rem !important;
    text-align: center;
  }

  .header__logo-text {
    font-size: 2.5rem !important;
  }

  .header__title {
    font-size: 2rem !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .header__title-main {
    font-size: 2.5rem !important;
  }

  .header__title-sub {
    font-size: 1.25rem !important;
  }

  .animated-text {
    font-size: 2rem !important;
  }

  .header__description {
    font-size: 1rem !important;
    padding: 0 1rem !important;
    text-align: center !important;
  }

  .header__description::before {
    left: 50% !important;
    transform: translateX(-50%) !important;
  }

  .header__btns {
    justify-content: center !important;
  }

  .header__image {
    grid-area: auto !important;
  }

  .header__think-image {
    max-width: 180px;
    top: -15px;
    right: -20px;
  }

  /* Portfolio Section */
  .portfolio__container {
    padding: 3rem 1rem;
  }

  .portfolio__header {
    margin-bottom: 2.5rem;
  }

  .portfolio__header .section__header {
    font-size: 1.75rem;
    padding-bottom: 1rem;
  }

  .portfolio__header .section__header::after {
    width: 80px;
  }

  .portfolio__header .section__description {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .portfolio__content {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }

  .portfolio__image {
    grid-area: auto !important;
    margin-bottom: 2rem;
  }

  .portfolio__image__content {
    top: 1rem;
    right: 1rem;
    padding: 1rem 1.25rem;
    gap: 1.25rem;
    flex-direction: row;
  }

  .portfolio__image__content div:nth-child(1) {
    border-right: 2px solid rgba(255, 255, 255, 0.3);
    padding-right: 1.25rem;
    border-bottom: none;
  }

  .portfolio__image__content div:nth-child(2) {
    padding-left: 1.25rem;
  }

  .portfolio__image__content h4 {
    font-size: 1.75rem;
  }

  .portfolio__image__content p {
    font-size: 0.75rem;
  }

  .portfolio__list li {
    padding: 1.5rem;
    flex-direction: column;
    gap: 1rem;
  }

  .portfolio__list li span {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.25rem;
  }

  .portfolio__list h4 {
    font-size: 1.25rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .portfolio__list h4 i {
    font-size: 1.5rem;
  }

  /* Products Section */
  .products__container {
    padding: 3rem 1rem;
  }

  .products__header {
    margin-bottom: 2.5rem;
  }

  .products__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product__card {
    padding: 2rem;
  }

  .demo-modal__content {
    max-height: 95vh;
    margin: 1rem;
  }

  .demo-modal__header {
    padding: 2rem 1.5rem 1rem;
  }

  .demo-modal__header h2 {
    font-size: 1.5rem;
  }

  .demo-modal__form {
    padding: 1.5rem;
  }

  .form__actions {
    flex-direction: column;
  }

  .form__actions .btn {
    width: 100%;
  }

  /* Service Section */
  .service__container {
    padding: 3rem 1rem;
  }

  .service__header {
    margin-bottom: 2.5rem;
  }

  .service__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* About Section */
  .about__container {
    grid-template-columns: 1fr !important;
    padding: 3rem 1rem;
    gap: 2rem;
  }

  .about__image {
    grid-area: auto !important;
  }

  .about__content {
    text-align: center;
  }

  /* Process Section */
  .process__container {
    padding: 3rem 1rem;
  }

  .process__header {
    margin-bottom: 2.5rem;
  }

  .process__timeline {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .process__step {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.5rem;
  }

  /* Clients Section */
  .clients__container {
    padding: 3rem 1rem;
  }

  .clients__header {
    margin-bottom: 2rem;
  }

  /* Feedback Section */
  .feedback__container {
    padding: 3rem 1rem;
  }

  /* Subscribe Section */
  .contact__container {
    padding: 3rem 1rem;
  }

  .contact__header {
    margin-bottom: 2rem;
  }

  .contact__description {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .contact__content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact__form-wrapper {
    padding: 2rem;
  }

  .form__row {
    grid-template-columns: 1fr;
  }

  .contact__info-wrapper {
    grid-template-columns: 1fr;
  }

  .contact__info-card {
    padding: 1.5rem;
  }

  /* Footer */
  .footer__container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 1rem;
  }

  .footer__bar-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  /* General Typography */
  .section__header {
    font-size: 1.75rem !important;
  }

  .section__description {
    font-size: 1rem !important;
  }
}

nav {
  position: fixed;
  isolation: isolate;
  width: 100%;
  z-index: 9;
  animation: slideInUp 0.6s ease-out;
}

.nav__header {
  padding: 0.75rem 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav__logo,
.nav__logo-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav__logo-center {
  flex: 0 0 auto;
  order: 2;
  margin: 0 2rem;
}

.nav__logo a,
.nav__logo-center a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav__logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
  max-width: none;
  transition: transform 0.3s ease;
}

.nav__logo-img:hover {
  transform: scale(1.05);
}

.nav__links--left,
.nav__links--right {
  display: none;
}

.nav__links--mobile {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  flex-direction: column;
  background-color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 100;
  max-height: calc(100vh - 70px);
  overflow-y: auto;
}

.nav__links--mobile.open {
  transform: translateX(0);
}

@media (max-width: 768px) {
  .nav__links--mobile {
    display: flex;
  }
}

.nav__links--mobile li {
  width: 100%;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--extra-light);
}

.nav__links--mobile li:last-child {
  border-bottom: none;
}

.nav__links--mobile a {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  display: block;
  transition: all 0.3s ease;
}

.nav__links--mobile a:hover {
  color: var(--secondary-color);
  padding-left: 1.5rem;
}

.nav__menu__btn {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 8px;
  background: transparent;
  border: none;
}

.nav__menu__btn:hover {
  background: rgba(255, 137, 6, 0.1);
  color: var(--primary-color);
}

.nav__btns {
  display: none;
}

.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
}

.header__container.section__container {
  padding: 1rem 2.5rem !important;
  max-width: 100%;
  box-sizing: border-box;
}

.section__header {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  text-align: center;
  position: relative;
  display: inline-block;
  width: 100%;
}

.section__header::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
  animation: slideInUp 0.8s ease-out 0.5s both;
}

.section__description {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
  line-height: 1.5rem;
  text-align: center;
}

.header__container {
  display: grid;
  gap: 2rem;
  overflow: hidden;
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin-top: 0;
  margin-bottom: 0;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  animation: fadeIn 1s ease-in;
}

.header__image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__think-image {
  position: absolute;
  top: -40px;
  right: -50px;
  max-width: 280px;
  width: auto;
  height: auto;
  z-index: 3;
  animation: float 6s ease-in-out infinite;
  transform-origin: center;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.header__image img:not(.header__think-image) {
  max-width: 550px;
  margin-inline: auto;
  animation: float 6s ease-in-out infinite 0.5s;
  z-index: 1;
  position: relative;
}

.header__content {
  margin: 0;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 100%;
}

.header__description {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.8;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  padding: 0 2rem;
  position: relative;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.header__description::before {
  content: '';
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.header__badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, rgba(255, 137, 6, 0.1), rgba(229, 48, 111, 0.1));
  border: 1px solid rgba(229, 48, 111, 0.2);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.header__logo-wrapper {
  margin-bottom: 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
}

.header__title {
  margin: 0 0 1.5rem 0;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.3;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1rem;
  max-width: 100%;
  box-sizing: border-box;
}

.header__title-main {
  font-size: 3.25rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--text-dark) 0%, var(--text-dark) 50%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.15;
  letter-spacing: -1px;
  display: block;
}

.header__title-sub {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-light);
  margin: 0.25rem 0;
  font-style: italic;
}

.header__logo-text {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: -0.5px;
  display: inline-block;
  transition: transform 0.3s ease;
  line-height: 1;
  position: relative;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.header__logo-text::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
  opacity: 0.3;
}

.header__logo-text--highlight {
  color: var(--secondary-color);
  position: relative;
}

.header__logo-text:hover {
  transform: translateY(-2px);
}

/* Removed - using header__title instead */

.animated-text {
  display: inline-block;
  color: var(--secondary-color);
  position: relative;
  font-weight: 900;
  font-size: 2.75rem;
  margin-top: 0.25rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

.animated-text {
  position: relative;
}

.animated-text::after {
  content: '|';
  display: inline-block;
  color: var(--secondary-color);
  animation: blink 1s infinite, hideCursor 0.1s 2.7s forwards;
  margin-left: 2px;
  font-weight: 300;
  font-size: 2.5rem;
  vertical-align: middle;
}

@keyframes hideCursor {
  to {
    opacity: 0;
  }
}

.typing-word {
  display: inline-block;
  opacity: 0;
  animation: typing 0.6s ease-out forwards;
  position: relative;
}

.typing-word:nth-of-type(1) {
  animation-delay: 0.5s;
}

.typing-word:nth-of-type(2) {
  animation-delay: 1.3s;
}

.typing-word:nth-of-type(3) {
  animation-delay: 2.1s;
}

.typing-comma,
.typing-amp {
  display: inline-block;
  opacity: 0;
  animation: typing 0.3s ease-out forwards;
}

.typing-comma {
  animation-delay: 0.9s;
}

.typing-amp {
  animation-delay: 1.9s;
}

@keyframes typing {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes blink {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0;
  }
}

.animated-text::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  animation: underlineExpand 1s ease-out 2.8s forwards;
  box-shadow: 0 2px 8px rgba(229, 48, 111, 0.3);
}

/* Removed wordReveal - using typing animation instead */

@keyframes underlineExpand {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

.header__btns {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.75rem 1.5rem;
  outline: none;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  white-space: nowrap;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 5px;
  transition: 0.3s;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, #ff6b00 100%);
  box-shadow: 0 6px 20px rgba(255, 137, 6, 0.3);
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 10px;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

.btn--primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn--primary:hover::before {
  left: 100%;
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 137, 6, 0.4);
}

.btn--primary i {
  font-size: 1.15rem;
  transition: transform 0.3s ease;
}

.btn--primary:hover i {
  transform: translateX(5px);
}

.btn--secondary {
  background-color: var(--white);
  color: var(--text-dark);
  border: 2px solid var(--text-dark);
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  border-radius: 10px;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

.btn--secondary span:first-child {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  color: var(--white);
  border-radius: 50%;
  font-size: 1.15rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(229, 48, 111, 0.3);
}

.btn--secondary:hover {
  background-color: var(--text-dark);
  color: var(--white);
  border-color: var(--text-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn--secondary:hover span:first-child {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 15px rgba(255, 137, 6, 0.4);
}

.header__btns a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
}

.header__btns a span {
  margin-right: 0.5rem;
  width: 2.5rem;
  aspect-ratio: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  border: 2px solid var(--text-dark);
  border-radius: 100%;
}

.service {
  background: linear-gradient(180deg, var(--extra-light) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}

.service::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.service__header {
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.service__badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(135deg, rgba(255, 137, 6, 0.1), rgba(229, 48, 111, 0.1));
  border: 1px solid rgba(229, 48, 111, 0.2);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.service__subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-top: 1rem;
}

.service__grid {
  margin-block: 4rem;
  display: grid;
  gap: 2.5rem;
}

.service__card {
  position: relative;
  padding: 2.5rem 2rem;
  border-radius: 1.5rem;
  background-color: var(--white);
  border: 2px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  animation: fadeIn 0.8s ease-out;
  display: flex;
  flex-direction: column;
}

.service__card:nth-child(1) {
  animation-delay: 0.1s;
}

.service__card:nth-child(2) {
  animation-delay: 0.2s;
}

.service__card:nth-child(3) {
  animation-delay: 0.3s;
}

.service__card:nth-child(4) {
  animation-delay: 0.4s;
}

.service__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service__card:hover::before {
  transform: scaleX(1);
}

.service__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border-color: rgba(229, 48, 111, 0.3);
  background: linear-gradient(135deg, var(--white) 0%, rgba(255, 137, 6, 0.02) 100%);
}

.service__card-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(229, 48, 111, 0.08);
  line-height: 1;
  transition: all 0.3s ease;
  animation: fadeIn 0.8s ease-out;
}

.service__card:hover .service__card-number {
  color: rgba(229, 48, 111, 0.15);
  transform: scale(1.1);
}

.service__icon-wrapper {
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
}

.service__icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  font-size: 2rem;
  position: relative;
  transition: all 0.4s ease;
  animation: pulse 3s ease-in-out infinite;
}

.service__card:hover .service__icon {
  animation: none;
}

.service__card:nth-child(1) .service__icon {
  background: linear-gradient(135deg, rgba(0, 213, 190, 0.1), rgba(0, 213, 190, 0.05));
  color: #00d5be;
}

.service__card:nth-child(2) .service__icon {
  background: linear-gradient(135deg, rgba(255, 99, 126, 0.1), rgba(255, 99, 126, 0.05));
  color: #ff637e;
}

.service__card:nth-child(3) .service__icon {
  background: linear-gradient(135deg, rgba(194, 122, 255, 0.1), rgba(194, 122, 255, 0.05));
  color: #c27aff;
}

.service__card:nth-child(4) .service__icon {
  background: linear-gradient(135deg, rgba(0, 188, 255, 0.1), rgba(0, 188, 255, 0.05));
  color: #00bcff;
}

.service__card:hover .service__icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service__card h4 {
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  transition: color 0.3s ease;
  line-height: 1.3;
}

.service__card:hover h4 {
  color: var(--secondary-color);
}

.service__card-description {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.6;
  text-align: left;
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.service__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service__features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-dark);
  padding: 0.6rem 0.5rem;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 1rem;
  border-radius: 0.5rem;
  font-weight: 500;
}

.service__features li::before {
  content: '';
  position: absolute;
  left: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
  transition: height 0.3s ease;
  opacity: 0.8;
}

.service__features li:hover::before {
  height: 100%;
  opacity: 1;
}

.service__features li i {
  font-size: 1.1rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.service__features li:hover {
  background-color: rgba(255, 137, 6, 0.05);
  color: var(--secondary-color);
  transform: translateX(8px);
  padding-left: 1.25rem;
}

.service__features li:hover i {
  color: var(--secondary-color);
  transform: scale(1.2) rotate(5deg);
}

.service__card-footer {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.service__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--secondary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.service__link i {
  transition: transform 0.3s ease;
  animation: slideInRight 0.5s ease-out;
}

.service__card:hover .service__link {
  color: var(--primary-color);
  transform: translateX(5px);
}

.service__card:hover .service__link i {
  transform: translateX(8px);
  animation: none;
}

.service__btn {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.about__container {
  display: grid;
  gap: 3rem;
  padding: 4rem 1rem;
  background: linear-gradient(180deg, var(--white) 0%, var(--extra-light) 100%);
  border-radius: 2rem;
  margin: 3rem auto;
  max-width: var(--max-width);
  width: 100%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.about__container::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 137, 6, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.about__image img {
  max-width: 450px;
  margin-inline: auto;
  animation: float 8s ease-in-out infinite;
  animation-delay: 1s;
}

.about__content .section__header {
  margin-bottom: 2.5rem;
  text-align: left;
  font-size: 2.25rem;
  background: linear-gradient(135deg, var(--text-dark) 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
  position: relative;
  padding-bottom: 1rem;
}

.about__content .section__header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.about__list {
  display: grid;
  gap: 2rem;
}

.about__list li {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background-color: var(--white);
  border-radius: 1.25rem;
  border: 2px solid transparent;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.about__list li::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.about__list li:hover::before {
  transform: scaleX(1);
}

.about__list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(229, 48, 111, 0.2);
  background: linear-gradient(135deg, var(--white) 0%, rgba(255, 137, 6, 0.02) 100%);
}

.about__list li span {
  max-width: max-content;
  min-width: 60px;
  height: 60px;
  padding: 0;
  font-size: 1.75rem;
  border-radius: 1rem;
  transition: all 0.4s ease;
  animation: pulse 3s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about__list li:nth-child(1) span {
  color: #00d5be;
  background: linear-gradient(135deg, rgba(0, 213, 190, 0.15), rgba(0, 213, 190, 0.05));
  animation-delay: 0s;
  border: 2px solid rgba(0, 213, 190, 0.2);
}

.about__list li:nth-child(2) span {
  color: #ff637e;
  background: linear-gradient(135deg, rgba(255, 99, 126, 0.15), rgba(255, 99, 126, 0.05));
  animation-delay: 1s;
  border: 2px solid rgba(255, 99, 126, 0.2);
}

.about__list li:nth-child(3) span {
  color: #c27aff;
  background: linear-gradient(135deg, rgba(194, 122, 255, 0.15), rgba(194, 122, 255, 0.05));
  animation-delay: 2s;
  border: 2px solid rgba(194, 122, 255, 0.2);
}

.about__list li:hover span {
  animation: none;
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.about__list li:nth-child(1):hover span {
  background: linear-gradient(135deg, rgba(0, 213, 190, 0.25), rgba(0, 213, 190, 0.15));
  border-color: #00d5be;
}

.about__list li:nth-child(2):hover span {
  background: linear-gradient(135deg, rgba(255, 99, 126, 0.25), rgba(255, 99, 126, 0.15));
  border-color: #ff637e;
}

.about__list li:nth-child(3):hover span {
  background: linear-gradient(135deg, rgba(194, 122, 255, 0.25), rgba(194, 122, 255, 0.15));
  border-color: #c27aff;
}

.about__list h4 {
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  transition: color 0.3s ease;
  line-height: 1.3;
}

.about__list li:hover h4 {
  color: var(--secondary-color);
}

.about__list .section__description {
  text-align: left;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
}

.about__list li > div {
  flex: 1;
}

.process {
  background: linear-gradient(180deg, var(--white) 0%, var(--extra-light) 100%);
  overflow: hidden;
  position: relative;
  padding: 5rem 0;
}

.process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.process__container {
  padding: 5rem 1rem;
  position: relative;
}

.process__header {
  text-align: center;
  margin-bottom: 5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.process__badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(135deg, rgba(255, 137, 6, 0.1), rgba(229, 48, 111, 0.1));
  border: 1px solid rgba(229, 48, 111, 0.2);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  animation: fadeIn 0.8s ease-out;
}

.process__container .section__header {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--text-dark) 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  padding-bottom: 1.5rem;
}

.process__container .section__header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
  animation: slideInUp 0.8s ease-out 0.3s both;
}

.process__container .section__description {
  text-align: center;
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
  font-weight: 500;
  padding: 0 1rem;
}

.process__timeline {
  display: grid;
  gap: 3rem;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.process__step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
  padding: 2rem;
  background-color: var(--white);
  border-radius: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: slideInUp 0.6s ease-out;
  overflow: hidden;
}

.process__step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.process__step:hover::before {
  transform: scaleX(1);
}

.process__step:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border-color: rgba(229, 48, 111, 0.2);
  background: linear-gradient(135deg, var(--white) 0%, rgba(255, 137, 6, 0.02) 100%);
}

.process__step:nth-child(1) {
  animation-delay: 0.1s;
}

.process__step:nth-child(2) {
  animation-delay: 0.2s;
}

.process__step:nth-child(3) {
  animation-delay: 0.3s;
}

.process__step:nth-child(4) {
  animation-delay: 0.4s;
}

.process__step:nth-child(5) {
  animation-delay: 0.5s;
}

.process__step:nth-child(6) {
  animation-delay: 0.6s;
}

.process__step-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(229, 48, 111, 0.08);
  line-height: 1;
  transition: all 0.3s ease;
  z-index: 0;
}

.process__step:hover .process__step-number {
  color: rgba(229, 48, 111, 0.15);
  transform: scale(1.1);
}

.process__step-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  background-size: 200% 200%;
  border-radius: 1.25rem;
  font-size: 2.5rem;
  color: var(--white);
  box-shadow: 0 8px 25px rgba(255, 137, 6, 0.3);
  transition: all 0.4s ease;
  animation: gradientShift 3s ease infinite, pulse 2s ease-in-out infinite;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.process__step:hover .process__step-icon {
  animation: gradientShift 3s ease infinite, rotate 10s linear infinite;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(255, 137, 6, 0.4);
}

.process__step-content {
  position: relative;
  z-index: 1;
}

.process__step-content h3 {
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  transition: color 0.3s ease;
  line-height: 1.3;
}

.process__step:hover .process__step-content h3 {
  color: var(--secondary-color);
}

.process__step-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
}

.process__step-connector {
  display: none;
}

@media (min-width: 768px) {
  .process__timeline {
    gap: 2.5rem;
  }

  .process__step {
    grid-template-columns: 100px 1fr;
    padding: 2.5rem;
  }

  .process__step-connector {
    display: block;
    position: absolute;
    left: 40px;
    top: 100%;
    width: 2px;
    height: 2.5rem;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    opacity: 0.3;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.6s ease 0.3s;
  }

  .process__step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 40px;
    top: 100%;
    width: 2px;
    height: 2.5rem;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    opacity: 0.3;
  }

  .process__step:hover .process__step-connector {
    transform: scaleY(1);
    opacity: 1;
  }
}

@media (min-width: 1024px) {
  .process__container {
    padding: 6rem 2rem;
  }

  .process__header {
    margin-bottom: 6rem;
  }

  .process__container .section__header {
    font-size: 3rem;
  }

  .process__container .section__description {
    font-size: 1.25rem;
    max-width: 900px;
  }

  .process__timeline {
    gap: 3rem;
  }

  .process__step {
    padding: 3rem 2.5rem;
  }
}

.portfolio {
  background: linear-gradient(180deg, var(--white) 0%, var(--extra-light) 50%, var(--white) 100%);
  overflow: hidden;
  position: relative;
  padding: 5rem 0;
}

.portfolio::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.portfolio__container {
  padding: 5rem 1rem;
  position: relative;
}

.portfolio__header {
  margin-bottom: 4rem;
  text-align: center;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.portfolio__header .section__header {
  font-size: 2.75rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--text-dark) 0%, var(--text-dark) 50%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  position: relative;
  padding-bottom: 1.5rem;
}

.portfolio__header .section__header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.portfolio__header .section__description {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--text-light);
  font-weight: 500;
}

.portfolio__header .section__description strong {
  color: var(--secondary-color);
  font-weight: 700;
}

.portfolio__image {
  position: relative;
  isolation: isolate;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.portfolio__image:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.portfolio__image__content {
  position: absolute;
  top: 2rem;
  right: 2rem;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  background: linear-gradient(135deg, rgba(255, 137, 6, 0.95), rgba(229, 48, 111, 0.95));
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  z-index: 1;
  box-shadow: 0 8px 30px rgba(229, 48, 111, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

.portfolio__image__content div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.25rem;
}

.portfolio__image__content div:nth-child(1) {
  border-right: 2px solid rgba(255, 255, 255, 0.3);
  padding-right: 2rem;
}

.portfolio__image__content div:nth-child(2) {
  padding-left: 2rem;
}

.portfolio__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1rem;
  animation: float 7s ease-in-out infinite;
}

.portfolio__image__content h4 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  margin: 0;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.portfolio__image__content p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  font-weight: 600;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.portfolio__content {
  display: grid;
  gap: 2rem;
}

.portfolio__list {
  display: grid;
  gap: 2rem;
}

.portfolio__list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  animation: slideInLeft 0.6s ease-out;
}

.portfolio__list li:nth-child(1) {
  animation-delay: 0.1s;
}

.portfolio__list li:nth-child(2) {
  animation-delay: 0.2s;
}

.portfolio__list li:nth-child(3) {
  animation-delay: 0.3s;
}

.portfolio__list li:nth-child(4) {
  animation-delay: 0.4s;
}

.portfolio__list li:nth-child(5) {
  animation-delay: 0.5s;
}

.portfolio__list li:nth-child(6) {
  animation-delay: 0.6s;
}

.portfolio__list li:hover {
  background-color: var(--extra-light);
  transform: translateX(5px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.portfolio__list li span {
  width: 5rem;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  background-color: var(--secondary-color);
  border-radius: 0.25rem;
  transition: all 0.3s ease;
  animation: pulse 2s ease-in-out infinite;
}

.portfolio__list li:hover span {
  animation: rotate 1s ease-in-out;
  transform: scale(1.1);
}

.portfolio__list h4 {
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.portfolio__list h4 i {
  font-size: 1.75rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.portfolio__list li:hover h4 {
  color: var(--secondary-color);
}

.portfolio__list li:hover h4 i {
  color: var(--secondary-color);
  transform: scale(1.2) rotate(5deg);
}

.portfolio__list .section__description {
  text-align: left;
}

.projects {
  background: linear-gradient(180deg, var(--extra-light) 0%, var(--white) 100%);
  overflow: hidden;
  position: relative;
  padding: 5rem 0;
}

.projects::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.projects__container {
  padding: 5rem 1rem;
  position: relative;
}

.projects__header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.projects__badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(135deg, rgba(255, 137, 6, 0.1), rgba(229, 48, 111, 0.1));
  border: 1px solid rgba(229, 48, 111, 0.2);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  animation: fadeIn 0.8s ease-out;
}

.projects__header .section__header {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--text-dark) 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  padding-bottom: 1.5rem;
}

.projects__header .section__header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
  animation: slideInUp 0.8s ease-out 0.3s both;
}

.projects__header .section__description {
  text-align: center;
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
  font-weight: 500;
  padding: 0 1rem;
}

.projects__tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.projects__tab {
  padding: 0.75rem 2rem;
  background-color: var(--white);
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Montserrat", sans-serif;
}

.projects__tab i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.projects__tab:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 137, 6, 0.2);
}

.projects__tab:hover i {
  transform: rotate(360deg);
}

.projects__tab.active {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255, 137, 6, 0.3);
}

.projects__tab.active i {
  animation: pulse 2s ease-in-out infinite;
}

.projects__grid {
  margin-block: 2rem;
  display: grid;
  gap: 2rem;
  animation: fadeIn 0.6s ease-out;
}

.project__card {
  position: relative;
  border-radius: 1rem;
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  animation: fadeIn 0.8s ease-out;
}

.project__card:nth-child(1) {
  animation-delay: 0.1s;
}

.project__card:nth-child(2) {
  animation-delay: 0.2s;
}

.project__card:nth-child(3) {
  animation-delay: 0.3s;
}

.project__card:nth-child(4) {
  animation-delay: 0.4s;
}

.project__card:nth-child(5) {
  animation-delay: 0.5s;
}

.project__card:nth-child(6) {
  animation-delay: 0.6s;
}

.project__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.project__image {
  position: relative;
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  background-size: 200% 200%;
  overflow: hidden;
  animation: gradientShift 8s ease infinite;
}

.project__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 10px,
      rgba(255, 255, 255, 0.05) 10px,
      rgba(255, 255, 255, 0.05) 20px
    );
  opacity: 0.3;
}

.project__image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 137, 6, 0.9) 0%,
    rgba(229, 48, 111, 0.9) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.project__card:hover .project__image::before {
  opacity: 1;
}

.project__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.project__card:hover .project__overlay {
  opacity: 1;
  transform: scale(1);
}

.project__links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.project__link {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  color: var(--secondary-color);
  border-radius: 50%;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.project__link:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: scale(1.1) rotate(5deg);
}

.project__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.5rem 1rem;
  background-color: var(--white);
  color: var(--secondary-color);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 2rem;
  z-index: 3;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.project__card:hover .project__badge {
  background-color: var(--secondary-color);
  color: var(--white);
  transform: scale(1.05);
}

.project__status {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 3;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  animation: fadeIn 0.8s ease-out;
}

.project__status.completed {
  background: rgba(0, 213, 190, 0.9);
  color: var(--white);
}

.project__status.completed i {
  animation: pulse 2s ease-in-out infinite;
}

.project__status.ongoing {
  background: rgba(255, 137, 6, 0.9);
  color: var(--white);
}

.project__status.ongoing i {
  animation: rotate 2s linear infinite;
}

.project__content {
  padding: 1.5rem;
}

.project__content h4 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

.project__card:hover .project__content h4 {
  color: var(--secondary-color);
}

.project__content .section__description {
  margin-bottom: 1rem;
  text-align: left;
  font-size: 0.95rem;
  line-height: 1.6;
}

.project__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.project__tags span {
  padding: 0.35rem 0.75rem;
  background-color: var(--extra-light);
  color: var(--text-light);
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.project__card:hover .project__tags span {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}

.projects__btn {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  animation: fadeIn 0.8s ease-out 0.5s both;
}

.sectors {
  background: linear-gradient(180deg, var(--white) 0%, var(--extra-light) 50%, var(--white) 100%);
  overflow: hidden;
  position: relative;
}

.sectors::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.sectors__container {
  padding: 5rem 1rem;
  position: relative;
}

.sectors__header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.sectors__badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(135deg, rgba(255, 137, 6, 0.1), rgba(229, 48, 111, 0.1));
  border: 1px solid rgba(229, 48, 111, 0.2);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  animation: fadeIn 0.8s ease-out;
}

.sectors__container .section__header {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--text-dark) 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  padding-bottom: 1.5rem;
}

.sectors__container .section__header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
  animation: slideInUp 0.8s ease-out 0.3s both;
}

.sectors__container .section__description {
  text-align: center;
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
  font-weight: 500;
  padding: 0 1rem;
}

.sectors__grid {
  margin-top: 2rem;
  display: grid;
  gap: 2.5rem;
}

.sector__card {
  padding: 2.5rem;
  border-radius: 1.5rem;
  background-color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: slideInUp 0.6s ease-out;
  position: relative;
  overflow: hidden;
}

.sector__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.sector__card:nth-child(1) {
  animation-delay: 0.1s;
}

.sector__card:nth-child(2) {
  animation-delay: 0.2s;
}

.sector__card:nth-child(3) {
  animation-delay: 0.3s;
}

.sector__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border-color: rgba(229, 48, 111, 0.2);
  background: linear-gradient(135deg, var(--white) 0%, rgba(255, 137, 6, 0.02) 100%);
}

.sector__card:hover::before {
  transform: scaleX(1);
}

.sector__icon {
  margin-bottom: 1.5rem;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  background-size: 200% 200%;
  border-radius: 1rem;
  font-size: 2.5rem;
  color: var(--white);
  animation: gradientShift 3s ease infinite, pulse 2s ease-in-out infinite;
  box-shadow: 0 4px 15px rgba(255, 137, 6, 0.3);
}

.sector__card:hover .sector__icon {
  animation: gradientShift 3s ease infinite, rotate 10s linear infinite;
}

.sector__card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.sector__card .section__description {
  margin-bottom: 1.5rem;
  text-align: left;
  font-weight: 500;
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
}

.sector__services {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.sector__services li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-dark);
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  font-weight: 500;
  position: relative;
  background-color: transparent;
}

.sector__services li::before {
  content: '';
  position: absolute;
  left: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
  transition: height 0.3s ease;
}

.sector__services li:hover::before {
  height: 100%;
}

.sector__services li:hover {
  background-color: rgba(255, 137, 6, 0.08);
  color: var(--secondary-color);
  transform: translateX(8px);
  padding-left: 1.25rem;
}

.sector__services li i {
  font-size: 1.2rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.sector__services li:hover i {
  color: var(--secondary-color);
  transform: scale(1.15) rotate(5deg);
  color: var(--primary-color);
  flex-shrink: 0;
}

.clients {
  background-color: var(--extra-light);
  overflow: hidden;
  padding: 4rem 0;
}

.clients__header {
  margin-bottom: 3rem;
  display: grid;
  gap: 1.5rem;
}

.clients__slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

.clients__track {
  display: flex;
  align-items: center;
  gap: 3rem;
  animation: scroll-clients 30s linear infinite;
  will-change: transform;
}

.clients__logo {
  flex-shrink: 0;
  width: 200px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client__logo__item {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background-color: var(--white);
  border-radius: 0.75rem;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  padding: 1.5rem;
  border: 2px solid transparent;
  animation: fadeIn 0.6s ease-out;
}

.client__logo__item:nth-child(1) {
  animation-delay: 0.1s;
}

.client__logo__item:nth-child(2) {
  animation-delay: 0.2s;
}

.client__logo__item:nth-child(3) {
  animation-delay: 0.3s;
}

.client__logo__item:nth-child(4) {
  animation-delay: 0.4s;
}

.client__logo__item:nth-child(5) {
  animation-delay: 0.5s;
}

.client__logo__item:nth-child(6) {
  animation-delay: 0.6s;
}

.client__logo__item:nth-child(7) {
  animation-delay: 0.7s;
}

.client__logo__item:nth-child(8) {
  animation-delay: 0.8s;
}

.client__logo__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.client__logo__item i {
  font-size: 2.5rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.client__logo__item:hover i {
  color: var(--secondary-color);
  transform: scale(1.2) rotate(5deg);
}

.client__logo__item span {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  transition: all 0.3s ease;
}

.client__logo__item:hover span {
  color: var(--secondary-color);
  transform: scale(1.05);
}

@keyframes scroll-clients {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.clients__slider:hover .clients__track {
  animation-play-state: paused;
}

.feedback__container {
  padding-bottom: 3rem;
}

.swiper {
  padding-block: 4rem 2rem;
  width: 100%;
}

.swiper-slide {
  min-width: 375px;
}

.feedback__card {
  padding: 1.5rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  animation: slideInUp 0.6s ease-out;
}

.feedback__card:nth-child(1) {
  animation-delay: 0.1s;
}

.feedback__card:nth-child(2) {
  animation-delay: 0.2s;
}

.feedback__card:nth-child(3) {
  animation-delay: 0.3s;
}

.feedback__card:nth-child(4) {
  animation-delay: 0.4s;
}

.feedback__card:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.feedback__card .section__description {
  text-align: left;
}

.feedback__details {
  margin-top: 1rem;
  padding-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.feedback__user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feedback__user img {
  max-width: 50px;
  border-radius: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.feedback__user h4 {
  margin-bottom: 0.25rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
}

.feedback__user h5 {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
}

.feedback__rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.feedback__rating span {
  font-size: 1rem;
  color: goldenrod;
}

/* Contact Section */
.contact__container {
  padding: 2.5rem 1rem;
  background: linear-gradient(180deg, var(--white) 0%, var(--extra-light) 100%);
}

.contact__header {
  text-align: center;
  margin-bottom: 2rem;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.contact__description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-dark);
  font-weight: 400;
}

.contact__description .highlight-text {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  display: inline-block;
}

.contact__badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, rgba(255, 137, 6, 0.1), rgba(229, 48, 111, 0.1));
  border: 1px solid rgba(229, 48, 111, 0.2);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.contact__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.contact__form-wrapper {
  background: var(--white);
  padding: 1.75rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0,  0, 0, 0.08);
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.contact__form .form__group {
  margin-bottom: 0;
}

.contact__form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.contact__form .required {
  color: var(--secondary-color);
}

.contact__form input,
.contact__form textarea {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: 2px solid var(--extra-light);
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: inherit;
  color: var(--text-dark);
  transition: all 0.3s ease;
  background-color: var(--white);
}

.contact__form input:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 137, 6, 0.1);
}

.contact__form textarea {
  resize: vertical;
  min-height: 150px;
}

.contact__submit-btn {
  width: 100%;
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.contact__submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 137, 6, 0.3);
}

.contact__info-wrapper {
  display: grid;
  gap: 1rem;
}

.contact__info-card {
  background: var(--white);
  padding: 1.25rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.contact__info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-color: rgba(229, 48, 111, 0.2);
}

.contact__info-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, rgba(255, 137, 6, 0.1), rgba(229, 48, 111, 0.1));
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
}

.contact__info-card:hover .contact__info-icon {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  transform: scale(1.1) rotate(5deg);
}

.contact__info-icon i {
  font-size: 1.25rem;
  color: var(--secondary-color);
  transition: all 0.3s ease;
}

.contact__info-card:hover .contact__info-icon i {
  color: var(--white);
}

.contact__info-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.contact__info-card p {
  margin: 0.25rem 0;
  color: var(--text-light);
  font-size: 0.875rem;
  line-height: 1.4;
}

.contact__info-card a {
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact__info-card a:hover {
  color: var(--secondary-color);
  padding-left: 0.25rem;
}

/* Products Section */
.products__container {
  padding: 5rem 1rem;
  background: linear-gradient(180deg, var(--white) 0%, var(--extra-light) 100%);
}

.products__header {
  text-align: center;
  margin-bottom: 4rem;
}

.products__badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, rgba(255, 137, 6, 0.1), rgba(229, 48, 111, 0.1));
  border: 1px solid rgba(229, 48, 111, 0.2);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.product__card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.product__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.product__card:hover::before {
  transform: scaleX(1);
}

.product__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.product__icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(255, 137, 6, 0.1), rgba(229, 48, 111, 0.1));
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.product__icon i {
  font-size: 2rem;
  color: var(--secondary-color);
}

.product__card:hover .product__icon {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  transform: scale(1.1) rotate(5deg);
}

.product__card:hover .product__icon i {
  color: var(--white);
}

.product__card h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.product__description {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.product__options {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.product__option-tag {
  padding: 0.4rem 1rem;
  background: linear-gradient(135deg, rgba(255, 137, 6, 0.1), rgba(229, 48, 111, 0.1));
  border: 1px solid rgba(229, 48, 111, 0.3);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--secondary-color);
}

.product__features {
  list-style: none;
  margin-bottom: 2rem;
}

.product__features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.product__features li i {
  color: var(--secondary-color);
  font-size: 1.1rem;
  font-weight: bold;
}

.product__demo-btn {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product__demo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 137, 6, 0.3);
}

/* Book Demo Modal */
.demo-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
}

.demo-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.demo-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.demo-modal__content {
  position: relative;
  background-color: var(--white);
  border-radius: 1.5rem;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideInUp 0.4s ease-out;
  z-index: 1;
}

.demo-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  color: var(--text-dark);
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.demo-modal__close:hover {
  background: rgba(0, 0, 0, 0.2);
  transform: rotate(90deg);
}

.demo-modal__header {
  padding: 2.5rem 2rem 1.5rem;
  border-bottom: 2px solid var(--extra-light);
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  border-radius: 1.5rem 1.5rem 0 0;
}

.demo-modal__header h2 {
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 0.5rem 0;
  color: var(--white);
}

.demo-modal__header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.demo-modal__form {
  padding: 2rem;
}

.form__group {
  margin-bottom: 1.5rem;
}

.form__group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.form__group .required {
  color: var(--secondary-color);
}

.form__group input,
.form__group textarea,
.form__group select {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: 2px solid var(--extra-light);
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: inherit;
  color: var(--text-dark);
  transition: all 0.3s ease;
  background-color: var(--white);
}

.form__group input:focus,
.form__group textarea:focus,
.form__group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 137, 6, 0.1);
}

.form__group textarea {
  resize: vertical;
  min-height: 100px;
}

.form__group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230e0d16' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 3rem;
}

.form__actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: flex-end;
}

.form__actions .btn {
  padding: 0.875rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn--secondary {
  background: var(--extra-light);
  color: var(--text-dark);
}

.btn--secondary:hover {
  background: #e0e0e0;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .products__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product__card {
    padding: 2rem;
  }

  .demo-modal__content {
    max-height: 95vh;
  }

  .demo-modal__header {
    padding: 2rem 1.5rem 1rem;
  }

  .demo-modal__header h2 {
    font-size: 1.5rem;
  }

  .demo-modal__form {
    padding: 1.5rem;
  }

  .form__actions {
    flex-direction: column;
  }

  .form__actions .btn {
    width: 100%;
  }
}

footer {
  background: linear-gradient(180deg, var(--text-dark) 0%, #1a1a2e 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  margin-top: 5rem;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer li {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

footer::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 137, 6, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.footer__container {
  display: grid;
  gap: 3rem 2rem;
  padding: 5rem 1rem;
  animation: fadeIn 1s ease-out;
  position: relative;
  z-index: 1;
}

.footer__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer__col--main {
  grid-column: span 1;
}

.footer__logo {
  margin-bottom: 1.5rem;
}

.footer__logo a {
  display: inline-flex;
  align-items: center;
}

.footer__logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.footer__logo-img:hover {
  transform: scale(1.05);
}

.footer__col .section__description {
  margin-bottom: 2rem;
  text-align: left;
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  max-width: 100%;
}

.footer__socials-wrapper {
  margin-top: auto;
  width: 100%;
}

.footer__socials-wrapper h4 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.footer__col h4 {
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  position: relative;
  padding-bottom: 0.75rem;
}

.footer__col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer__socials a {
  padding: 0.5rem;
  font-size: 1.25rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer__socials a:hover {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-color: transparent;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 137, 6, 0.4);
}

.footer__links {
  display: grid;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__links li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  position: relative;
}

.footer__links a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.5rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transition: width 0.3s ease;
}

.footer__links a:hover {
  color: var(--white);
  transform: translateX(8px);
  padding-left: 0.5rem;
}

.footer__links a:hover::before {
  width: 30px;
}

.footer__links a span {
  font-size: 1.1rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.footer__links a:hover span {
  color: var(--secondary-color);
  transform: scale(1.2);
}

.footer__bar {
  padding: 2rem 1rem;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.footer__bar-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer__bar-content p {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.footer__bar-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__bar-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer__bar-links a:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
}

.footer__bar-links span {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.9rem;
}

/* Legal Pages Styles */
.legal-page {
  padding: 8rem 1rem 4rem;
  min-height: 100vh;
  background: linear-gradient(180deg, var(--white) 0%, var(--extra-light) 100%);
}

.legal-page__header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--extra-light);
}

.legal-page__header h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text-dark) 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legal-page__date {
  font-size: 0.95rem;
  color: var(--text-light);
  font-style: italic;
}

.legal-page__content {
  max-width: 900px;
  margin: 0 auto;
  background-color: var(--white);
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.legal-page__content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--extra-light);
}

.legal-page__content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-page__content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.legal-page__content ul,
.legal-page__content ol {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.legal-page__content li {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.legal-page__content strong {
  color: var(--text-dark);
  font-weight: 600;
}

/* Legal Modal Styles */
.legal-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease-out;
}

.legal-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.legal-modal__content {
  background-color: var(--white);
  border-radius: 1.5rem;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideInUp 0.4s ease-out;
  overflow: hidden;
}

.legal-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  border-bottom: 2px solid var(--extra-light);
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
}

.legal-modal__header h2 {
  font-size: 1.75rem;
  font-weight: 800;
  margin: 0;
  color: var(--white);
}

.legal-modal__close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.legal-modal__close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.legal-modal__body {
  flex: 1;
  overflow-y: auto;
  padding: 2rem;
}

.legal-content {
  max-width: 100%;
}

.legal-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--extra-light);
}

.legal-content h3:first-child {
  margin-top: 0;
}

.legal-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.legal-content ul {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.legal-content li {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.legal-content strong {
  color: var(--text-dark);
  font-weight: 600;
}

.legal-modal__footer {
  padding: 1.5rem 2rem;
  border-top: 2px solid var(--extra-light);
  display: flex;
  justify-content: flex-end;
  background-color: var(--extra-light);
}

.legal-modal__footer .btn {
  padding: 0.75rem 2rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.legal-modal__footer .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 137, 6, 0.3);
}

@media (max-width: 768px) {
  .legal-page__content {
    padding: 2rem 1.5rem;
  }

  .legal-page__header h1 {
    font-size: 2rem;
  }

  .legal-modal__content {
    max-height: 95vh;
  }

  .legal-modal__header {
    padding: 1.5rem;
  }

  .legal-modal__header h2 {
    font-size: 1.5rem;
  }

  .legal-modal__body {
    padding: 1.5rem;
  }
}

@media (width > 540px) {
  .service__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    padding: 4rem 2rem;
  }

  .footer__col--main {
    grid-column: span 2;
  }

  .about__container {
    padding: 4rem 2rem;
  }

  .about__list li {
    padding: 2.25rem;
  }
}

@media (width > 768px) {
  .header__think-image {
    top: -120px;
    right: 163px;
    max-width: 220px;
  }

  /* Contact Section - Desktop */
  .contact__content {
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
  }

  .form__row {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact__info-wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    position: sticky;
    top: 100px;
  }

  nav {
    position: static;
    padding: 0;
    max-width: var(--max-width);
    margin-inline: auto;
    display: block;
    border-bottom: 2px solid var(--extra-light);
  }

  .nav__header {
    position: relative;
    padding: 1rem 2rem;
    max-width: var(--max-width);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--white);
    box-shadow: none;
  }

  .nav__logo {
    display: none;
  }

  .nav__logo-center {
    display: flex;
    order: 2;
    flex: 0 0 auto;
    margin: 0 3rem;
  }

  .nav__logo-center .nav__logo-img {
    height: 80px;
  }

  .nav__links--left,
  .nav__links--right {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    position: static;
    width: auto;
    padding: 0;
    background-color: transparent;
    transform: none !important;
    z-index: 1;
  }

  .nav__links--left {
    order: 1;
    flex: 1;
    justify-content: flex-end;
  }

  .nav__links--right {
    order: 3;
    flex: 1;
    justify-content: flex-start;
  }

  .nav__links--mobile {
    display: none;
  }

  .nav__links--left li,
  .nav__links--right li {
    width: auto;
    display: flex;
    justify-content: center;
  }

  .nav__links--left a,
  .nav__links--right a {
    color: var(--text-light);
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
  }

  .nav__links--left a::before,
  .nav__links--right a::before {
    content: '';
    position: absolute;
    bottom: 0.25rem;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 70%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    transition: transform 0.3s ease;
  }

  .nav__links--left a:hover,
  .nav__links--right a:hover {
    color: var(--text-dark);
    background-color: rgba(255, 137, 6, 0.1);
    transform: translateY(-2px);
  }

  .nav__links--left a:hover::before,
  .nav__links--right a:hover::before {
    transform: translateX(-50%) scaleX(1);
  }

  .nav__links--left a.active,
  .nav__links--right a.active {
    color: var(--primary-color);
    background-color: rgba(255, 137, 6, 0.15);
  }

  .nav__links--left a.active::before,
  .nav__links--right a.active::before {
    transform: translateX(-50%) scaleX(1);
  }

  .nav__menu__btn {
    display: none;
  }

  .nav__btns {
    display: none;
  }

  .header__container {
    padding: 0.5rem 2rem !important;
    margin: 0;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 2rem;
    max-width: 100%;
  }

  .header__image {
    grid-area: 1/2/2/3;
  }


  .header__content :is(.header__title, .header__description) {
    text-align: left;
  }

  .header__description {
    text-align: left;
    margin-left: 0;
  }

  .header__btns {
    justify-content: flex-start;
  }

  .header__badge {
    margin-bottom: 1.75rem;
  }

  .header__logo-wrapper {
    margin-bottom: 1.5rem;
    justify-content: flex-start;
  }

  .header__logo-text {
    font-size: 4rem;
  }

  .header__content {
    padding: 2rem 3rem 2rem 2rem;
  }

  .header__title {
    font-size: 3rem;
    line-height: 1.3;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    margin-bottom: 2rem;
    text-align: left;
    padding: 0;
    max-width: 95%;
  }

  .header__title-main {
    font-size: 3.75rem;
    letter-spacing: -0.75px;
    max-width: 100%;
  }

  .header__title-sub {
    font-size: 1.75rem;
  }

  .header__description {
    font-size: 1.15rem;
    max-width: 90%;
    margin-bottom: 3rem;
    text-align: left;
    margin-left: 0;
    padding: 0;
  }

  .header__description::before {
    left: 0;
    transform: none;
  }

  .animated-text {
    font-size: 3.25rem;
    max-width: 100%;
  }

  .header__logo-wrapper {
    padding: 0;
    justify-content: flex-start;
  }

  .header__logo-wrapper {
    margin-bottom: 1rem;
    justify-content: flex-start;
  }

  .header__logo-text {
    font-size: 3rem;
  }

  .header__logo-text {
    font-size: 4rem;
  }

  .header__btns {
    justify-content: flex-start;
  }

  .service__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .service__card {
    padding: 2.5rem 2rem;
  }

  .about__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 4rem;
    padding: 5rem 2rem;
  }

  .about__content .section__header {
    font-size: 2.5rem;
  }

  .about__list {
    gap: 2.5rem;
  }

  .about__list li {
    padding: 2.5rem;
  }

  .portfolio__header {
    text-align: left;
  }

  .portfolio__header .section__header {
    font-size: 2.25rem;
  }

  .portfolio__header .section__header::after {
    left: 0;
    transform: none;
  }

  .portfolio__content {
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
    gap: 3rem;
  }

  .portfolio__image {
    grid-area: 1/2/2/3;
  }

  .portfolio__image__content {
    top: 1.5rem;
    right: 1.5rem;
    padding: 1.25rem 1.5rem;
    gap: 1.5rem;
  }

  .portfolio__image__content div:nth-child(1) {
    padding-right: 1.5rem;
  }

  .portfolio__image__content div:nth-child(2) {
    padding-left: 1.5rem;
  }

  .portfolio__image__content h4 {
    font-size: 2rem;
  }

  .portfolio__list li {
    padding: 1.75rem;
  }

  .portfolio__list h4 {
    font-size: 1.375rem;
  }

  .projects__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .project__image {
    height: 280px;
  }

  .sectors__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .clients__logo {
    width: 220px;
    height: 140px;
  }

  .footer__container {
    grid-template-columns: repeat(5, 1fr);
    gap: 3rem 2rem;
    padding: 5rem 2rem;
  }

  .footer__col--main {
    grid-column: span 1;
    max-width: 320px;
  }

  .footer__col {
    align-items: flex-start;
  }

  .footer__bar-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (width > 1024px) {
  .service__grid {
    gap: 2.5rem;
  }

  .service__card {
    padding: 3rem 2rem;
  }

  .projects__container {
    padding: 6rem 2rem;
  }

  .projects__header {
    margin-bottom: 4rem;
  }

  .projects__header .section__header {
    font-size: 3rem;
  }

  .projects__header .section__description {
    font-size: 1.25rem;
    max-width: 900px;
  }

  .projects__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }

  .project__image {
    height: 300px;
  }

  .sectors__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }

  .sectors__container {
    padding: 6rem 2rem;
  }

  .sectors__header {
    margin-bottom: 5rem;
  }

  .sectors__container .section__header {
    font-size: 3rem;
  }

  .sectors__container .section__description {
    font-size: 1.25rem;
    max-width: 900px;
  }

  .sector__card {
    padding: 3rem 2.5rem;
  }

  .clients__logo {
    width: 250px;
    height: 150px;
  }

  .clients__track {
    gap: 4rem;
  }

  .feedback__card {
    padding: 2rem 1.5rem;
  }

  .footer__bar-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (width > 1024px) {
  .service__grid {
    gap: 2.5rem;
  }

  .service__card {
    padding: 3rem 2rem;
  }

  .projects__container {
    padding: 6rem 2rem;
  }

  .projects__header {
    margin-bottom: 4rem;
  }

  .projects__header .section__header {
    font-size: 3rem;
  }

  .projects__header .section__description {
    font-size: 1.25rem;
    max-width: 900px;
  }

  .projects__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }

  .project__image {
    height: 300px;
  }

  .sectors__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }

  .sectors__container {
    padding: 6rem 2rem;
  }

  .sectors__header {
    margin-bottom: 5rem;
  }

  .sectors__container .section__header {
    font-size: 3rem;
  }

  .sectors__container .section__description {
    font-size: 1.25rem;
    max-width: 900px;
  }

  .sector__card {
    padding: 3rem 2.5rem;
  }

  .clients__logo {
    width: 250px;
    height: 150px;
  }

  .clients__track {
    gap: 4rem;
  }

  .feedback__card {
    padding: 2rem 1.5rem;
  }
}
