/* ============================================
   FLOWER HORIZON - Main Stylesheet
   CSS Custom Properties & Design System
   ============================================ */

:root {
  --c-ink: #0f0e17;
  --c-ink-soft: #2a2840;
  --c-ink-muted: #4a4868;
  --c-cream: #f8f6f2;
  --c-cream-dark: #ede9e0;
  --c-primary: #6c47ff;
  --c-primary-light: #8b6fff;
  --c-primary-dark: #4f2ee8;
  --c-accent: #ff6b35;
  --c-accent-soft: #ff8c5a;
  --c-lime: #b8ff57;
  --c-lime-dark: #9de040;
  --c-surface: #ffffff;
  --c-glass: rgba(255,255,255,0.08);
  --c-glass-border: rgba(255,255,255,0.15);

  --shadow-xs: 0 1px 3px rgba(15,14,23,0.06);
  --shadow-sm: 0 2px 8px rgba(15,14,23,0.08), 0 1px 2px rgba(15,14,23,0.06);
  --shadow-md: 0 8px 24px rgba(15,14,23,0.12), 0 2px 8px rgba(15,14,23,0.08);
  --shadow-lg: 0 20px 60px rgba(15,14,23,0.18), 0 8px 20px rgba(15,14,23,0.10);
  --shadow-xl: 0 32px 80px rgba(15,14,23,0.22), 0 12px 30px rgba(15,14,23,0.14);
  --shadow-primary: 0 8px 24px rgba(108,71,255,0.3), 0 2px 8px rgba(108,71,255,0.2);
  --shadow-accent: 0 8px 24px rgba(255,107,53,0.3);

  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 40px;
  --r-full: 9999px;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 5rem;
  --space-3xl: 8rem;

  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ============================================
   RESET & BASE
   ============================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: 'Sora', sans-serif;
  background: var(--c-cream);
  color: var(--c-ink);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ============================================
   KINETIC TYPOGRAPHY ANIMATIONS
   ============================================ */

@keyframes weightShift {
  0%, 100% { font-weight: 800; letter-spacing: -0.03em; }
  50% { font-weight: 300; letter-spacing: 0.02em; }
}

@keyframes colorCycle {
  0% { color: #ffffff; }
  25% { color: var(--c-lime); }
  50% { color: var(--c-accent-soft); }
  75% { color: var(--c-primary-light); }
  100% { color: #ffffff; }
}

@keyframes colorCycleAlt {
  0% { color: var(--c-primary-light); }
  33% { color: var(--c-accent); }
  66% { color: var(--c-lime-dark); }
  100% { color: var(--c-primary-light); }
}

@keyframes letterBreath {
  0%, 100% { letter-spacing: -0.04em; }
  50% { letter-spacing: 0.04em; }
}

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

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(108,71,255,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(108,71,255,0); }
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

@keyframes scrollLineGrow {
  0% { height: 0; }
  100% { height: 60px; }
}

@keyframes envelopeOpen {
  0% { transform: rotateX(0deg); }
  100% { transform: rotateX(-160deg); }
}

@keyframes letterRise {
  0% { transform: translateY(30px); opacity: 0; }
  60% { opacity: 1; }
  100% { transform: translateY(-20px); opacity: 1; }
}

@keyframes thanksAppear {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.s-hero__word--animate-1 {
  display: inline-block;
  animation: colorCycle 8s ease-in-out infinite;
}

.s-hero__word--animate-2 {
  display: inline-block;
  animation: letterBreath 6s ease-in-out infinite;
  color: var(--c-lime);
}

.s-hero__word--animate-3 {
  display: inline-block;
  animation: colorCycleAlt 10s ease-in-out infinite;
}

.s-hero__word--static {
  color: rgba(255,255,255,0.6);
}

/* ============================================
   NAVIGATION
   ============================================ */

.c-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition-slow), box-shadow var(--transition-slow), padding var(--transition-slow);
}

.c-nav.is-scrolled {
  background: rgba(248,246,242,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
  padding: 0.85rem 2rem;
}

.c-nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  z-index: 1001;
  transition: opacity var(--transition-base);
}

.c-nav__logo:hover {
  opacity: 0.85;
}

.c-nav__logo-img {
  width: 36px;
  height: 36px;
  transition: transform var(--transition-base);
}

.c-nav__logo:hover .c-nav__logo-img {
  transform: rotate(-5deg);
}

.c-nav__logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-cream);
  letter-spacing: -0.02em;
  transition: color var(--transition-base);
}

.c-nav.is-scrolled .c-nav__logo-text {
  color: var(--c-ink);
}

.c-nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.c-nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(248,246,242,0.85);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color var(--transition-base);
  position: relative;
}

.c-nav.is-scrolled .c-nav__links a {
  color: var(--c-ink-soft);
}

.c-nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-primary);
  transition: width var(--transition-base);
  border-radius: 2px;
}

.c-nav__links a:hover {
  color: var(--c-primary-light);
}

.c-nav.is-scrolled .c-nav__links a:hover {
  color: var(--c-primary);
}

.c-nav__links a:hover::after {
  width: 100%;
}

.c-nav__cta {
  background: var(--c-primary);
  color: #fff !important;
  padding: 0.6rem 1.4rem;
  border-radius: var(--r-full);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--transition-base), transform 0.2s ease, box-shadow var(--transition-base);
  box-shadow: var(--shadow-primary);
  white-space: nowrap;
}

.c-nav__cta:hover {
  background: var(--c-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(108,71,255,0.4);
}

.c-nav__cta::after {
  display: none !important;
}

.c-nav__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
}

.c-nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(248,246,242,0.9);
  margin: 5px 0;
  transition: all var(--transition-base);
  border-radius: 2px;
}

.c-nav.is-scrolled .c-nav__hamburger span {
  background: var(--c-ink);
}

/* ============================================
   MOBILE MENU (FLIP CARD)
   ============================================ */

.c-mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  perspective: 1000px;
}

.c-mobile-menu__inner {
  position: relative;
  width: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: top center;
}

.c-mobile-menu__inner.is-flipped {
  transform: rotateX(-180deg);
}

.c-mobile-menu__front,
.c-mobile-menu__back {
  width: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.c-mobile-menu__front {
  background: var(--c-ink);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.c-mobile-menu__front-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.c-mobile-menu__brand {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-cream);
}

.c-mobile-menu__close {
  background: none;
  border: none;
  color: var(--c-cream);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-base);
}

.c-mobile-menu__close:hover {
  color: var(--c-primary-light);
}

.c-mobile-menu__back {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--c-ink);
  padding: 1.5rem;
  transform: rotateX(180deg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.c-mobile-menu__close-back {
  background: none;
  border: none;
  color: rgba(248,246,242,0.6);
  font-size: 0.875rem;
  cursor: pointer;
  padding: 8px 0;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color var(--transition-base);
}

.c-mobile-menu__close-back:hover {
  color: var(--c-cream);
}

.c-mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 1rem;
}

.c-mobile-menu__nav a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-cream);
  text-decoration: none;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition-base), padding-left var(--transition-base);
  letter-spacing: -0.02em;
}

.c-mobile-menu__nav a:hover {
  color: var(--c-primary-light);
  padding-left: 0.5rem;
}

.c-mobile-menu__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-primary);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: var(--r-full);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 1.5rem;
  transition: background var(--transition-base), transform 0.2s ease;
  min-height: 52px;
}

.c-mobile-menu__cta:hover {
  background: var(--c-primary-light);
  transform: translateY(-2px);
}

/* ============================================
   BUTTONS
   ============================================ */

.c-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--r-full);
  font-family: 'Sora', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  letter-spacing: 0.01em;
  white-space: nowrap;
  min-height: 50px;
}

.c-btn--primary {
  background: var(--c-primary);
  color: #fff;
  box-shadow: var(--shadow-primary);
}

.c-btn--primary:hover {
  background: var(--c-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(108,71,255,0.45);
}

.c-btn--ghost {
  background: transparent;
  color: rgba(248,246,242,0.8);
  border: 1.5px solid rgba(248,246,242,0.3);
}

.c-btn--ghost:hover {
  background: rgba(248,246,242,0.1);
  color: var(--c-cream);
  border-color: rgba(248,246,242,0.6);
  transform: translateY(-2px);
}

.c-btn--ghost-dark {
  background: transparent;
  color: var(--c-cream);
  border: 1.5px solid rgba(248,246,242,0.4);
}

.c-btn--ghost-dark:hover {
  background: rgba(248,246,242,0.15);
  border-color: var(--c-cream);
  transform: translateY(-2px);
}

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

.c-btn--outline:hover {
  background: var(--c-primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
}

.c-btn--accent {
  background: var(--c-accent);
  color: #fff;
  box-shadow: var(--shadow-accent);
}

.c-btn--accent:hover {
  background: var(--c-accent-soft);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255,107,53,0.45);
}

.c-btn--full {
  width: 100%;
  justify-content: center;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.u-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-primary);
  background: rgba(108,71,255,0.1);
  padding: 0.35rem 0.875rem;
  border-radius: var(--r-full);
  margin-bottom: 1rem;
}

.u-label--light {
  color: var(--c-lime);
  background: rgba(184,255,87,0.15);
}

.u-em {
  font-style: italic;
  color: var(--c-primary);
  font-weight: 700;
}

.u-hidden-mobile {
  display: inline-flex;
}

.u-text-center {
  text-align: center;
}

/* ============================================
   HERO SECTION
   ============================================ */

.s-hero {
  min-height: 100vh;
  background: var(--c-ink);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 7rem 5% 4rem;
  gap: 3rem;
}

.s-hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(108,71,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108,71,255,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

.s-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  animation: orbFloat 12s ease-in-out infinite;
}

.s-hero__orb--1 {
  width: 500px;
  height: 500px;
  background: rgba(108,71,255,0.25);
  top: -150px;
  right: -100px;
  animation-delay: 0s;
}

.s-hero__orb--2 {
  width: 350px;
  height: 350px;
  background: rgba(255,107,53,0.15);
  bottom: -100px;
  left: 10%;
  animation-delay: 4s;
}

.s-hero__orb--3 {
  width: 250px;
  height: 250px;
  background: rgba(184,255,87,0.1);
  top: 40%;
  left: 40%;
  animation-delay: 8s;
}

.s-hero__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.s-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(248,246,242,0.6);
  margin-bottom: 1.5rem;
}

.s-hero__label-dot {
  width: 8px;
  height: 8px;
  background: var(--c-lime);
  border-radius: 50%;
  animation: pulseGlow 2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(184,255,87,0.5);
}

.s-hero__title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--c-cream);
  margin-bottom: 1.5rem;
}

.s-hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: rgba(248,246,242,0.65);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 480px;
  font-weight: 400;
}

.s-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.s-hero__visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
}

.s-hero__img-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.s-hero__img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,0.05);
  filter: brightness(0.9) saturate(1.1);
}

.s-hero__img-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--c-surface);
  border-radius: var(--r-lg);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-lg);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c-ink);
  line-height: 1.3;
}

.s-hero__img-badge i {
  font-size: 1.5rem;
  color: var(--c-primary);
}

.s-hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(248,246,242,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 1;
}

.s-hero__scroll-line {
  width: 1px;
  background: linear-gradient(to bottom, rgba(248,246,242,0.4), transparent);
  animation: scrollLineGrow 1.5s ease-out forwards;
}

/* ============================================
   INTRO SECTION
   ============================================ */

.s-intro {
  padding: var(--space-3xl) 5%;
  background: var(--c-cream);
}

.s-intro__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 5rem;
  align-items: center;
}

.s-intro__img-stack {
  position: relative;
}

.s-intro__img-main {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
}

.s-intro__img-card {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--c-primary);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-primary);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.3;
}

.s-intro__img-card i {
  font-size: 1.25rem;
}

.s-intro__title {
  font-size: clamp(1.875rem, 3vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--c-ink);
  margin-bottom: 1.5rem;
}

.s-intro__right p {
  color: var(--c-ink-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.s-intro__right .c-btn {
  margin-top: 1rem;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.s-services {
  padding: var(--space-3xl) 5%;
  background: var(--c-ink);
  position: relative;
  overflow: hidden;
}

.s-services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(108,71,255,0.5), transparent);
}

.s-services__container {
  max-width: 1200px;
  margin: 0 auto;
}

.s-services__header {
  max-width: 600px;
  margin-bottom: 4rem;
}

.s-services__title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--c-cream);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.s-services__desc {
  color: rgba(248,246,242,0.6);
  font-size: 1rem;
  line-height: 1.75;
}

.s-services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.c-service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 2rem 1.5rem;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.c-service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(108,71,255,0.05), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.c-service-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(108,71,255,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(108,71,255,0.2);
}

.c-service-card:hover::before {
  opacity: 1;
}

.c-service-card--featured {
  background: linear-gradient(135deg, rgba(108,71,255,0.2), rgba(108,71,255,0.08));
  border-color: rgba(108,71,255,0.4);
}

.c-service-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(108,71,255,0.2);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
  color: var(--c-primary-light);
  transition: all var(--transition-base);
}

.c-service-card:hover .c-service-card__icon {
  background: var(--c-primary);
  color: #fff;
  transform: scale(1.05);
}

.c-service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-cream);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.c-service-card p {
  font-size: 0.875rem;
  color: rgba(248,246,242,0.55);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.c-service-card__link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--c-primary-light);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition-base), color var(--transition-base);
}

.c-service-card__link:hover {
  gap: 0.75rem;
  color: var(--c-lime);
}

/* ============================================
   TABS SECTION
   ============================================ */

.s-tabs {
  padding: var(--space-3xl) 5%;
  background: var(--c-cream);
}

.s-tabs__container {
  max-width: 1200px;
  margin: 0 auto;
}

.s-tabs__header {
  margin-bottom: 3rem;
  max-width: 500px;
}

.s-tabs__title {
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--c-ink);
  line-height: 1.2;
}

.s-tabs__nav {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 3rem;
  border-bottom: 2px solid var(--c-cream-dark);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.s-tabs__nav::-webkit-scrollbar {
  display: none;
}

.c-tab-btn {
  padding: 0.875rem 1.5rem;
  background: none;
  border: none;
  font-family: 'Sora', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-ink-muted);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  transition: color var(--transition-base);
  min-height: 50px;
}

.c-tab-btn::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--c-primary);
  transform: scaleX(0);
  transition: transform var(--transition-base);
  border-radius: 2px;
}

.c-tab-btn.is-active {
  color: var(--c-primary);
}

.c-tab-btn.is-active::after {
  transform: scaleX(1);
}

.c-tab-btn:hover {
  color: var(--c-primary);
}

.c-tab-panel {
  display: none;
  animation: fadeSlideUp 0.4s ease;
}

.c-tab-panel.is-active {
  display: block;
}

.c-tab-panel__content {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: 4rem;
  align-items: center;
}

.c-tab-panel__text h3 {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--c-ink);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.c-tab-panel__text p {
  color: var(--c-ink-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}

.c-tab-panel__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.c-tab-panel__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-ink-soft);
}

.c-tab-panel__list li i {
  color: var(--c-primary);
  font-size: 0.8rem;
  width: 20px;
  height: 20px;
  background: rgba(108,71,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.c-tab-panel__img {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.c-tab-panel__img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.c-tab-panel__img:hover img {
  transform: scale(1.03);
}

/* ============================================
   CHECKLIST SECTION
   ============================================ */

.s-checklist {
  padding: var(--space-3xl) 5%;
  background: linear-gradient(135deg, var(--c-ink) 0%, #1a1730 100%);
  position: relative;
  overflow: hidden;
}

.s-checklist::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(108,71,255,0.15) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}

.s-checklist__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 4fr 7fr;
  gap: 5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.s-checklist__title {
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--c-cream);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.s-checklist__left p {
  color: rgba(248,246,242,0.6);
  font-size: 0.9375rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.s-checklist__img {
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  height: 240px;
  object-fit: cover;
}

.c-checklist {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.c-checklist__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-md);
  transition: all var(--transition-base);
  backdrop-filter: blur(4px);
}

.c-checklist__item:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(108,71,255,0.3);
  transform: translateX(4px);
}

.c-checklist__mark {
  width: 28px;
  height: 28px;
  background: var(--c-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #fff;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 4px 12px rgba(108,71,255,0.4);
}

.c-checklist__text strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--c-cream);
  margin-bottom: 0.25rem;
}

.c-checklist__text span {
  font-size: 0.8125rem;
  color: rgba(248,246,242,0.5);
  line-height: 1.5;
}

/* ============================================
   WHY SECTION
   ============================================ */

.s-why {
  padding: var(--space-3xl) 5%;
  background: var(--c-cream);
}

.s-why__container {
  max-width: 1200px;
  margin: 0 auto;
}

.s-why__header {
  margin-bottom: 3.5rem;
  max-width: 500px;
}

.s-why__title {
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--c-ink);
  line-height: 1.2;
}

.s-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.c-why-card {
  background: var(--c-surface);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.c-why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.c-why-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.c-why-card:hover .c-why-card__img {
  transform: scale(1.04);
}

.c-why-card__body {
  padding: 1.75rem;
}

.c-why-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.c-why-card p {
  font-size: 0.875rem;
  color: var(--c-ink-muted);
  line-height: 1.7;
}

.c-why-card--dark {
  background: var(--c-ink);
}

.c-why-card--dark h3 {
  color: var(--c-cream);
}

.c-why-card--dark p {
  color: rgba(248,246,242,0.6);
}

.c-why-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.c-why-card__tags span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--c-primary-light);
  background: rgba(108,71,255,0.15);
  padding: 0.3rem 0.75rem;
  border-radius: var(--r-full);
  border: 1px solid rgba(108,71,255,0.2);
}

/* ============================================
   CTA BAND
   ============================================ */

.s-cta-band {
  padding: 5rem 5%;
  background: linear-gradient(135deg, var(--c-primary-dark), var(--c-primary));
  position: relative;
  overflow: hidden;
}

.s-cta-band::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  top: -200px;
  right: -100px;
}

.s-cta-band::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  bottom: -150px;
  left: 5%;
}

.s-cta-band__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.s-cta-band__text h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.s-cta-band__text p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
}

.s-cta-band__actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

/* ============================================
   FOOTER
   ============================================ */

.c-footer {
  background: var(--c-ink);
  color: var(--c-cream);
}

.c-footer__top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 5% 3rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
}

.c-footer__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  margin-bottom: 1.25rem;
  transition: opacity var(--transition-base);
}

.c-footer__logo:hover {
  opacity: 0.8;
}

.c-footer__logo span {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-cream);
}

.c-footer__tagline {
  font-size: 0.875rem;
  color: rgba(248,246,242,0.5);
  line-height: 1.65;
  max-width: 280px;
}

.c-footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.c-footer__nav-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(248,246,242,0.4);
  margin-bottom: 1.25rem;
}

.c-footer__nav-col a,
.c-footer__nav-col span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(248,246,242,0.65);
  text-decoration: none;
  margin-bottom: 0.75rem;
  transition: color var(--transition-base), gap var(--transition-base);
  cursor: pointer;
}

.c-footer__nav-col a:hover {
  color: var(--c-cream);
  gap: 0.75rem;
}

.c-footer__nav-col a i {
  font-size: 0.75rem;
  color: var(--c-primary-light);
  width: 16px;
  flex-shrink: 0;
}

.c-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 5%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.c-footer__bottom p {
  font-size: 0.8125rem;
  color: rgba(248,246,242,0.35);
}

/* ============================================
   PAGE HEADERS
   ============================================ */

.s-page-header {
  padding: 9rem 5% 5rem;
  position: relative;
  overflow: hidden;
}

.s-page-header--dark {
  background: var(--c-ink);
}

.s-page-header--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(108,71,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108,71,255,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}

.s-page-header::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(108,71,255,0.2) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}

.s-page-header__container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.s-page-header__content {
  max-width: 640px;
}

.s-page-header__title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--c-cream);
  margin-bottom: 1.25rem;
}

.s-page-header__content p {
  font-size: 1.0625rem;
  color: rgba(248,246,242,0.65);
  line-height: 1.7;
  max-width: 520px;
}

/* ============================================
   PORTFOLIO PAGE
   ============================================ */

.s-portfolio-intro {
  padding: 3rem 5%;
  background: var(--c-cream);
}

.s-portfolio-intro__container {
  max-width: 1200px;
  margin: 0 auto;
}

.s-portfolio-intro__lead {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--c-ink-muted);
  line-height: 1.75;
  max-width: 700px;
  border-left: 4px solid var(--c-primary);
  padding-left: 1.5rem;
}

.s-portfolio-grid {
  padding: 2rem 5% var(--space-3xl);
  background: var(--c-cream);
}

.s-portfolio-grid__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.c-portfolio-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--c-surface);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition-base);
}

.c-portfolio-item:hover {
  box-shadow: var(--shadow-xl);
}

.c-portfolio-item--reverse {
  direction: rtl;
}

.c-portfolio-item--reverse > * {
  direction: ltr;
}

.c-portfolio-item__img {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 360px;
}

.c-portfolio-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.c-portfolio-item:hover .c-portfolio-item__img img {
  transform: scale(1.04);
}

.c-portfolio-item__tag {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: var(--c-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.875rem;
  border-radius: var(--r-full);
}

.c-portfolio-item__body {
  padding: 2.5rem;
}

.c-portfolio-item__body h3 {
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--c-ink);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.c-portfolio-item__body > p {
  color: var(--c-ink-muted);
  font-size: 0.9375rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.c-portfolio-item__approach h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: 0.75rem;
}

.c-portfolio-item__approach ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.c-portfolio-item__approach li {
  font-size: 0.875rem;
  color: var(--c-ink-soft);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}

.c-portfolio-item__approach li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--c-primary);
  font-size: 0.8rem;
}

.c-portfolio-item__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.c-portfolio-item__tags span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--c-primary);
  background: rgba(108,71,255,0.08);
  padding: 0.3rem 0.75rem;
  border-radius: var(--r-full);
  border: 1px solid rgba(108,71,255,0.15);
  transition: all var(--transition-base);
}

.c-portfolio-item__tags span:hover {
  background: var(--c-primary);
  color: #fff;
}

.s-domains {
  padding: var(--space-3xl) 5%;
  background: var(--c-ink);
}

.s-domains__container {
  max-width: 1200px;
  margin: 0 auto;
}

.s-domains__header {
  margin-bottom: 2.5rem;
}

.s-domains__header h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--c-cream);
  letter-spacing: -0.02em;
  margin-top: 0.5rem;
}

.s-domains__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.c-domain-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-full);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(248,246,242,0.75);
  transition: all var(--transition-base);
  cursor: default;
}

.c-domain-tag i {
  color: var(--c-primary-light);
  font-size: 0.875rem;
}

.c-domain-tag:hover {
  background: rgba(108,71,255,0.15);
  border-color: rgba(108,71,255,0.4);
  color: var(--c-cream);
  transform: translateY(-2px);
}

/* ============================================
   RESULTS PAGE
   ============================================ */

.s-expectations-intro {
  padding: 4rem 5%;
  background: var(--c-cream);
}

.s-expectations-intro__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.s-expectations-intro__left h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--c-ink);
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.s-expectations-intro__left p {
  color: var(--c-ink-muted);
  font-size: 0.9375rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.c-expectation-box {
  border-radius: var(--r-lg);
  padding: 1.75rem;
  margin-bottom: 1rem;
}

.c-expectation-box--realistic {
  background: rgba(108,71,255,0.06);
  border: 1px solid rgba(108,71,255,0.15);
}

.c-expectation-box--unrealistic {
  background: rgba(255,107,53,0.06);
  border: 1px solid rgba(255,107,53,0.15);
}

.c-expectation-box h3 {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.c-expectation-box--realistic h3 {
  color: var(--c-primary);
}

.c-expectation-box--realistic h3 i {
  color: #22c55e;
}

.c-expectation-box--unrealistic h3 {
  color: var(--c-accent);
}

.c-expectation-box--unrealistic h3 i {
  color: var(--c-accent);
}

.c-expectation-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.c-expectation-box li {
  font-size: 0.875rem;
  color: var(--c-ink-soft);
  padding-left: 1rem;
  position: relative;
  line-height: 1.5;
}

.c-expectation-box li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--c-ink-muted);
}

.s-timeline {
  padding: var(--space-3xl) 5%;
  background: var(--c-ink);
}

.s-timeline__container {
  max-width: 1200px;
  margin: 0 auto;
}

.s-timeline__header {
  max-width: 600px;
  margin-bottom: 4rem;
}

.s-timeline__header h2 {
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--c-cream);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.s-timeline__header p {
  color: rgba(248,246,242,0.6);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.s-timeline__track {
  position: relative;
  padding-left: 3rem;
}

.s-timeline__track::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--c-primary), rgba(108,71,255,0.1));
}

.c-timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: start;
}

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

.c-timeline-item__marker {
  position: absolute;
  left: -3rem;
  top: 0;
  width: 32px;
  height: 32px;
  background: var(--c-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 4px rgba(108,71,255,0.15), var(--shadow-primary);
}

.c-timeline-item__marker span {
  font-size: 0.7rem;
  font-weight: 800;
  color: #fff;
}

.c-timeline-item__period {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-primary-light);
  margin-bottom: 0.5rem;
}

.c-timeline-item__content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--c-cream);
  margin-bottom: 0.625rem;
  line-height: 1.3;
}

.c-timeline-item__content p {
  font-size: 0.875rem;
  color: rgba(248,246,242,0.6);
  line-height: 1.7;
}

.s-factors {
  padding: var(--space-3xl) 5%;
  background: var(--c-cream);
}

.s-factors__container {
  max-width: 1200px;
  margin: 0 auto;
}

.s-factors__header {
  margin-bottom: 3rem;
  max-width: 500px;
}

.s-factors__header h2 {
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--c-ink);
  margin-top: 0.5rem;
  line-height: 1.2;
}

.s-factors__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.c-factor-card {
  background: var(--c-surface);
  border-radius: var(--r-xl);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.c-factor-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.c-factor-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.c-factor-card__icon--positive {
  background: rgba(34,197,94,0.1);
  color: #16a34a;
}

.c-factor-card__icon--neutral {
  background: rgba(108,71,255,0.1);
  color: var(--c-primary);
}

.c-factor-card__icon--caution {
  background: rgba(245,158,11,0.1);
  color: #d97706;
}

.c-factor-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.c-factor-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.c-factor-card li {
  font-size: 0.875rem;
  color: var(--c-ink-muted);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}

.c-factor-card li::before {
  content: '→';
  position: absolute;
  left: 0;
  font-size: 0.75rem;
  color: var(--c-ink-muted);
}

/* ============================================
   LOCATION PAGE
   ============================================ */

.s-location {
  padding: var(--space-3xl) 5%;
  background: var(--c-cream);
}

.s-location__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 4rem;
  align-items: start;
}

.c-location-info {
  background: var(--c-surface);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  margin-bottom: 1.5rem;
}

.c-location-info h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--c-ink);
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
}

.c-location-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--c-cream-dark);
}

.c-location-detail:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.c-location-detail__icon {
  width: 40px;
  height: 40px;
  background: rgba(108,71,255,0.1);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
  font-size: 0.875rem;
  flex-shrink: 0;
}

.c-location-detail strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-ink-muted);
  margin-bottom: 0.25rem;
}

.c-location-detail p,
.c-location-detail a {
  font-size: 0.9375rem;
  color: var(--c-ink);
  text-decoration: none;
  line-height: 1.5;
  transition: color var(--transition-base);
}

.c-location-detail a:hover {
  color: var(--c-primary);
}

.c-location-transport {
  background: var(--c-surface);
  border-radius: var(--r-xl);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.c-location-transport h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: 1.25rem;
}

.c-transport-item {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--c-ink-muted);
  line-height: 1.5;
}

.c-transport-item:last-child {
  margin-bottom: 0;
}

.c-transport-item i {
  color: var(--c-primary);
  margin-top: 2px;
  flex-shrink: 0;
  width: 16px;
}

.c-map-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--c-cream-dark);
}

.c-map-wrap iframe {
  display: block;
}

.s-office-photos {
  padding: 0 5% var(--space-3xl);
  background: var(--c-cream);
}

.s-office-photos__container {
  max-width: 1200px;
  margin: 0 auto;
}

.s-office-photos__header {
  margin-bottom: 2.5rem;
}

.s-office-photos__header h2 {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--c-ink);
  margin-bottom: 0.75rem;
  margin-top: 0.5rem;
}

.s-office-photos__header p {
  color: var(--c-ink-muted);
  font-size: 0.9375rem;
}

.s-office-photos__grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 1.5rem;
}

.c-office-photo {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.c-office-photo img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.c-office-photo--tall img {
  height: 300px;
}

.c-office-photo:hover img {
  transform: scale(1.04);
}

.s-online-option {
  padding: 4rem 5%;
  background: var(--c-ink);
}

.s-online-option__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-xl);
  padding: 2.5rem 3rem;
}

.s-online-option__icon {
  font-size: 2.5rem;
  color: var(--c-primary-light);
  flex-shrink: 0;
}

.s-online-option__text {
  flex: 1;
}

.s-online-option__text h2 {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--c-cream);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.s-online-option__text p {
  font-size: 0.9375rem;
  color: rgba(248,246,242,0.6);
  line-height: 1.65;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.s-contact {
  padding: var(--space-3xl) 5%;
  background: var(--c-cream);
}

.s-contact__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: 4rem;
  align-items: start;
}

.c-contact-form-card {
  background: var(--c-surface);
  border-radius: var(--r-xl);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}

.c-contact-form-card h2 {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--c-ink);
  margin-bottom: 0.5rem;
}

.c-contact-form-card > p {
  color: var(--c-ink-muted);
  font-size: 0.9375rem;
  margin-bottom: 2rem;
}

.c-form__group {
  margin-bottom: 1.25rem;
}

.c-form__label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--c-ink);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.c-form__input,
.c-form__textarea {
  width: 100%;
  padding: 0.875rem 1.125rem;
  background: var(--c-cream);
  border: 1.5px solid var(--c-cream-dark);
  border-radius: var(--r-md);
  font-family: 'Sora', sans-serif;
  font-size: 0.9375rem;
  color: var(--c-ink);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  outline: none;
  resize: vertical;
}

.c-form__input:focus,
.c-form__textarea:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(108,71,255,0.1);
}

.c-form__input::placeholder,
.c-form__textarea::placeholder {
  color: var(--c-ink-muted);
  opacity: 0.6;
}

.c-form__group--checkbox {
  margin-top: 0.5rem;
}

.c-form__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--c-ink-muted);
  line-height: 1.5;
}

.c-form__checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--c-primary);
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}

.c-form__checkbox-label a {
  color: var(--c-primary);
  text-decoration: underline;
  transition: color var(--transition-base);
}

.c-form__checkbox-label a:hover {
  color: var(--c-primary-dark);
}

.c-contact-info-card {
  background: var(--c-ink);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  margin-bottom: 1.5rem;
}

.c-contact-info-card h2 {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--c-cream);
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.c-contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.c-contact-info-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.c-contact-info-item__icon {
  width: 38px;
  height: 38px;
  background: rgba(108,71,255,0.2);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary
-light);
  font-size: 0.875rem;
  flex-shrink: 0;
}

.c-contact-info-item strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(248,246,242,0.4);
  margin-bottom: 0.25rem;
}

.c-contact-info-item p,
.c-contact-info-item a {
  font-size: 0.9375rem;
  color: rgba(248,246,242,0.85);
  text-decoration: none;
  line-height: 1.5;
  transition: color var(--transition-base);
}

.c-contact-info-item a:hover {
  color: var(--c-primary-light);
}

.c-urgent-contact {
  background: linear-gradient(135deg, rgba(255,107,53,0.12), rgba(255,107,53,0.06));
  border: 1px solid rgba(255,107,53,0.25);
  border-radius: var(--r-xl);
  padding: 2rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.c-urgent-contact__icon {
  font-size: 1.5rem;
  color: var(--c-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.c-urgent-contact__content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: 0.5rem;
}

.c-urgent-contact__content p {
  font-size: 0.875rem;
  color: var(--c-ink-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.s-contact-map {
  background: var(--c-cream);
  padding: 0 5% var(--space-3xl);
}

.s-contact-map__container {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* ============================================
   THANKS PAGE
   ============================================ */

.s-thanks {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 5% 5rem;
}

.s-thanks__container {
  max-width: 560px;
  text-align: center;
}

.c-envelope-anim {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
  perspective: 600px;
}

.c-envelope {
  position: relative;
  width: 120px;
  height: 80px;
}

.c-envelope__body {
  position: absolute;
  inset: 0;
  background: var(--c-primary);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-primary);
}

.c-envelope__flap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: var(--c-primary-light);
  border-radius: var(--r-md) var(--r-md) 0 0;
  transform-origin: top center;
  animation: envelopeOpen 0.8s ease-out 0.5s forwards;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  z-index: 2;
}

.c-envelope__letter {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  background: var(--c-cream);
  border-radius: var(--r-sm);
  padding: 0.75rem 0.75rem 0.5rem;
  animation: letterRise 0.7s ease-out 1.2s both;
  z-index: 3;
  box-shadow: var(--shadow-md);
}

.c-envelope__letter-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.c-envelope__letter-lines span {
  display: block;
  height: 3px;
  background: var(--c-cream-dark);
  border-radius: 2px;
}

.c-envelope__letter-lines span:nth-child(2) {
  width: 70%;
}

.c-envelope__letter-lines span:nth-child(3) {
  width: 50%;
}

.s-thanks__title {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--c-ink);
  margin-bottom: 1rem;
  animation: thanksAppear 0.6s ease-out 1.8s both;
  line-height: 1.15;
}

.s-thanks__text {
  font-size: 1.0625rem;
  color: var(--c-ink-muted);
  line-height: 1.75;
  margin-bottom: 0.75rem;
  animation: thanksAppear 0.6s ease-out 2s both;
}

.s-thanks__sub {
  font-size: 0.9375rem;
  color: var(--c-ink-muted);
  opacity: 0.7;
  line-height: 1.65;
  margin-bottom: 2.5rem;
  animation: thanksAppear 0.6s ease-out 2.1s both;
}

.s-thanks__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: thanksAppear 0.6s ease-out 2.3s both;
}

/* ============================================
   LEGAL PAGES
   ============================================ */

.s-legal {
  padding: 7rem 5% 5rem;
  min-height: 70vh;
}

.s-legal__container {
  max-width: 860px;
  margin: 0 auto;
}

.s-legal__header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--c-cream-dark);
}

.s-legal__header h1 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--c-ink);
  margin-bottom: 0.75rem;
  line-height: 1.2;
  margin-top: 0.75rem;
}

.s-legal__meta {
  font-size: 0.8125rem;
  color: var(--c-ink-muted);
}

.s-legal__body h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c-ink);
  margin-top: 2.5rem;
  margin-bottom: 0.875rem;
  letter-spacing: -0.01em;
  padding-top: 1rem;
  border-top: 1px solid var(--c-cream-dark);
}

.s-legal__body h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.s-legal__body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-ink-soft);
  margin-top: 1.5rem;
  margin-bottom: 0.625rem;
}

.s-legal__body p {
  font-size: 0.9375rem;
  color: var(--c-ink-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.s-legal__intro {
  font-size: 1rem;
  color: var(--c-ink-soft);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: rgba(108,71,255,0.05);
  border-left: 4px solid var(--c-primary);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}

.s-legal__list {
  list-style: none;
  margin: 0.75rem 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.s-legal__list li {
  font-size: 0.9375rem;
  color: var(--c-ink-muted);
  line-height: 1.65;
  padding-left: 1.5rem;
  position: relative;
}

.s-legal__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--c-primary);
  font-size: 0.8rem;
  top: 2px;
}

.s-legal__definitions {
  margin: 1rem 0 1.5rem;
}

.s-legal__definitions dt {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--c-ink);
  margin-top: 1.25rem;
  margin-bottom: 0.25rem;
}

.s-legal__definitions dd {
  font-size: 0.9375rem;
  color: var(--c-ink-muted);
  line-height: 1.7;
  padding-left: 1.25rem;
  border-left: 2px solid var(--c-cream-dark);
}

.c-legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0 1.5rem;
  font-size: 0.875rem;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.c-legal-table th {
  background: var(--c-ink);
  color: rgba(248,246,242,0.9);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  padding: 0.875rem 1rem;
  text-align: left;
}

.c-legal-table td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--c-cream-dark);
  color: var(--c-ink-soft);
  line-height: 1.5;
  vertical-align: top;
}

.c-legal-table tr:last-child td {
  border-bottom: none;
}

.c-legal-table tbody tr {
  background: var(--c-surface);
  transition: background var(--transition-fast);
}

.c-legal-table tbody tr:nth-child(even) {
  background: var(--c-cream);
}

.c-legal-table tbody tr:hover {
  background: rgba(108,71,255,0.04);
}

.c-legal-table code {
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  background: rgba(108,71,255,0.08);
  color: var(--c-primary-dark);
  padding: 0.15rem 0.4rem;
  border-radius: var(--r-xs);
}

/* ============================================
   COOKIE CONSENT BAR
   ============================================ */

.c-cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: var(--c-ink);
  border-top: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 -8px 32px rgba(15,14,23,0.3);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.c-cookie-bar.is-visible {
  transform: translateY(0);
}

.c-cookie-bar__main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.c-cookie-bar__text {
  font-size: 0.875rem;
  color: rgba(248,246,242,0.75);
  line-height: 1.5;
  flex: 1;
}

.c-cookie-bar__text strong {
  color: var(--c-cream);
  font-weight: 700;
}

.c-cookie-bar__text a {
  color: var(--c-primary-light);
  text-decoration: underline;
  transition: color var(--transition-base);
}

.c-cookie-bar__text a:hover {
  color: var(--c-lime);
}

.c-cookie-bar__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.c-cookie-btn {
  padding: 0.6rem 1.25rem;
  border-radius: var(--r-full);
  font-family: 'Sora', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  border: none;
  min-height: 44px;
  white-space: nowrap;
}

.c-cookie-btn--accept {
  background: var(--c-primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(108,71,255,0.35);
}

.c-cookie-btn--accept:hover {
  background: var(--c-primary-light);
  transform: translateY(-1px);
}

.c-cookie-btn--reject {
  background: rgba(255,255,255,0.08);
  color: rgba(248,246,242,0.75);
  border: 1px solid rgba(255,255,255,0.15);
}

.c-cookie-btn--reject:hover {
  background: rgba(255,255,255,0.14);
  color: var(--c-cream);
}

.c-cookie-btn--customize {
  background: none;
  color: rgba(248,246,242,0.55);
  border: 1px solid rgba(255,255,255,0.1);
}

.c-cookie-btn--customize:hover {
  color: var(--c-cream);
  border-color: rgba(255,255,255,0.3);
}

.c-cookie-bar__expanded {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem 1.5rem;
  display: none;
  gap: 1rem;
  flex-wrap: wrap;
}

.c-cookie-bar__expanded.is-open {
  display: flex;
}

.c-cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  flex: 1;
  min-width: 200px;
}

.c-cookie-category__info strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--c-cream);
  margin-bottom: 0.2rem;
}

.c-cookie-category__info span {
  font-size: 0.75rem;
  color: rgba(248,246,242,0.5);
}

.c-cookie-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  flex-shrink: 0;
}

.c-cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.c-cookie-toggle__slider {
  width: 44px;
  height: 24px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--r-full);
  transition: background var(--transition-base);
  position: relative;
}

.c-cookie-toggle__slider::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform var(--transition-base);
  box-shadow: var(--shadow-xs);
}

.c-cookie-toggle input:checked + .c-cookie-toggle__slider {
  background: var(--c-primary);
}

.c-cookie-toggle input:checked + .c-cookie-toggle__slider::after {
  transform: translateX(20px);
}

.c-cookie-toggle input:disabled + .c-cookie-toggle__slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.c-cookie-bar__save {
  width: 100%;
  display: none;
  padding: 0 0 0.5rem;
}

.c-cookie-bar__save.is-open {
  display: flex;
  justify-content: flex-end;
  padding: 0 2rem 1.5rem;
}

/* ============================================
   RESPONSIVE - MOBILE FIRST
   ============================================ */

@media (max-width: 1024px) {
  .s-hero {
    grid-template-columns: 1fr;
    padding: 7rem 5% 4rem;
    gap: 3rem;
  }

  .s-hero__visual {
    justify-content: center;
  }

  .s-hero__img-wrap {
    max-width: 100%;
  }

  .s-hero__img {
    height: 380px;
  }

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

  .s-intro__container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .s-checklist__container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .s-why__grid {
    grid-template-columns: 1fr 1fr;
  }

  .s-cta-band__container {
    flex-direction: column;
    text-align: center;
  }

  .c-portfolio-item {
    grid-template-columns: 1fr;
  }

  .c-portfolio-item--reverse {
    direction: ltr;
  }

  .c-tab-panel__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .s-factors__grid {
    grid-template-columns: 1fr 1fr;
  }

  .s-location__container {
    grid-template-columns: 1fr;
  }

  .s-contact__container {
    grid-template-columns: 1fr;
  }

  .s-expectations-intro__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .c-footer__top {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .c-footer__nav {
    grid-template-columns: repeat(3, 1fr);
  }

  .s-online-option__container {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
}

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

  .c-nav__cta.u-hidden-mobile {
    display: none;
  }

  .c-nav__hamburger {
    display: flex;
  }

  .c-mobile-menu {
    display: block;
  }

  .s-hero {
    padding: 6rem 1.25rem 3rem;
    min-height: auto;
    padding-bottom: 4rem;
  }

  .s-hero__title {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }

  .s-hero__img {
    height: 280px;
  }

  .s-hero__img-badge {
    bottom: -1rem;
    left: -0.5rem;
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
  }

  .s-intro {
    padding: 4rem 1.25rem;
  }

  .s-intro__img-main {
    height: 320px;
  }

  .s-intro__img-card {
    bottom: -1rem;
    right: -0.5rem;
  }

  .s-services {
    padding: 4rem 1.25rem;
  }

  .s-services__grid {
    grid-template-columns: 1fr;
  }

  .s-tabs {
    padding: 4rem 1.25rem;
  }

  .s-tabs__nav {
    gap: 0;
  }

  .c-tab-btn {
    padding: 0.75rem 1rem;
    font-size: 0.8125rem;
  }

  .s-checklist {
    padding: 4rem 1.25rem;
  }

  .s-why {
    padding: 4rem 1.25rem;
  }

  .s-why__grid {
    grid-template-columns: 1fr;
  }

  .s-cta-band {
    padding: 3.5rem 1.25rem;
  }

  .s-cta-band__actions {
    flex-direction: column;
    width: 100%;
  }

  .s-cta-band__actions .c-btn {
    width: 100%;
    justify-content: center;
  }

  .s-page-header {
    padding: 7rem 1.25rem 3.5rem;
  }

  .s-portfolio-intro {
    padding: 2rem 1.25rem;
  }

  .s-portfolio-grid {
    padding: 1.5rem 1.25rem 4rem;
  }

  .s-portfolio-grid__container {
    gap: 2.5rem;
  }

  .c-portfolio-item__img {
    min-height: 240px;
  }

  .c-portfolio-item__body {
    padding: 1.75rem;
  }

  .s-domains {
    padding: 4rem 1.25rem;
  }

  .s-expectations-intro {
    padding: 3rem 1.25rem;
  }

  .s-timeline {
    padding: 4rem 1.25rem;
  }

  .s-timeline__track {
    padding-left: 2.5rem;
  }

  .c-timeline-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .c-timeline-item__marker {
    left: -2.5rem;
  }

  .s-factors {
    padding: 4rem 1.25rem;
  }

  .s-factors__grid {
    grid-template-columns: 1fr;
  }

  .s-location {
    padding: 4rem 1.25rem;
  }

  .s-office-photos {
    padding: 0 1.25rem 4rem;
  }

  .s-office-photos__grid {
    grid-template-columns: 1fr;
  }

  .s-online-option {
    padding: 3rem 1.25rem;
  }

  .s-contact {
    padding: 4rem 1.25rem;
  }

  .c-contact-form-card {
    padding: 2rem 1.5rem;
  }

  .s-contact-map {
    padding: 0 1.25rem 4rem;
  }

  .s-thanks {
    padding: 7rem 1.25rem 4rem;
  }

  .s-thanks__actions {
    flex-direction: column;
    align-items: center;
  }

  .s-thanks__actions .c-btn {
    width: 100%;
    justify-content: center;
  }

  .s-legal {
    padding: 6rem 1.25rem 4rem;
  }

  .c-legal-table {
    font-size: 0.8rem;
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .c-footer__top {
    padding: 3.5rem 1.25rem 2rem;
    gap: 2rem;
  }

  .c-footer__nav {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .c-footer__bottom {
    padding: 1.25rem 1.25rem;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .c-cookie-bar__main {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
  }

  .c-cookie-bar__actions {
    flex-wrap: wrap;
    width: 100%;
  }

  .c-cookie-btn {
    flex: 1;
    justify-content: center;
    text-align: center;
  }

  .c-cookie-bar__expanded {
    padding: 0 1.25rem 1.25rem;
    flex-direction: column;
  }

  .c-cookie-bar__save.is-open {
    padding: 0 1.25rem 1.25rem;
    justify-content: center;
  }

  .c-cookie-bar__save .c-cookie-btn {
    width: 100%;
  }

  .s-hero__scroll-hint {
    display: none;
  }
}

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

  .s-hero__actions {
    flex-direction: column;
  }

  .s-hero__actions .c-btn {
    width: 100%;
    justify-content: center;
  }

  .s-intro__img-card {
    display: none;
  }

  .s-hero__img-badge {
    display: none;
  }

  .c-tab-btn {
    font-size: 0.75rem;
    padding: 0.625rem 0.75rem;
  }
}