:root {
  --primary: #9B72CF;
  --primary-soft: #B794E0;
  --primary-pale: rgba(155, 114, 207, 0.12);
  --secondary: #E8A0BF;
  --secondary-soft: #F0BDD4;
  --accent: #F5C6A0;
  --accent-warm: #F0B088;
  --highlight: #FDF0D5;
  --highlight-warm: #FBE8C2;
  --bg: #FDF6F0;
  --bg-glass: rgba(255, 255, 255, 0.55);
  --bg-glass-strong: rgba(255, 255, 255, 0.72);
  --text: #2D1B42;
  --text-mid: #4A3660;
  --text-soft: #6E5F82;
  --text-muted: #7A6B90;
  --primary-text: #7B52AF;
  --border: rgba(155, 114, 207, 0.15);
  --border-hover: rgba(155, 114, 207, 0.3);
  --shadow-soft: 0 4px 32px rgba(155, 114, 207, 0.08);
  --shadow-card: 0 8px 40px rgba(155, 114, 207, 0.1);
  --shadow-elevated: 0 16px 64px rgba(155, 114, 207, 0.12);
  --grad-purple: #7B52AF;
  --grad-rose: #C4849A;
  --error: #C75450;
  --success: #3D8B5F;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ═══ ANIMATED CLOUD BACKGROUND ═══ */
.cloud-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.cloud-layer {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: cloudDrift 20s ease-in-out infinite;
}

.cloud-1 { width: 60vw; height: 60vw; top: -20vw; right: -15vw; background: radial-gradient(ellipse, var(--accent) 0%, transparent 70%); animation-duration: 25s; }
.cloud-2 { width: 50vw; height: 50vw; top: 10vh; left: -10vw; background: radial-gradient(ellipse, var(--secondary) 0%, transparent 70%); animation-duration: 30s; animation-delay: -5s; }
.cloud-3 { width: 45vw; height: 45vw; bottom: -10vw; left: 20vw; background: radial-gradient(ellipse, var(--highlight) 0%, transparent 70%); animation-duration: 22s; animation-delay: -10s; }
.cloud-4 { width: 40vw; height: 40vw; top: 40vh; right: 10vw; background: radial-gradient(ellipse, var(--primary-soft) 0%, transparent 70%); animation-duration: 28s; animation-delay: -15s; opacity: 0.35; }
.cloud-5 { width: 35vw; height: 35vw; bottom: 10vh; right: -5vw; background: radial-gradient(ellipse, var(--secondary-soft) 0%, transparent 70%); animation-duration: 32s; animation-delay: -8s; opacity: 0.4; }

@keyframes cloudDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(3vw, -2vh) scale(1.05); }
  50% { transform: translate(-2vw, 3vh) scale(0.95); }
  75% { transform: translate(1vw, -1vh) scale(1.02); }
}

/* ═══ FLOATING GEOMETRIC SHAPES ═══ */
.geo-shapes { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }

.geo-shape {
  position: absolute;
  border: 1px solid rgba(155, 114, 207, 0.08);
  background: rgba(255, 255, 255, 0.04);
  animation: geoFloat linear infinite;
}

.geo-1 { width: 60px; height: 60px; top: 15%; left: 8%; animation-duration: 35s; border-radius: 12px; transform: rotate(15deg); border-color: rgba(232, 160, 191, 0.1); }
.geo-2 { width: 40px; height: 40px; top: 45%; right: 12%; animation-duration: 28s; animation-delay: -8s; border-radius: 50%; }
.geo-3 { width: 80px; height: 80px; top: 70%; left: 15%; animation-duration: 40s; animation-delay: -15s; border-radius: 16px; transform: rotate(45deg); border-color: rgba(245, 198, 160, 0.1); }
.geo-4 { width: 30px; height: 30px; top: 25%; right: 25%; animation-duration: 32s; animation-delay: -3s; border-radius: 50%; }
.geo-5 { width: 50px; height: 50px; top: 85%; right: 8%; animation-duration: 38s; animation-delay: -20s; border-radius: 14px; transform: rotate(30deg); border-color: rgba(155, 114, 207, 0.06); }
.geo-6 { width: 24px; height: 24px; top: 55%; left: 5%; animation-duration: 25s; animation-delay: -12s; border-radius: 50%; border-color: rgba(253, 240, 213, 0.15); }

@keyframes geoFloat {
  0% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
  25% { opacity: 0.6; }
  50% { transform: translateY(-80px) rotate(180deg); opacity: 0.3; }
  75% { opacity: 0.5; }
  100% { transform: translateY(0) rotate(360deg); opacity: 0.3; }
}

/* Grain */
body::after {
  content: ''; position: fixed; inset: 0; z-index: 9999; pointer-events: none; opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.content-wrapper { position: relative; z-index: 1; }

/* ═══ NAV ═══ */
nav {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%); z-index: 1000;
  width: min(92%, 1100px); padding: 0 32px; height: 60px;
  display: flex; align-items: center; justify-content: space-between;
  background: var(--bg-glass-strong);
  backdrop-filter: blur(20px) saturate(1.4); -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.6); border-radius: 16px;
  box-shadow: var(--shadow-soft); transition: all 0.3s;
}

.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-mark {
  width: 34px; height: 34px; border-radius: 10px;
  object-fit: cover; box-shadow: 0 2px 12px rgba(155, 114, 207, 0.3);
}
.nav-logo-text { font-family: 'Fraunces', serif; font-size: 19px; font-weight: 500; color: var(--text); letter-spacing: -0.3px; }
.nav-logo-text em { font-style: italic; font-weight: 500; }

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { color: var(--text-mid); text-decoration: none; font-size: 13.5px; font-weight: 400; transition: color 0.25s; }
.nav-links a:hover { color: var(--primary-text); }
.nav-cta {
  padding: 9px 22px; background: linear-gradient(135deg, var(--grad-purple), var(--grad-rose));
  color: white !important; border-radius: 10px; font-weight: 500 !important;
  transition: all 0.3s !important; box-shadow: 0 2px 16px rgba(155, 114, 207, 0.25);
}
.nav-cta:hover { transform: translateY(-1px) !important; box-shadow: 0 4px 24px #9b72cf59 !important; }

/* Nav dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 140px;
  list-style: none;
  background: var(--bg-glass-strong);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.nav-dropdown-menu li { margin: 0; }
.nav-dropdown-menu a {
  display: block;
  padding: 9px 14px;
  font-size: 13.5px;
  color: var(--text-mid);
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover {
  background: var(--primary-pale);
  color: var(--primary-text);
}

.nav-mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-mobile-toggle span { display: block; width: 20px; height: 2px; background: var(--text); margin: 4px 0; border-radius: 2px; }

/* ═══ HERO ═══ */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 120px 0 80px; position: relative; overflow: hidden; }
.hero-content { width: min(92%, 1100px); margin: 0 auto; max-width: 600px; margin-right: auto; margin-left: max(4%, calc((100% - 1500px) / 2)); position: relative; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 18px;
  background: var(--bg-glass); border: 1px solid rgba(155, 114, 207, 0.2); border-radius: 100px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 300;
  color: var(--primary-text); letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 28px; backdrop-filter: blur(10px);
  opacity: 0; animation: softUp 0.8s ease forwards 0.2s;
}
.hero-eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--primary); box-shadow: 0 0 10px var(--primary-soft);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.8); } }

.hero-title {
  font-family: 'Fraunces', serif; font-size: clamp(44px, 6.5vw, 80px);
  font-weight: 400; line-height: 1.06; letter-spacing: -2px; color: var(--text);
  margin-bottom: 24px; opacity: 0; animation: softUp 0.8s ease forwards 0.35s;
}
.hero-title em {
  font-style: italic; font-weight: 300;
  background: linear-gradient(135deg, var(--grad-purple), var(--grad-rose));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-sub {
  font-size: clamp(16px, 1.8vw, 18px); line-height: 1.75; color: var(--text-mid);
  max-width: 540px; margin-bottom: 44px; font-weight: 300;
  opacity: 0; animation: softUp 0.8s ease forwards 0.5s;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; opacity: 0; animation: softUp 0.8s ease forwards 0.65s; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px; padding: 15px 30px;
  background: linear-gradient(135deg, var(--grad-purple), var(--grad-rose));
  color: white; border: none; border-radius: 12px; font-size: 15px; font-weight: 500;
  font-family: 'Outfit', sans-serif; cursor: pointer; transition: all 0.3s;
  box-shadow: 0 4px 24px rgba(155, 114, 207, 0.25); text-decoration: none;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 36px rgba(155, 114, 207, 0.35); }
.btn-primary svg { transition: transform 0.3s; }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px; padding: 15px 30px;
  background: var(--bg-glass); color: var(--text); border: 1px solid var(--border-hover);
  border-radius: 12px; font-size: 15px; font-weight: 400; font-family: 'Outfit', sans-serif;
  cursor: pointer; transition: all 0.3s; text-decoration: none; backdrop-filter: blur(10px);
}
.btn-ghost:hover { border-color: var(--primary); background: rgba(155, 114, 207, 0.08); transform: translateY(-2px); }

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

/* ═══ HERO 3D ANIMATION ═══ */
.hero-3d-wrap {
  position: absolute; right: 0vw; top: 20%; transform: translateY(-50%);
  width: min(1100px, 55vw); height: min(620px, 55vw);
  opacity: 0; animation: softUp 1.2s ease forwards 0.6s;
  pointer-events: none;
}
.hero-3d-wrap canvas { width: 100% !important; height: 100% !important; }

/* ═══ STATS ═══ */
.stats-bar { padding: 0 clamp(24px, 5vw, 80px); }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); max-width: 1100px; margin: 0 auto;
  background: var(--bg-glass-strong); backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-card);
}
.stat-item { padding: 36px 24px; text-align: center; border-right: 1px solid var(--border); transition: background 0.3s; }
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(155, 114, 207, 0.04); }
.stat-number { font-family: 'Fraunces', serif; font-size: clamp(30px, 3.5vw, 44px); font-weight: 500; color: var(--grad-purple); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 12.5px; color: var(--text-soft); font-weight: 300; letter-spacing: 0.3px; }

/* ═══ SECTION COMMON ═══ */
section { padding: 60px clamp(24px, 5vw, 80px); position: relative; }
.section-tag { font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 300; letter-spacing: 2.5px; text-transform: uppercase; color: var(--primary-text); margin-bottom: 14px; }
.section-title { font-family: 'Fraunces', serif; font-size: clamp(32px, 4vw, 52px); font-weight: 400; letter-spacing: -1.5px; line-height: 1.12; color: var(--text); margin-bottom: 18px; }
.section-title em { font-style: italic; font-weight: 300; background: linear-gradient(135deg, var(--grad-purple), var(--grad-rose)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-desc { font-size: 16.5px; line-height: 1.75; color: var(--text-mid); max-width: 540px; font-weight: 300; }
.section-divider { position: absolute; top: 0; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, var(--secondary), var(--primary-soft), transparent); opacity: 0.6; }

/* ═══ SVG ICON STYLING ═══ */
.icon-svg { width: 22px; height: 22px; stroke: var(--grad-purple); stroke-width: 1.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.icon-svg-sm { width: 20px; height: 20px; stroke: var(--grad-purple); stroke-width: 1.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }

/* ═══ PROBLEM ═══ */
.problem-layout { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }

.problem-visual {
  height: 420px; border-radius: 20px; background: var(--bg-glass); backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5); box-shadow: var(--shadow-card); overflow: hidden; position: relative;
}
.gap-svg-container { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.gap-svg-container svg { width: 90%; height: 80%; }

.gap-curve-ai, .gap-curve-biz { stroke-dasharray: 4 4; animation: dashFlow 2s linear infinite; }
.gap-curve-biz { animation-direction: reverse; }
@keyframes dashFlow { to { stroke-dashoffset: -40; } }
.gap-bridge-line { stroke-dasharray: 6 3; animation: bridgeGlow 3s ease-in-out infinite; }
@keyframes bridgeGlow { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }

.problem-points { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.problem-point { display: flex; align-items: flex-start; gap: 14px; padding: 16px 18px; border-radius: 14px; transition: all 0.3s; }
.problem-point:hover { background: var(--bg-glass); }
.problem-point-marker {
  width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(135deg, rgba(123, 82, 175, 0.1), rgba(150, 79, 120, 0.1));
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 400; color: var(--primary-text);
}
.problem-point-text { font-size: 14.5px; color: var(--text-mid); line-height: 1.6; font-weight: 400; }
.problem-point-text strong { color: var(--text); font-weight: 500; }

/* ═══ SERVICES / PRICING ═══ */
.services-header { max-width: 1100px; margin: 0 auto 56px; }
.pricing-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }

.pricing-card {
  background: var(--bg-glass); backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5); border-radius: 20px;
  padding: 40px 32px 36px; position: relative; transition: all 0.4s;
  cursor: default; box-shadow: var(--shadow-soft); overflow: hidden;
  display: flex; flex-direction: column;
}
.pricing-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  border-radius: 20px 20px 0 0; opacity: 0; transition: opacity 0.4s;
}
.pricing-card:hover::before { opacity: 1; }
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-elevated); }

/* Tier-specific accent colours */
.pricing-card.tier-1::before { background: var(--accent); }
.pricing-card.tier-2::before { background: linear-gradient(90deg, var(--primary), var(--secondary)); }
.pricing-card.tier-3::before { background: linear-gradient(90deg, var(--grad-purple), var(--grad-rose)); }

/* Featured card */
.pricing-card.featured {
  background: linear-gradient(180deg, rgba(155, 114, 207, 0.06) 0%, var(--bg-glass-strong) 100%);
  border-color: rgba(155, 114, 207, 0.3);
  box-shadow: var(--shadow-card), 0 0 40px rgba(155, 114, 207, 0.08);
  transform: scale(1.03);
  z-index: 2;
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.pricing-card.featured::before { opacity: 1; }

.pricing-badge {
  position: absolute; top: 16px; right: 16px;
  font-family: 'JetBrains Mono', monospace; font-size: 9px; font-weight: 400;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px;
  background: linear-gradient(135deg, var(--grad-purple), var(--grad-rose));
  color: white;
}

.pricing-tier-label {
  font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 300;
  letter-spacing: 2px; text-transform: uppercase; color: var(--primary-text);
  margin-bottom: 10px;
}

.pricing-icon-wrap {
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(123, 82, 175, 0.1), rgba(150, 79, 120, 0.08));
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}

.pricing-name {
  font-family: 'Fraunces', serif; font-size: 26px; font-weight: 500;
  color: var(--text); margin-bottom: 6px; letter-spacing: -0.5px;
}

.pricing-price {
  font-family: 'Fraunces', serif; font-size: 36px; font-weight: 400;
  color: var(--text); margin-bottom: 4px; letter-spacing: -1px; line-height: 1.1;
}
.pricing-price span {
  font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 300;
  color: var(--text-soft); letter-spacing: 0;
}

.pricing-promise {
  font-family: 'Fraunces-Italic', serif; font-style: italic; font-size: 14px;
  color: var(--text-mid); line-height: 1.55; margin-bottom: 20px;
  padding-bottom: 20px; border-bottom: 1px solid var(--border);
}

.pricing-features { list-style: none; margin-bottom: 24px; flex: 1; }
.pricing-features li {
  font-size: 13.5px; color: var(--text-mid); font-weight: 400;
  line-height: 1.5; padding: 6px 0 6px 22px; position: relative;
}
.pricing-features li::before {
  content: ''; position: absolute; left: 0; top: 11px;
  width: 12px; height: 12px; border-radius: 4px;
  background: linear-gradient(135deg, rgba(123, 82, 175, 0.12), rgba(150, 79, 120, 0.08));
  border: 1px solid var(--border);
}
.pricing-features li svg {
  position: absolute; left: 1px; top: 12px; width: 10px; height: 10px;
  stroke: var(--primary-text); stroke-width: 2; fill: none;
  stroke-linecap: round; stroke-linejoin: round;
}

.pricing-guarantee {
  font-size: 12px; color: var(--text-soft); font-weight: 300;
  line-height: 1.55; padding: 14px 16px; border-radius: 10px;
  background: rgba(123, 82, 175, 0.04); border: 1px solid var(--border);
  margin-bottom: 20px;
}
.pricing-guarantee strong { color: var(--primary-text); font-weight: 500; }

.pricing-cta {
  display: block; text-align: center; padding: 14px 24px;
  border-radius: 12px; font-size: 14px; font-weight: 500;
  font-family: 'Outfit', sans-serif; cursor: pointer;
  transition: all 0.3s; text-decoration: none; margin-top: auto;
}
.pricing-cta-primary {
  background: linear-gradient(135deg, var(--grad-purple), var(--grad-rose));
  color: white; border: none;
  box-shadow: 0 4px 20px rgba(155, 114, 207, 0.25);
}
.pricing-cta-primary:hover {
  transform: translateY(-2px); box-shadow: 0 8px 32px rgba(155, 114, 207, 0.35);
}
.pricing-cta-ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--border-hover);
}
.pricing-cta-ghost:hover {
  border-color: var(--primary); background: rgba(155, 114, 207, 0.05);
  transform: translateY(-2px);
}

.pricing-upgrade {
  max-width: 1100px; margin: 36px auto 0; text-align: center;
  padding: 24px 32px; border-radius: 14px;
  background: var(--bg-glass); backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.pricing-upgrade p {
  font-size: 14px; color: var(--text-mid); font-weight: 300; line-height: 1.6;
}
.pricing-upgrade strong { color: var(--text); font-weight: 500; }
.pricing-upgrade em { color: var(--primary-text); font-style: normal; font-weight: 500; }

/* ═══ PROCESS ═══ */
.process-layout { max-width: 1100px; margin: 0 auto; }
.process-header { margin-bottom: 64px; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }

.process-track { position: absolute; top: 20px; left: 30px; right: 30px; height: 2px; background: var(--border); border-radius: 2px; overflow: visible; }
.process-track-fill { height: 100%; width: 0%; background: linear-gradient(90deg, var(--grad-purple), var(--secondary), var(--accent), var(--highlight-warm)); border-radius: 2px; transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); }

.process-step { padding: 0 20px; position: relative; }
.process-step-dot {
  width: 12px; height: 12px; border-radius: 50%; background: var(--border);
  margin-bottom: 28px; position: relative; z-index: 2; transition: all 0.5s ease;
}
.process-step-dot::after { content: ''; position: absolute; inset: -6px; border-radius: 50%; border: 1px solid transparent; background: var(--bg-glass); transition: border-color 0.5s; }
.process-step.active .process-step-dot { background: linear-gradient(135deg, var(--grad-purple), var(--secondary)); box-shadow: 0 0 14px rgba(155, 114, 207, 0.35); }
.process-step.active .process-step-dot::after { border-color: var(--border-hover); }

.process-step-num { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--primary-text); letter-spacing: 1px; margin-bottom: 10px; }
.process-step-title { font-family: 'Fraunces', serif; font-size: 21px; font-weight: 500; color: var(--text); margin-bottom: 10px; letter-spacing: -0.2px; }
.process-step-desc { font-size: 13.5px; line-height: 1.65; color: var(--text-mid); font-weight: 400; }

/* ═══ TRUST ═══ */
.trust-layout { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.trust-visual { background: var(--bg-glass); backdrop-filter: blur(16px); border: 1px solid rgba(255, 255, 255, 0.5); border-radius: 20px; padding: 40px; box-shadow: var(--shadow-card); }
.shield-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.shield-item { padding: 20px; border-radius: 14px; background: rgba(255, 255, 255, 0.5); border: 1px solid rgba(255, 255, 255, 0.6); transition: all 0.3s; }
.shield-item:hover { border-color: var(--border-hover); background: rgba(255, 255, 255, 0.7); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.shield-icon-wrap { width: 36px; height: 36px; border-radius: 10px; background: linear-gradient(135deg, rgba(123, 82, 175, 0.08), rgba(150, 79, 120, 0.06)); display: flex; align-items: center; justify-content: center; margin-bottom: 10px; }
.shield-title { font-size: 13px; font-weight: 500; color: var(--text); margin-bottom: 4px; }
.shield-desc { font-size: 12px; color: var(--text-soft); line-height: 1.5; font-weight: 400; }

.trust-content .trust-points { margin-top: 32px; display: flex; flex-direction: column; gap: 18px; }
.trust-point { display: flex; align-items: flex-start; gap: 14px; }
.trust-check {
  width: 24px; height: 24px; border-radius: 8px;
  background: linear-gradient(135deg, var(--grad-purple), var(--grad-rose));
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
  box-shadow: 0 2px 8px rgba(155, 114, 207, 0.2);
}
.trust-check svg { width: 14px; height: 14px; stroke: white; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.trust-point-text { font-size: 14.5px; color: var(--text-mid); line-height: 1.6; font-weight: 400; }
.trust-point-text strong { color: var(--text); font-weight: 500; }

/* ═══ CREDIBILITY ═══ */
.credibility-layout { max-width: 1100px; margin: 0 auto; text-align: center; }
.credibility-logos { margin-top: 44px; margin-bottom: 56px; }
.credibility-logos-label { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 28px; }
.logo-row { display: flex; align-items: center; justify-content: space-evenly; flex-wrap: wrap; gap: 20px 0; }
.logo-placeholder {
  padding: 0; background: none; backdrop-filter: none;
  border: none; border-radius: 0;
  font-size: 14px; font-weight: 400; color: var(--text-soft); letter-spacing: 0.3px;
  transition: all 0.3s; box-shadow: none;
  display: flex; align-items: center; justify-content: center;
  width: 120px; height: 40px;
}
.logo-placeholder img {
  height: 22px; width: auto; max-width: 120px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.4);
  transition: all 0.3s;
}
.logo-placeholder:hover img {
  filter: grayscale(100%) opacity(0.6);
}
.logo-placeholder img[alt="AWS"] {
  position: relative;
  top: 5px;
}
.logo-placeholder img[alt="n8n"] {
  height: 40px;
  position: relative;
  top: 2px;
}
.logo-placeholder:hover { transform: translateY(-2px); }

.credibility-quote {
  max-width: 680px; margin: 0 auto; padding: 44px;
  background: var(--bg-glass); backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5); border-radius: 20px;
  position: relative; box-shadow: var(--shadow-card);
}
.credibility-quote::before {
  content: '\201C'; font-family: 'Fraunces', serif; font-size: 72px;
  background: linear-gradient(135deg, var(--grad-purple), var(--grad-rose));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  opacity: 0.4; position: absolute; top: 16px; left: 32px; line-height: 1;
}
.quote-text { font-family: 'Fraunces', serif; font-size: clamp(20px, 2.5vw, 25px); font-style: italic; font-weight: 400; color: var(--text); line-height: 1.5; margin-bottom: 20px; position: relative; z-index: 1; }
.quote-attribution { font-size: 14px; color: var(--text-soft); font-weight: 300; }
.quote-attribution strong { background: linear-gradient(135deg, var(--grad-purple), var(--grad-rose)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 500; }

/* ═══ CTA ═══ */
.cta-section { position: relative; overflow: hidden; }
.cta-inner {
  max-width: 800px; margin: 0 auto; text-align: center; position: relative; z-index: 2;
  background: var(--bg-glass); backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5); border-radius: 28px;
  padding: 72px 56px; box-shadow: var(--shadow-elevated);
}
.cta-title { font-family: 'Fraunces', serif; font-size: clamp(34px, 4.5vw, 52px); font-weight: 400; letter-spacing: -1.5px; line-height: 1.12; color: var(--text); margin-bottom: 18px; }
.cta-title em { font-style: italic; font-weight: 300; background: linear-gradient(135deg, var(--grad-purple), var(--grad-rose)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cta-desc { font-size: 16.5px; color: var(--text-mid); line-height: 1.7; max-width: 480px; margin: 0 auto 36px; font-weight: 300; }
.cta-form { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; max-width: 520px; margin: 0 auto 18px; text-align: left; }
.cta-form .full-width { grid-column: 1 / -1; }
.cta-input {
  padding: 15px 22px; background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--border); border-radius: 12px;
  color: var(--text); font-size: 15px; font-family: 'Outfit', sans-serif;
  width: 100%; outline: none; transition: all 0.3s; box-sizing: border-box;
}
.cta-input::placeholder { color: var(--text-muted); }
.cta-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(155, 114, 207, 0.1); }
/* Native selects hidden when custom dropdown is active */
select.custom-dropdown-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; padding: 0; margin: -1px; }

/* Custom dropdown wrapper */
.custom-dropdown { position: relative; width: 100%; }
.custom-dropdown-trigger {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 22px; background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--border); border-radius: 12px;
  color: var(--text); font-size: 15px; font-family: 'Outfit', sans-serif;
  width: 100%; outline: none; transition: all 0.3s; box-sizing: border-box;
  cursor: pointer; user-select: none; -webkit-user-select: none;
}
.custom-dropdown-trigger.placeholder { color: var(--text-muted); }
.custom-dropdown-trigger:hover { border-color: var(--border-hover); }
.custom-dropdown-trigger:focus,
.custom-dropdown.open .custom-dropdown-trigger { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(155, 114, 207, 0.1); }
.custom-dropdown-trigger .dd-arrow {
  width: 12px; height: 8px; flex-shrink: 0; margin-left: 12px;
  transition: transform 0.25s ease;
}
.custom-dropdown.open .dd-arrow { transform: rotate(180deg); }

/* Dropdown menu */
.custom-dropdown-menu {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0;
  background: rgba(255, 255, 255, 0.96); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border); border-radius: 12px;
  box-shadow: var(--shadow-card);
  padding: 6px; z-index: 100;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  max-height: 260px; overflow-y: auto;
  scrollbar-width: thin; scrollbar-color: var(--primary-pale) transparent;
}
.custom-dropdown-menu::-webkit-scrollbar { width: 6px; }
.custom-dropdown-menu::-webkit-scrollbar-track { background: transparent; }
.custom-dropdown-menu::-webkit-scrollbar-thumb { background: var(--primary-pale); border-radius: 3px; }
.custom-dropdown.open .custom-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }

/* Dropdown options */
.custom-dropdown-option {
  padding: 11px 16px; border-radius: 8px; cursor: pointer;
  font-size: 15px; font-family: 'Outfit', sans-serif; color: var(--text);
  transition: background 0.15s ease, color 0.15s ease;
  display: flex; align-items: center; gap: 10px;
}
.custom-dropdown-option:hover,
.custom-dropdown-option.focused { background: var(--primary-pale); }
.custom-dropdown-option.selected { color: var(--primary-text); font-weight: 500; }
.custom-dropdown-option.selected::before {
  content: ''; display: inline-block; width: 6px; height: 6px;
  background: var(--primary); border-radius: 50%; flex-shrink: 0;
}

/* CTA form context — keep grid layout working */
.cta-form .custom-dropdown { min-width: 0; }

/* Legacy fallback kept for non-JS */
.cta-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A6B90' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 18px center; padding-right: 42px; cursor: pointer; }
.cta-select:invalid { color: var(--text-muted); }
.form-status { max-width: 520px; margin: 0 auto 12px; font-size: 14.5px; font-weight: 400; min-height: 22px; text-align: center; }
.form-status.success { color: var(--success); }
.form-status.error { color: var(--error); }
.cta-form .btn-primary { justify-content: center; }
.cta-note { font-size: 13px; color: var(--text-muted); font-weight: 300; }
.form-success { animation: fadeInUp 0.6s ease both; text-align: center; }
.success-icon { margin: 0 auto 20px; width: 64px; height: 64px; color: var(--success); }
.success-checkmark { width: 64px; height: 64px; }
.success-circle { stroke-dasharray: 151; stroke-dashoffset: 151; animation: circleStroke 0.6s ease forwards; }
.success-check { stroke-dasharray: 36; stroke-dashoffset: 36; animation: checkStroke 0.4s 0.4s ease forwards; }
.success-title { font-family: 'Fraunces', serif; font-size: 28px; font-weight: 500; color: var(--text); margin: 0 0 12px; letter-spacing: -0.5px; }
.success-desc { font-size: 15px; color: var(--text-mid); line-height: 1.7; max-width: 420px; margin: 0 auto 28px; font-weight: 300; }
.success-steps { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.success-step { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-mid); font-weight: 400; }
.success-step-num { width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(135deg, var(--grad-purple), var(--grad-rose)); color: #fff; font-size: 12px; font-weight: 600; display: flex; align-items: center; justify-content: center; }
.success-step-arrow { color: var(--text-muted); display: flex; align-items: center; }
.success-note { font-size: 13px; color: var(--text-muted); font-weight: 300; }
.success-note a { color: var(--primary-text); text-decoration: none; }
.success-note a:hover { text-decoration: underline; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes circleStroke { to { stroke-dashoffset: 0; } }
@keyframes checkStroke { to { stroke-dashoffset: 0; } }

/* ═══ FOOTER ═══ */
footer { position: relative; padding: 60px clamp(24px, 5vw, 80px) 36px; }
footer::before { content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, var(--secondary-soft), var(--primary-soft), transparent); }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer-brand .nav-logo { margin-bottom: 14px; }
.footer-brand p { font-size: 14px; color: var(--text-soft); line-height: 1.65; font-weight: 300; max-width: 260px; }
.footer-location { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.5px; color: var(--text-muted); margin-top: 10px; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a { color: var(--text); display: flex; transition: opacity 0.25s; }
.footer-social a:hover { opacity: 0.6; }
.footer-col h4 { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 18px; font-weight: 400; }
.footer-col a { display: block; color: var(--text-mid); text-decoration: none; font-size: 14px; margin-bottom: 11px; font-weight: 300; transition: color 0.25s; }
.footer-col a:hover { color: var(--primary-text); }
.footer-bottom { max-width: 1100px; margin: 0 auto; padding-top: 28px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: var(--text-muted); font-weight: 300; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: var(--text-muted); text-decoration: none; font-weight: 300; transition: color 0.25s; }
.footer-bottom-links a:hover { color: var(--text-mid); }

/* ═══ SCROLL ANIMATIONS ═══ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
  .pricing-card.featured { order: -1; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 36px; }
  .process-track { display: none; }
  .problem-layout, .trust-layout { grid-template-columns: 1fr; gap: 44px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero-3d-wrap { display: none; }
}

@media (max-width: 768px) {
  nav { width: 94%; padding: 0 20px; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .nav-dropdown-trigger {
    pointer-events: none;
    color: var(--text-muted) !important;
    font-size: 11px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: -4px;
  }
  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    min-width: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
    padding: 0 0 0 12px;
    border-radius: 0;
  }
  .nav-dropdown-menu::before { display: none; }
  .nav-dropdown-menu li { list-style: none; }
  .nav-dropdown-menu a {
    padding: 0;
    font-size: 13.5px;
    color: var(--text-mid);
    border-radius: 0;
  }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 100%; }
  .process-steps { grid-template-columns: 1fr; }
  .hero-title { letter-spacing: -1px; }
  section { padding: 80px clamp(20px, 5vw, 80px); }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .shield-grid { grid-template-columns: 1fr; }
  .logo-row { gap: 12px; }
  .cta-form { grid-template-columns: 1fr; }
  .cta-inner { padding: 48px 28px; border-radius: 20px; }
  .success-steps { flex-direction: column; gap: 8px; }
  .success-step-arrow { transform: rotate(90deg); }
  .hero-3d-wrap { display: none; }
}


/* ========================================
   BLOG STYLES
   ======================================== */

/* Active nav link for blog pages */
.nav-links .active-link { color: var(--primary) !important; font-weight: 500; }

/* Blog hero */
.blog-hero {
  padding: 100px 48px 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.blog-hero h1 {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
}
.blog-hero h1 .tag-highlight {
  color: var(--primary);
}
.blog-hero p {
  font-size: 18px;
  color: var(--text-soft);
  max-width: 600px;
  line-height: 1.6;
}

/* Filter bar (tags + sort) */
.blog-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 48px;
  max-width: 1100px;
  margin: 0 auto 40px;
  flex-wrap: wrap;
}
.tag-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.tag-chip {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--bg-glass);
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  color: var(--text-soft);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  backdrop-filter: blur(8px);
}
.tag-chip:hover {
  border-color: var(--border-hover);
  color: var(--text);
}
.tag-chip.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* Sort toggle */
.sort-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.sort-toggle:hover {
  color: var(--text-mid);
  border-color: var(--border-hover);
}
.sort-toggle svg {
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.sort-toggle[data-sort="oldest"] svg {
  transform: rotate(180deg);
}

/* Blog post cards grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 0 48px 80px;
  max-width: 1100px;
  margin: 0 auto;
}
.post-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-glass-strong);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
  backdrop-filter: blur(12px);
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--border-hover);
}
.post-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.post-card-img-placeholder {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, var(--primary-pale), var(--highlight));
}
.post-card-body {
  padding: 24px;
  flex: 1;
}
.post-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
  flex-wrap: wrap;
}
.meta-dot { opacity: 0.4; }
.post-card-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--primary-pale);
  color: var(--primary-text);
  font-size: 11px;
  font-weight: 500;
  font-family: 'Outfit', sans-serif;
  text-decoration: none;
  transition: background 0.2s;
}
.post-card-tag:hover {
  background: var(--primary-soft);
  color: #fff;
}
.post-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--text);
  line-height: 1.35;
}
.post-card p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
}
.post-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
}
.read-more {
  color: var(--primary-text);
  font-weight: 500;
}

/* Single blog post */
.blog-post {
  max-width: 720px;
  margin: 0 auto;
}
.post-header {
  padding: 100px 24px 0;
}
.post-breadcrumb {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-family: 'JetBrains Mono', monospace;
}
.post-breadcrumb a {
  color: var(--primary-text);
  text-decoration: none;
}
.post-breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { margin: 0 6px; opacity: 0.4; }
.post-header h1 {
  font-family: 'Fraunces', serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 16px;
  color: var(--text);
}
.post-header-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.post-header-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.post-header-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.post-header-tags .post-card-tag {
  font-size: 12px;
  padding: 4px 12px;
}

/* Share icons (post header) */
.post-share-icons {
  display: flex;
  align-items: center;
  gap: 4px;
}
.share-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-glass);
  color: var(--text-muted);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  backdrop-filter: blur(8px);
  font-family: inherit;
  font-size: inherit;
}
.share-icon:hover {
  color: var(--primary-text);
  border-color: var(--primary-soft);
  background: var(--primary-pale);
  transform: translateY(-1px);
}
.share-icon.copied {
  color: var(--success);
  border-color: var(--success);
}

/* Post hero image */
.post-hero-img {
  padding: 0 24px 40px;
}
.post-hero-img img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

/* Article body typography */
.post-body {
  padding: 0 24px 60px;
}
.post-body h2 {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 400;
  margin: 48px 0 16px;
  color: var(--text);
}
.post-body h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 400;
  margin: 36px 0 12px;
  color: var(--text);
}
.post-body p {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 20px;
}
.post-body ul, .post-body ol {
  margin: 0 0 20px 24px;
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--text-mid);
}
.post-body li { margin-bottom: 8px; }
.post-body strong { color: var(--text); }
.post-body a {
  color: var(--primary-text);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.post-body a:hover { color: var(--primary); }
.post-body blockquote {
  border-left: 3px solid var(--primary-soft);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--primary-pale);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: var(--text-mid);
}
.post-body code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  background: var(--primary-pale);
  padding: 2px 8px;
  border-radius: 4px;
  color: var(--primary-text);
}
.post-body pre {
  background: var(--text);
  color: #e0d6ec;
  padding: 24px;
  border-radius: 12px;
  margin: 24px 0;
  overflow-x: auto;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13.5px;
  line-height: 1.6;
}
.post-body pre code {
  background: none;
  padding: 0;
  color: inherit;
  font-size: inherit;
}
.post-body img {
  max-width: 100%;
  border-radius: 12px;
  margin: 24px 0;
}
.post-body hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 40px 0;
}

/* Post CTA banner */
.post-cta {
  max-width: 720px;
  margin: 0 auto 80px;
  padding: 0 24px;
}
.post-cta-inner {
  background: linear-gradient(135deg, var(--primary), var(--grad-rose));
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
  color: #fff;
}
.post-cta-inner h3 {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 12px;
}
.post-cta-inner p {
  font-size: 15px;
  opacity: 0.9;
  margin-bottom: 24px;
}
.post-cta-btn {
  display: inline-block;
  padding: 12px 32px;
  background: #fff;
  color: var(--primary);
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.2s;
}
.post-cta-btn:hover {
  transform: translateY(-2px);
}

/* Blog search */
.blog-search {
  position: relative;
  max-width: 400px;
  margin-top: 24px;
  z-index: 30;
}
.blog-search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}
.blog-search-input {
  width: 100%;
  padding: 12px 16px 12px 44px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--bg-glass-strong);
  border: 1px solid var(--border);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.blog-search-input::placeholder { color: var(--text-muted); }
.blog-search-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(155, 114, 207, 0.1);
}
.blog-search-results {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: rgba(253, 246, 240, 0.97);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(155, 114, 207, 0.15);
  border-radius: 12px;
  box-shadow: 0 12px 48px rgba(155, 114, 207, 0.15);
  padding: 8px;
  z-index: 50;
  max-height: 360px;
  overflow-y: auto;
}
.search-result-item {
  display: block;
  padding: 10px 12px;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s;
  border-bottom: 1px solid var(--border);
}
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover {
  background: var(--primary-pale);
}
.search-result-title {
  display: block;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-result-excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 12px;
  color: var(--text-soft);
  line-height: 1.5;
}
.search-result-excerpt mark {
  background: var(--primary-pale);
  color: var(--primary-text);
  border-radius: 2px;
  padding: 0 2px;
}
.search-empty {
  padding: 16px 14px;
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
}
.blog-no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 24px;
  color: var(--text-muted);
  font-size: 15px;
}

/* Blog responsive */
@media (max-width: 768px) {
  .blog-hero { padding: 80px 24px 32px; }
  .blog-hero h1 { font-size: 36px; }
  .blog-search { max-width: 100%; }
  .blog-filter-bar { padding: 0 24px; margin-bottom: 28px; }
  .blog-grid { padding: 0 24px 60px; grid-template-columns: 1fr; }
  .post-header { padding: 80px 20px 0; }
  .post-header h1 { font-size: 30px; }
  .post-body { padding: 0 20px 48px; }
  .post-header-actions { flex-direction: column; align-items: flex-start; }
  .share-icon { width: 34px; height: 34px; }
  .post-cta { padding: 0 20px; }
  .post-cta-inner { padding: 36px 24px; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}


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

.contact-page {
  padding: 100px clamp(24px, 5vw, 80px) 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}

/* Left column */
.contact-info {
  padding-top: 20px;
}

.contact-info .section-tag {
  margin-bottom: 24px;
}

.contact-heading {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 400;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 16px;
}

.contact-heading em {
  font-style: italic;
  font-weight: 300;
  background: linear-gradient(135deg, var(--grad-purple), var(--grad-rose));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-subheading {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 16px;
}

.contact-description {
  font-size: 15.5px;
  color: var(--text-soft);
  line-height: 1.7;
  max-width: 520px;
  font-weight: 300;
  margin-bottom: 32px;
}

.contact-social {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}

.contact-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-glass);
  color: var(--text-mid);
  text-decoration: none;
  transition: all 0.25s;
  backdrop-filter: blur(8px);
}

.contact-social a:hover {
  color: var(--primary-text);
  border-color: var(--primary-soft);
  background: var(--primary-pale);
  transform: translateY(-2px);
}

.contact-book-cta {
  margin-bottom: 36px;
}

.contact-trust-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.3px;
  color: var(--text-muted);
}

.contact-badge svg {
  color: var(--primary-soft);
  flex-shrink: 0;
}

/* Right column — form */
.contact-form-wrap {
  background: var(--bg-glass-strong);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: clamp(32px, 4vw, 46px);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form-field label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
}

.contact-form-field label .required {
  color: var(--primary-soft);
}

.contact-form-field input,
.contact-form-field select,
.contact-form-field textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-size: 15px;
  font-family: 'Outfit', sans-serif;
  outline: none;
  transition: all 0.3s;
  box-sizing: border-box;
}

.contact-form-field input::placeholder,
.contact-form-field textarea::placeholder {
  color: var(--text-muted);
}

.contact-form-field input:focus,
.contact-form-field select:focus,
.contact-form-field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(155, 114, 207, 0.1);
}

/* Contact page custom dropdown trigger inherits field styling */
.contact-form-field .custom-dropdown-trigger {
  padding: 14px 18px;
}

/* Legacy fallback for non-JS */
.contact-form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A6B90' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 42px;
  cursor: pointer;
}

.contact-form-field select:invalid {
  color: var(--text-muted);
}

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

.contact-submit {
  width: 100%;
  justify-content: center;
}

.contact-form-wrap .form-status {
  min-height: 0;
  margin: 0;
}

.contact-form-wrap .form-status:empty {
  display: none;
}

/* Contact success state */
.contact-success {
  animation: fadeInUp 0.6s ease both;
  text-align: center;
  padding: 20px 0;
}

.contact-success-icon {
  margin: 0 auto 24px;
  width: 72px;
  height: 72px;
  color: var(--success);
}

.contact-success-icon .success-checkmark {
  width: 72px;
  height: 72px;
}

.contact-success-title {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--text);
  margin: 0 0 12px;
  letter-spacing: -0.5px;
}

.contact-success-desc {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 380px;
  margin: 0 auto 36px;
  font-weight: 300;
}

.contact-success-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
  max-width: 360px;
  margin: 0 auto 36px;
}

.contact-success-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-success-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--grad-purple), var(--grad-rose));
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-success-step div {
  display: flex;
  flex-direction: column;
}

.contact-success-step strong {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
}

.contact-success-step span {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.5;
}

.contact-success-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-mid);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.25s;
}

.contact-success-back:hover {
  border-color: var(--primary-soft);
  color: var(--primary-text);
  background: var(--primary-pale);
}

/* Contact page responsive */
@media (max-width: 768px) {
  .contact-page { padding: 80px 20px 60px; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-row { grid-template-columns: 1fr; }
  .contact-info { padding-top: 0; }
  .contact-trust-badges { gap: 14px; }
  .contact-form-wrap { padding: 28px 20px; border-radius: 20px; }
}

/* ═══ ABOUT PAGE ═══ */
.about-page {
  padding-top: 100px;
}

.about-page section {
  padding: 60px clamp(24px, 5vw, 80px);
}

.about-hero {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about-story {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.about-story-text {
  text-align: left;
  max-width: 620px;
  margin: 0 auto;
}

.about-story-text p {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--text-mid);
  font-weight: 300;
  margin-bottom: 20px;
}

.about-story-text p:last-child {
  margin-bottom: 0;
}

.about-expertise {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.about-expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.about-expertise-card {
  padding: 32px 24px;
  border-radius: 16px;
  background: var(--bg-glass);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  text-align: left;
  transition: all 0.3s;
}

.about-expertise-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-glass-strong);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.about-expertise-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--primary);
}

.about-expertise-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
}

.about-expertise-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-soft);
  font-weight: 300;
}

.about-values {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.about-value-card {
  padding: 32px 28px;
  border-radius: 16px;
  background: var(--bg-glass);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  text-align: left;
  transition: all 0.3s;
}

.about-value-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-glass-strong);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.about-value-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--primary-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--primary);
}

.about-value-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}

.about-value-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-soft);
  font-weight: 300;
}

.about-cta {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 56px 40px;
  border-radius: 20px;
  background: var(--bg-glass);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.about-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* About page responsive */
@media (max-width: 1024px) {
  .about-expertise-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .about-page { padding-top: 80px; }
  .about-page section { padding: 40px clamp(20px, 5vw, 80px); }
  .about-expertise-grid { grid-template-columns: 1fr; }
  .about-values-grid { grid-template-columns: 1fr; }
  .about-cta { padding: 40px 24px; }
}