/* ===== FONTS ===== */
@font-face {
  font-family: 'Garet';
  src: url('../assets/fonts/Garet-Book.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Garet';
  src: url('../assets/fonts/Garet-Heavy.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ===== CSS VARIABLES ===== */
:root {
  --white: #ffffff;
  --tide-blue: #5dc7ff;
  --black: #000000;
  --off-black: #1a1b1f;
  --dark-blue: #00080f;
  --dark-white-text: #dfdfdf;
  --light-lime: #9de8ec;
  --white-lime: #e7f3eb;
  --grey: #1f1f1f;
  --nav-bg: #00090c;
  --max-width: 1400px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--tide-blue) var(--black);
}

::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--tide-blue); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: #4ab3eb; }

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--off-black);
  background-color: #080c14;
  overflow-x: hidden;
  position: relative;
}

img { display: block; max-width: 100%; }

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s, color 0.3s;
}

ul { list-style: none; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--nav-bg);
  padding: 15px 2rem 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 12px -5px var(--tide-blue);
}

.nav__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  position: relative;
}

.nav__logo {
  z-index: 1;
  filter: drop-shadow(-1px 2px 6px rgba(0,64,255,0.11));
  transition: all 0.3s;
}

.nav__logo:hover {
  filter: drop-shadow(-2px 3px 6px rgba(0,67,93,0.83));
}

.nav__logo img {
  width: 150px;
  filter: saturate(180%);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0;
  position: absolute;
  inset: 0;
  justify-content: flex-end;
  padding-left: 5%;
  padding-right: 0;
}

.nav__link {
  color: var(--white);
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 9px 16px;
  opacity: 0.9;
  transition: color 0.4s, opacity 0.3s;
  display: block;
}

.nav__link:hover {
  color: #75caf7;
}

.nav__contact-btn {
  color: var(--tide-blue);
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 8px 18px;
  border: 1px solid var(--tide-blue);
  margin-left: 8px;
  transition: all 0.4s;
  display: block;
}

.nav__contact-btn:hover {
  background: var(--tide-blue);
  color: var(--black);
  border-radius: 0 15px 0 15px;
}

.nav__lang {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 9px 16px;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.nav__lang:hover { opacity: 1; }
.nav__lang img { width: 22px; height: auto; }

.nav__menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
}

.nav__menu-btn img {
  width: 32px;
  filter: brightness(0) saturate(100%) invert(69%) sepia(55%) saturate(700%) hue-rotate(170deg) brightness(105%) contrast(101%);
  transition: opacity 0.3s;
}

.nav__menu-btn::after {
  content: '\00d7';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 46px;
  color: var(--tide-blue);
  opacity: 0;
  transition: opacity 0.3s;
  line-height: 1;
}

.nav__menu-btn.is-open img {
  opacity: 0;
}

.nav__menu-btn.is-open::after {
  opacity: 1;
}

.nav__mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--nav-bg);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  gap: 8px;
}

.nav__mobile-menu.is-open { display: flex; }

.nav__mobile-menu .nav__link,
.nav__mobile-menu .nav__contact-btn,
.nav__mobile-menu .nav__lang { 
  font-size: 20px; 
  padding: 8px 24px; 
}

.nav__mobile-close {
  display: none;
}

/* ===== MAIN WRAPPER ===== */
.main {
  background: transparent;
  display: flex;
  justify-content: center;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
}

.bg-orb--1 {
  width: 500px;
  height: 500px;
  background: rgba(93, 199, 255, 0.12);
  top: 5%;
  left: 10%;
  animation: orbFloat1 20s ease-in-out infinite;
}

.bg-orb--2 {
  width: 400px;
  height: 400px;
  background: rgba(20, 85, 119, 0.2);
  top: 30%;
  right: 10%;
  animation: orbFloat2 25s ease-in-out infinite;
}

.bg-orb--3 {
  width: 550px;
  height: 550px;
  background: rgba(93, 199, 255, 0.1);
  bottom: 20%;
  left: 30%;
  animation: orbFloat3 22s ease-in-out infinite;
}

.bg-orb--4 {
  width: 350px;
  height: 350px;
  background: rgba(20, 85, 119, 0.18);
  bottom: 5%;
  right: 25%;
  animation: orbFloat4 18s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(30px, 50px); }
  66% { transform: translate(-20px, 30px); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(-40px, -30px); }
  66% { transform: translate(20px, -50px); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(40px, -40px); }
  66% { transform: translate(-30px, 20px); }
}

@keyframes orbFloat4 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(-20px, 40px); }
  66% { transform: translate(30px, -20px); }
}

.main__inner {
  max-width: var(--max-width);
  width: 100%;
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.55s, opacity 0.4s, color 0.4s;
  cursor: pointer;
  border: none;
  font-family: 'Montserrat', sans-serif;
}

.btn--hero {
  border: 1px solid var(--tide-blue);
  background: var(--off-black);
  color: var(--tide-blue);
  padding: 16px 35px;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.6s, background-color 0.7s;
}

.btn--hero:hover {
  background: var(--tide-blue);
  color: var(--black);
  border-radius: 0 15px 0 15px;
}

.btn--service {
  border: 1px solid var(--tide-blue);
  background: var(--off-black);
  color: var(--tide-blue);
  padding: 12px 25px;
  font-size: 13px;
  font-weight: 600;
}

.btn--service:hover {
  background: var(--tide-blue);
  color: var(--black);
  border-radius: 0 15px 0 15px;
}

.btn--plan {
  border: 1px solid var(--tide-blue);
  background: var(--off-black);
  color: var(--tide-blue);
  text-align: center;
  padding: 12px 25px;
  font-size: 13px;
  font-weight: 500;
  width: 60%;
  align-self: center;
  margin: 20px auto 35px;
  display: block;
}

.btn--plan:hover {
  background: var(--tide-blue);
  color: var(--black);
  border-radius: 0 15px 0 15px;
}

.btn--solid {
  background: var(--tide-blue);
  color: var(--black);
  padding: 14px 30px;
  font-size: 14px;
  font-weight: 600;
}

.btn--solid:hover {
  border-radius: 0 15px 0 15px;
  background: #4ab3eb;
}

/* ===== SECTION HEADERS ===== */
.main-header {
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-top: 60px;
  margin-bottom: 50px;
  text-shadow: 0 0 20px rgba(93, 199, 255, 0.4), 0 0 40px rgba(93, 199, 255, 0.15);
}

/* ===== HERO ===== */
.hero {
  display: flex;
  align-items: center;
  max-width: 1300px;
  width: 100%;
  height: 78vh;
  margin: 60px auto 20px;
  padding-top: 140px;
}

.hero__content {
  flex: 1;
  padding: 70px 0 70px 35px;
}

.hero__heading {
  color: var(--tide-blue);
  text-transform: uppercase;
  font-family: 'Roboto', sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 5px;
  white-space: nowrap;
  text-shadow: 0 0 20px rgba(93, 199, 255, 0.3), 0 0 40px rgba(93, 199, 255, 0.1);
}

.hero__heading span {
  color: var(--tide-blue);
}

.hero__subtitle {
  color: var(--dark-white-text);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.3;
  padding-top: 5px;
  padding-bottom: 30px;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__lottie {
  flex: 0.7;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-left: -30%;
  padding-top: 0;
}

/* ===== WHAT WE DO (Stats + Description) ===== */
.what-we-do {
  width: 100%;
  max-width: var(--max-width);
  padding: 70px 0 40px;
}

.what-we-do__card {
  border: 1px solid var(--tide-blue);
  border-radius: 0 25px 0 25px;
  display: flex;
  width: 100%;
  max-width: 1000px;
  margin: 30px auto 0;
  overflow: hidden;
}

.what-we-do__stats {
  background: var(--tide-blue);
  border-bottom-left-radius: 25px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 40%;
  padding: 8px;
}

.stat {
  text-align: center;
  padding: 25px 15px;
  background: var(--off-black);
  border-radius: 12px;
}

.stat__label {
  color: var(--tide-blue);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.stat__number {
  color: var(--tide-blue);
  font-family: 'Roboto', sans-serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 0 15px rgba(93, 199, 255, 0.5), 0 0 30px rgba(93, 199, 255, 0.2);
}

.what-we-do__text {
  background: var(--off-black);
  border-top-right-radius: 25px;
  width: 60%;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.what-we-do__heading {
  color: var(--tide-blue);
  font-family: 'Roboto', sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 15px;
}

.what-we-do__description {
  color: var(--white);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.what-we-do .btn--service {
  align-self: flex-start;
  background: var(--dark-blue);
  margin-top: 10px;
}

.what-we-do .btn--service:hover {
  background: var(--tide-blue);
  color: var(--black);
}

/* ===== SERVICES ===== */
.services {
  width: 100%;
  max-width: var(--max-width);
  padding: 50px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services__subtitle {
  color: var(--tide-blue);
  font-family: 'Roboto', sans-serif;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 30px;
  text-align: center;
}

.service-card {
  border: 1px solid var(--tide-blue);
  border-radius: 0 25px 0 25px;
  display: flex;
  width: 90%;
  max-width: 950px;
  height: 290px;
  margin-top: 30px;
  overflow: hidden;
}

.service-card--inverted {
  flex-direction: row-reverse;
}

.service-card__text {
  background: var(--off-black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  height: 100%;
  padding: 25px 35px;
}

.service-card:not(.service-card--inverted) .service-card__text {
  border-bottom-left-radius: 25px;
}

.service-card--inverted .service-card__text {
  border-top-right-radius: 25px;
}

.service-card__subheading {
  color: var(--light-lime);
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 4px;
}

.service-card__title {
  color: var(--tide-blue);
  font-size: 29px;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.2;
}

.service-card__description {
  color: var(--white);
  font-size: 18px;
  line-height: 1.5;
}

.service-card__visual {
  background: #1d7eb1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.service-card:not(.service-card--inverted) .service-card__visual {
  border-top-right-radius: 20px;
}

.service-card--inverted .service-card__visual {
  border-bottom-left-radius: 20px;
}

.service-card__visual lottie-player {
  filter: hue-rotate(130deg);
}

lottie-player {
  background: transparent !important;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.services__subsection {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}

/* ===== PAST CLIENTS ===== */
.clients {
  width: 100%;
  max-width: var(--max-width);
  padding: 50px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.clients__subheading {
  color: var(--white);
  opacity: 1;
  text-align: center;
  margin-bottom: 30px;
}

.clients__slider-wrap {
  width: 90%;
  max-width: 950px;
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.clients__tabs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
  padding-top: 10px;
}

.clients__tab {
  background: none;
  border: 1px solid rgba(93, 199, 255, 0.3);
  border-radius: 0 10px 0 10px;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 600;
  cursor: pointer;
  padding: 14px 24px;
  opacity: 0.7;
  transition: all 0.3s;
  min-width: 70px;
  text-align: center;
}

.clients__tab.is-active {
  color: var(--tide-blue);
  border-color: var(--tide-blue);
  opacity: 1;
  background: rgba(93, 199, 255, 0.08);
}

.clients__tab:hover {
  opacity: 0.8;
  border-color: var(--tide-blue);
}

.clients__slider {
  position: relative;
  overflow: hidden;
  flex: 1;
}

.clients__track {
  display: flex;
  transition: transform 0.5s ease;
}

.client-slide {
  min-width: 100%;
  display: flex;
  flex-direction: column;
}

.client-slide__name {
  color: var(--tide-blue);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
}

.client-slide__description {
  color: var(--white);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 600px;
}

.client-slide__image {
  border-radius: 0 20px 0 20px;
  overflow: hidden;
  width: 100%;
}

.client-slide__image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: top;
}

/* ===== PROCESS ===== */
.process {
  width: 100%;
  max-width: var(--max-width);
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process__steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.step-card {
  border: 1px solid var(--tide-blue);
  background: #00070d;
  border-radius: 0 20px 0 20px;
  width: 60%;
  transition: all 0.5s;
  position: relative;
  z-index: 10;
}

.step-card:hover {
  box-shadow: 0 2px 6px 0 var(--light-lime);
}

.step-card__header {
  border-bottom: 1px solid var(--tide-blue);
  background: var(--off-black);
  border-top-right-radius: 20px;
  display: flex;
  align-items: center;
  padding: 15px 7%;
  gap: 15px;
}

.step-card__icon {
  width: 60px;
  height: 60px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  filter: hue-rotate(130deg);
  flex-shrink: 0;
}

.step-card__title {
  color: var(--tide-blue);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.3;
}

.step-card__body {
  padding: 15px 7% 25px;
}

.step-card__text {
  color: var(--white);
  font-size: 17px;
  line-height: 1.6;
  padding-top: 10px;
}

.step-divider {
  width: 9px;
  height: 2.5rem;
  background: var(--tide-blue);
  box-shadow: inset 3px -9px 6px rgba(0,0,0,0.32), inset 0 10px 6px rgba(0,0,0,0.32);
  align-self: center;
}

/* ===== PLANS ===== */
.plans {
  width: 100%;
  max-width: var(--max-width);
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.plans__tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 15px 0 10px;
}

.plans__tab {
  background: var(--light-lime);
  color: var(--off-black);
  border: none;
  padding: 10px 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s;
}

.plans__tab:hover {
  border-radius: 0 20px 0 20px;
}

.plans__tab.is-active {
  background: var(--tide-blue);
  border-radius: 0 20px 0 20px;
}

.plans__grid {
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.plans__grid.is-active {
  display: flex;
}

.plan-card {
  width: 42%;
  margin: 8px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.plan-card__inner {
  border: 1px solid var(--tide-blue);
  background: var(--dark-blue);
  border-radius: 0 20px 0 20px;
  margin-top: 20px;
  transition: all 0.5s;
  display: flex;
  flex-direction: column;
}

.plan-card__inner:hover {
  box-shadow: 1px 1px 20px 0 var(--tide-blue);
}

.plan-card__header {
  border-bottom: 1px solid var(--tide-blue);
  background: var(--off-black);
  border-top-right-radius: 20px;
  padding: 10px 0;
}

.plan-card__name {
  color: var(--tide-blue);
  text-align: center;
  font-family: 'Lato', sans-serif;
  font-size: 30px;
  font-weight: 700;
}

.plan-card__price {
  color: var(--tide-blue);
  text-align: center;
  letter-spacing: 2px;
  padding: 30px 0 0;
  font-size: 38px;
  font-weight: 500;
}

.plan-card__price-addon {
  font-size: 11px;
  font-weight: 700;
  opacity: 0.8;
  display: inline-block;
  vertical-align: middle;
  line-height: 1.1;
  text-align: left;
  margin-left: 2px;
}

.plan-card__period {
  color: var(--white-lime);
  text-align: center;
  font-weight: 500;
  margin-top: 0;
  line-height: 1;
}

.plan-card__description {
  border-top: 1px solid var(--tide-blue);
  border-bottom: 1px solid var(--tide-blue);
  color: var(--white-lime);
  width: 93%;
  align-self: center;
  margin: 25px auto 0;
  padding: 10px 0;
  font-size: 16px;
  font-weight: 500;
}

.plan-card__includes {
  color: var(--light-lime);
  font-weight: 600;
  font-size: 14px;
  padding: 15px 5% 0;
}

.plan-card__features {
  list-style: disc;
  padding: 10px 12px 10px 40px;
  width: 90%;
  align-self: center;
}

.plan-card__features li {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 10px;
}

.plan-card__features li span {
  font-weight: 600;
}

.plan-card__badge {
  position: absolute;
  top: 8px;
  right: -8px;
  background: var(--tide-blue);
  color: var(--black);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 4px;
  z-index: 10;
  text-align: center;
  line-height: 1.3;
}

/* ===== MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 200;
  justify-content: center;
  align-items: center;
}

.modal-overlay.is-open { display: flex; }

.modal {
  background: var(--off-black);
  border: 1px solid rgba(93, 199, 255, 0.2);
  border-radius: 0 20px 0 20px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  position: relative;
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.modal__close:hover { opacity: 1; }

.modal__title {
  color: var(--tide-blue);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.modal__description {
  color: var(--dark-white-text);
  opacity: 0.7;
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.5;
}

/* ===== FAQ / ACCORDION ===== */
.faq {
  width: 100%;
  max-width: var(--max-width);
  padding: 35px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.accordion {
  max-width: 800px;
  width: 100%;
}

.accordion__item {
  background: var(--off-black);
  margin-bottom: 10px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(93, 199, 255, 0.1);
}

.accordion__trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 30px;
  cursor: pointer;
  transition: background 0.3s;
}

.accordion__trigger:hover {
  background: rgba(93, 199, 255, 0.05);
}

.accordion__question {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
}

.accordion__icon {
  color: var(--tide-blue);
  font-size: 14px;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--tide-blue);
  border-radius: 50%;
}

.accordion__item.is-open .accordion__icon {
  transform: rotate(180deg);
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion__answer {
  color: var(--white);
  opacity: 1;
  font-size: 15px;
  line-height: 1.7;
  padding: 10px 30px 24px;
}

.accordion__answer a {
  color: var(--tide-blue);
  text-decoration: underline;
}

.faq__footer {
  text-align: center;
  color: var(--white);
  margin-top: 40px;
  font-size: 16px;
}

.faq__footer a {
  color: var(--tide-blue);
  text-decoration: underline;
}

/* ===== CONTACT ===== */
.contact {
  width: 100%;
  max-width: var(--max-width);
  padding: 30px 0 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact__form {
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  color: var(--white);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
}

.form-group label .optional {
  opacity: 0.5;
  text-transform: none;
  font-weight: 400;
}

.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(93, 199, 255, 0.2);
  color: var(--white);
  padding: 14px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  border-radius: 4px;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--tide-blue);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.contact__submit {
  align-self: flex-start;
}

.form-success {
  display: none;
  color: #12b878;
  text-align: center;
  padding: 20px;
  font-size: 16px;
}

.form-error {
  display: none;
  color: #db4b68;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

/* ===== MOUSE GLOW ===== */
.mouse-glow {
  position: fixed;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(93, 199, 255, 0.06) 0%, rgba(93, 199, 255, 0.02) 40%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
}

.mouse-glow.is-visible {
  opacity: 1;
}

/* ===== FLOATING ASTRONAUT ===== */
.astronaut {
  position: absolute;
  bottom: 0;
  right: 20px;
  width: 100px;
  height: 100px;
  z-index: 50;
  pointer-events: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .nav__links { display: none; }
  .nav__menu-btn { display: block; }

  .hero {
    flex-direction: column;
    text-align: center;
    height: auto;
    padding-top: 80px;
    margin-top: 20px;
  }

  .hero__content { padding: 20px 20px 10px; }

  .hero__heading {
    font-size: 28px;
    white-space: normal;
  }

  .hero__buttons { justify-content: center; }

  .hero__lottie {
    width: 70%;
    margin-left: 0;
    padding-top: 0;
  }

  .what-we-do__card {
    flex-direction: column;
  }

  .what-we-do__stats {
    width: 100%;
    border-bottom-left-radius: 0;
  }

  .what-we-do__text {
    width: 100%;
    border-top-right-radius: 0;
    border-bottom-left-radius: 25px;
  }

  .service-card {
    flex-direction: column !important;
    height: auto;
    width: 95%;
  }

  .service-card__text,
  .service-card__visual {
    width: 100%;
    border-radius: 0 !important;
  }

  .service-card__visual {
    height: 280px;
    overflow: hidden;
  }

  .service-card__visual lottie-player {
    height: 280px !important;
    margin: 0 !important;
    transform: none !important;
  }

  .clients__slider-wrap {
    width: 100%;
    max-width: 100vw;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
  }

  .clients__slider {
    width: 100%;
  }

  .clients__tabs {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .clients__tab {
    font-size: 16px;
    padding: 8px 14px;
    min-width: auto;
  }

  .client-slide__image img {
    height: 220px;
  }

  .step-card {
    width: 95%;
  }

  .plan-card {
    width: 95%;
  }
}

@media (max-width: 767px) {
  .hero__heading { font-size: 24px; }
  .hero__subtitle { font-size: 16px; }

  .stat__number { font-size: 32px; }

  .step-card__title { font-size: 18px; }
  .step-card__text { font-size: 15px; }

  .service-card__title { font-size: 22px; }
  .service-card__description { font-size: 15px; }

  .main-header { font-size: 22px; }

  .plan-card__name { font-size: 24px; }
  .plan-card__price { font-size: 30px; }

  .client-slide__name { font-size: 22px; }
  .client-slide__description { font-size: 14px; }
}

@media (max-width: 479px) {
  .hero__heading { font-size: 20px; }

  .hero__buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn--hero {
    text-align: center;
    font-size: 14px;
    padding: 14px 24px;
  }

  .what-we-do__stats {
    gap: 0;
    padding: 20px 15px;
  }
}
