@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg: #FDFCFA; --bg-warm: #FAF8F5; --bg-cool: #F5F7FA;
  --text: #1A1A1A; --text-secondary: #5A5A5A; --text-muted: #8A8A8A;
  --accent: #6B5B95; --accent-light: rgba(107,91,149,.08); --accent-glow: rgba(107,91,149,.15);
  --teal: #4A9B94; --teal-light: rgba(74,155,148,.08); --warm: #D4A853;
  --line: rgba(26,26,26,.06); --line-strong: rgba(26,26,26,.12);
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow-soft: 0 4px 24px rgba(26,26,26,.04); --shadow-card: 0 8px 40px rgba(26,26,26,.06);
  --shadow-elevated: 0 20px 60px rgba(26,26,26,.10); --shadow-glow: 0 0 80px rgba(107,91,149,.12);
  --space-xs: 8px; --space-sm: 16px; --space-md: 24px; --space-lg: 48px; --space-xl: 80px; --space-2xl: 120px;
  --radius-sm: 8px; --radius-md: 16px; --radius-lg: 24px; --radius-xl: 32px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--sans); font-size: 16px; line-height: 1.6; color: var(--text); background: var(--bg); }
.container { max-width: 1240px; margin: 0 auto; padding: 0 var(--space-md); }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 var(--space-md); }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: var(--space-sm) var(--space-lg); background: rgba(253,252,250,.85); backdrop-filter: blur(20px) saturate(1.2); -webkit-backdrop-filter: blur(20px) saturate(1.2); border-bottom: 1px solid var(--line); transition: all .4s cubic-bezier(.4,0,.2,1); }
.nav.scrolled { padding: 12px var(--space-lg); box-shadow: var(--shadow-soft); }
.nav-inner { max-width: 1240px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark { width: 38px; height: 38px; border-radius: 10px; background: linear-gradient(135deg, var(--accent) 0%, var(--teal) 100%); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(107,91,149,.25); transition: transform .3s ease, box-shadow .3s ease; }
.brand:hover .brand-mark { transform: scale(1.05); box-shadow: 0 6px 24px rgba(107,91,149,.3); }
.brand-mark svg { width: 20px; height: 20px; }
.brand-name { font-family: var(--serif); font-size: 22px; font-weight: 500; letter-spacing: -.02em; color: var(--text); }
.brand-name span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: var(--space-lg); }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--text-secondary); text-decoration: none; position: relative; transition: color .25s ease; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1.5px; background: var(--accent); transition: width .3s cubic-bezier(.4,0,.2,1); }
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { padding: 12px 24px; border-radius: 999px; background: var(--text); color: #fff; font-size: 14px; font-weight: 600; text-decoration: none; transition: all .3s cubic-bezier(.4,0,.2,1); box-shadow: 0 4px 16px rgba(26,26,26,.15); }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,26,26,.2); }
@media (max-width: 900px) { .nav-links { display: none; } .nav { padding: var(--space-sm) var(--space-md); } }

/* HERO */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-abstract { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; z-index: 0; }
.hero-photo { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.6; animation: orbFloat 20s ease-in-out infinite; }
.hero-orb-1 { width: 600px; height: 600px; background: linear-gradient(135deg, rgba(107,91,149,.4) 0%, rgba(107,91,149,.1) 100%); top: -10%; left: -5%; animation-delay: 0s; }
.hero-orb-2 { width: 500px; height: 500px; background: linear-gradient(135deg, rgba(74,155,148,.35) 0%, rgba(74,155,148,.1) 100%); top: 40%; right: -10%; animation-delay: -7s; }
.hero-orb-3 { width: 400px; height: 400px; background: linear-gradient(135deg, rgba(212,168,83,.2) 0%, rgba(212,168,83,.05) 100%); bottom: -5%; left: 30%; animation-delay: -14s; }
@keyframes orbFloat { 0%, 100% { transform: translate(0,0) scale(1); } 25% { transform: translate(30px,-30px) scale(1.05); } 50% { transform: translate(-20px,20px) scale(0.95); } 75% { transform: translate(20px,10px) scale(1.02); } }
.hero-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(135deg, rgba(253,252,250,.96) 0%, rgba(253,252,250,.88) 40%, rgba(253,252,250,.75) 100%), radial-gradient(ellipse at 20% 30%, rgba(107,91,149,.08) 0%, transparent 50%), radial-gradient(ellipse at 80% 70%, rgba(74,155,148,.06) 0%, transparent 50%); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 1240px; margin: 0 auto; padding: 160px var(--space-md) var(--space-xl); display: grid; grid-template-columns: 1.1fr .9fr; gap: var(--space-xl); align-items: center; width: 100%; }
@media (max-width: 1000px) { .hero-content { grid-template-columns: 1fr; padding-top: 140px; } }
.hero-text { max-width: 600px; }
.hero-kicker { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: var(--space-md); opacity: 0; transform: translateY(20px); animation: fadeUp .8s .2s forwards; }
.hero-kicker::before { content: ''; width: 32px; height: 1px; background: var(--accent); }
.hero h1 { font-family: var(--serif); font-size: clamp(48px, 6vw, 72px); font-weight: 400; line-height: 1.08; letter-spacing: -.03em; color: var(--text); margin-bottom: var(--space-md); opacity: 0; transform: translateY(30px); animation: fadeUp .8s .35s forwards; }
.hero-sub { font-family: var(--serif); font-size: clamp(18px, 2vw, 22px); font-weight: 400; line-height: 1.6; color: var(--text-secondary); max-width: 50ch; margin-bottom: var(--space-lg); opacity: 0; transform: translateY(20px); animation: fadeUp .8s .5s forwards; }
.hero-ctas { display: flex; gap: var(--space-sm); flex-wrap: wrap; opacity: 0; transform: translateY(20px); animation: fadeUp .8s .65s forwards; }
.hero-card { background: rgba(255,255,255,.9); backdrop-filter: blur(20px); border-radius: var(--radius-lg); padding: var(--space-lg); box-shadow: var(--shadow-elevated), var(--shadow-glow); border: 1px solid rgba(255,255,255,.8); opacity: 0; transform: translateY(40px) scale(.96); animation: floatUp 1s .8s forwards; }
.hero-card-label { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); margin-bottom: 12px; }
.hero-card-title { font-family: var(--serif); font-size: 24px; font-weight: 500; margin-bottom: 8px; }
.hero-card-text { font-size: 15px; color: var(--text-secondary); line-height: 1.6; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes floatUp { to { opacity: 1; transform: translateY(0) scale(1); } }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 18px 32px; border-radius: 999px; font-size: 15px; font-weight: 600; text-decoration: none; transition: all .35s cubic-bezier(.4,0,.2,1); cursor: pointer; border: none; }
.btn-primary { background: linear-gradient(135deg, var(--accent) 0%, #5A4A7A 100%); color: #fff; box-shadow: 0 8px 32px rgba(107,91,149,.3), 0 2px 8px rgba(107,91,149,.2); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(107,91,149,.35), 0 4px 12px rgba(107,91,149,.25); }
.btn-secondary { background: rgba(26,26,26,.04); color: var(--text); border: 1px solid var(--line-strong); }
.btn-secondary:hover { background: rgba(26,26,26,.08); transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--accent); box-shadow: 0 8px 32px rgba(0,0,0,.15); }
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(0,0,0,.2); }
.btn-outline { background: transparent; border: 2px solid rgba(255,255,255,.4); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }

/* TRUST BAR */
.trust-bar { position: relative; z-index: 10; margin-top: -60px; padding: 0 var(--space-md); }
.trust-bar-inner { max-width: 1000px; margin: 0 auto; background: #fff; border-radius: var(--radius-xl); padding: var(--space-lg) var(--space-xl); box-shadow: var(--shadow-card); border: 1px solid var(--line); }
.trust-logos { display: flex; justify-content: center; align-items: center; gap: var(--space-lg); flex-wrap: wrap; margin-bottom: var(--space-md); }
.trust-label { font-size: 12px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); }
.trust-logo { font-size: 15px; font-weight: 700; color: var(--text); opacity: .7; }
.trust-dot { color: var(--text-muted); opacity: .4; }
.trust-chips { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.chip { padding: 8px 16px; border-radius: 999px; background: var(--accent-light); font-size: 13px; font-weight: 500; color: var(--accent); }
@media (max-width: 700px) { .trust-bar { margin-top: -40px; } .trust-bar-inner { padding: var(--space-md); } .trust-logos { gap: var(--space-md); } }

/* SECTIONS */
.section { padding: var(--space-2xl) 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto var(--space-xl); }
.section-kicker { font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.section-title { font-family: var(--serif); font-size: clamp(36px, 4.5vw, 52px); font-weight: 400; line-height: 1.15; letter-spacing: -.02em; margin-bottom: var(--space-sm); }
.section-sub { font-size: 18px; color: var(--text-secondary); line-height: 1.6; }

/* APPROACH */
.approach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
@media (max-width: 800px) { .approach-grid { grid-template-columns: 1fr; } }
.approach-card { background: #fff; border-radius: var(--radius-lg); padding: var(--space-lg); border: 1px solid var(--line); box-shadow: var(--shadow-soft); transition: all .4s cubic-bezier(.4,0,.2,1); position: relative; overflow: hidden; }
.approach-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--accent), var(--teal)); opacity: 0; transition: opacity .3s ease; }
.approach-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-elevated); }
.approach-card:hover::before { opacity: 1; }
.approach-num { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--accent-light), var(--teal-light)); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--accent); margin-bottom: var(--space-md); }
.approach-card h3 { font-family: var(--serif); font-size: 24px; font-weight: 500; margin-bottom: 12px; }
.approach-card p { font-size: 15px; color: var(--text-secondary); line-height: 1.6; margin-bottom: var(--space-sm); }
.approach-card ul { list-style: none; padding: 0; }
.approach-card li { font-size: 14px; color: var(--text-secondary); padding: 6px 0; padding-left: 20px; position: relative; }
.approach-card li::before { content: ''; position: absolute; left: 0; top: 12px; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }

/* SERVICES */
.services-section { background: var(--bg-cool); padding: var(--space-2xl) 0; }
.services-grid { display: flex; flex-direction: column; gap: var(--space-md); }
.service-card { background: #fff; border-radius: var(--radius-lg); padding: var(--space-lg) var(--space-xl); box-shadow: var(--shadow-soft); border: 1px solid var(--line); transition: all .4s cubic-bezier(.4,0,.2,1); }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.service-header { display: flex; align-items: flex-start; gap: var(--space-md); margin-bottom: var(--space-md); }
.service-icon { width: 64px; height: 64px; border-radius: var(--radius-md); background: linear-gradient(135deg, var(--accent-light) 0%, var(--teal-light) 100%); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.service-icon svg { width: 32px; height: 32px; color: var(--accent); }
.service-header h3 { font-family: var(--serif); font-size: 26px; font-weight: 500; margin-bottom: 6px; }
.service-header p { font-size: 15px; color: var(--text-secondary); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: var(--space-sm); }
.feature-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-secondary); }
.feature-check { width: 20px; height: 20px; border-radius: 50%; background: var(--teal-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feature-check svg { width: 12px; height: 12px; color: var(--teal); }

/* TESTIMONIALS */
.testimonials-section { padding: var(--space-2xl) 0; background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%); }
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }
@media (max-width: 800px) { .testimonials-grid { grid-template-columns: 1fr; } }
.testimonial-card { background: #fff; border-radius: var(--radius-lg); padding: var(--space-lg); box-shadow: var(--shadow-soft); border: 1px solid var(--line); }
.testimonial-quote { font-family: var(--serif); font-size: 20px; font-style: italic; line-height: 1.6; color: var(--text); margin-bottom: var(--space-md); position: relative; padding-left: var(--space-lg); }
.testimonial-quote::before { content: '\201C'; position: absolute; left: 0; top: -8px; font-size: 56px; font-style: normal; color: var(--accent); opacity: .2; line-height: 1; }
.testimonial-author { font-size: 14px; color: var(--text-muted); text-align: right; }

/* PRO SECTION */
.pro-section { padding: var(--space-2xl) 0; }
.pro-card { background: linear-gradient(135deg, var(--accent) 0%, #4A3D6A 100%); border-radius: var(--radius-xl); padding: var(--space-xl); color: #fff; text-align: center; position: relative; overflow: hidden; }
.pro-card::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255,255,255,.05) 0%, transparent 60%); animation: shimmer 8s linear infinite; }
@keyframes shimmer { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.pro-card > * { position: relative; z-index: 1; }
.pro-card h2 { font-family: var(--serif); font-size: clamp(32px, 4vw, 44px); font-weight: 400; margin-bottom: var(--space-sm); }
.pro-card p { font-size: 18px; opacity: .85; max-width: 50ch; margin: 0 auto var(--space-lg); }
.pro-pills { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: var(--space-lg); }
.pro-pill { padding: 10px 18px; border-radius: 999px; background: rgba(255,255,255,.12); font-size: 14px; font-weight: 500; backdrop-filter: blur(8px); }
.pro-ctas { display: flex; justify-content: center; gap: var(--space-sm); flex-wrap: wrap; }
.pro-details-section { background: var(--bg-cool); padding: var(--space-2xl) 0; }
.pro-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md); margin-bottom: var(--space-xl); }
@media (max-width: 1000px) { .pro-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pro-grid { grid-template-columns: 1fr; } }
.pro-detail-card { background: #fff; border-radius: var(--radius-lg); padding: var(--space-lg); border: 1px solid var(--line); transition: all .3s ease; }
.pro-detail-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.pro-detail-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--accent-light); display: flex; align-items: center; justify-content: center; margin-bottom: var(--space-md); }
.pro-detail-icon svg { width: 24px; height: 24px; color: var(--accent); }
.pro-detail-card h3 { font-family: var(--serif); font-size: 20px; font-weight: 500; margin-bottom: 8px; }
.pro-detail-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.pro-use-cases { background: #fff; border-radius: var(--radius-lg); padding: var(--space-lg); border: 1px solid var(--line); }
.pro-use-cases h3 { font-family: var(--serif); font-size: 24px; font-weight: 500; margin-bottom: var(--space-md); text-align: center; }
.use-cases-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
@media (max-width: 700px) { .use-cases-grid { grid-template-columns: 1fr; } }
.use-case { padding: var(--space-md); background: var(--bg); border-radius: var(--radius-md); }
.use-case strong { display: block; font-size: 15px; margin-bottom: 6px; color: var(--accent); }
.use-case p { font-size: 14px; color: var(--text-secondary); line-height: 1.5; margin: 0; }

/* NEWSLETTER */
.newsletter-section { padding: var(--space-xl) 0; background: var(--bg-warm); }
.newsletter-card { max-width: 900px; margin: 0 auto; background: #fff; border-radius: var(--radius-xl); padding: var(--space-xl); box-shadow: var(--shadow-card); display: flex; align-items: center; justify-content: space-between; gap: var(--space-xl); flex-wrap: wrap; }
.newsletter-text h3 { font-family: var(--serif); font-size: 28px; font-weight: 500; margin-bottom: 8px; }
.newsletter-text p { font-size: 15px; color: var(--text-secondary); }
.newsletter-form { display: flex; gap: 12px; flex-wrap: wrap; min-width: 300px; }
.newsletter-input { flex: 1; min-width: 200px; padding: 16px 20px; border-radius: 999px; border: 1px solid var(--line-strong); font-size: 15px; font-family: inherit; outline: none; transition: border-color .2s ease; }
.newsletter-input:focus { border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-light); }

/* CONTACT */
.contact-section { padding: var(--space-2xl) 0; }
.contact-card { max-width: 800px; margin: 0 auto; background: #fff; border-radius: var(--radius-xl); padding: var(--space-xl); box-shadow: var(--shadow-card); border: 1px solid var(--line); }
.contact-intro { text-align: center; margin-bottom: var(--space-lg); }
.contact-intro h2 { font-family: var(--serif); font-size: 36px; font-weight: 400; margin-bottom: 12px; }
.contact-intro p { font-size: 16px; color: var(--text-secondary); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 14px; font-weight: 500; color: var(--text-secondary); }
.form-field input, .form-field select, .form-field textarea { padding: 14px 18px; border-radius: var(--radius-sm); border: 1px solid var(--line-strong); font-size: 15px; font-family: inherit; color: var(--text); background: var(--bg); outline: none; transition: border-color .2s ease; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-light); }
.form-field textarea { min-height: 120px; resize: vertical; }
.form-cta { margin-top: var(--space-md); text-align: center; }
.form-cta .btn { min-width: 240px; }
.form-notice { margin-top: var(--space-md); text-align: center; font-size: 14px; color: var(--text-muted); }

/* EMAIL CAPTURE */
.checklist-capture { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%); padding: var(--space-xl) 0; position: relative; overflow: hidden; }
.checklist-capture::before { content: ''; position: absolute; top: -150px; right: -100px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(107,91,149,.25) 0%, transparent 70%); pointer-events: none; }
.checklist-capture::after { content: ''; position: absolute; bottom: -100px; left: -80px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(74,155,148,.2) 0%, transparent 70%); pointer-events: none; }
.capture-inner { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); align-items: center; position: relative; z-index: 1; }
@media (max-width: 860px) { .capture-inner { grid-template-columns: 1fr; } }
.capture-kicker { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: #4A9B94; margin-bottom: var(--space-sm); display: flex; align-items: center; gap: 8px; }
.capture-kicker::before { content: ''; width: 24px; height: 1px; background: #4A9B94; }
.capture-content h2 { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 600; color: #fff; line-height: 1.2; margin-bottom: 16px; }
.capture-content p { font-size: 16px; color: rgba(255,255,255,.7); line-height: 1.7; margin-bottom: 20px; }
.capture-bullets { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.capture-bullets li { font-size: 15px; color: rgba(255,255,255,.8); display: flex; align-items: center; gap: 10px; }
.capture-bullets li::before { content: '✓'; width: 20px; height: 20px; background: rgba(74,155,148,.25); border: 1px solid rgba(74,155,148,.5); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: #4A9B94; flex-shrink: 0; }
.capture-form { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 20px; padding: 36px; backdrop-filter: blur(12px); }
.capture-form h3 { font-family: var(--serif); font-size: 1.4rem; color: #fff; margin-bottom: 6px; }
.capture-form .form-sub { font-size: 14px; color: rgba(255,255,255,.55); margin-bottom: 24px; }
.capture-form .form-row { display: flex; flex-direction: column; gap: 14px; margin-bottom: 16px; }
.capture-form input[type="text"],
.capture-form input[type="email"] { width: 100%; padding: 13px 16px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: 10px; color: #fff; font-size: 15px; font-family: var(--sans); outline: none; transition: border-color .2s ease; box-sizing: border-box; }
.capture-form input::placeholder { color: rgba(255,255,255,.35); }
.capture-form input:focus { border-color: rgba(107,91,149,.7); background: rgba(255,255,255,.1); }
.capture-form .btn-capture { width: 100%; padding: 14px; background: linear-gradient(135deg, #6B5B95, #4A9B94); color: #fff; border: none; border-radius: 10px; font-size: 15px; font-weight: 600; font-family: var(--sans); cursor: pointer; transition: opacity .2s ease, transform .2s ease; letter-spacing: .02em; }
.capture-form .btn-capture:hover { opacity: .9; transform: translateY(-1px); }
.capture-form .form-note { text-align: center; font-size: 12px; color: rgba(255,255,255,.35); margin-top: 12px; }

/* INLINE BLOG CAPTURE (compact, mid-post) */
.inline-capture { background: linear-gradient(135deg, rgba(107,91,149,.08), rgba(74,155,148,.08)); border: 1px solid rgba(107,91,149,.2); border-radius: 16px; padding: 32px; margin: 40px 0; }
.inline-capture h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: #2C2C2C; margin-bottom: 8px; }
.inline-capture p { font-family: 'Inter', sans-serif; font-size: 0.95rem; color: #5a5a5a; margin-bottom: 20px; line-height: 1.6; }
.inline-capture form { display: flex; gap: 10px; flex-wrap: wrap; }
.inline-capture input[type="email"] { flex: 1; min-width: 200px; padding: 12px 16px; border: 1px solid rgba(107,91,149,.3); border-radius: 8px; font-size: 14px; font-family: 'Inter', sans-serif; outline: none; background: #fff; color: #2C2C2C; }
.inline-capture input[type="email"]:focus { border-color: #6B5B95; }
.inline-capture button { padding: 12px 24px; background: linear-gradient(135deg, #6B5B95, #4A9B94); color: #fff; border: none; border-radius: 8px; font-size: 14px; font-weight: 600; font-family: 'Inter', sans-serif; cursor: pointer; white-space: nowrap; }
.inline-capture .form-note { font-size: 11px; color: #8a8a8a; margin-top: 10px; width: 100%; }

/* FOOTER */
.footer { background: #1A1A1A; color: #fff; padding: var(--space-xl) 0 var(--space-lg); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: var(--space-xl); margin-bottom: var(--space-xl); }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; gap: var(--space-lg); } }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: var(--space-md); }
.footer-brand .brand-mark { background: linear-gradient(135deg, #9B8BC5 0%, #6AADA8 100%); box-shadow: 0 4px 16px rgba(155,139,197,.3); }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-name span { color: #9B8BC5; }
.footer-about { font-size: 15px; color: rgba(255,255,255,.6); line-height: 1.6; max-width: 320px; }
.footer-heading { font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.4); margin-bottom: var(--space-md); }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 15px; color: rgba(255,255,255,.7); text-decoration: none; transition: color .2s ease; }
.footer-links a:hover { color: #fff; }
.footer-bottom { padding-top: var(--space-lg); border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--space-md); }
.footer-copy { font-size: 14px; color: rgba(255,255,255,.5); }
.footer-social { display: flex; gap: var(--space-md); }
.footer-social a { color: rgba(255,255,255,.5); transition: color .2s ease; }
.footer-social a:hover { color: #fff; }
.footer-social svg { width: 20px; height: 20px; }

/* INNER PAGE HERO */
.page-hero { padding: 140px var(--space-md) var(--space-xl); background: linear-gradient(135deg, var(--bg) 0%, var(--bg-warm) 100%); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -200px; right: -100px; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%); }
.page-hero-inner { max-width: 720px; position: relative; }
.page-hero .hero-kicker { opacity: 1; transform: none; animation: none; margin-bottom: var(--space-md); display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); }
.page-hero .hero-kicker::before { content: ''; width: 32px; height: 1px; background: var(--accent); }
.page-hero h1 { font-family: var(--serif); font-size: clamp(40px, 5vw, 60px); font-weight: 400; line-height: 1.1; letter-spacing: -.03em; color: var(--text); margin-bottom: var(--space-md); opacity: 1; transform: none; animation: none; }
.page-hero p { font-size: 18px; color: var(--text-secondary); line-height: 1.6; max-width: 55ch; }

/* BREADCRUMB */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); margin-bottom: var(--space-md); }
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--text-secondary); }

/* FAQ */
.faq-section { padding: var(--space-2xl) 0; }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border-radius: var(--radius-md); border: 1px solid var(--line); overflow: hidden; }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: var(--space-md) var(--space-lg); cursor: pointer; font-family: var(--serif); font-size: 18px; font-weight: 500; color: var(--text); transition: background .2s ease; list-style: none; }
.faq-question:hover { background: var(--bg-warm); }
.faq-question::after { content: '+'; font-size: 20px; color: var(--accent); flex-shrink: 0; transition: transform .3s ease; }
.faq-item[open] .faq-question::after { transform: rotate(45deg); }
.faq-answer { padding: 0 var(--space-lg) var(--space-md); font-size: 15px; color: var(--text-secondary); line-height: 1.7; }

/* BLOG */
.blog-section { padding: var(--space-2xl) 0; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-soft); transition: all .3s ease; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.blog-card-img { height: 200px; background: linear-gradient(135deg, var(--accent-light), var(--teal-light)); background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; }
.blog-card-body { padding: var(--space-md); }
.blog-card-tag { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.blog-card-title { font-family: var(--serif); font-size: 20px; font-weight: 500; line-height: 1.3; margin-bottom: 8px; color: var(--text); text-decoration: none; display: block; }
.blog-card-excerpt { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* SCROLL ANIMATION */
.fade-in-up { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }
