:root {
  --black: #070707;
  --black-2: #0d0d0d;
  --black-3: #111111;
  --gold: #d4af37;
  --gold-2: #f3d878;
  --gold-3: #b8962e;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, .64);
  --line: rgba(212, 175, 55, .24);
  --radius: 28px;
  --shadow: 0 24px 70px rgba(0, 0, 0, .38);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 5%, rgba(212,175,55,.14), transparent 28%),
    radial-gradient(circle at 0% 38%, rgba(212,175,55,.07), transparent 32%),
    linear-gradient(115deg, transparent 48%, rgba(212,175,55,.16) 49%, transparent 50%);
  z-index: -1;
}

a { color: inherit; text-decoration: none; }
a:focus-visible, .btn:focus-visible {
  outline: 2px solid var(--gold-2);
  outline-offset: 4px;
}
.container { width: min(1180px, calc(100% - 40px)); margin: auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: .25s ease;
  cursor: pointer;
}

.btn-primary { background: var(--gold); color: #050505; }
.btn-primary:hover { background: var(--gold-2); transform: translateY(-2px); box-shadow: 0 14px 34px rgba(212,175,55,.24); }
.btn-outline { border-color: rgba(212,175,55,.35); color: var(--white); }
.btn-outline:hover { background: rgba(212,175,55,.08); color: var(--gold-2); transform: translateY(-2px); }

header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(24px) saturate(160%);
  background:
    linear-gradient(180deg, rgba(18,18,18,.74), rgba(7,7,7,.58));
  border-bottom: 1px solid rgba(255,255,255,.065);
  box-shadow: 0 10px 34px rgba(0,0,0,.16);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
header.is-scrolled {
  background:
    linear-gradient(180deg, rgba(14,14,14,.86), rgba(7,7,7,.7));
  border-bottom-color: rgba(255,255,255,.085);
  box-shadow: 0 12px 38px rgba(0,0,0,.22);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  transition: padding .25s ease;
}
header.is-scrolled .navbar {
  padding: 6px 0;
}

.brand { display: flex; align-items: center; gap: 14px; }
.brand-mark {
  width: 132px;
  aspect-ratio: 1049 / 398;
  display: grid; place-items: center;
  position: relative;
  overflow: visible;
  transition: width .25s ease;
}
header.is-scrolled .brand-mark {
  width: 120px;
}
.brand-mark img {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  z-index: 1;
}
.brand-logo-dark {
  transform: scale(1.3);
  transform-origin: left center;
}
.brand-mark .brand-logo-light {
  display: none;
  object-fit: contain;
  object-position: center;
}
.brand-mark span {
  font-family: Cinzel, serif;
  color: var(--gold);
  font-size: 26px;
  font-weight: 700;
  z-index: 1;
}

.brand-name { letter-spacing: .38em; font-weight: 800; font-size: 14px; }
.brand-tag { color: var(--gold); letter-spacing: .25em; font-size: 10px; margin-top: 4px; }

nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255,255,255,.62);
  font-size: 13px;
  font-weight: 600;
}
nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 2px;
  transition: color .2s ease, opacity .2s ease;
}
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 1px;
  background: rgba(255,255,255,.86);
  transform: scaleX(0);
  transform-origin: center;
  transition: .25s ease;
}
nav a:hover {
  color: rgba(255,255,255,.94);
}
nav a:hover::after { transform: scaleX(1); }
nav a.is-active {
  color: var(--white);
}
nav a.is-active::after {
  transform: scaleX(1);
}
.nav-mobile-cta {
  display: none;
}
.nav-cta {
  min-height: 40px;
  padding-inline: 19px;
}
.nav-cta.btn-primary {
  background: rgba(255,255,255,.92);
  color: #070707;
  border-color: rgba(255,255,255,.28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.62), 0 12px 28px rgba(0,0,0,.2);
}
.nav-cta.btn-primary:hover {
  background: var(--white);
  color: #050505;
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72), 0 14px 34px rgba(0,0,0,.24);
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.055);
  color: rgba(255,255,255,.78);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: .25s ease;
}
.theme-toggle:hover {
  color: var(--white);
  border-color: rgba(212,175,55,.34);
  background: rgba(212,175,55,.08);
}
.theme-toggle-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(212,175,55,.42);
}

.hero { padding: 96px 0 100px; min-height: calc(100vh - 82px); display: grid; align-items: center; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(420px, .98fr); gap: 52px; align-items: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border: 1px solid rgba(212,175,55,.25);
  border-radius: 999px;
  color: var(--gold-2);
  background: rgba(212,175,55,.06);
  font-size: 14px;
  margin-bottom: 26px;
}
.hero h1 {
  font-size: clamp(46px, 7vw, 82px);
  line-height: .98;
  letter-spacing: -0.06em;
  max-width: 820px;
}
.gold-text {
  background: linear-gradient(90deg, var(--gold), #ffeaa6, var(--gold-3));
  -webkit-background-clip: text;
  color: transparent;
}
.hero p {
  margin-top: 26px;
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 42px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); max-width: 560px; }
.stats strong { display: block; font-size: 22px; color: var(--white); margin-bottom: 4px; }
.stats span { color: rgba(255,255,255,.58); font-size: 14px; }

@media (min-width: 1440px) {
  .hero .container {
    width: min(1440px, calc(100% - 96px));
  }
  .hero {
    padding: 58px 0 66px;
  }
  .hero-grid {
    grid-template-columns: minmax(560px, .9fr) minmax(560px, 1.1fr);
    gap: 64px;
  }
  .hero h1 {
    max-width: 680px;
    font-size: clamp(56px, 4.25vw, 74px);
    line-height: .99;
    letter-spacing: -0.05em;
  }
  .hero p {
    margin-top: 22px;
    max-width: 620px;
    font-size: 17px;
    line-height: 1.7;
  }
  .hero-actions {
    margin-top: 28px;
  }
  .stats {
    margin-top: 30px;
    padding-top: 18px;
  }
}

.hero-card {
  position: relative;
  border: 1px solid rgba(212,175,55,.22);
  border-radius: 36px;
  background: rgba(13,13,13,.86);
  padding: 12px;
  box-shadow: var(--shadow), 0 0 90px rgba(212,175,55,.10);
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(212,175,55,.14);
  border-radius: 42px;
  transform: rotate(4deg);
  z-index: -1;
}
.mock-window {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 28px;
  background: #000;
  padding: 0;
  overflow: hidden;
}
.window-top { display: none; }
.bar { width: 86px; height: 10px; border-radius: 20px; background: rgba(255,255,255,.14); }
.dots { display: flex; gap: 8px; }
.dots i { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.18); }
.dots i:first-child { background: var(--gold); }
.big-logo {
  width: 180px; height: 180px;
  margin: 0 auto 30px;
  border-radius: 30px;
  border: 1px solid rgba(212,175,55,.28);
  background: linear-gradient(135deg, rgba(212,175,55,.2), rgba(255,255,255,.02));
  display: grid; place-items: center;
  position: relative;
  overflow: hidden;
}
.big-logo img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  z-index: 1;
}
.big-logo span { font-family: Cinzel, serif; font-size: 92px; color: var(--gold); z-index: 1; }
.hero-workspace {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 28px;
  border: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
}
.hero-carousel {
  position: relative;
  aspect-ratio: 1717 / 916;
  overflow: hidden;
  border-radius: 28px;
  background: #050505;
}
.hero-carousel.portfolio-mode {
  aspect-ratio: 16 / 10;
}
.hero-carousel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,.05), transparent 24%, rgba(0,0,0,.18));
  pointer-events: none;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.hero-carousel-mode {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 4;
  display: inline-flex;
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(0,0,0,.48);
  backdrop-filter: blur(10px);
}
.hero-carousel-mode button {
  min-height: 30px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255,255,255,.72);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.hero-carousel-mode button.active {
  background: var(--gold);
  color: #050505;
}
.hero-carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  background: rgba(0,0,0,.48);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.hero-carousel-btn:hover {
  background: rgba(212,175,55,.88);
  border-color: rgba(212,175,55,.9);
  color: #050505;
  transform: translateY(-50%) scale(1.04);
}
.hero-carousel-prev { left: 14px; }
.hero-carousel-next { right: 14px; }
.hero-carousel-dots {
  position: absolute;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  display: flex;
  gap: 7px;
  padding: 7px 8px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(0,0,0,.44);
  backdrop-filter: blur(10px);
}
.hero-carousel-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.36);
  transition: background .2s ease, transform .2s ease;
}
.hero-carousel-dots span.active {
  background: var(--gold-2);
  transform: scale(1.2);
}
.skeleton { display: grid; gap: 14px; }
.skeleton div { height: 14px; border-radius: 8px; background: rgba(255,255,255,.1); }
.skeleton div:nth-child(1) { width: 80%; background: rgba(255,255,255,.18); }
.skeleton div:nth-child(3) { width: 65%; }
.mini-cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-top: 28px; }
.mini-card { border: 1px solid rgba(255,255,255,.1); border-radius: 18px; padding: 18px; min-height: 86px; color: var(--gold); background: rgba(255,255,255,.035); }
.mini-card span { display: block; margin-top: 10px; color: rgba(255,255,255,.58); font-size: 13px; }

section { padding: 86px 0; }
main > section:not(.hero) {
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 42px; }
.label { color: var(--gold); letter-spacing: .34em; text-transform: uppercase; font-size: 13px; font-weight: 700; margin-bottom: 14px; }
h2 { font-size: clamp(34px, 4vw, 56px); line-height: 1.05; letter-spacing: -0.04em; }
.section-head p { max-width: 430px; color: var(--muted); line-height: 1.7; }

.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card {
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  padding: 28px;
  transition: .25s ease;
}
.card:hover { transform: translateY(-6px); border-color: rgba(212,175,55,.42); background: rgba(212,175,55,.055); box-shadow: 0 18px 50px rgba(0,0,0,.26); }
.icon { width: 42px; height: 42px; color: var(--gold); margin-bottom: 24px; }
.card h3 { font-size: 21px; margin-bottom: 12px; }
.card p { color: var(--muted); line-height: 1.7; }

.seo-service {
  padding-top: 0;
}
.seo-service-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 34px;
  align-items: start;
  border: 1px solid rgba(212,175,55,.18);
  border-radius: 28px;
  background: rgba(255,255,255,.025);
  padding: 36px;
}
.seo-service h2 {
  max-width: 760px;
}
.seo-service p {
  color: var(--muted);
  line-height: 1.8;
  margin-top: 18px;
}
.seo-links {
  display: grid;
  gap: 12px;
}
.seo-links a {
  border: 1px solid rgba(212,175,55,.22);
  border-radius: 16px;
  padding: 16px 18px;
  color: var(--gold-2);
  background: rgba(212,175,55,.055);
  font-weight: 700;
  transition: .25s ease;
}
.seo-links a:hover {
  border-color: rgba(212,175,55,.48);
  background: rgba(212,175,55,.11);
  transform: translateY(-2px);
}

.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.project { border: 1px solid rgba(255,255,255,.1); border-radius: 28px; overflow: hidden; background: var(--black-2); transition: .25s ease; }
.project:hover { transform: translateY(-6px); border-color: rgba(212,175,55,.4); box-shadow: 0 22px 58px rgba(0,0,0,.34); }
.project-preview { aspect-ratio: 16/10; background: linear-gradient(135deg, rgba(212,175,55,.18), rgba(255,255,255,.06), #050505); padding: 0; position: relative; overflow: hidden; }
.project-preview img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  transition: transform .4s ease;
  background: var(--black-2);
}
.project:hover .project-preview img { transform: scale(1.02); }
.project-preview::before {
  content: "";
  position: absolute;
  inset: auto 22px 22px auto;
  width: 96px;
  height: 96px;
  border: 1px solid rgba(212,175,55,.28);
  transform: rotate(18deg);
}
.project-screen { height: 100%; border: 1px solid rgba(255,255,255,.12); border-radius: 22px; background: rgba(0,0,0,.58); padding: 22px; }
.project-screen .line { height: 12px; border-radius: 20px; background: rgba(255,255,255,.14); margin-bottom: 10px; }
.project-screen .line:first-child { width: 70px; background: rgba(212,175,55,.75); margin-bottom: 34px; }
.project-screen .line:nth-child(2) { width: 74%; height: 18px; }
.project-screen .box { height: 84px; border: 1px solid rgba(255,255,255,.1); border-radius: 16px; background: rgba(255,255,255,.05); margin-top: 30px; }
.project-body { padding: 24px; }
.project-body small { color: var(--gold); }
.project-body h3 { margin-top: 6px; font-size: 22px; }
.project-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.project-status {
  flex: 0 0 auto;
  border: 1px solid rgba(212,175,55,.35);
  border-radius: 999px;
  padding: 4px 9px;
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.process-step {
  border-top: 1px solid rgba(212,175,55,.36);
  padding-top: 22px;
}
.process-step strong {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(212,175,55,.12);
  color: var(--gold-2);
  margin-bottom: 18px;
}
.process-step h3 { font-size: 20px; margin-bottom: 10px; }
.process-step p { color: var(--muted); line-height: 1.7; }

.project a {
  display: block;
  height: 100%;
}

.project.coming-soon {
  opacity: 0.55;
}

.project.coming-soon .project-body h3 {
  color: var(--muted);
}

.why-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  border: 1px solid rgba(212,175,55,.22);
  border-radius: 36px;
  background: rgba(212,175,55,.055);
  padding: 48px;
}
.check-list { display: grid; gap: 18px; color: rgba(255,255,255,.76); }
.check-list li { list-style: none; display: flex; gap: 12px; align-items: flex-start; }
.check-list li::before { content: "\2713"; color: var(--gold); font-weight: 900; }

.pricing-head { text-align: center; margin-bottom: 42px; }
.pricing-download { margin-top: 18px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.pricing-divider { display: flex; align-items: center; gap: 16px; margin: 36px 0 24px; color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.pricing-divider::before, .pricing-divider::after { content: ""; flex: 1; height: 1px; background: rgba(255,255,255,.1); }
.pricing-grid-sm { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; max-width: 780px; margin: auto; }
.price-card { border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.03); border-radius: 28px; padding: 30px; transition: .25s ease; }
.price-card:hover { transform: translateY(-5px); border-color: rgba(212,175,55,.36); }
.price-card.featured { border-color: rgba(212,175,55,.62); background: rgba(212,175,55,.09); box-shadow: 0 20px 60px rgba(212,175,55,.10); }
.badge { display: inline-block; background: var(--gold); color: #050505; padding: 6px 12px; border-radius: 999px; font-size: 12px; font-weight: 800; margin-bottom: 20px; }
.price-card h3 { font-size: 26px; margin-bottom: 8px; }
.target { color: var(--muted); }
.price { margin: 26px 0; color: var(--gold); font-size: 31px; font-weight: 800; }
.price-card ul { display: grid; gap: 13px; color: rgba(255,255,255,.72); }
.price-card li { list-style: none; display: flex; gap: 10px; }
.price-card li::before { content: "\2713"; color: var(--gold); font-weight: 900; }

.cta {
  text-align: center;
  border: 1px solid rgba(212,175,55,.24);
  border-radius: 44px;
  background: #000;
  padding: 70px 30px;
  box-shadow: 0 0 100px rgba(212,175,55,.08);
}
.cta h2 { max-width: 780px; margin: auto; }
.cta p { max-width: 620px; margin: 24px auto 32px; color: var(--muted); line-height: 1.8; }
.cta-actions { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 12px; }
.cta-divider { font-size: 13px; color: rgba(255,255,255,.3); }
.cta-location { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 20px; font-size: 13px; color: rgba(255,255,255,.4); }
.cta-location svg { flex-shrink: 0; opacity: .7; }

/* ===== ABOUT SECTION ===== */
#about { padding: 100px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.about-left h2 { font-size: clamp(26px, 4vw, 38px); font-weight: 800; margin: 12px 0 20px; line-height: 1.25; }
.about-left p { font-size: 15px; line-height: 1.85; color: rgba(255,255,255,.72); margin-bottom: 16px; }
.about-mission { border-left: 2px solid var(--gold); padding-left: 18px; margin: 28px 0 0; }
.about-mission .mission-label { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.about-mission p { font-size: 16px; font-style: italic; color: rgba(255,255,255,.88); line-height: 1.7; margin: 0; }
.about-stats { display: flex; gap: 32px; margin-top: 40px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.08); }
.about-stat strong { display: block; font-size: 28px; font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: 5px; }
.about-stat span { font-size: 13px; color: rgba(255,255,255,.5); }
.about-values { display: flex; flex-direction: column; gap: 16px; }
.value-card { background: var(--black-3); border: 1px solid rgba(255,255,255,.07); border-radius: 20px; padding: 24px; display: flex; gap: 16px; align-items: flex-start; transition: border-color .25s; }
.value-card:hover { border-color: rgba(212,175,55,.3); }
.value-icon { width: 42px; height: 42px; border-radius: 12px; background: rgba(212,175,55,.1); border: 1px solid rgba(212,175,55,.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 18px; }
.value-card h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 5px; }
.value-card p { font-size: 14px; color: rgba(255,255,255,.58); line-height: 1.6; margin: 0; }

footer { border-top: 1px solid rgba(255,255,255,.1); padding: 30px 0; text-align: center; color: rgba(255,255,255,.44); font-size: 14px; }
.footer-links { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px 24px; margin-bottom: 12px; }
.footer-links a { color: rgba(255,255,255,.44); font-size: 13px; transition: color .2s; }
.footer-links a:hover { color: var(--gold); }

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  min-height: 52px;
  box-shadow: 0 18px 44px rgba(0,0,0,.35);
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
/* ===== ORDER SECTION ===== */
#order { padding: 100px 0; }
.order-head { text-align: center; margin-bottom: 64px; }
.order-head h2 { font-size: clamp(26px, 4vw, 40px); font-weight: 800; margin-top: 12px; }
.order-head p { color: var(--muted); margin-top: 14px; max-width: 560px; margin-inline: auto; line-height: 1.8; font-size: 15px; }

.order-flow { display: flex; align-items: flex-start; justify-content: center; gap: 0; flex-wrap: wrap; margin-bottom: 72px; }
.flow-step { display: flex; flex-direction: column; align-items: center; text-align: center; flex: 1; min-width: 110px; max-width: 150px; position: relative; padding: 0 6px; }
.flow-step:not(:last-child)::after { content: ""; position: absolute; top: 19px; left: calc(50% + 22px); right: calc(-50% + 22px); height: 1px; background: var(--line); }
.flow-num { width: 38px; height: 38px; border-radius: 50%; background: rgba(212,175,55,.1); border: 1px solid var(--gold); color: var(--gold); font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; flex-shrink: 0; }
.flow-step h4 { font-size: 12px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.flow-step p { font-size: 11px; color: var(--muted); line-height: 1.5; }

.order-grid { display: grid; grid-template-columns: 1fr 360px; gap: 28px; align-items: start; }
.order-form-card { background: var(--black-3); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 36px; }
.order-form-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 28px; }

.service-category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.service-category input { display: none; }
.service-category span {
  display: flex; align-items: center; justify-content: center; min-height: 42px;
  border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 10px 12px;
  color: var(--muted); font-size: 13px; font-weight: 700; cursor: pointer; transition: .2s ease;
}
.service-category span:hover { border-color: rgba(212,175,55,.4); background: rgba(212,175,55,.04); color: var(--white); }
.service-category input:checked + span { border-color: var(--gold); background: rgba(212,175,55,.1); color: var(--white); }
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 6px; }
.pkg-option.is-hidden { display: none; }
.pkg-option input { display: none; }
.pkg-label { display: block; border: 1px solid rgba(255,255,255,.1); border-radius: 14px; padding: 14px 10px; text-align: center; cursor: pointer; transition: .2s ease; }
.pkg-label:hover { border-color: rgba(212,175,55,.4); background: rgba(212,175,55,.04); }
.pkg-option input:checked + .pkg-label { border-color: var(--gold); background: rgba(212,175,55,.1); }
.pkg-label strong { display: block; font-size: 14px; color: var(--white); margin-bottom: 4px; }
.pkg-label em { display: block; font-size: 10px; font-style: normal; color: rgba(255,255,255,.45); margin-bottom: 6px; line-height: 1.4; }
.pkg-label span { font-size: 12px; color: var(--gold); }
.field-error { display: none; font-size: 12px; color: #e05c5c; margin-top: 5px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px; padding: 12px 16px; color: var(--white); font-family: Inter, sans-serif;
  font-size: 14px; outline: none; transition: border-color .2s; -webkit-appearance: none; appearance: none;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.3); }
.field input:focus, .field textarea:focus, .field select:focus { border-color: rgba(212,175,55,.6); }
.field textarea { resize: vertical; min-height: 100px; }
.field select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23d4af37' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.field select option { background: #111; }
.coffee-field { display: none; }
.coffee-field.visible { display: block; }
.field-help { display: block; margin-top: 6px; color: rgba(255,255,255,.45); font-size: 12px; line-height: 1.5; }
.btn-order { width: 100%; font-size: 15px; min-height: 52px; margin-top: 4px; border-radius: 14px; }
.btn-order:disabled { opacity: .72; cursor: wait; transform: none; }
.payment-status { min-height: 20px; margin-top: 12px; color: var(--muted); font-size: 13px; line-height: 1.5; text-align: center; }
.payment-status.error { color: #e05c5c; }
.payment-status.success { color: var(--gold-2); }

.order-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 90px; }
.what-you-get { background: var(--black-3); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 28px; }
.what-you-get h4 { font-size: 15px; font-weight: 700; color: var(--gold); margin-bottom: 16px; }
.what-you-get ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.what-you-get ul li { font-size: 14px; color: rgba(255,255,255,.8); display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.what-you-get ul li::before { content: "✓"; color: var(--gold); font-weight: 700; flex-shrink: 0; }

.order-summary-card { background: rgba(212,175,55,.06); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; display: none; }
.order-summary-card.visible { display: block; animation: fadeUp .3s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.order-summary-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 16px; color: var(--white); }
.summary-row { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 10px; color: rgba(255,255,255,.8); }
.summary-row.total { font-weight: 700; color: var(--white); font-size: 15px; border-top: 1px solid var(--line); padding-top: 12px; margin-top: 4px; }
.summary-row.dp { color: var(--gold); font-weight: 700; font-size: 15px; }
.summary-note { font-size: 12px; color: var(--muted); margin-top: 12px; line-height: 1.6; }

/* ===== FAQ SECTION ===== */
#faq { padding: 100px 0; }
.faq-head { text-align: center; margin-bottom: 56px; }
.faq-head h2 { font-size: clamp(26px, 4vw, 40px); font-weight: 800; margin-top: 12px; }
.faq-head p { color: var(--muted); margin-top: 14px; font-size: 15px; line-height: 1.8; }

.faq-list { max-width: 760px; margin: auto; display: flex; flex-direction: column; gap: 12px; }

details.faq-item {
  background: var(--black-3);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color .25s;
}
details.faq-item[open] { border-color: rgba(212,175,55,.35); }

details.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  list-style: none;
  user-select: none;
}
details.faq-item summary::-webkit-details-marker { display: none; }

.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,.3);
  color: var(--gold);
  font-size: 18px;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .25s, background .25s;
  line-height: 1;
}
details.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: rgba(212,175,55,.12);
}

.faq-body {
  padding: 0 24px 22px;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,.7);
}
.faq-body a { color: var(--gold-2); text-decoration: underline; text-underline-offset: 3px; }

body.light-theme {
  --black: #f8f5ec;
  --black-2: #ffffff;
  --black-3: #fffdf8;
  --gold: #b88a16;
  --gold-2: #8f690d;
  --gold-3: #e2bd52;
  --white: #19150d;
  --muted: rgba(35, 29, 18, .66);
  --line: rgba(184, 138, 22, .22);
  --shadow: 0 24px 70px rgba(82, 61, 18, .13);
  background:
    linear-gradient(180deg, #fffaf0 0%, #f8f5ec 42%, #f4efe3 100%);
  color: var(--white);
}
body.light-theme::before {
  background:
    radial-gradient(circle at 84% 4%, rgba(212,175,55,.20), transparent 28%),
    radial-gradient(circle at 2% 40%, rgba(184,138,22,.10), transparent 34%),
    linear-gradient(115deg, transparent 48%, rgba(184,138,22,.10) 49%, transparent 50%);
}
body.light-theme header {
  background: linear-gradient(180deg, rgba(255,250,240,.86), rgba(255,255,255,.72));
  border-bottom-color: rgba(80,64,28,.10);
  box-shadow: 0 12px 36px rgba(80,64,28,.08);
}
body.light-theme header.is-scrolled {
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,250,240,.84));
  border-bottom-color: rgba(80,64,28,.14);
  box-shadow: 0 14px 38px rgba(80,64,28,.11);
}
body.light-theme .brand-mark {
  width: 168px;
  aspect-ratio: 1536 / 528;
  overflow: visible;
  border-radius: 0;
  background: none;
  box-shadow: none;
}
body.light-theme .brand-logo-dark {
  display: none;
}
body.light-theme .brand-logo-light {
  display: block;
  transform: none;
  filter: saturate(1.08) contrast(1.04) drop-shadow(0 6px 14px rgba(80,64,28,.08));
}
body.light-theme header.is-scrolled .brand-mark {
  width: 156px;
}
body.light-theme nav {
  color: rgba(35,29,18,.62);
}
body.light-theme nav a::after {
  background: rgba(35,29,18,.72);
}
body.light-theme nav a:hover,
body.light-theme nav a.is-active {
  color: #19150d;
}
body.light-theme .nav-cta.btn-primary {
  background: #19150d;
  color: #fffaf0;
  border-color: rgba(25,21,13,.10);
  box-shadow: 0 14px 30px rgba(25,21,13,.14);
}
body.light-theme .nav-cta.btn-primary:hover {
  background: #2a2113;
  color: #fffaf0;
  box-shadow: 0 16px 34px rgba(25,21,13,.18);
}
body.light-theme .theme-toggle {
  border-color: rgba(35,29,18,.14);
  background: rgba(255,255,255,.72);
  color: rgba(35,29,18,.76);
  box-shadow: 0 8px 24px rgba(80,64,28,.08);
}
body.light-theme .theme-toggle:hover {
  color: #19150d;
  border-color: rgba(184,138,22,.34);
  background: #fffaf0;
}
body.light-theme .btn-primary {
  color: #fffaf0;
  background: linear-gradient(135deg, #b88a16, #dfb84c);
  box-shadow: 0 16px 36px rgba(184,138,22,.20);
}
body.light-theme .btn-primary:hover {
  background: linear-gradient(135deg, #a87b12, #efc75a);
  box-shadow: 0 18px 38px rgba(184,138,22,.26);
}
body.light-theme .btn-outline {
  color: #19150d;
  border-color: rgba(35,29,18,.16);
  background: rgba(255,255,255,.46);
}
body.light-theme .btn-outline:hover {
  color: #8f690d;
  background: rgba(184,138,22,.10);
}
body.light-theme .eyebrow,
body.light-theme .seo-links a,
body.light-theme .project-status {
  color: #8f690d;
  background: rgba(184,138,22,.10);
  border-color: rgba(184,138,22,.22);
}
body.light-theme .gold-text {
  background: linear-gradient(90deg, #9f7411, #d5a72e, #6f510b);
  -webkit-background-clip: text;
  color: transparent;
}
body.light-theme .stats {
  border-top-color: rgba(35,29,18,.10);
}
body.light-theme .stats span,
body.light-theme .mini-card span,
body.light-theme .about-left p,
body.light-theme .about-stat span,
body.light-theme .value-card p,
body.light-theme .check-list,
body.light-theme .price-card ul,
body.light-theme .what-you-get ul li,
body.light-theme .summary-row,
body.light-theme .faq-body {
  color: rgba(35,29,18,.66);
}
body.light-theme .hero-card {
  background: rgba(255,255,255,.78);
  border-color: rgba(184,138,22,.24);
  box-shadow: var(--shadow), 0 0 80px rgba(184,138,22,.12);
}
body.light-theme .mock-window,
body.light-theme .hero-carousel {
  background: #fffaf0;
  border-color: rgba(35,29,18,.08);
}
body.light-theme .hero-workspace {
  box-shadow: inset 0 0 0 1px rgba(35,29,18,.05);
}
body.light-theme .hero-carousel::after {
  background: linear-gradient(180deg, rgba(255,255,255,.18), transparent 26%, rgba(255,250,240,.08));
}
body.light-theme .hero-carousel-mode,
body.light-theme .hero-carousel-btn,
body.light-theme .hero-carousel-dots {
  background: rgba(255,255,255,.74);
  border-color: rgba(35,29,18,.12);
  color: #19150d;
}
body.light-theme .hero-carousel-mode button {
  color: rgba(35,29,18,.66);
}
body.light-theme .hero-carousel-mode button.active,
body.light-theme .hero-carousel-btn:hover {
  background: #19150d;
  color: #fffaf0;
  border-color: #19150d;
}
body.light-theme .hero-carousel-dots span {
  background: rgba(35,29,18,.28);
}
body.light-theme .hero-carousel-dots span.active {
  background: #b88a16;
}
body.light-theme .card,
body.light-theme .seo-service-grid,
body.light-theme .project,
body.light-theme .price-card,
body.light-theme .order-form-card,
body.light-theme .what-you-get,
body.light-theme details.faq-item,
body.light-theme .value-card {
  background: rgba(255,255,255,.72);
  border-color: rgba(35,29,18,.10);
  box-shadow: 0 16px 44px rgba(80,64,28,.07);
}
body.light-theme .card:hover,
body.light-theme .price-card:hover,
body.light-theme .project:hover,
body.light-theme .value-card:hover,
body.light-theme details.faq-item[open] {
  border-color: rgba(184,138,22,.34);
  background: rgba(255,252,246,.92);
  box-shadow: 0 20px 52px rgba(80,64,28,.10);
}
body.light-theme .project-preview {
  background: linear-gradient(135deg, rgba(184,138,22,.14), rgba(255,255,255,.86), #f0e8d9);
}
body.light-theme .project-preview img {
  background: #fffaf0;
}
body.light-theme .process-step strong,
body.light-theme .flow-num,
body.light-theme .value-icon,
body.light-theme .faq-icon {
  background: rgba(184,138,22,.11);
  color: #9f7411;
  border-color: rgba(184,138,22,.28);
}
body.light-theme .why-box,
body.light-theme .price-card.featured,
body.light-theme .order-summary-card {
  background: linear-gradient(135deg, rgba(255,255,255,.78), rgba(184,138,22,.12));
  border-color: rgba(184,138,22,.24);
}
body.light-theme .pricing-divider::before,
body.light-theme .pricing-divider::after,
body.light-theme .about-stats,
body.light-theme .summary-row.total,
body.light-theme footer {
  border-color: rgba(35,29,18,.10);
}
body.light-theme .cta {
  background: linear-gradient(135deg, #fffdf8, #f3ead8);
  border-color: rgba(184,138,22,.22);
  box-shadow: 0 24px 76px rgba(80,64,28,.10);
}
body.light-theme .cta-divider,
body.light-theme .cta-location,
body.light-theme footer,
body.light-theme .footer-links a {
  color: rgba(35,29,18,.52);
}
body.light-theme footer div[style] {
  color: rgba(35,29,18,.42) !important;
}
body.light-theme .footer-links a:hover,
body.light-theme .faq-body a {
  color: #8f690d;
}
body.light-theme .pkg-label {
  border-color: rgba(35,29,18,.12);
  background: rgba(255,255,255,.54);
}
body.light-theme .pkg-label:hover,
body.light-theme .pkg-option input:checked + .pkg-label {
  border-color: rgba(184,138,22,.46);
  background: rgba(184,138,22,.10);
}
body.light-theme .pkg-label em,
body.light-theme .field-help {
  color: rgba(35,29,18,.52);
}
body.light-theme .field input,
body.light-theme .field textarea,
body.light-theme .field select {
  background-color: rgba(255,255,255,.74);
  border-color: rgba(35,29,18,.13);
  color: #19150d;
}
body.light-theme .field input::placeholder,
body.light-theme .field textarea::placeholder {
  color: rgba(35,29,18,.38);
}
body.light-theme .field select option {
  background: #fffaf0;
  color: #19150d;
}
body.light-theme .payment-status.success {
  color: #7c5a0b;
}
body.light-theme .payment-status.error,
body.light-theme .field-error {
  color: #b83e3e;
}
body.light-theme .faq-body strong[style] {
  color: #19150d !important;
}
body.light-theme .nav-toggle span {
  background: #19150d;
}
body.light-theme .floating-whatsapp {
  box-shadow: 0 18px 44px rgba(25,21,13,.18);
}

@media (max-width: 640px) {
  body::before {
    background:
      radial-gradient(circle at 80% 0%, rgba(212,175,55,.10), transparent 26%),
      linear-gradient(115deg, transparent 52%, rgba(212,175,55,.10) 53%, transparent 54%);
  }
  #faq { padding: 64px 0; }
  details.faq-item summary { font-size: 14px; padding: 18px 20px; }
  .faq-body { padding: 0 20px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* Hamburger button — hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 980px) {
  header .btn.nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .navbar {
    align-items: center;
    position: relative;
    flex-wrap: wrap;
    row-gap: 0;
    padding: 8px 0;
  }
  header.is-scrolled .navbar {
    padding: 6px 0;
  }
  nav {
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    overflow: hidden;
    max-height: 0;
    margin-top: 0;
    border: 1px solid transparent;
    border-radius: 22px;
    background: transparent;
    box-shadow: none;
    opacity: 0;
    transition: max-height .35s ease, padding .35s ease, margin .35s ease, opacity .25s ease, border-color .25s ease, background .25s ease;
    padding: 0;
    white-space: normal;
  }
  nav.open,
  #navMenu.open {
    max-height: 420px;
    margin-top: 14px;
    padding: 10px;
    border-color: rgba(255,255,255,.09);
    background: rgba(18,18,18,.9);
    box-shadow: 0 22px 58px rgba(0,0,0,.3);
    opacity: 1;
    backdrop-filter: blur(24px) saturate(150%);
  }
  .service-page nav {
    display: none;
  }
  .service-page header .btn.nav-cta {
    display: inline-flex;
  }
  nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 46px;
    padding: 0 14px;
    border-bottom: 1px solid rgba(255,255,255,.07);
    border-radius: 14px;
    font-size: 15px;
  }
  nav a::after {
    display: none;
  }
  nav a:hover,
  nav a.is-active {
    background: rgba(255,255,255,.07);
    color: var(--white);
  }
  nav a:last-child { border-bottom: none; }
  .nav-mobile-cta {
    display: flex;
    justify-content: center;
    margin-top: 4px;
    background: rgba(255,255,255,.92);
    color: #050505;
    border-bottom: none;
    font-weight: 800;
  }
  .nav-mobile-cta:hover,
  .nav-mobile-cta.is-active {
    background: var(--white);
    color: #050505;
  }
  .hero-grid, .why-box, .seo-service-grid { grid-template-columns: 1fr; }
  .services-grid, .pricing-grid, .pricing-grid-sm, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: 1fr; }
  .section-head { align-items: flex-start; flex-direction: column; }
  #about { padding: 72px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-stats { gap: 24px; }
  .order-grid { grid-template-columns: 1fr; }
  .order-sidebar { position: static; }
  .flow-step:not(:last-child)::after { display: none; }
  .order-flow { gap: 12px 0; justify-content: flex-start; }
  .flow-step { min-width: 33%; max-width: 33%; }
}

@media (min-width: 981px) and (max-height: 860px) {
  .hero {
    min-height: auto;
    padding: 52px 0 58px;
  }
  .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
    gap: 38px;
  }
  .eyebrow {
    padding: 8px 14px;
    font-size: 13px;
    margin-bottom: 0;
  }
  .hero h1 {
    font-size: clamp(42px, 4.8vw, 62px);
    line-height: 1.02;
    letter-spacing: -0.045em;
  }
  .hero p {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.62;
    max-width: 590px;
  }
  .hero-actions {
    margin-top: 24px;
  }
  .stats {
    margin-top: 26px;
    padding-top: 18px;
  }
  .stats strong {
    font-size: 19px;
  }
  .hero-card {
    border-radius: 30px;
  }
  .hero-card::before {
    inset: -10px;
    border-radius: 36px;
  }
}

@media (min-width: 981px) and (max-height: 760px) {
  .hero {
    padding: 38px 0 44px;
  }
  .hero h1 {
    font-size: clamp(38px, 4.3vw, 56px);
  }
  .hero p {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.55;
  }
  .hero-actions {
    margin-top: 18px;
  }
  .stats {
    margin-top: 18px;
    padding-top: 14px;
    gap: 12px;
  }
  .stats strong {
    font-size: 17px;
  }
  .stats span {
    font-size: 12px;
  }
}

@media (max-width: 640px) {
  html, body { overflow-x: hidden; }
  .container { width: min(100% - 28px, 1180px); }
  .navbar { row-gap: 0; }
  nav { font-size: 13px; gap: 16px; }
  section { padding: 64px 0; }
  .hero { min-height: auto; padding: 56px 0 58px; }
  .hero h1 {
    font-size: clamp(38px, 13vw, 52px);
    line-height: 1.02;
    letter-spacing: 0;
  }
  .hero p {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.65;
  }
  .eyebrow {
    max-width: 100%;
    margin-bottom: 18px;
    padding: 8px 12px;
    font-size: 12px;
  }
  .services-grid, .pricing-grid, .pricing-grid-sm, .stats { grid-template-columns: 1fr; }
  .section-head { gap: 14px; }
  .section-head h2, .pricing-head h2, .order-head h2, .faq-head h2 {
    font-size: 28px;
    line-height: 1.2;
  }
  .card, .price-card, .value-card, .what-you-get, .order-summary-card {
    border-radius: 18px;
  }
  .card, .price-card {
    padding: 22px;
  }
  .price-card h3 { font-size: 22px; }
  .price { margin: 18px 0; font-size: 26px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .service-page header .btn.nav-cta { width: auto; }
  .why-box { padding: 24px; }
  .seo-service-grid { padding: 24px; }
  .brand-name { letter-spacing: .24em; }
  .hero-card { padding: 8px; }
  .hero-card::before { display: none; }
  .mock-window { padding: 0; }
  .hero-carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 28px;
  }
  .hero-carousel-mode {
    top: 10px;
    left: 10px;
  }
  .hero-carousel-mode button {
    min-height: 28px;
    padding: 0 10px;
    font-size: 11px;
  }
  .hero-carousel-prev { left: 10px; }
  .hero-carousel-next { right: 10px; }
  .process-grid { grid-template-columns: 1fr; }
  .floating-whatsapp { right: 14px; bottom: 14px; width: auto; padding: 0 18px; }
  #order { padding: 64px 0; }
  .order-head { margin-bottom: 32px; text-align: left; }
  .order-head p { margin-inline: 0; }
  .order-flow {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 28px;
  }
  .flow-step {
    min-width: 0;
    max-width: none;
    align-items: flex-start;
    text-align: left;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    background: rgba(255,255,255,.035);
  }
  .flow-num {
    width: 30px;
    height: 30px;
    margin-bottom: 8px;
    font-size: 11px;
  }
  .flow-step h4 { font-size: 12px; }
  .flow-step p { font-size: 10px; line-height: 1.45; }
  .service-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }
  .service-category span {
    min-height: 40px;
    padding: 8px 6px;
    font-size: 11px;
    line-height: 1.25;
    text-align: center;
  }
  .pkg-grid { grid-template-columns: 1fr; }
  .pkg-label {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3px 12px;
    align-items: center;
    text-align: left;
    padding: 13px 14px;
  }
  .pkg-label strong,
  .pkg-label em {
    margin-bottom: 0;
  }
  .pkg-label em {
    grid-column: 1 / -1;
    font-size: 11px;
  }
  .pkg-label > span {
    grid-row: 1;
    grid-column: 2;
    white-space: nowrap;
  }
  .form-row { grid-template-columns: 1fr; }
  .order-form-card { padding: 22px 18px; border-radius: 20px; }
  .order-form-card h3 { margin-bottom: 20px; }
  .field { margin-bottom: 14px; }
  .field input, .field textarea, .field select {
    min-height: 46px;
    padding: 11px 13px;
    font-size: 14px;
  }
  .field textarea { min-height: 118px; }
  .what-you-get, .order-summary-card { padding: 22px 18px; }
  .summary-row {
    align-items: flex-start;
    gap: 18px;
  }
  .summary-row span:last-child {
    min-width: 0;
    text-align: right;
    overflow-wrap: anywhere;
  }
  .summary-note { font-size: 11px; }
  .faq-head { text-align: left; margin-bottom: 28px; }
  body.light-theme .brand-mark,
  body.light-theme header.is-scrolled .brand-mark {
    width: 140px;
    border-radius: 0;
  }
  .theme-toggle {
    width: 40px;
    padding: 0;
    justify-content: center;
  }
  .theme-toggle-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
}

@media (max-width: 980px) {
  body.light-theme nav.open,
  body.light-theme #navMenu.open {
    border-color: rgba(35,29,18,.12);
    background: rgba(255,250,240,.94);
    box-shadow: 0 22px 58px rgba(80,64,28,.13);
  }
  body.light-theme nav a {
    border-bottom-color: rgba(35,29,18,.08);
  }
  body.light-theme nav a:hover,
  body.light-theme nav a.is-active {
    background: rgba(184,138,22,.10);
    color: #19150d;
  }
  body.light-theme .nav-mobile-cta,
  body.light-theme .nav-mobile-cta:hover,
  body.light-theme .nav-mobile-cta.is-active {
    background: #19150d;
    color: #fffaf0;
  }
}
