:root {
  --teal-50: #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --teal-900: #134e4a;
  --yellow-400: #fbbf24;
  --yellow-500: #f5c518;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --ink-900: #0f172a;
  --ink-800: #1e293b;
  --ink-700: #334155;
  --ink-600: #475569;
  --ink-500: #64748b;
  --ink-400: #94a3b8;
  --ink-200: #e2e8f0;
  --ink-100: #f1f5f9;
  --ink-50: #f8fafc;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
  --shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 10px 30px -5px rgba(15, 23, 42, 0.1), 0 4px 10px -6px rgba(15, 23, 42, 0.05);
  --shadow-xl: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --gradient-primary: linear-gradient(135deg, #14b8a6 0%, #0ea5e9 100%);
  --gradient-warm: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  --gradient-hero: linear-gradient(135deg, #0f766e 0%, #0ea5e9 50%, #1e40af 100%);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--teal-600);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--teal-700);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 700;
  color: var(--ink-900);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.25rem, 4vw + 1rem, 4rem); }
h2 { font-size: clamp(1.875rem, 2.5vw + 1rem, 3rem); }
h3 { font-size: clamp(1.25rem, 1vw + 1rem, 1.75rem); }
h4 { font-size: 1.25rem; }

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== Top Bar ===== */
.topbar {
  background: var(--ink-900);
  color: var(--ink-200);
  font-size: 0.875rem;
  padding: 0.625rem 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.topbar-info {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
}
.topbar-info span,
.topbar-info a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink-200);
}
.topbar-info a:hover { color: var(--yellow-400); }
.topbar-social {
  display: flex;
  gap: 0.75rem;
}
.topbar-social a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.topbar-social a:hover {
  background: var(--teal-500);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== Header ===== */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--ink-100);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.92);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
  gap: 1.5rem;
}
.logo {
  display: inline-flex;
  align-items: center;
}
.logo img {
  height: 54px;
  width: auto;
}
.nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
}
.nav a {
  color: var(--ink-800);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  transition: all 0.2s;
  position: relative;
}
.nav a:hover,
.nav a.active {
  color: var(--teal-600);
  background: var(--teal-50);
}
.nav a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background: var(--teal-500);
  border-radius: 2px;
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--ink-900);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: inherit;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  white-space: nowrap;
  text-align: center;
}
.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 6px 18px -4px rgba(20,184,166,0.45);
}
.btn-primary:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -6px rgba(20,184,166,0.55);
}
.btn-secondary {
  background: var(--ink-900);
  color: var(--white);
}
.btn-secondary:hover {
  color: var(--white);
  background: var(--ink-800);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--ink-900);
  border-color: var(--ink-200);
}
.btn-outline:hover {
  color: var(--teal-700);
  border-color: var(--teal-500);
  background: var(--teal-50);
}
.btn-light {
  background: var(--white);
  color: var(--ink-900);
}
.btn-light:hover { transform: translateY(-2px); color: var(--teal-700); }
.btn-lg { padding: 1.05rem 2.25rem; font-size: 1rem; }

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
  color: var(--white);
  padding: 6rem 0 7rem;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(251,191,36,0.15), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(59,130,246,0.25), transparent 50%);
  pointer-events: none;
}
.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.875rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--yellow-400);
  box-shadow: 0 0 12px var(--yellow-400);
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 4vw + 1rem, 4.25rem);
  margin-bottom: 1.25rem;
}
.hero h1 .accent {
  background: linear-gradient(135deg, var(--yellow-400), #fde047);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: 1.125rem;
  max-width: 560px;
  color: rgba(255,255,255,0.88);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.hero-meta {
  margin-top: 2.5rem;
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.hero-meta-item {
  border-left: 2px solid rgba(255,255,255,0.25);
  padding-left: 1rem;
}
.hero-meta-item strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.hero-meta-item span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}
.hero-visual {
  position: relative;
}
.hero-visual .panel {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-xl);
}
.hero-visual .float {
  position: absolute;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink-900);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-lg);
  font-weight: 600;
  font-size: 0.9rem;
}
.hero-visual .float.f1 { top: 12%; left: -12%; }
.hero-visual .float.f2 { bottom: 10%; right: -8%; }
.hero-visual .float .ic {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--teal-50);
  color: var(--teal-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hero-visual .float.f2 .ic {
  background: #fef3c7; color: #b45309;
}

.hero-feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 0.5rem;
}
.hero-feature-list li {
  list-style: none;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  color: var(--white);
  font-size: 0.95rem;
}
.hero-feature-list .check {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--teal-500);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ===== Sections ===== */
.section {
  padding: 6rem 0;
}
.section-sm { padding: 4rem 0; }
.section-bg { background: var(--ink-50); }
.section-dark {
  background: var(--ink-900);
  color: var(--ink-200);
}
.section-dark h1,
.section-dark h2,
.section-dark h3 { color: var(--white); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--teal-600);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.section-head p {
  color: var(--ink-500);
  margin-top: 1rem;
  font-size: 1.05rem;
}

/* ===== Service cards ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--teal-50);
  color: var(--teal-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.service-card:nth-child(3n+2) .service-icon {
  background: #fef3c7; color: #b45309;
}
.service-card:nth-child(3n) .service-icon {
  background: #e0f2fe; color: #0369a1;
}
.service-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
}
.service-card p {
  color: var(--ink-500);
  font-size: 0.95rem;
  line-height: 1.65;
}
.service-card .learn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--teal-600);
}

/* ===== Features row ===== */
.feature-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.feature {
  text-align: center;
  padding: 2rem 1.25rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--ink-100);
}
.feature .ic {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  color: var(--white);
}

/* ===== Split ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.split .image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gradient-hero);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  padding: 2rem;
}
.split .image-wrap .ornament {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
}
.split .image-wrap .ornament.o1 { top: -40px; left: -40px; width: 200px; height: 200px; background: var(--yellow-400);}
.split .image-wrap .ornament.o2 { bottom: -40px; right: -40px; width: 240px; height: 240px; background: var(--teal-500);}
.split .stat-card {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 1.5rem 2rem;
  border-radius: var(--radius);
  text-align: center;
}
.split .stat-card .num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
}
.split .stat-card .lbl { color: rgba(255,255,255,0.85); font-size: 0.9rem;}
.split h2 { margin-bottom: 1.25rem; }
.split p { color: var(--ink-500); margin-bottom: 1.25rem; }
.split .check-list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  margin: 1.25rem 0 2rem;
}
.split .check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.split .check-list .ic {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--teal-100);
  color: var(--teal-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ===== Stats band ===== */
.stats-band {
  background: var(--gradient-hero);
  color: var(--white);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.stats-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(251,191,36,0.2), transparent 40%);
  pointer-events: none;
}
.stats-band .grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stats-band .num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--yellow-400);
  line-height: 1;
}
.stats-band .lbl {
  margin-top: 0.5rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}

/* ===== Process ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  position: relative;
}
.process-step {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-100);
  text-align: center;
  position: relative;
}
.process-step .num {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: var(--shadow);
}
.process-step h4 { margin: 1rem 0 0.5rem; }
.process-step p { color: var(--ink-500); font-size: 0.9rem; }

/* ===== Pricing ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  position: relative;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.price-card.featured {
  background: linear-gradient(160deg, var(--ink-900) 0%, var(--teal-900) 100%);
  color: rgba(255,255,255,0.9);
  border-color: var(--teal-700);
  transform: scale(1.03);
}
.price-card.featured h3,
.price-card.featured .price { color: var(--white); }
.price-card.featured .plan-features li { color: rgba(255,255,255,0.85);}
.price-card.featured .plan-features .ic {
  background: rgba(20,184,166,0.2);
  color: var(--teal-100);
}
.price-card .badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--yellow-400);
  color: var(--ink-900);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.price-card h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal-600);
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.price-card .price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--ink-900);
  margin-bottom: 1.5rem;
  line-height: 1;
}
.price-card .price small {
  font-size: 0.9rem;
  color: var(--ink-500);
  font-weight: 500;
}
.plan-features {
  list-style: none;
  display: grid;
  gap: 0.6rem;
  margin-bottom: 2rem;
  flex: 1;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--ink-700);
  font-size: 0.95rem;
}
.plan-features .ic {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--teal-100);
  color: var(--teal-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== Testimonials ===== */
.testimonial {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-100);
  position: relative;
}
.testimonial .quote {
  font-size: 3rem;
  line-height: 1;
  color: var(--teal-500);
  opacity: 0.3;
  margin-bottom: 1rem;
  font-family: Georgia, serif;
}
.testimonial p {
  font-size: 1.05rem;
  color: var(--ink-700);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.testimonial .who {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial .avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.testimonial .who strong { display: block; color: var(--ink-900);}
.testimonial .who span { font-size: 0.85rem; color: var(--ink-500); }

/* ===== CTA band ===== */
.cta-band {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 50%, rgba(255,255,255,0.1), transparent 40%),
    radial-gradient(circle at 90% 50%, rgba(251,191,36,0.3), transparent 40%);
  pointer-events: none;
}
.cta-band .inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-band h2 {
  color: var(--white);
  margin-bottom: 0.5rem;
  font-size: clamp(1.75rem, 2vw + 1rem, 2.25rem);
}
.cta-band p {
  color: rgba(255,255,255,0.92);
  font-size: 1.05rem;
}

/* ===== Footer ===== */
.footer {
  background: var(--ink-900);
  color: var(--ink-300);
  padding: 5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer h4 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.footer ul { list-style: none; display: grid; gap: 0.65rem;}
.footer a {
  color: var(--ink-400);
  font-size: 0.95rem;
  transition: color 0.2s;
}
.footer a:hover { color: var(--teal-400, #5eead4); }
.footer-about p { color: var(--ink-400); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.25rem;}
.footer-logo {
  background: var(--white);
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
  display: inline-block;
  margin-bottom: 1rem;
}
.footer-logo img { height: 42px; }
.footer .contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--ink-400);
}
.footer .contact-item .ic {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  color: var(--teal-400, #5eead4);
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--ink-500);
}
.footer-bottom .socials {
  display: flex; gap: 0.5rem;
}
.footer-bottom .socials a {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-300);
}
.footer-bottom .socials a:hover { background: var(--teal-500); color: var(--white); }

/* ===== Page header ===== */
.page-hero {
  background: var(--gradient-hero);
  color: var(--white);
  padding: 5rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(251,191,36,0.15), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(20,184,166,0.25), transparent 40%);
}
.page-hero .container { position: relative; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 640px; margin: 0 auto; }
.breadcrumb {
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}
.breadcrumb a { color: var(--yellow-400); }

/* ===== Forms ===== */
.form-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--ink-100);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-800);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1.5px solid var(--ink-200);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink-900);
  background: var(--white);
  transition: all 0.2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--teal-500);
  box-shadow: 0 0 0 3px rgba(20,184,166,0.15);
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: 0.85rem; color: var(--ink-500); margin-top: 0.75rem; }

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.contact-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-100);
  text-align: center;
  transition: all 0.3s;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.contact-card .ic {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--teal-50);
  color: var(--teal-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.contact-card h4 { margin-bottom: 0.5rem; }
.contact-card a, .contact-card p { color: var(--ink-600); font-size: 0.95rem; line-height: 1.6; }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--ink-100);
  box-shadow: var(--shadow);
}
.map-wrap iframe { display: block; width: 100%; height: 420px; border: 0; }

/* ===== About story ===== */
.about-mv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.mv-card {
  background: var(--white);
  padding: 2.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-100);
}
.mv-card .ic {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--gradient-primary);
  color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.mv-card h3 { margin-bottom: 0.75rem;}
.mv-card p { color: var(--ink-500); }

/* ===== Why choose ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.why-item {
  padding: 1.75rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-100);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.why-item .ic {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--teal-50);
  color: var(--teal-600);
  display: inline-flex; align-items: center; justify-content: center;
}
.why-item h4 { margin-bottom: 0.4rem; font-size: 1.05rem;}
.why-item p { color: var(--ink-500); font-size: 0.92rem; line-height: 1.6; }

/* ===== Portfolio ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.portfolio-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}
.portfolio-item:hover { transform: translateY(-6px); }
.portfolio-item .cover {
  position: absolute; inset: 0;
  background: var(--gradient-hero);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  padding: 2rem;
  text-align: center;
}
.portfolio-item:nth-child(2) .cover {
  background: linear-gradient(135deg, #0ea5e9 0%, #6366f1 100%);
}
.portfolio-item:nth-child(3) .cover {
  background: linear-gradient(135deg, #0d9488 0%, #059669 100%);
}
.portfolio-item:nth-child(4) .cover {
  background: linear-gradient(135deg, #f59e0b 0%, #dc2626 100%);
}
.portfolio-item .cover h4 { color: var(--white); margin-bottom: 0.5rem;}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .about-mv { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .hero { padding: 4rem 0 5rem; }
  .menu-toggle { display: inline-flex; }
  .nav {
    position: fixed;
    top: 0; right: 0;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 5rem 1.5rem 2rem;
    box-shadow: var(--shadow-xl);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    gap: 0.25rem;
  }
  .nav.open { transform: translateX(0); }
  .nav a { padding: 0.9rem 1rem; border-radius: 10px; }
  .nav a.active::after { display: none;}
  .header-cta .btn { display: none; }
  .topbar-info { font-size: 0.8rem; gap: 1rem; }
  .topbar-social { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-meta { gap: 1.5rem; }
  .cta-band .inner { justify-content: center; text-align: center; }
  .price-card.featured { transform: none; }
}
