/* ================================================================
   WANDERHORIZONT — Layout CSS
   Full layout system, components, animations, responsive
   ================================================================ */

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  position: relative;
  overflow-x: hidden;
  max-width: 100vw;
}

img, video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t-fast);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

section, header, footer, main, article, aside {
  overflow-x: hidden;
  max-width: 100%;
  box-sizing: border-box;
}

/* ----------------------------------------------------------------
   CONTAINER
   ---------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

.container-sm {
  width: 100%;
  max-width: var(--container-sm);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

/* ----------------------------------------------------------------
   HEADER & NAVIGATION
   ---------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: background var(--t-base), box-shadow var(--t-base), padding var(--t-base);
  overflow-x: hidden;
  max-width: 100vw;
}

.site-header.scrolled {
  background: rgba(244, 248, 246, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--grad-hero);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-mark svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--c-white);
  stroke-width: 1.8;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: var(--font-alt);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-primary);
  letter-spacing: -0.02em;
}

.logo-tagline {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--c-text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 1px;
}

.site-header.scrolled .logo-name { color: var(--c-text); }

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 32px);
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--c-white);
  opacity: 0.88;
  letter-spacing: 0.01em;
  position: relative;
  transition: opacity var(--t-fast);
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--c-accent);
  transition: width var(--t-base);
  border-radius: 2px;
}

.nav-link:hover { opacity: 1; }
.nav-link:hover::after { width: 100%; }

.site-header.scrolled .nav-link { color: var(--c-text); }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-xs);
  background: var(--grad-accent);
  color: var(--c-text) !important;
  opacity: 1 !important;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.01em;
  box-shadow: var(--shadow-accent);
  transition: transform var(--t-fast), box-shadow var(--t-fast) !important;
  white-space: nowrap;
}

.header-cta::after { display: none !important; }

.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 36px rgba(214, 192, 122, 0.45);
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.12);
  transition: background var(--t-fast);
  cursor: pointer;
  z-index: 1001;
  flex-shrink: 0;
}

.burger span {
  display: block;
  height: 2px;
  background: var(--c-white);
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-fast), width var(--t-base);
}

.burger span:nth-child(1) { width: 22px; }
.burger span:nth-child(2) { width: 16px; }
.burger span:nth-child(3) { width: 22px; }

.site-header.scrolled .burger { background: rgba(63, 106, 116, 0.08); }
.site-header.scrolled .burger span { background: var(--c-text); }

.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  width: 22px;
}
.burger.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-8px);
}
.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  width: 22px;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(244, 248, 246, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base);
  overflow: hidden;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-link {
  font-family: var(--font-alt);
  font-size: clamp(1.5rem, 5vw, 2.2rem);
  font-weight: 600;
  color: var(--c-text);
  letter-spacing: -0.02em;
  transition: color var(--t-fast), transform var(--t-fast);
  display: block;
  text-align: center;
  padding: var(--sp-sm) var(--sp-lg);
  transform: translateY(20px);
  opacity: 0;
  transition: opacity var(--t-base), transform var(--t-base), color var(--t-fast);
}

.mobile-menu.open .mobile-nav-link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav-link:nth-child(1) { transition-delay: 0.05s; }
.mobile-nav-link:nth-child(2) { transition-delay: 0.1s; }
.mobile-nav-link:nth-child(3) { transition-delay: 0.15s; }
.mobile-nav-link:nth-child(4) { transition-delay: 0.2s; }
.mobile-nav-link:nth-child(5) { transition-delay: 0.25s; }

.mobile-nav-link:hover { color: var(--c-primary); }

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(63, 106, 116, 0.1);
  color: var(--c-text);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}

/* ----------------------------------------------------------------
   HERO SECTION
   ---------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--grad-hero);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 1025px) {
  .hero-bg img {
    transform: translateY(0);
    will-change: transform;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(42, 50, 51, 0.48) 0%,
    rgba(63, 106, 116, 0.35) 45%,
    rgba(63, 106, 116, 0.15) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(60px, 8vw, 100px);
  width: 100%;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--sp-lg);
}

.hero-label span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-accent);
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
  color: var(--c-white);
  max-width: 820px;
  margin-bottom: var(--sp-lg);
}

.hero-title em {
  font-style: normal;
  color: var(--c-accent);
}

.hero-desc {
  max-width: 520px;
  color: rgba(255,255,255,0.82);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: var(--lh-loose);
  margin-bottom: var(--sp-xl);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  right: clamp(20px, 4vw, 60px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll span {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.25);
  position: relative;
  overflow: hidden;
}

.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--c-accent);
  animation: scroll-line 2s ease infinite;
}

@keyframes scroll-line {
  0% { top: -100%; }
  100% { top: 100%; }
}

.hero-stats {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg) 0 0 0;
  padding: var(--sp-lg) var(--sp-xl);
  display: flex;
  gap: var(--sp-xl);
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-stat-num {
  font-family: var(--font-alt);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--c-white);
  line-height: 1;
}

.hero-stat-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ----------------------------------------------------------------
   BUTTONS
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

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

.btn-primary {
  background: var(--grad-accent);
  color: var(--c-text);
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
  box-shadow: 0 14px 40px rgba(214, 192, 122, 0.45);
  background: linear-gradient(135deg, #DDC988 0%, #E5D59A 100%);
}

.btn-outline {
  background: transparent;
  color: var(--c-white);
  border: 1.5px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

.btn-outline-dark {
  background: transparent;
  color: var(--c-primary);
  border: 1.5px solid var(--c-primary);
}

.btn-outline-dark:hover {
  background: var(--c-primary);
  color: var(--c-white);
}

.btn-dark {
  background: var(--c-text);
  color: var(--c-white);
}

.btn-dark:hover {
  background: var(--c-primary);
  box-shadow: var(--shadow-md);
}

.btn-sm {
  font-size: 0.82rem;
  padding: 10px 22px;
}

.btn-lg {
  font-size: 1rem;
  padding: 18px 42px;
}

.btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform var(--t-fast);
}

.btn:hover .btn-icon { transform: translateX(3px); }

/* ----------------------------------------------------------------
   SECTION STYLES
   ---------------------------------------------------------------- */
.section {
  padding: var(--section-pad) 0;
}

.section-sm {
  padding: clamp(40px, 5vw, 72px) 0;
}

.section-header {
  margin-bottom: clamp(40px, 5vw, 64px);
}

.section-header.center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: var(--sp-md);
}

.section-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--c-accent);
  border-radius: 2px;
}

.section-title {
  margin-bottom: var(--sp-md);
}

.section-desc {
  max-width: 560px;
  line-height: var(--lh-body);
}

/* ----------------------------------------------------------------
   MARQUEE
   ---------------------------------------------------------------- */
.js-marquee-wrap {
  overflow: hidden;
  max-width: 100vw;
  padding: clamp(24px, 3vw, 40px) 0;
  background: var(--c-primary);
  position: relative;
}

.js-mq-row {
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
}

.js-mq-row.fwd {
  animation: marquee-fwd 32s linear infinite;
}

.js-mq-row.rev {
  animation: marquee-rev 28s linear infinite;
  margin-top: 10px;
}

@keyframes marquee-fwd {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marquee-rev {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.mq-item {
  font-family: var(--font-alt);
  font-size: clamp(20px, 3vw, 38px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--c-white);
  opacity: 0.12;
  padding: 0 clamp(24px, 3vw, 48px);
  flex-shrink: 0;
}

.mq-sep {
  color: var(--c-accent);
  opacity: 0.25;
  font-size: clamp(12px, 1.5vw, 20px);
  flex-shrink: 0;
  padding: 0 8px;
}

/* ----------------------------------------------------------------
   VALUE PROPOSITION (EDITORIAL)
   ---------------------------------------------------------------- */
.value-prop {
  background: var(--c-bg);
}

.vp-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: center;
}

.vp-left {
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
}

.vp-headline {
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: var(--ls-tight);
}

.vp-headline em {
  font-style: normal;
  color: var(--c-primary);
}

.vp-body {
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: var(--lh-loose);
  color: var(--c-text-light);
}

.vp-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
  margin-top: var(--sp-sm);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--c-bg-contrast);
  border: 1px solid rgba(191, 202, 198, 0.6);
  color: var(--c-text);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}

.badge-icon {
  width: 14px;
  height: 14px;
  stroke: var(--c-primary);
  stroke-width: 2;
  fill: none;
}

.vp-right {
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
}

.vp-stat-row {
  display: flex;
  gap: var(--sp-lg);
}

.vp-stat {
  flex: 1;
  padding: var(--sp-lg);
  background: var(--c-bg-card);
  border: 1px solid rgba(191, 202, 198, 0.5);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.vp-stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.vp-stat-num {
  font-family: var(--font-alt);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--c-primary);
  line-height: 1;
}

.vp-stat-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--c-text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vp-quote {
  padding: var(--sp-lg) var(--sp-xl);
  background: var(--grad-hero);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.vp-quote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 16px;
  font-size: 7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.08);
  font-family: var(--font-alt);
  line-height: 1;
}

.vp-quote p {
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: var(--lh-loose);
  position: relative;
}

.vp-quote cite {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--c-accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: var(--sp-sm);
  font-style: normal;
  position: relative;
}

/* ----------------------------------------------------------------
   SIGNATURE MOMENT
   ---------------------------------------------------------------- */
.signature-moment {
  position: relative;
  min-height: clamp(480px, 60vh, 720px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--c-text);
}

.signature-bg {
  position: absolute;
  inset: 0;
}

.signature-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.signature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(63, 106, 116, 0.7) 0%,
    rgba(42, 50, 51, 0.5) 60%,
    transparent 100%
  );
}

.signature-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.signature-pre {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--c-accent);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: block;
  margin-bottom: var(--sp-md);
}

.signature-title {
  font-size: var(--fs-h1);
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-lg);
}

.signature-title em {
  font-style: normal;
  color: var(--c-accent);
}

.signature-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  line-height: var(--lh-loose);
  margin-bottom: var(--sp-xl);
}

.signature-fact {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-md);
  padding: var(--sp-md) var(--sp-lg);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}

.signature-fact-num {
  font-family: var(--font-alt);
  font-size: 2rem;
  font-weight: 700;
  color: var(--c-accent);
}

.signature-fact-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}

/* ----------------------------------------------------------------
   PORTFOLIO SHOWCASE
   ---------------------------------------------------------------- */
.portfolio-showcase {
  background: var(--grad-light);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--gap);
}

.showcase-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--c-bg-card);
  box-shadow: var(--shadow-md);
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.showcase-card.featured {
  grid-row: span 2;
}

.showcase-img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.showcase-card.featured .showcase-img {
  aspect-ratio: unset;
  height: 100%;
  min-height: 400px;
}

.showcase-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

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

.showcase-info {
  padding: var(--sp-lg) var(--sp-xl);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(42,50,51,0.88) 0%, transparent 100%);
  color: var(--c-white);
}

.showcase-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-accent);
  display: block;
  margin-bottom: 6px;
}

.showcase-name {
  font-family: var(--font-alt);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
  color: var(--c-white);
  line-height: 1.25;
  margin-bottom: 6px;
}

.showcase-meta {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.55);
}

.showcase-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c-accent);
  color: var(--c-text);
  position: absolute;
  top: var(--sp-lg);
  right: var(--sp-lg);
  transition: transform var(--t-spring);
  opacity: 0;
}

.showcase-card:hover .showcase-arrow {
  opacity: 1;
  transform: scale(1.1);
}

.showcase-arrow svg {
  width: 14px;
  height: 14px;
}

.portfolio-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: var(--sp-2xl);
}

/* ----------------------------------------------------------------
   INSIGHT / POV BLOCK
   ---------------------------------------------------------------- */
.insight-block {
  background: var(--c-bg);
}

.insight-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: clamp(48px, 6vw, 88px);
  align-items: start;
}

.insight-sidebar {
  position: sticky;
  top: 100px;
}

.insight-sidebar-tag {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--c-text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--sp-md);
}

.insight-sidebar-title {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--c-text);
  margin-bottom: var(--sp-lg);
}

.insight-sidebar-divider {
  width: 32px;
  height: 3px;
  background: var(--grad-accent);
  border-radius: 2px;
  margin-bottom: var(--sp-lg);
}

.insight-sidebar-desc {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: var(--lh-body);
  margin-bottom: var(--sp-lg);
}

.insight-content {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xl);
}

.insight-content p {
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: var(--lh-loose);
  color: var(--c-text-light);
}

.insight-content h3 {
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 600;
  color: var(--c-text);
  margin-top: var(--sp-sm);
}

.insight-highlight {
  padding: var(--sp-lg) var(--sp-xl);
  background: var(--c-bg-contrast);
  border-left: 4px solid var(--c-primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.insight-highlight p {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--c-text);
  line-height: var(--lh-body);
  font-style: italic;
}

.insight-keyword {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(214, 192, 122, 0.18);
  border: 1px solid rgba(214, 192, 122, 0.4);
  color: var(--c-text);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

/* ----------------------------------------------------------------
   SERVICES SECTION
   ---------------------------------------------------------------- */
.services-section {
  background: var(--c-text);
}

.services-section .section-tag { color: var(--c-accent); }
.services-section .section-title { color: var(--c-white); }
.services-section .section-desc { color: rgba(255,255,255,0.6); }

.services-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--sp-xl);
}

.services-table thead tr {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.services-table th {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  padding: var(--sp-md) var(--sp-lg);
  text-align: left;
  font-weight: 400;
}

.services-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background var(--t-fast);
}

.services-table tbody tr:hover {
  background: rgba(255,255,255,0.04);
}

.services-table td {
  padding: var(--sp-lg);
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  vertical-align: middle;
}

.services-table td:first-child {
  font-weight: 600;
  color: var(--c-white);
  font-size: 1rem;
}

.services-table .svc-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--c-accent);
  width: 44px;
}

.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.svc-tag {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.6);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.06em;
}

.services-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--sp-lg);
  border-top: 1px solid rgba(255,255,255,0.08);
  gap: var(--sp-lg);
  flex-wrap: wrap;
}

.services-cta-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  line-height: 1.6;
}

/* ----------------------------------------------------------------
   EXPERIENCE TIMELINE
   ---------------------------------------------------------------- */
.timeline-section {
  background: var(--grad-light);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--c-primary) 0%, var(--c-bg-contrast) 100%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: var(--sp-xl);
  padding-bottom: clamp(36px, 4vw, 56px);
  position: relative;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-marker {
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 4px;
  flex-shrink: 0;
}

.timeline-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--c-bg-card);
  border: 2px solid var(--c-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: background var(--t-base), border-color var(--t-base);
  flex-shrink: 0;
}

.timeline-item:hover .timeline-dot {
  background: var(--c-primary);
}

.timeline-dot-num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--c-primary);
  transition: color var(--t-base);
}

.timeline-item:hover .timeline-dot-num { color: var(--c-white); }

.timeline-body {
  padding-top: 10px;
}

.timeline-step {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-accent2);
  display: block;
  margin-bottom: 8px;
}

.timeline-title {
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: var(--sp-sm);
  line-height: 1.3;
}

.timeline-desc {
  font-size: 0.95rem;
  color: var(--c-text-light);
  line-height: var(--lh-body);
  max-width: 600px;
}

/* ----------------------------------------------------------------
   SOCIAL PROOF
   ---------------------------------------------------------------- */
.social-proof {
  background: var(--c-bg);
}

.proof-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}

.proof-left .section-header { margin-bottom: var(--sp-xl); }

.testimonials-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
}

.testimonial-card {
  padding: var(--sp-xl);
  background: var(--c-bg-card);
  border: 1px solid rgba(191, 202, 198, 0.5);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--sp-md);
}

.star {
  width: 14px;
  height: 14px;
  fill: var(--c-accent);
}

.testimonial-text {
  font-size: 0.97rem;
  line-height: var(--lh-loose);
  color: var(--c-text-light);
  margin-bottom: var(--sp-md);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grad-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-alt);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--c-white);
  flex-shrink: 0;
}

.author-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--c-text);
}

.author-meta {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--c-text-muted);
  letter-spacing: 0.05em;
}

.proof-right {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xl);
}

.proof-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md);
}

.proof-stat {
  padding: var(--sp-lg);
  background: var(--c-bg-contrast);
  border-radius: var(--radius);
  text-align: center;
}

.proof-stat-num {
  font-family: var(--font-alt);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--c-primary);
  line-height: 1;
  display: block;
}

.proof-stat-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--c-text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 6px;
  display: block;
}

.trust-logos {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.trust-logos-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--c-text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-md);
  align-items: center;
}

.trust-logo {
  padding: 10px 18px;
  background: var(--c-bg-card);
  border: 1px solid rgba(191, 202, 198, 0.4);
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--c-text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.featured-case {
  padding: var(--sp-xl);
  background: var(--grad-green);
  border-radius: var(--radius);
  color: var(--c-white);
}

.featured-case-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: var(--sp-sm);
}

.featured-case-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--c-white);
  margin-bottom: var(--sp-sm);
}

.featured-case-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: var(--lh-body);
}

/* ----------------------------------------------------------------
   CTA BLOCK
   ---------------------------------------------------------------- */
.cta-block {
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E") repeat;
  z-index: 0;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-lg);
}

.cta-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-accent);
}

.cta-title {
  font-size: var(--fs-h1);
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 720px;
}

.cta-title em {
  font-style: normal;
  color: var(--c-accent);
}

.cta-desc {
  max-width: 500px;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  line-height: var(--lh-loose);
}

.cta-actions {
  display: flex;
  gap: var(--sp-md);
  flex-wrap: wrap;
  justify-content: center;
}

.cta-keyword-box {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  padding: var(--sp-md) var(--sp-xl);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  max-width: 640px;
  text-align: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  font-style: italic;
}

/* ----------------------------------------------------------------
   CONTACT SECTION
   ---------------------------------------------------------------- */
.contact-section {
  background: var(--c-bg);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xl);
}

.contact-info-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.2;
}

.contact-info-desc {
  font-size: 1rem;
  color: var(--c-text-light);
  line-height: var(--lh-body);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-md);
}

.contact-detail-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(63, 106, 116, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--c-primary);
  stroke-width: 1.8;
  fill: none;
}

.contact-detail-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--c-text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 3px;
}

.contact-detail-value {
  font-size: 0.97rem;
  color: var(--c-text);
  font-weight: 500;
}

.contact-form-wrap {
  background: var(--c-bg-card);
  border: 1px solid rgba(191, 202, 198, 0.4);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-md);
}

.form-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: var(--sp-lg);
}

.form-group {
  margin-bottom: var(--sp-md);
}

.form-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin-bottom: 8px;
  font-weight: 500;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--c-bg);
  border: 1.5px solid rgba(191, 202, 198, 0.6);
  border-radius: var(--radius-sm);
  color: var(--c-text);
  font-size: 0.97rem;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  outline: none;
  resize: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(63, 106, 116, 0.12);
}

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

/* ----------------------------------------------------------------
   PAGE HERO (inner pages)
   ---------------------------------------------------------------- */
.page-hero {
  padding: clamp(100px, 12vw, 160px) 0 clamp(60px, 8vw, 100px);
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--c-bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.page-hero-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--c-accent);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: var(--sp-md);
}

.page-hero-title {
  font-size: var(--fs-h1);
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-md);
  max-width: 680px;
}

.page-hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: var(--lh-loose);
  max-width: 520px;
}

/* ----------------------------------------------------------------
   FOOTER
   ---------------------------------------------------------------- */
.site-footer {
  background: var(--c-text);
  color: var(--c-white);
  padding-top: clamp(56px, 7vw, 96px);
  overflow-x: hidden;
  max-width: 100%;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(24px, 3vw, 48px);
  padding-bottom: clamp(40px, 5vw, 64px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.footer-brand .logo-name {
  color: var(--c-white);
}

.footer-brand .logo-tagline {
  color: rgba(255,255,255,0.35);
}

.footer-brand-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: var(--lh-body);
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: var(--sp-sm);
  margin-top: var(--sp-sm);
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast), transform var(--t-fast);
}

.footer-social-link:hover {
  background: var(--c-primary);
  transform: translateY(-2px);
}

.footer-social-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: rgba(255,255,255,0.6);
  stroke-width: 1.8;
}

.footer-social-link:hover svg { stroke: var(--c-white); }

.footer-col-title {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: var(--sp-md);
  font-weight: 400;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--t-fast), padding-left var(--t-fast);
}

.footer-link:hover {
  color: var(--c-white);
  padding-left: 6px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-lg) 0;
  gap: var(--sp-lg);
  flex-wrap: wrap;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
}

.footer-legal-links {
  display: flex;
  gap: var(--sp-lg);
  flex-wrap: wrap;
}

.footer-legal-link {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
  transition: color var(--t-fast);
}

.footer-legal-link:hover { color: rgba(255,255,255,0.65); }

/* ----------------------------------------------------------------
   LEGAL PAGES
   ---------------------------------------------------------------- */
.legal-content {
  padding: var(--section-pad) 0;
  background: var(--c-bg);
}

.legal-body {
  max-width: 780px;
  margin: 0 auto;
}

.legal-body h2 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--c-text);
  margin-top: var(--sp-2xl);
  margin-bottom: var(--sp-md);
  padding-bottom: var(--sp-sm);
  border-bottom: 1px solid var(--c-bg-contrast);
}

.legal-body h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--c-text);
  margin-top: var(--sp-xl);
  margin-bottom: var(--sp-sm);
}

.legal-body p {
  margin-bottom: var(--sp-md);
  font-size: 0.97rem;
  line-height: var(--lh-body);
  color: var(--c-text-light);
}

.legal-body ul, .legal-body ol {
  margin-bottom: var(--sp-md);
  padding-left: var(--sp-lg);
}

.legal-body ul { list-style: disc; }
.legal-body ol { list-style: decimal; }

.legal-body li {
  font-size: 0.97rem;
  color: var(--c-text-light);
  line-height: var(--lh-body);
  margin-bottom: 6px;
}

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

.legal-meta {
  display: flex;
  gap: var(--sp-lg);
  flex-wrap: wrap;
  padding: var(--sp-md) var(--sp-lg);
  background: var(--c-bg-contrast);
  border-radius: var(--radius-sm);
  margin-bottom: var(--sp-2xl);
}

.legal-meta-item {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--c-text-muted);
  letter-spacing: 0.06em;
}

/* ----------------------------------------------------------------
   CONTACT PAGE MAP
   ---------------------------------------------------------------- */
.map-wrap {
  width: 100%;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(191, 202, 198, 0.4);
  box-shadow: var(--shadow-md);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ----------------------------------------------------------------
   FAQ ACCORDION
   ---------------------------------------------------------------- */
.faq-section {
  background: var(--grad-light);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(191, 202, 198, 0.4);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-item {
  border-bottom: 1px solid rgba(191, 202, 198, 0.4);
  background: var(--c-bg-card);
}

.faq-item:last-child { border-bottom: none; }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
  padding: var(--sp-lg) var(--sp-xl);
  cursor: pointer;
  transition: background var(--t-fast);
  user-select: none;
}

.faq-question:hover { background: var(--c-bg); }

.faq-q-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-text);
  line-height: 1.4;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--c-bg-contrast);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--t-base), transform var(--t-base);
}

.faq-item.open .faq-icon {
  background: var(--c-primary);
  transform: rotate(45deg);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--c-text-muted);
  stroke-width: 2;
  fill: none;
  transition: stroke var(--t-fast);
}

.faq-item.open .faq-icon svg { stroke: var(--c-white); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-a-text {
  padding: 0 var(--sp-xl) var(--sp-lg);
  font-size: 0.97rem;
  color: var(--c-text-light);
  line-height: var(--lh-body);
}

/* ----------------------------------------------------------------
   SCROLL REVEAL ANIMATIONS
   ---------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ----------------------------------------------------------------
   THANK YOU PAGE
   ---------------------------------------------------------------- */
.thankyou-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--grad-light);
  text-align: center;
  padding: var(--sp-2xl) clamp(20px, 4vw, 60px);
}

.thankyou-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--grad-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-xl);
  box-shadow: var(--shadow-accent);
  animation: pop-in 0.6s var(--t-spring) forwards;
}

@keyframes pop-in {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.thankyou-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--c-text);
  stroke-width: 2.5;
  fill: none;
}

.thankyou-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: var(--sp-md);
  display: block;
}

.thankyou-title {
  font-size: var(--fs-h1);
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: -0.025em;
  margin-bottom: var(--sp-lg);
}

.thankyou-desc {
  font-size: 1.1rem;
  color: var(--c-text-light);
  line-height: var(--lh-loose);
  max-width: 480px;
  margin: 0 auto var(--sp-2xl);
}

/* ----------------------------------------------------------------
   RESPONSIVE — TABLET
   ---------------------------------------------------------------- */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-xl);
  }

  .vp-editorial {
    grid-template-columns: 1fr;
    gap: var(--sp-2xl);
  }

  .insight-inner {
    grid-template-columns: 1fr;
    gap: var(--sp-xl);
  }

  .insight-sidebar { position: static; }

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

  .showcase-card.featured { grid-row: span 1; }

  .showcase-card.featured .showcase-img {
    min-height: unset;
    height: auto;
  }

  .proof-layout {
    grid-template-columns: 1fr;
    gap: var(--sp-xl);
  }
}

/* ----------------------------------------------------------------
   RESPONSIVE — MOBILE
   ---------------------------------------------------------------- */
@media (max-width: 768px) {
  .main-nav { display: none; }
  .burger { display: flex; }
  .mobile-menu { display: flex; }

  .hero-stats {
    display: none;
  }

  .header-inner { height: 64px; }

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

  .showcase-card.featured .showcase-img {
    min-height: unset;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: var(--sp-xl);
  }

  .services-table {
    display: block;
    overflow-x: auto;
  }

  .timeline::before { left: 20px; }

  .timeline-item {
    grid-template-columns: 48px 1fr;
    gap: var(--sp-lg);
  }

  .timeline-dot {
    width: 40px;
    height: 40px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--sp-xl);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-md);
  }

  .footer-legal-links {
    flex-direction: column;
    gap: var(--sp-sm);
  }

  .vp-stat-row {
    flex-direction: column;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .cta-actions .btn {
    width: 100%;
    max-width: 340px;
  }

  .services-cta-row {
    flex-direction: column;
  }

  .proof-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-scroll { display: none; }
}

@media (max-width: 480px) {
  .proof-stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ----------------------------------------------------------------
   OVERFLOW SAFETY NET (CRITICAL)
   ---------------------------------------------------------------- */
html, body {
  overflow-x: hidden !important;
  max-width: 100vw;
}
