/* MW Studio Media — premium interface */
:root {
  --bg: #0b0b0c;
  --bg-2: #101012;
  --surface: #151517;
  --surface-2: #1a1a1d;
  --text: #f4f0e8;
  --text-soft: #d7d1c7;
  --text-mute: #aaa39a;
  --gold: #d2b06e;
  --gold-2: #b89556;
  --gold-soft: rgba(210,176,110,.12);
  --line: rgba(255,255,255,.11);
  --line-2: rgba(255,255,255,.07);
  --success: #79b98a;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 28px 80px rgba(0,0,0,.28);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 20% 0%, rgba(210,176,110,.055), transparent 28rem),
    var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::selection { background: var(--gold); color: #111; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }

.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section-pad { padding: 112px 0; }
.section-surface { background: linear-gradient(180deg, rgba(255,255,255,.018), rgba(255,255,255,.008)); border-block: 1px solid var(--line-2); }

.skip-link { position: fixed; top: -80px; left: 18px; z-index: 9999; background: var(--text); color: var(--bg); padding: 10px 14px; border-radius: 8px; transition: top .2s ease; }
.skip-link:focus { top: 18px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 46px; padding: 0 18px; border-radius: 999px; border: 1px solid transparent; font-size: 13px; font-weight: 600; letter-spacing: -.01em; transition: transform .22s ease, border-color .22s ease, background .22s ease, color .22s ease, box-shadow .22s ease; cursor: pointer; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #111; background: linear-gradient(135deg, #ddc185, var(--gold)); box-shadow: 0 10px 30px rgba(210,176,110,.12); }
.btn-primary:hover { background: linear-gradient(135deg, #e6cc96, #cba764); box-shadow: 0 14px 36px rgba(210,176,110,.19); }
.btn-ghost, .btn-outline { color: var(--text); background: rgba(255,255,255,.025); border-color: var(--line); }
.btn-ghost:hover, .btn-outline:hover { border-color: rgba(210,176,110,.55); background: var(--gold-soft); }
.btn-link { color: var(--gold); padding-inline: 0; min-height: auto; border: 0; }
.btn-lg { min-height: 54px; padding-inline: 24px; font-size: 14px; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 90; background: rgba(11,11,12,.72); border-bottom: 1px solid transparent; backdrop-filter: blur(18px) saturate(140%); -webkit-backdrop-filter: blur(18px) saturate(140%); transition: background .25s ease, border-color .25s ease, box-shadow .25s ease; }
.site-header.scrolled { background: rgba(11,11,12,.92); border-bottom-color: var(--line-2); box-shadow: 0 12px 40px rgba(0,0,0,.18); }
.header-inner { height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand img { width: 42px; height: 42px; object-fit: contain; }
.brand-copy { display: grid; gap: 3px; }
.brand-name { font-family: var(--font-display); font-size: 24px; font-weight: 700; line-height: .82; letter-spacing: -.03em; }
.brand-sub { font-size: 9px; letter-spacing: .22em; text-transform: uppercase; color: var(--text-mute); }
.main-nav { display: flex; align-items: center; gap: clamp(16px, 2vw, 29px); margin-left: auto; }
.main-nav > a { position: relative; color: #c5beb5; font-size: 12.5px; font-weight: 500; transition: color .2s ease; }
.main-nav > a::after { content: ''; position: absolute; left: 0; bottom: -8px; width: 0; height: 1px; background: var(--gold); transition: width .25s ease; }
.main-nav > a:hover { color: var(--text); }
.main-nav > a:hover::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.lang-switcher, .footer-langs, .mobile-lang { display: inline-flex; align-items: center; gap: 4px; padding: 3px; border: 1px solid var(--line-2); border-radius: 999px; background: rgba(255,255,255,.015); }
.lang-switcher a, .footer-langs a, .mobile-lang a { min-width: 31px; height: 27px; display: grid; place-items: center; border-radius: 999px; color: var(--text-mute); font-size: 10px; font-weight: 600; letter-spacing: .06em; transition: .2s ease; }
.lang-switcher a.active, .lang-switcher a:hover, .footer-langs a.active, .footer-langs a:hover, .mobile-lang a.active { background: var(--gold); color: #111; }
.header-cta { white-space: nowrap; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; background: rgba(255,255,255,.02); cursor: pointer; place-items: center; }
.menu-toggle span { display: block; width: 17px; height: 1px; background: var(--text); margin: 3px auto; transition: transform .25s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(2px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-2px) rotate(-45deg); }
.mobile-menu { display: none; border-top: 1px solid var(--line-2); background: rgba(11,11,12,.97); }
.mobile-menu.open { display: block; }
.mobile-menu-inner { padding-block: 18px 26px; display: grid; gap: 4px; }
.mobile-menu-inner > a:not(.btn) { padding: 13px 0; border-bottom: 1px solid var(--line-2); color: var(--text-soft); font-size: 14px; }
.mobile-menu-inner .mobile-lang { justify-self: start; margin: 14px 0; }

/* Type system */
.eyebrow, .section-eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px; color: var(--gold); font-size: 11px; line-height: 1; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 5px rgba(210,176,110,.08); }
.hero-title, .section-title { font-family: var(--font-display); font-weight: 600; letter-spacing: -.035em; text-wrap: balance; }
.hero-title { max-width: 740px; font-size: clamp(50px, 5.3vw, 76px); line-height: .97; margin-bottom: 25px; }
.hero-title em, .section-title em { color: var(--gold); font-style: italic; font-weight: 500; }
.section-title { max-width: 760px; font-size: clamp(38px, 4vw, 56px); line-height: 1.02; }
.section-lead { max-width: 580px; color: var(--text-mute); font-size: 15px; line-height: 1.8; }
.section-head { margin-bottom: 52px; }
.split-head { display: grid; grid-template-columns: minmax(0,1.25fr) minmax(330px,.75fr); gap: 70px; align-items: end; }
.split-head .section-lead { margin: 0 0 2px auto; }

/* Hero */
.premium-hero { position: relative; min-height: 760px; padding: 96px 0 0; overflow: clip; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.hero-glow-one { width: 620px; height: 620px; right: -240px; top: -180px; background: radial-gradient(circle, rgba(210,176,110,.14), rgba(210,176,110,0) 68%); }
.hero-glow-two { width: 480px; height: 480px; left: -280px; bottom: 0; background: radial-gradient(circle, rgba(255,255,255,.035), transparent 70%); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0,1.04fr) minmax(430px,.96fr); gap: 72px; align-items: center; }
.hero-lead { max-width: 650px; margin-bottom: 30px; color: #b7b0a7; font-size: 17px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; }
.hero-note { display: flex; align-items: center; gap: 9px; margin-top: 22px; color: #8f8982; font-size: 12px; }
.hero-note span { width: 23px; height: 1px; background: rgba(210,176,110,.55); }
.founder-hero-card { position: relative; padding: 12px; border: 1px solid rgba(255,255,255,.12); border-radius: 30px; background: linear-gradient(150deg, rgba(255,255,255,.075), rgba(255,255,255,.015)); box-shadow: var(--shadow); transform: rotate(1deg); }
.founder-photo-wrap { position: relative; overflow: hidden; border-radius: 21px; aspect-ratio: 4 / 4.2; background: #e9e7e4; }
.founder-photo { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; filter: saturate(.87) contrast(1.02); }
.founder-photo-shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(9,9,10,.88) 0, rgba(9,9,10,.28) 31%, transparent 55%); }
.founder-caption { position: absolute; z-index: 2; inset: auto 26px 25px; display: grid; gap: 2px; }
.founder-kicker { margin-bottom: 4px; color: #d9c49a; font-size: 9px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }
.founder-caption strong { font-family: var(--font-display); font-size: 25px; line-height: 1.08; font-weight: 600; }
.founder-caption strong span { color: var(--gold); font-style: italic; font-weight: 500; }
.founder-caption small { color: rgba(255,255,255,.64); font-size: 10px; letter-spacing: .06em; }
.founder-card-detail { position: absolute; width: 72px; height: 72px; right: -18px; bottom: -18px; border-right: 1px solid rgba(210,176,110,.45); border-bottom: 1px solid rgba(210,176,110,.45); border-radius: 0 0 30px 0; pointer-events: none; }
.hero-audience { position: relative; z-index: 2; margin-top: 76px; padding-bottom: 32px; display: flex; align-items: center; gap: 25px; }
.hero-audience p { flex: 0 1 auto; color: #8f8982; font-size: 11px; letter-spacing: .03em; }
.hero-audience-line { flex: 1; height: 1px; background: linear-gradient(90deg, var(--line), transparent); }

/* Value */
.value-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.value-card { position: relative; min-height: 250px; padding: 30px; border: 1px solid var(--line-2); border-radius: var(--radius); background: linear-gradient(145deg, rgba(255,255,255,.025), rgba(255,255,255,.008)); overflow: hidden; }
.value-card::after { content: ''; position: absolute; width: 120px; height: 120px; right: -70px; bottom: -70px; border-radius: 50%; border: 1px solid rgba(210,176,110,.13); }
.card-index { display: block; margin-bottom: 55px; color: var(--gold); font-family: var(--font-display); font-size: 15px; }
.value-card h3 { margin-bottom: 10px; font-family: var(--font-display); font-size: 25px; line-height: 1.1; font-weight: 600; }
.value-card p { color: var(--text-mute); font-size: 13px; line-height: 1.75; }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.premium-service-card { position: relative; min-height: 330px; padding: 32px; border: 1px solid var(--line-2); border-radius: var(--radius); background: rgba(255,255,255,.016); overflow: hidden; transition: transform .3s ease, border-color .3s ease, background .3s ease; }
.premium-service-card:hover { transform: translateY(-5px); border-color: rgba(210,176,110,.28); background: rgba(255,255,255,.028); }
.service-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 58px; }
.service-number { color: var(--gold); font-family: var(--font-display); font-size: 17px; }
.service-arrow { width: 37px; height: 37px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: #c8c2b9; transition: .25s ease; }
.premium-service-card:hover .service-arrow { border-color: var(--gold); background: var(--gold); color: #111; transform: rotate(45deg); }
.premium-service-card h3 { margin-bottom: 12px; font-family: var(--font-display); font-size: 32px; line-height: 1.05; font-weight: 600; }
.premium-service-card > p { max-width: 520px; margin-bottom: 26px; color: var(--text-mute); font-size: 13px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.service-tags li { padding: 7px 10px; border: 1px solid var(--line-2); border-radius: 999px; color: #a9a299; font-size: 10px; }
.card-link { position: absolute; inset: 0; }

/* Pricing */
.pricing-intro { max-width: 830px; margin-bottom: 52px; }
.pricing-intro .section-lead { margin-top: 20px; }
.packages-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.package-card { position: relative; display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--line-2); border-radius: var(--radius); background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.012)); }
.package-card.featured { border-color: rgba(210,176,110,.56); background: linear-gradient(180deg, rgba(210,176,110,.09), rgba(255,255,255,.014) 48%); box-shadow: 0 22px 70px rgba(0,0,0,.19); }
.package-badge { position: absolute; top: 18px; right: 18px; padding: 6px 9px; border-radius: 999px; background: rgba(210,176,110,.15); border: 1px solid rgba(210,176,110,.28); color: #ddc489; font-size: 9px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.plan-order { color: #746f69; font-family: var(--font-display); font-size: 15px; }
.package-card h3 { margin: 35px 0 10px; font-family: var(--font-display); font-size: 30px; line-height: 1; font-weight: 600; }
.package-price { margin-bottom: 20px; color: var(--gold); font-family: var(--font-display); font-size: 26px; line-height: 1; }
.package-description { min-height: 88px; padding-bottom: 24px; margin-bottom: 22px; border-bottom: 1px solid var(--line-2); color: var(--text-mute); font-size: 12.5px; line-height: 1.7; }
.package-list { flex: 1; margin-bottom: 28px; display: grid; align-content: start; gap: 11px; }
.package-list li { position: relative; padding-left: 20px; color: #c0bab2; font-size: 12px; }
.package-list li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-size: 10px; }
.addons-panel { margin-top: 24px; padding: 28px; border: 1px solid var(--line-2); border-radius: var(--radius); background: rgba(255,255,255,.015); }
.addons-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--line-2); }
.addons-heading span { font-family: var(--font-display); font-size: 27px; font-weight: 600; }
.addons-heading small { color: var(--gold); font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }
.addons-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 0 34px; }
.addon-item { display: flex; justify-content: space-between; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--line-2); font-size: 12px; }
.addon-item span { color: #b8b2aa; }
.addon-item strong { color: var(--gold); font-family: var(--font-display); font-size: 16px; font-weight: 600; white-space: nowrap; }
.pricing-note { margin-top: 22px; max-width: 800px; color: #8f8982; font-size: 11px; line-height: 1.7; }

/* Process */
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border-top: 1px solid var(--line); }
.process-card { position: relative; padding: 30px 26px 6px 0; }
.process-card:not(:last-child) { border-right: 1px solid var(--line-2); margin-right: 26px; }
.process-card .num { display: block; margin-bottom: 62px; color: var(--gold); font-family: var(--font-display); font-size: 18px; }
.process-card h3 { margin-bottom: 10px; font-family: var(--font-display); font-size: 23px; line-height: 1.1; font-weight: 600; }
.process-card p { color: var(--text-mute); font-size: 12px; line-height: 1.7; }

/* About */
.about-grid { display: grid; grid-template-columns: minmax(390px,.85fr) minmax(0,1.15fr); gap: 86px; align-items: center; }
.about-photo-column { max-width: 490px; }
.about-photo-frame { padding: 10px; border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,.02); box-shadow: var(--shadow); }
.about-photo-frame img { width: 100%; aspect-ratio: 4/3.75; object-fit: cover; object-position: center 40%; border-radius: 16px; filter: saturate(.86) contrast(1.02); }
.about-signature { display: flex; justify-content: space-between; gap: 20px; padding: 18px 8px 0; color: #aaa39a; font-size: 10px; }
.about-signature strong { color: var(--text-soft); font-weight: 500; }
.about-copy .section-title { max-width: 700px; }
.about-text { margin: 28px 0; display: grid; gap: 16px; max-width: 680px; }
.about-text p { color: var(--text-mute); font-size: 14px; line-height: 1.82; }
.about-text p:first-child { color: #c9c3bb; }
.about-points { display: flex; flex-wrap: wrap; gap: 10px 22px; padding: 20px 0 28px; border-top: 1px solid var(--line-2); }
.about-points span { display: inline-flex; align-items: center; gap: 8px; color: #b5afa7; font-size: 11px; }
.about-points i { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

/* Structure */
.structure-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 86px; align-items: center; }
.structure-copy .section-lead { margin-top: 22px; }
.structure-cards { display: grid; gap: 12px; }
.structure-card { padding: 28px; border: 1px solid var(--line-2); border-radius: var(--radius); background: rgba(255,255,255,.015); }
.structure-card > span { display: block; margin-bottom: 26px; color: var(--gold); font-family: var(--font-display); }
.structure-card h3 { margin-bottom: 8px; font-family: var(--font-display); font-size: 25px; font-weight: 600; }
.structure-card p { color: var(--text-mute); font-size: 12px; line-height: 1.7; }

/* FAQ */
.faq-layout { display: grid; grid-template-columns: 340px minmax(0,1fr); gap: 88px; align-items: start; }
.faq-intro { position: sticky; top: 120px; }
.faq-grid { display: grid; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border: 0; background: transparent; text-align: left; cursor: pointer; }
.faq-question > span { color: var(--text-soft); font-size: 13px; font-weight: 500; }
.faq-icon { width: 18px; height: 18px; color: var(--gold); flex: 0 0 auto; transition: transform .3s ease; }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-answer p { padding: 0 45px 25px 0; color: var(--text-mute); font-size: 12.5px; line-height: 1.78; }

/* Final CTA */
.final-cta-section { padding: 0 0 112px; }
.final-cta-card { position: relative; overflow: hidden; display: flex; align-items: end; justify-content: space-between; gap: 60px; padding: 58px; border: 1px solid rgba(210,176,110,.26); border-radius: var(--radius-lg); background: radial-gradient(circle at 85% 20%, rgba(210,176,110,.13), transparent 30%), linear-gradient(145deg, #151517, #0f0f11); }
.final-cta-card::before { content: 'MW'; position: absolute; right: 32px; top: -44px; color: rgba(255,255,255,.022); font-family: var(--font-display); font-size: 190px; font-weight: 700; line-height: 1; pointer-events: none; }
.final-cta-copy { position: relative; z-index: 1; max-width: 760px; }
.final-cta-copy p { margin-top: 20px; max-width: 650px; color: var(--text-mute); font-size: 13px; }
.final-cta-card .btn { position: relative; z-index: 2; flex: 0 0 auto; }

/* Shared detail/service pages */
.service-detail { padding: 132px 0 96px !important; }
.service-detail > .container > .section-title { max-width: 840px; }
.service-detail > .container > .section-lead { margin-top: 18px; }
.service-card { border: 1px solid var(--line-2); background: linear-gradient(145deg, rgba(255,255,255,.024), rgba(255,255,255,.01)); border-radius: var(--radius); padding: 30px; }
.service-card h2, .service-card h3 { font-family: var(--font-display); }
.service-card p { color: var(--text-mute); }
.service-icon { width: 42px; height: 42px; margin-bottom: 22px; color: var(--gold); }
.service-icon svg { width: 100%; height: 100%; }
.service-detail-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 44px; }
.detail-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.detail-card { border: 1px solid var(--line-2); border-radius: var(--radius); background: rgba(255,255,255,.015); padding: 24px; }
.price-list li { display: flex; justify-content: space-between; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--line-2); color: var(--text-mute); font-size: 12px; }
.price-list li span:last-child { color: var(--gold); font-family: var(--font-display); font-size: 16px; }
.price-note, .wa-hint { color: #8f8982; font-size: 11px; }

/* Forms */
.form-row { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label, .form-group > span { display: block; margin-bottom: 8px; color: #d4cec5; font-size: 12px; font-weight: 500; }
.form-group input, .form-group textarea, .form-group select, .wa-field { width: 100%; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.025); color: var(--text); transition: border-color .2s ease, background .2s ease; }
.form-group input, .form-group textarea, .form-group select { padding: 13px 14px; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus, .wa-field:focus-within { outline: 0; border-color: rgba(210,176,110,.65); background: rgba(210,176,110,.035); }
.wa-field { display: flex; align-items: stretch; overflow: hidden; }
.wa-country { width: auto !important; min-width: 110px; border: 0 !important; border-radius: 0 !important; background: transparent !important; }
.wa-divider { width: 1px; margin-block: 8px; background: var(--line); }
.wa-input { flex: 1; border: 0 !important; border-radius: 0 !important; background: transparent !important; }
.radio-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 8px; }
.radio-label { display: flex !important; align-items: center; gap: 9px; min-height: 45px; margin: 0 !important; padding: 10px 12px; border: 1px solid var(--line-2); border-radius: 10px; background: rgba(255,255,255,.015); color: var(--text-mute) !important; cursor: pointer; transition: border-color .2s ease, background .2s ease; }
.radio-label:hover { border-color: rgba(210,176,110,.35); background: var(--gold-soft); }
.radio-label input { width: auto; accent-color: var(--gold); }
.honeypot { display: none !important; }

/* Generic legacy sections */
.manifesto, .cta-section { padding: 90px 0; text-align: center; border-top: 1px solid var(--line-2); }
.manifesto .quote { max-width: 900px; margin: 0 auto 18px; font-family: var(--font-display); font-size: 36px; line-height: 1.15; }
.manifesto .quote span { color: var(--gold); }
.signature { color: var(--text-mute); font-size: 12px; }
.stats-grid, .niche-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.stat, .niche, .step { border: 1px solid var(--line-2); border-radius: var(--radius); padding: 24px; background: rgba(255,255,255,.015); }
.stat .num, .step .num { color: var(--gold); font-family: var(--font-display); font-size: 30px; }
.stat .label, .niche p, .step p { color: var(--text-mute); font-size: 12px; }
.context-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 40px; }
.context-grid p { color: var(--text-mute); }
.niche-icon { width: 38px; height: 38px; margin-bottom: 16px; color: var(--gold); }
.niche h4, .step h3 { font-family: var(--font-display); font-size: 21px; }

/* Footer */
.site-footer { padding: 80px 0 28px; border-top: 1px solid var(--line-2); background: #09090a; }
.footer-topline { display: flex; align-items: end; justify-content: space-between; gap: 40px; padding-bottom: 58px; margin-bottom: 52px; border-bottom: 1px solid var(--line-2); }
.footer-statement { max-width: 720px; font-family: var(--font-display); font-size: clamp(32px,3.4vw,46px); line-height: 1.08; letter-spacing: -.03em; }
.footer-grid { display: grid; grid-template-columns: 1.7fr repeat(3,1fr); gap: 44px; }
.footer-brand { margin-bottom: 18px; }
.footer-brand-block > p { max-width: 390px; color: var(--text-mute); font-size: 12px; line-height: 1.75; }
.footer-founders { margin-top: 16px; color: #c6bfae !important; font-size: 10px !important; letter-spacing: .07em; }
.footer-grid h5 { margin-bottom: 18px; color: #77716b; font-size: 9px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.footer-grid > div > a:not(.brand) { display: block; width: fit-content; margin-bottom: 10px; color: #aba49c; font-size: 11.5px; transition: color .2s ease; }
.footer-grid > div > a:not(.brand):hover { color: var(--gold); }
.footer-langs { margin-top: 18px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 50px; padding-top: 22px; border-top: 1px solid var(--line-2); color: #6f6a65; font-size: 9.5px; letter-spacing: .04em; }

/* Floating WhatsApp */
.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 80; min-height: 50px; display: inline-flex; align-items: center; gap: 9px; padding: 0 16px 0 14px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; background: #f0ece4; color: #111; box-shadow: 0 16px 45px rgba(0,0,0,.28); font-size: 11px; font-weight: 600; transition: transform .2s ease, box-shadow .2s ease; }
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 20px 50px rgba(0,0,0,.35); }
.whatsapp-float svg { width: 20px; height: 20px; fill: currentColor; }

/* Reveal */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s cubic-bezier(.2,.65,.25,1), transform .7s cubic-bezier(.2,.65,.25,1); }
.js .reveal.visible { opacity: 1; transform: none; }
.js .reveal.visible:nth-child(2) { transition-delay: .06s; }
.js .reveal.visible:nth-child(3) { transition-delay: .12s; }
.js .reveal.visible:nth-child(4) { transition-delay: .18s; }

@media (max-width: 1080px) {
  .header-cta { display: none; }
  .main-nav { gap: 18px; }
  .hero-grid { grid-template-columns: minmax(0,1fr) minmax(370px,.8fr); gap: 44px; }
  .split-head { grid-template-columns: 1fr; gap: 20px; }
  .split-head .section-lead { margin-left: 0; }
  .packages-grid { grid-template-columns: 1fr 1fr; }
  .package-card:last-child { grid-column: 1 / -1; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .process-card:nth-child(2) { border-right: 0; margin-right: 0; }
  .process-card:nth-child(n+3) { border-top: 1px solid var(--line-2); }
  .about-grid, .structure-grid { gap: 50px; }
  .faq-layout { grid-template-columns: 280px 1fr; gap: 50px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 820px) {
  .container { width: min(100% - 32px, 1180px); }
  .section-pad { padding: 82px 0; }
  .main-nav, .header-actions > .lang-switcher { display: none; }
  .header-actions { margin-left: auto; }
  .menu-toggle { display: grid; }
  .header-inner { height: 72px; }
  .premium-hero { min-height: auto; padding-top: 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-title { max-width: 690px; }
  .founder-hero-card { max-width: 560px; width: 100%; justify-self: center; transform: none; }
  .founder-photo-wrap { aspect-ratio: 4/3.4; }
  .hero-audience { margin-top: 48px; }
  .value-grid { grid-template-columns: 1fr; }
  .value-card { min-height: auto; }
  .card-index { margin-bottom: 30px; }
  .services-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .package-card:last-child { grid-column: auto; }
  .package-description { min-height: 0; }
  .addons-grid { grid-template-columns: 1fr; }
  .about-grid, .structure-grid { grid-template-columns: 1fr; }
  .about-photo-column { max-width: 620px; }
  .faq-layout { grid-template-columns: 1fr; gap: 38px; }
  .faq-intro { position: static; }
  .final-cta-card { align-items: flex-start; flex-direction: column; padding: 40px; }
  .service-detail-grid { grid-template-columns: 1fr !important; }
  .stats-grid, .niche-grid { grid-template-columns: repeat(2,1fr); }
  .footer-topline { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 24px, 1180px); }
  .section-pad { padding: 68px 0; }
  .brand-copy { display: none; }
  .brand img { width: 39px; height: 39px; }
  .hero-title { font-size: clamp(44px, 14vw, 62px); }
  .hero-lead { font-size: 15px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .founder-hero-card { padding: 7px; border-radius: 22px; }
  .founder-photo-wrap { border-radius: 16px; aspect-ratio: 4/4.15; }
  .founder-caption { inset: auto 19px 18px; }
  .founder-caption strong { font-size: 21px; }
  .hero-audience { align-items: flex-start; }
  .hero-audience-line { margin-top: 9px; }
  .section-title { font-size: clamp(36px, 11vw, 48px); }
  .premium-service-card { min-height: 300px; padding: 26px; }
  .service-card-top { margin-bottom: 42px; }
  .package-card, .addons-panel { padding: 24px; }
  .addons-heading { align-items: flex-start; flex-direction: column; gap: 6px; }
  .addon-item { align-items: flex-start; flex-direction: column; gap: 5px; }
  .addon-item strong { white-space: normal; }
  .process-grid { grid-template-columns: 1fr; }
  .process-card, .process-card:not(:last-child) { margin: 0; padding: 27px 0; border-right: 0; border-top: 1px solid var(--line-2); }
  .process-card .num { margin-bottom: 28px; }
  .about-signature { flex-direction: column; gap: 3px; }
  .final-cta-card { padding: 30px 24px; border-radius: 22px; }
  .final-cta-card .btn { width: 100%; }
  .form-row, .radio-grid { grid-template-columns: 1fr; }
  .stats-grid, .niche-grid, .context-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .whatsapp-float { right: 14px; bottom: 14px; width: 52px; height: 52px; min-height: 52px; padding: 0; justify-content: center; }
  .whatsapp-float span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}

.project-form-shell { display: grid; grid-template-columns: 300px minmax(0,1fr); gap: 28px; margin-top: 52px; align-items: start; }
.project-form-aside { position: sticky; top: 110px; padding: 28px; border: 1px solid rgba(210,176,110,.24); border-radius: var(--radius); background: radial-gradient(circle at 20% 0%, rgba(210,176,110,.11), transparent 45%), rgba(255,255,255,.016); }
.project-form-aside > span { display: block; margin-bottom: 80px; color: var(--gold); font-family: var(--font-display); font-size: 36px; font-weight: 700; }
.project-form-aside > p { color: #b8b1a8; font-family: var(--font-display); font-size: 24px; line-height: 1.16; }
.project-form-people { display: flex; align-items: center; gap: 12px; margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--line-2); }
.project-form-people img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; object-position: center 34%; }
.project-form-people div { display: grid; gap: 2px; }
.project-form-people strong { color: var(--text-soft); font-size: 11px; font-weight: 600; }
.project-form-people small { color: var(--text-mute); font-size: 9px; }
.project-form-card { padding: 30px; border: 1px solid var(--line-2); border-radius: var(--radius); background: rgba(255,255,255,.012); }
.form-errors { margin-bottom: 24px; padding: 16px 18px; border: 1px solid rgba(229,115,115,.38); border-radius: 12px; background: rgba(229,115,115,.06); color: #e7a7a7; font-size: 12px; }
.form-errors strong { display: block; margin-bottom: 6px; }
.form-errors ul { list-style: disc; padding-left: 18px; }
.project-form-card .wa-hint { margin-top: 7px; }
@media (max-width: 820px) { .project-form-shell { grid-template-columns: 1fr; } .project-form-aside { position: static; } .project-form-aside > span { margin-bottom: 34px; } }
@media (max-width: 560px) { .project-form-card, .project-form-aside { padding: 22px; } }
.section-title-alt { max-width: 820px; margin-inline: auto; }
.section-subtitle-alt { max-width: 660px; margin: 18px auto 0; color: var(--text-mute); font-size: 13px; line-height: 1.75; }

/* =========================================================
   MW Studio Media — Premium V3 refinements
   Supplied PNG identity + founders, responsive hero,
   warm ivory contrast section and premium WhatsApp button.
   ========================================================= */
:root {
  --bg: #090a0b;
  --bg-2: #0e1011;
  --surface: #141617;
  --surface-2: #1a1c1e;
  --text: #f5f1e9;
  --text-soft: #ddd6cb;
  --text-mute: #a9a298;
  --gold: #cfae69;
  --gold-2: #aa8647;
  --gold-soft: rgba(207,174,105,.12);
  --ivory: #f2eee7;
  --ivory-2: #e8e2d9;
  --ink: #171614;
  --shadow: 0 30px 90px rgba(0,0,0,.34);
}

body {
  background:
    radial-gradient(circle at 18% 0%, rgba(207,174,105,.07), transparent 31rem),
    radial-gradient(circle at 96% 30%, rgba(255,255,255,.025), transparent 25rem),
    var(--bg);
}

.section-surface {
  background:
    radial-gradient(circle at 90% 0%, rgba(207,174,105,.045), transparent 28rem),
    linear-gradient(180deg, rgba(255,255,255,.022), rgba(255,255,255,.008));
}

/* Supplied full PNG logo — no duplicate MW/text beside it */
.brand { gap: 0; }
.brand .brand-logo {
  width: 220px;
  height: auto;
  max-height: 62px;
  object-fit: contain;
  object-position: left center;
}
.footer-brand .footer-brand-logo {
  width: 250px;
  height: auto;
  max-height: none;
}
.header-inner { height: 86px; }
.site-header {
  background: rgba(9,10,11,.76);
  border-bottom-color: rgba(255,255,255,.035);
}
.site-header.scrolled { background: rgba(9,10,11,.94); }

/* Hero: intentionally smaller photo, with premium depth instead of a heavy rectangle */
.premium-hero { min-height: 690px; padding: 88px 0 18px; }
.hero-grid {
  grid-template-columns: minmax(0,1.12fr) minmax(360px,.78fr);
  gap: clamp(46px, 5vw, 76px);
}
.hero-title { max-width: 760px; }
.hero-audience { margin-top: 54px; padding-bottom: 28px; }

.founder-hero-card {
  width: 100%;
  max-width: 430px;
  justify-self: end;
  padding: 0;
  border: 0;
  border-radius: 30px;
  background: transparent;
  box-shadow: none;
  transform: none;
}
.founder-photo-wrap {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  aspect-ratio: 1.22 / 1;
  border: 1px solid rgba(207,174,105,.25);
  border-radius: 30px;
  background:
    radial-gradient(circle at 60% 20%, rgba(207,174,105,.22), transparent 29%),
    radial-gradient(circle at 18% 90%, rgba(255,255,255,.07), transparent 28%),
    linear-gradient(145deg, #191b1d 0%, #0e1011 72%);
  box-shadow: 0 28px 75px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.06);
}
.founder-photo-wrap::before {
  content: '';
  position: absolute;
  z-index: 0;
  width: 72%;
  aspect-ratio: 1;
  right: -17%;
  top: -42%;
  border: 1px solid rgba(207,174,105,.2);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(207,174,105,.025), 0 0 0 58px rgba(207,174,105,.015);
}
.founder-photo-wrap::after {
  content: '';
  position: absolute;
  z-index: 0;
  left: 12%;
  right: 12%;
  bottom: -14px;
  height: 54px;
  border-radius: 50%;
  background: rgba(207,174,105,.13);
  filter: blur(22px);
}
.founder-photo {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: -1px;
  width: 104%;
  height: 94%;
  max-width: none;
  transform: translateX(-50%);
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 22px 24px rgba(0,0,0,.29)) saturate(.98) contrast(1.015);
}
.founder-photo-shade {
  z-index: 2;
  background: linear-gradient(to top, rgba(7,8,9,.72) 0%, rgba(7,8,9,.12) 25%, transparent 46%);
}
.founder-caption {
  z-index: 3;
  inset: auto 16px 16px;
  width: fit-content;
  max-width: calc(100% - 32px);
  padding: 11px 14px 12px;
  gap: 1px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 14px;
  background: rgba(12,13,14,.70);
  box-shadow: 0 12px 34px rgba(0,0,0,.23);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
}
.founder-kicker { margin-bottom: 3px; color: #ddc58e; }
.founder-caption strong { font-size: 21px; }
.founder-caption small { color: rgba(255,255,255,.68); }
.founder-card-detail {
  width: 64px;
  height: 64px;
  right: -10px;
  bottom: -10px;
  border-color: rgba(207,174,105,.48);
  border-radius: 0 0 28px 0;
}

/* Supplied transparent portrait in the About section */
.about-photo-frame {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-color: rgba(207,174,105,.21);
  background:
    radial-gradient(circle at 72% 18%, rgba(255,255,255,.23), transparent 24%),
    linear-gradient(145deg, #b9b0a4, #8e877f);
  box-shadow: 0 26px 74px rgba(0,0,0,.28);
}
.about-photo-frame::before {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.19);
  border-radius: 18px;
  pointer-events: none;
}
.about-photo-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1.36 / 1;
  padding: 20px 10px 0;
  object-fit: contain;
  object-position: center bottom;
  border-radius: 22px;
  filter: drop-shadow(0 18px 20px rgba(0,0,0,.22)) saturate(.98) contrast(1.015);
}

/* Premium light break: improves rhythm without abandoning the black/gold identity */
.section-light {
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 4%, rgba(207,174,105,.18), transparent 26rem),
    linear-gradient(180deg, #f4f1eb 0%, #eae5dd 100%);
  border-block: 1px solid rgba(23,22,20,.08);
}
.section-light .section-eyebrow { color: #96743c; }
.section-light .section-title { color: #191714; }
.section-light .section-title em { color: #9b773b; }
.section-light .section-lead,
.section-light .pricing-note { color: #625b53; }
.section-light .package-card {
  border-color: rgba(32,28,23,.09);
  background: rgba(255,255,255,.72);
  box-shadow: 0 18px 55px rgba(46,38,29,.06);
}
.section-light .package-card.featured {
  border-color: rgba(170,134,71,.40);
  background: linear-gradient(180deg, #fffdfa, #f7efe2);
  box-shadow: 0 26px 70px rgba(80,61,34,.11);
}
.section-light .package-badge {
  color: #775a2b;
  border-color: rgba(170,134,71,.28);
  background: rgba(207,174,105,.17);
}
.section-light .plan-order { color: #8d8377; }
.section-light .package-card h3 { color: #171513; }
.section-light .package-price { color: #9f7b3e; }
.section-light .package-description {
  color: #625b53;
  border-bottom-color: rgba(30,27,23,.08);
}
.section-light .package-list li { color: #565048; }
.section-light .package-list li::before { color: #a27d3f; }
.section-light .btn-ghost,
.section-light .btn-outline {
  color: #171513;
  border-color: rgba(30,27,23,.14);
  background: rgba(255,255,255,.72);
}
.section-light .btn-ghost:hover,
.section-light .btn-outline:hover {
  color: #171513;
  border-color: rgba(170,134,71,.42);
  background: rgba(207,174,105,.13);
}
.section-light .addons-panel {
  border-color: rgba(32,28,23,.08);
  background: rgba(255,255,255,.55);
  box-shadow: 0 18px 50px rgba(46,38,29,.045);
}
.section-light .addons-heading { border-bottom-color: rgba(32,28,23,.08); }
.section-light .addons-heading span { color: #191714; }
.section-light .addons-heading small { color: #9b773b; }
.section-light .addon-item { border-bottom-color: rgba(32,28,23,.08); }
.section-light .addon-item span { color: #575149; }
.section-light .addon-item strong { color: #9b773b; }

/* Premium floating WhatsApp — two-line pill on larger screens, clean circle on mobile */
.whatsapp-float {
  right: 24px;
  bottom: 24px;
  min-height: 66px;
  gap: 12px;
  padding: 9px 18px 9px 10px;
  border: 1px solid rgba(207,174,105,.27);
  border-radius: 999px;
  background: rgba(249,246,240,.97);
  color: #171513;
  box-shadow: 0 20px 58px rgba(0,0,0,.30), 0 1px 0 rgba(255,255,255,.85) inset;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 68px rgba(0,0,0,.35), 0 0 0 5px rgba(207,174,105,.06);
}
.wa-icon-wrap {
  position: relative;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, #29d66f, #12a94e);
  box-shadow: 0 8px 20px rgba(18,169,78,.24), inset 0 1px 0 rgba(255,255,255,.25);
}
.wa-icon-wrap::after {
  content: '';
  position: absolute;
  right: 1px;
  top: 1px;
  width: 8px;
  height: 8px;
  border: 2px solid #f9f6f0;
  border-radius: 50%;
  background: #28c968;
}
.whatsapp-float svg { width: 22px; height: 22px; fill: currentColor; }
.wa-copy { display: grid; gap: 1px; line-height: 1.12; }
.wa-copy small {
  color: #81776d;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.wa-copy strong { font-size: 12.5px; font-weight: 700; white-space: nowrap; }

@media (max-width: 1180px) {
  .brand .brand-logo { width: 196px; }
  .hero-grid { grid-template-columns: minmax(0,1fr) minmax(350px,.76fr); gap: 48px; }
  .founder-hero-card { max-width: 405px; }
}

@media (max-width: 820px) {
  .header-inner { height: 74px; }
  .brand .brand-logo { width: 182px; max-height: 53px; }
  .premium-hero { padding-top: 58px; padding-bottom: 8px; }
  .hero-grid { grid-template-columns: 1fr; gap: 42px; }
  .founder-hero-card { max-width: 470px; justify-self: center; }
  .founder-photo-wrap { aspect-ratio: 1.24 / 1; }
  .hero-audience { margin-top: 42px; }
  .about-photo-column { margin-inline: auto; width: min(100%, 570px); }
  .about-photo-frame img { aspect-ratio: 1.34 / 1; }
  .footer-brand .footer-brand-logo { width: 220px; }
}

@media (max-width: 560px) {
  .brand .brand-logo {
    width: 158px;
    height: auto;
    max-height: 48px;
  }
  .premium-hero { padding-top: 48px; }
  .hero-title { font-size: clamp(42px, 13.2vw, 58px); }
  .hero-grid { gap: 36px; }
  .founder-hero-card { width: min(100%, 390px); }
  .founder-photo-wrap { aspect-ratio: 1.16 / 1; border-radius: 24px; }
  .founder-photo { width: 112%; height: 94%; }
  .founder-caption {
    inset: auto 11px 11px;
    max-width: calc(100% - 22px);
    padding: 9px 11px 10px;
    border-radius: 12px;
  }
  .founder-kicker { font-size: 7.5px; letter-spacing: .16em; }
  .founder-caption strong { font-size: 17px; }
  .founder-caption small { font-size: 8.5px; }
  .hero-audience { margin-top: 34px; }
  .about-photo-frame img { aspect-ratio: 1.16 / 1; padding: 18px 4px 0; }
  .footer-brand .footer-brand-logo { width: 200px; }
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 58px;
    height: 58px;
    min-height: 58px;
    padding: 6px;
    justify-content: center;
  }
  .wa-icon-wrap { width: 46px; height: 46px; }
  .wa-copy { display: none; }
}

@media (max-width: 360px) {
  .brand .brand-logo { width: 142px; }
  .container { width: min(100% - 20px, 1180px); }
  .hero-title { font-size: clamp(38px, 12.8vw, 50px); }
}

/* Tiny founder preview inside the project form uses the responsive PNG cleanly. */
.project-form-people img {
  width: 74px;
  height: 48px;
  border-radius: 12px;
  object-fit: contain;
  object-position: center bottom;
  background: linear-gradient(145deg, #b9b0a4, #8e877f);
  border: 1px solid rgba(207,174,105,.2);
}

@media (max-width: 560px) {
  .whatsapp-float .wa-icon-wrap { display: grid; }
  .whatsapp-float .wa-copy { display: none; }
}


/* ===== V5 refinements ===== */
.brand .brand-logo { width: 188px; max-height: 44px; }
.footer-brand .footer-brand-logo { width: 226px; max-height: 56px; }
@media (max-width: 820px) { .brand .brand-logo { width: 170px; max-height: 40px; } .footer-brand .footer-brand-logo { width: 208px; } }
@media (max-width: 560px) { .brand .brand-logo { width: 154px; max-height: 36px; } .footer-brand .footer-brand-logo { width: 188px; } }

.founder-photo-wrap, .about-photo-frame { position: relative; }
.photo-film, .about-photo-frame::after { content: ''; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,0) 24%, rgba(0,0,0,.05) 100%), linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,0) 32%), repeating-linear-gradient(90deg, rgba(255,255,255,.015) 0 1px, transparent 1px 4px); opacity: .16; mix-blend-mode: soft-light; z-index: 2; }
.founder-photo-shade { z-index: 3; }
.founder-caption { z-index: 4; }
.founder-photo { filter: drop-shadow(0 22px 24px rgba(0,0,0,.29)) saturate(.98) contrast(1.015) brightness(1.02); }
.about-photo-frame::before { z-index: 3; }
.about-photo-frame::after { z-index: 2; }
.about-photo-frame img { position: relative; z-index: 1; filter: drop-shadow(0 18px 20px rgba(0,0,0,.22)) saturate(.98) contrast(1.015) brightness(1.02); }

.package-badge { background: rgba(207,174,105,.13); color: #8b682f; border-color: rgba(170,134,71,.22); }
.section-light .package-card:nth-child(1) .package-badge { background: rgba(116,138,162,.10); border-color: rgba(116,138,162,.18); color: #5b6f82; }
.section-light .package-card:nth-child(2) .package-badge { background: rgba(207,174,105,.16); border-color: rgba(170,134,71,.28); color: #7a5b28; }
.section-light .package-card:nth-child(3) .package-badge { background: rgba(121,137,113,.12); border-color: rgba(121,137,113,.18); color: #617158; }

.wa-country { width: 124px; flex: 0 0 124px; border: 0 !important; border-radius: 12px 0 0 12px !important; background: transparent !important; color: var(--text-soft) !important; appearance: none; -webkit-appearance: none; padding-right: 30px !important; }
.wa-country option { background: #121315; color: #f4f0e8; }
.wa-field { display: grid; grid-template-columns: 124px 1px minmax(0,1fr); align-items: center; position: relative; overflow: hidden; }
.wa-field::after { content: '▾'; position: absolute; left: 98px; color: #c8b58c; font-size: 12px; pointer-events: none; }
.wa-divider { width: 1px; height: 54%; background: rgba(255,255,255,.12); }
.wa-input { border: 0 !important; border-radius: 0 12px 12px 0 !important; background: transparent !important; }

.wa-widget { position: fixed; right: 20px; bottom: 20px; z-index: 90; display: grid; justify-items: end; gap: 10px; }
.wa-widget-toggle { width: 60px; height: 60px; border: 0; padding: 0; border-radius: 50%; background: transparent; cursor: pointer; }
.wa-widget-toggle .wa-icon-wrap { width: 60px; height: 60px; box-shadow: 0 18px 42px rgba(0,0,0,.32), 0 0 0 6px rgba(255,255,255,.06); }
.wa-widget-panel { min-width: 240px; max-width: min(92vw, 280px); padding: 14px; border: 1px solid rgba(207,174,105,.22); border-radius: 18px; background: rgba(12,13,14,.94); box-shadow: 0 22px 58px rgba(0,0,0,.34); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); display: grid; gap: 10px; opacity: 0; transform: translateY(8px) scale(.98); pointer-events: none; transition: .22s ease; }
.wa-widget.open .wa-widget-panel { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.wa-widget-kicker { color: #cdb57d; font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.wa-option { display: grid; gap: 3px; padding: 10px 12px; border: 1px solid rgba(255,255,255,.08); border-radius: 14px; background: rgba(255,255,255,.03); color: #f4f0e8; }
.wa-option:hover { border-color: rgba(207,174,105,.28); background: rgba(207,174,105,.08); }
.wa-option strong { font-size: 14px; font-weight: 600; }
.wa-option small { color: #bcb3a6; font-size: 11px; }
@media (max-width: 560px) { .wa-widget { right: 14px; bottom: 14px; } .wa-widget-panel { min-width: 224px; } .wa-widget-toggle, .wa-widget-toggle .wa-icon-wrap { width: 56px; height: 56px; } }


/* ===== V6 proportional hero + MW WhatsApp ===== */
/* More proportional headline on desktop/laptop without losing the editorial look */
.hero-title {
  max-width: 720px;
  font-size: clamp(46px, 4.35vw, 64px);
  line-height: 1.01;
  letter-spacing: -.032em;
}
.hero-title em {
  display: inline;
  font-size: .94em;
}
@media (max-width: 1180px) {
  .hero-title { max-width: 690px; font-size: clamp(44px, 4.8vw, 60px); }
}
@media (max-width: 820px) {
  .hero-title { max-width: 650px; font-size: clamp(42px, 7.4vw, 56px); line-height: 1.02; }
}
@media (max-width: 560px) {
  .hero-title { max-width: 100%; font-size: clamp(38px, 10.6vw, 48px); line-height: 1.04; }
}
@media (max-width: 360px) {
  .hero-title { font-size: clamp(35px, 10.4vw, 44px); }
}

/* WhatsApp trigger now follows MW's dark + warm-gold identity */
.wa-widget-toggle .wa-icon-wrap,
.wa-icon-wrap {
  color: #d7b56f;
  background:
    radial-gradient(circle at 35% 25%, rgba(216,181,111,.12), transparent 38%),
    linear-gradient(145deg, #171819, #0e0f10);
  border: 1px solid rgba(216,181,111,.34);
  box-shadow:
    0 16px 38px rgba(0,0,0,.36),
    inset 0 1px 0 rgba(255,255,255,.055),
    0 0 0 1px rgba(216,181,111,.035);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease, color .24s ease, background .24s ease;
}
.wa-icon-wrap::after {
  width: 7px;
  height: 7px;
  right: 3px;
  top: 3px;
  border: 2px solid #111213;
  background: #d7b56f;
  box-shadow: 0 0 9px rgba(216,181,111,.34);
}
.wa-widget-toggle:hover .wa-icon-wrap,
.wa-widget-toggle:focus-visible .wa-icon-wrap {
  color: #f4ddb0;
  border-color: rgba(232,198,130,.72);
  background:
    radial-gradient(circle at 38% 28%, rgba(232,198,130,.18), transparent 40%),
    linear-gradient(145deg, #1d1b17, #111213);
  transform: translateY(-2px) scale(1.025);
  box-shadow:
    0 18px 44px rgba(0,0,0,.40),
    0 0 24px rgba(216,181,111,.20),
    0 0 0 5px rgba(216,181,111,.055),
    inset 0 1px 0 rgba(255,255,255,.07);
}
.wa-widget-toggle:focus-visible {
  outline: none;
}
.wa-widget-panel {
  border-color: rgba(216,181,111,.24);
  background:
    radial-gradient(circle at 100% 0%, rgba(216,181,111,.08), transparent 45%),
    rgba(12,13,14,.96);
}
.wa-option:hover {
  border-color: rgba(216,181,111,.38);
  background: rgba(216,181,111,.075);
}

/* ===== V7: highly visible premium gold WhatsApp trigger ===== */
.wa-widget-toggle {
  position: relative;
  isolation: isolate;
}
.wa-widget-toggle::before {
  content: '';
  position: absolute;
  inset: -6px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(222,185,106,.20), rgba(222,185,106,0) 68%);
  opacity: .72;
  filter: blur(7px);
  transition: opacity .28s ease, transform .28s ease, filter .28s ease;
}
.wa-widget-toggle .wa-icon-wrap {
  color: #ffe4a8;
  border: 1px solid rgba(255,232,178,.68);
  background:
    radial-gradient(circle at 31% 22%, rgba(255,242,207,.32), transparent 27%),
    linear-gradient(145deg, #d9b568 0%, #b4863e 48%, #8d642b 100%);
  box-shadow:
    0 14px 34px rgba(0,0,0,.34),
    0 7px 22px rgba(181,134,58,.20),
    inset 0 1px 1px rgba(255,247,225,.52),
    inset 0 -1px 1px rgba(82,54,18,.28),
    0 0 0 4px rgba(213,174,94,.07);
  text-shadow: 0 1px 1px rgba(73,46,10,.28);
}
.wa-widget-toggle .wa-icon-wrap svg {
  width: 25px;
  height: 25px;
  filter: drop-shadow(0 1px 1px rgba(84,53,12,.24));
}
.wa-widget-toggle .wa-icon-wrap::after {
  width: 7px;
  height: 7px;
  right: 4px;
  top: 4px;
  border: 2px solid #a57937;
  background: #fff0c8;
  box-shadow: 0 0 8px rgba(255,226,159,.58);
}
.wa-widget-toggle:hover::before,
.wa-widget-toggle:focus-visible::before {
  opacity: 1;
  transform: scale(1.18);
  filter: blur(9px);
}
.wa-widget-toggle:hover .wa-icon-wrap,
.wa-widget-toggle:focus-visible .wa-icon-wrap {
  color: #fff1c7;
  border-color: rgba(255,240,202,.92);
  background:
    radial-gradient(circle at 31% 22%, rgba(255,248,224,.46), transparent 30%),
    linear-gradient(145deg, #e6c57b 0%, #c99b4b 46%, #9a6e2d 100%);
  transform: translateY(-2px) scale(1.035);
  box-shadow:
    0 17px 40px rgba(0,0,0,.36),
    0 0 17px rgba(225,185,102,.38),
    0 0 34px rgba(225,185,102,.20),
    0 0 0 5px rgba(225,185,102,.10),
    inset 0 1px 1px rgba(255,250,234,.64),
    inset 0 -1px 1px rgba(86,56,17,.25);
}
.wa-widget.open .wa-widget-toggle .wa-icon-wrap {
  border-color: rgba(255,238,194,.84);
  box-shadow:
    0 16px 38px rgba(0,0,0,.35),
    0 0 22px rgba(225,185,102,.28),
    0 0 0 5px rgba(225,185,102,.09),
    inset 0 1px 1px rgba(255,248,226,.58);
}


/* ===== V8 footer/link reliability + privacy page ===== */
.site-footer {
  position: relative;
  z-index: 20;
  isolation: isolate;
}
.site-footer .container,
.footer-grid,
.footer-info-block,
.footer-langs {
  position: relative;
  z-index: 2;
}
.footer-info-block .footer-action-link {
  position: relative;
  z-index: 4;
  display: block;
  width: fit-content;
  min-height: 34px;
  padding: 5px 0;
  margin: 0 0 4px;
  color: #b9b2aa;
  font-size: 12px;
  line-height: 1.5;
  cursor: pointer;
  pointer-events: auto !important;
  -webkit-tap-highlight-color: rgba(207,174,105,.16);
}
.footer-info-block .footer-action-link:hover,
.footer-info-block .footer-action-link:focus-visible {
  color: var(--gold);
  outline: none;
}
.footer-langs {
  z-index: 5;
  pointer-events: auto !important;
}
.footer-langs a {
  position: relative;
  z-index: 6;
  pointer-events: auto !important;
  cursor: pointer;
  touch-action: manipulation;
}

.privacy-page { padding: 142px 0 108px; }
.privacy-wrap { max-width: 860px; }
.privacy-intro { margin-top: 20px; color: var(--text-mute); font-size: 15px; line-height: 1.8; max-width: 760px; }
.privacy-updated { margin-top: 14px; color: #77716b; font-size: 11px; letter-spacing: .04em; }
.privacy-content { margin-top: 54px; display: grid; gap: 14px; }
.privacy-card { padding: 28px 30px; border: 1px solid var(--line-2); border-radius: 18px; background: rgba(255,255,255,.014); }
.privacy-card h2 { margin: 0 0 10px; color: var(--gold); font-family: var(--font-display); font-size: 28px; line-height: 1.1; font-weight: 600; }
.privacy-card p, .privacy-card li { color: var(--text-mute); font-size: 13.5px; line-height: 1.82; }
.privacy-card ul { margin: 12px 0 0; display: grid; gap: 7px; }
.privacy-card li { position: relative; padding-left: 18px; }
.privacy-card li::before { content: '•'; position: absolute; left: 2px; color: var(--gold); }
.privacy-card a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.privacy-note-card { background: linear-gradient(145deg, rgba(207,174,105,.07), rgba(255,255,255,.012)); border-color: rgba(207,174,105,.18); }
@media (max-width: 560px) {
  .privacy-page { padding: 98px 0 76px; }
  .privacy-content { margin-top: 38px; }
  .privacy-card { padding: 22px 20px; }
  .privacy-card h2 { font-size: 25px; }
}

/* V9 — International SEO page system */
.seo-hero{padding:120px 0 92px;position:relative;overflow:hidden;background:radial-gradient(circle at 78% 14%,rgba(210,176,110,.09),transparent 28rem)}
.seo-hero-grid{display:grid;grid-template-columns:minmax(0,1.2fr) minmax(300px,.65fr);gap:74px;align-items:center}.seo-title{max-width:840px;font-family:var(--font-display);font-size:clamp(48px,5vw,72px);line-height:.99;letter-spacing:-.035em;font-weight:600}.seo-title em{color:var(--gold);font-style:italic;font-weight:500}.seo-lead{max-width:720px;margin:24px 0 30px;color:var(--text-mute);font-size:16px;line-height:1.8}.seo-side-card{padding:32px;border:1px solid rgba(210,176,110,.22);border-radius:24px;background:linear-gradient(145deg,rgba(255,255,255,.045),rgba(255,255,255,.012));box-shadow:var(--shadow)}.seo-side-card>span{color:var(--gold);font-size:10px;letter-spacing:.16em;text-transform:uppercase}.seo-side-card h2{margin:28px 0 12px;font-family:var(--font-display);font-size:30px;line-height:1.05}.seo-side-card p{color:var(--text-mute);font-size:13px;line-height:1.75}.seo-content-grid{display:grid;grid-template-columns:minmax(280px,.55fr) minmax(0,1.45fr);gap:70px}.seo-card-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}.seo-card{min-height:220px;padding:28px;border:1px solid var(--line-2);border-radius:18px;background:rgba(255,255,255,.015)}.seo-card>span{color:var(--gold);font-family:var(--font-display)}.seo-card h3{margin:44px 0 10px;font-family:var(--font-display);font-size:25px}.seo-card p{color:var(--text-mute);font-size:12.5px;line-height:1.75}.seo-faq{max-width:900px;margin-top:44px}.article-narrow{max-width:900px}.article-layout{display:grid;grid-template-columns:minmax(0,1fr) 300px;gap:74px;align-items:start}.article-body{display:grid;gap:44px}.article-section{padding-bottom:38px;border-bottom:1px solid var(--line-2)}.article-section h2{margin-bottom:14px;font-family:var(--font-display);font-size:34px;line-height:1.05}.article-section p{color:var(--text-mute);font-size:15px;line-height:1.85}.article-section ul{display:grid;gap:10px;margin-top:20px}.article-section li{position:relative;padding-left:20px;color:var(--text-soft);font-size:13px}.article-section li:before{content:'•';position:absolute;left:0;color:var(--gold)}.article-aside{position:sticky;top:110px;padding:28px;border:1px solid rgba(210,176,110,.22);border-radius:20px;background:rgba(255,255,255,.018)}.article-aside h3{margin:8px 0 12px;font-family:var(--font-display);font-size:26px}.article-aside p{margin-bottom:22px;color:var(--text-mute);font-size:12.5px;line-height:1.75}.seo-related-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-top:40px}.seo-related-card{display:grid;grid-template-columns:1fr auto;gap:12px;align-items:end;min-height:150px;padding:24px;border:1px solid rgba(24,21,18,.10);border-radius:18px;background:rgba(255,255,255,.65);color:#1c1916}.seo-related-card>span{grid-column:1/-1;color:#9b773b;font-size:9px;letter-spacing:.14em}.seo-related-card strong{font-family:var(--font-display);font-size:22px;line-height:1.08}.seo-related-card i{font-style:normal;color:#9b773b}.seo-service-list{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}.seo-service-link{display:block;position:relative;color:inherit}.seo-service-link h2{margin:58px 0 12px;font-family:var(--font-display);font-size:31px}.seo-service-link p{max-width:480px;color:var(--text-mute);font-size:13px;line-height:1.75}.seo-service-link .service-arrow{position:absolute;top:28px;right:28px}.privacy-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px;margin-top:48px}.privacy-grid .detail-card h2{margin-bottom:10px;font-family:var(--font-display);font-size:26px}.about-long{max-width:780px;margin:0 auto}.about-long p{font-size:17px;line-height:1.9}
@media(max-width:900px){.seo-hero-grid,.seo-content-grid,.article-layout{grid-template-columns:1fr}.seo-side-card{max-width:600px}.article-aside{position:static}.seo-related-grid{grid-template-columns:1fr}.seo-service-list{grid-template-columns:1fr}.privacy-grid{grid-template-columns:1fr}}
@media(max-width:560px){.seo-hero{padding:78px 0 64px}.seo-title{font-size:clamp(40px,12vw,54px)}.seo-lead{font-size:14.5px}.seo-card-grid{grid-template-columns:1fr}.seo-card{min-height:auto}.article-section h2{font-size:30px}}


/* ===== V11 · contrast, contact and interaction reliability ===== */
:root { --ink: #191714; }
body { overflow-x: hidden; }

:where(a, button, input, textarea, select):focus-visible {
  outline: 3px solid rgba(230, 197, 125, .92);
  outline-offset: 3px;
}
.section-light :where(a, button, input, textarea, select):focus-visible {
  outline-color: #7b5a25;
}

/* The light FAQ must use light-surface colors instead of inherited dark-theme text. */
.section-light .faq-item { border-color: rgba(32, 28, 23, .16); }
.section-light .faq-item:last-child { border-bottom-color: rgba(32, 28, 23, .16); }
.section-light .faq-question > span { color: #2f2a24; font-size: 14px; font-weight: 600; }
.section-light .faq-answer p { color: #5a534b; font-size: 13px; }
.section-light .faq-icon { color: #825f28; }
.section-light .faq-question:hover > span { color: #171411; }

/* Keep the supplied high-resolution portrait clean: no synthetic film/noise layer. */
.photo-film,
.about-photo-frame::after { display: none !important; }
.founder-photo,
.about-photo-frame img {
  image-rendering: auto;
  filter: drop-shadow(0 20px 24px rgba(0,0,0,.25)) saturate(1) contrast(1.005) brightness(1.015);
}
.project-form-people img {
  width: 78px;
  height: 52px;
  object-fit: cover;
  object-position: center 25%;
  image-rendering: auto;
}

/* International WhatsApp field. */
.wa-field {
  grid-template-columns: 42px minmax(150px, 215px) 1px minmax(0, 1fr);
  min-height: 52px;
}
.wa-selected-flag {
  width: 42px;
  height: 100%;
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.018);
}
.wa-selected-flag img {
  width: 24px;
  height: 18px;
  border-radius: 3px;
  object-fit: cover;
  box-shadow: 0 1px 5px rgba(0,0,0,.28);
}
.wa-selected-flag > span {
  display: none;
  color: #d8c18d;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
}
.wa-selected-flag img[hidden] + span { display: inline; }
.wa-country {
  width: 100% !important;
  min-width: 0 !important;
  padding-left: 12px !important;
  padding-right: 30px !important;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.wa-field::after { left: 228px; }
.wa-input { min-width: 0; }
.form-trust {
  max-width: 620px;
  margin-top: 13px;
  color: #8f8982;
  font-size: 11px;
  line-height: 1.65;
}
.form-trust a { color: #ccb174; text-decoration: underline; text-underline-offset: 3px; }
.was-validated :invalid { border-color: rgba(218, 112, 112, .72) !important; }

/* The WhatsApp menu now opens above its trigger and stays clear of the footer. */
.wa-widget {
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 220;
  display: block;
  width: 60px;
  height: 60px;
}
.wa-widget-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 14px);
  width: min(280px, calc(100vw - 28px));
  max-height: calc(100vh - 110px);
  overflow-y: auto;
  visibility: hidden;
  transform: translateY(8px) scale(.98);
  transform-origin: right bottom;
}
.wa-widget.open .wa-widget-panel {
  visibility: visible;
  transform: translateY(0) scale(1);
}
.wa-option { min-height: 50px; justify-content: center; }
.wa-widget-toggle:focus-visible { outline: 3px solid rgba(244, 218, 157, .96); outline-offset: 5px; }
.footer-topline .btn { position: relative; z-index: 2; }

@media (max-width: 560px) {
  .section-light .faq-question > span { font-size: 13.5px; }
  .wa-field { grid-template-columns: 40px minmax(126px, 142px) 1px minmax(0, 1fr); }
  .wa-selected-flag { width: 40px; }
  .wa-field::after { left: 156px; }
  .wa-country { padding-left: 9px !important; font-size: 12px; }
  .wa-input { padding-inline: 12px !important; font-size: 13px; }
  .footer-topline .btn { width: 100%; }
  .wa-widget { width: 56px; height: 56px; }
}

@media (prefers-reduced-motion: reduce) {
  .faq-answer,
  .wa-widget-panel,
  .wa-widget-toggle .wa-icon-wrap { transition: none !important; }
}
/* ===== V12 · commercial clarity, responsive polish and accessibility ===== */
.lang-switcher a[aria-disabled="true"],
.mobile-lang a[aria-disabled="true"],
.footer-langs a[aria-disabled="true"] {
  pointer-events: none;
  cursor: default;
}

.reveal-fallback .reveal,
.reveal-fallback .js .reveal {
  opacity: 1 !important;
  transform: none !important;
}

/* With no JavaScript, FAQ answers remain readable. JavaScript progressively enables the accordion. */
.faq-answer { max-height: none; overflow: visible; }
.js .faq-answer { max-height: 0; overflow: hidden; }

.service-card-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 24px;
  color: #e1c887;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-underline-offset: 4px;
}
.service-card-action:hover { text-decoration: underline; }
.service-card-action span { transition: transform .2s ease; }
.service-card-action:hover span { transform: translate(3px, -3px); }

.package-chooser {
  margin: 0 0 28px;
  padding: 26px;
  border: 1px solid rgba(32,28,23,.10);
  border-radius: 22px;
  background: rgba(255,255,255,.52);
}
.package-chooser > h3,
.package-comparison h3,
.scope-panel h3 {
  color: #1b1815;
  font-family: var(--font-display);
  font-size: 29px;
  line-height: 1.08;
}
.package-chooser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}
.package-choice {
  display: grid;
  min-height: 158px;
  padding: 18px;
  border: 1px solid rgba(32,28,23,.09);
  border-radius: 16px;
  background: rgba(255,255,255,.70);
  color: #201c18;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.package-choice:hover {
  transform: translateY(-3px);
  border-color: rgba(133,96,38,.34);
  box-shadow: 0 14px 32px rgba(63,47,28,.08);
}
.package-choice > span {
  color: #88652f;
  font-family: var(--font-display);
  font-size: 14px;
}
.package-choice small {
  align-self: end;
  margin-top: 22px;
  color: #756b61;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.package-choice strong {
  margin: 4px 0 7px;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.08;
}
.package-choice p { color: #5d554d; font-size: 11.5px; line-height: 1.55; }

.package-card { scroll-margin-top: 108px; }
.package-meta-label {
  display: block;
  margin: 4px 0 7px;
  color: #82612e;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.package-fit {
  min-height: 58px;
  margin-bottom: 18px;
  color: #514a43;
  font-size: 12px;
  line-height: 1.6;
}
.package-description { min-height: 112px; }

.package-comparison {
  margin-top: 28px;
  padding: 30px;
  border: 1px solid rgba(32,28,23,.10);
  border-radius: 22px;
  background: rgba(255,255,255,.64);
  box-shadow: 0 18px 50px rgba(46,38,29,.045);
}
.package-comparison-head {
  display: grid;
  grid-template-columns: minmax(220px,.75fr) minmax(0,1.25fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 22px;
}
.package-comparison-head p,
.comparison-note {
  color: #5d554d;
  font-size: 12px;
  line-height: 1.65;
}
.comparison-scroll {
  overflow-x: auto;
  border: 1px solid rgba(32,28,23,.09);
  border-radius: 14px;
  background: rgba(255,255,255,.58);
  scrollbar-width: thin;
}
.package-comparison table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  color: #3d3731;
  font-size: 11.5px;
}
.package-comparison th,
.package-comparison td {
  padding: 15px 16px;
  border-bottom: 1px solid rgba(32,28,23,.08);
  text-align: left;
  vertical-align: top;
}
.package-comparison thead th {
  background: rgba(207,174,105,.12);
  color: #352b1f;
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.package-comparison tbody th {
  width: 22%;
  color: #29241f;
  font-weight: 700;
}
.package-comparison tbody tr:last-child > * { border-bottom: 0; }
.comparison-note { margin-top: 14px; }

.scope-panel {
  margin-top: 16px;
  padding: 26px 28px;
  border: 1px solid rgba(32,28,23,.10);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(207,174,105,.13), rgba(255,255,255,.58));
}
.scope-panel ul {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 10px 28px;
  margin-top: 18px;
}
.scope-panel li {
  position: relative;
  padding-left: 18px;
  color: #514a43;
  font-size: 12px;
  line-height: 1.6;
}
.scope-panel li::before {
  content: '•';
  position: absolute;
  left: 2px;
  color: #85622e;
}

.home-guides-grid .seo-related-card { grid-template-rows: auto auto 1fr auto; }
.home-guides-grid .seo-related-card p {
  grid-column: 1 / -1;
  color: #5c554d;
  font-size: 11.5px;
  line-height: 1.6;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 28px;
  color: #938c83;
  font-size: 10px;
  line-height: 1.5;
}
.breadcrumbs a { color: #c8ad70; text-decoration: underline; text-underline-offset: 3px; }
.breadcrumbs [aria-current="page"] { color: #aaa39a; }
.article-byline {
  margin-top: -12px;
  color: #a69f96;
  font-size: 11px;
  letter-spacing: .04em;
}

.footer-grid h2 {
  margin-bottom: 18px;
  color: #bdb5aa;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.footer-grid > div > a:not(.brand) { color: #c5beb5; }
.footer-bottom { color: #a49d95; }

.form-group fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
.form-group legend {
  margin-bottom: 10px;
  color: #d4cec5;
  font-size: 12px;
  font-weight: 500;
}
.radio-label:has(input:focus-visible) {
  outline: 3px solid rgba(230,197,125,.92);
  outline-offset: 2px;
}
.wa-selected-flag > span {
  display: inline;
  color: inherit;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0;
}
.wa-selected-flag img { display: none; }

@media (max-width: 900px) {
  .package-chooser-grid { grid-template-columns: 1fr; }
  .package-choice { min-height: auto; }
  .package-choice small { margin-top: 14px; }
  .package-comparison-head { grid-template-columns: 1fr; gap: 10px; }
}

@media (max-width: 700px) {
  .package-chooser,
  .package-comparison,
  .scope-panel { padding: 22px 18px; }
  .scope-panel ul { grid-template-columns: 1fr; }
  .package-fit,
  .package-description { min-height: auto; }
}

@media (max-width: 560px) {
  .service-card-action { margin-top: 20px; }
  .package-chooser > h3,
  .package-comparison h3,
  .scope-panel h3 { font-size: 25px; }
  .package-comparison { margin-inline: -4px; }
  .footer-grid h2 { margin-top: 8px; }
}

@media (hover: none) {
  .premium-service-card:hover,
  .package-choice:hover { transform: none; }
  .site-header { -webkit-backdrop-filter: none; backdrop-filter: none; background: rgba(10,11,12,.97); }
}

/* V12.1 — guide cards: clearer contrast, tighter rhythm and refined details */
.seo-related-grid {
  gap: 16px;
  margin-top: 28px;
}
.seo-related-card {
  position: relative;
  overflow: hidden;
  grid-template-columns: minmax(0,1fr) 40px;
  grid-template-rows: auto auto;
  align-content: center;
  align-items: center;
  min-height: 126px;
  padding: 20px 22px 20px 24px;
  gap: 12px 18px;
  border: 1px solid rgba(55,46,36,.10);
  border-radius: 22px;
  background: linear-gradient(145deg,#fff 0%,#f6f5f1 100%);
  box-shadow: 0 12px 34px rgba(46,38,29,.055);
  color: #1c1916;
  transition: transform .28s ease,border-color .28s ease,box-shadow .28s ease;
}
.seo-related-card > span {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  color: #946000;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1.35;
  text-transform: uppercase;
}
.seo-related-card strong {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  font-size: clamp(21px,1.45vw,24px);
  line-height: 1.08;
}
.seo-related-card i {
  display: grid;
  grid-column: 2;
  grid-row: 1 / 3;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(148,96,0,.24);
  border-radius: 50%;
  background: #f5e4b8;
  color: #7c5000;
  font-size: 15px;
  font-style: normal;
  transition: transform .28s ease,background-color .28s ease,color .28s ease;
}
.seo-related-card:hover {
  transform: translateY(-4px);
  border-color: rgba(148,96,0,.28);
  box-shadow: 0 18px 42px rgba(46,38,29,.11);
}
.seo-related-card:hover i {
  transform: translate(2px,-2px);
  background: #a66d08;
  color: #fff;
}
.seo-related-card:focus-visible {
  outline: 3px solid rgba(166,109,8,.42);
  outline-offset: 3px;
}

.home-guides-grid .seo-related-card {
  grid-template-columns: minmax(0,1fr) 40px;
  grid-template-rows: auto auto 1fr;
  align-content: stretch;
  align-items: start;
  min-height: 176px;
  padding: 24px;
  gap: 13px 18px;
  border-color: rgba(210,176,110,.30);
  border-radius: 24px;
  background: linear-gradient(145deg,#fbfbf8 0%,#f0f0ec 100%);
  box-shadow: 0 16px 44px rgba(0,0,0,.18);
}
.home-guides-grid .seo-related-card::before {
  content: '';
  position: absolute;
  inset: 0 24px auto;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: linear-gradient(90deg,#a66d08,#e2c36f);
}
.home-guides-grid .seo-related-card > span {
  grid-column: 1 / -1;
  grid-row: 1;
  align-self: start;
  color: #946000;
  font-size: 10px;
  font-weight: 800;
}
.home-guides-grid .seo-related-card strong {
  grid-column: 1 / -1;
  grid-row: 2;
  color: #211d19;
  font-size: clamp(22px,1.65vw,27px);
  line-height: 1.08;
}
.home-guides-grid .seo-related-card p {
  grid-column: 1;
  grid-row: 3;
  align-self: end;
  color: #554f48;
  font-size: 11.5px;
  line-height: 1.55;
}
.home-guides-grid .seo-related-card i {
  grid-column: 2;
  grid-row: 3;
  align-self: end;
}

@media (max-width: 900px) {
  .seo-related-grid { gap: 12px; }
  .seo-related-card { min-height: 112px; }
  .home-guides-grid .seo-related-card { min-height: 164px; }
}

@media (max-width: 560px) {
  .seo-related-grid { margin-top: 24px; }
  .seo-related-card { padding: 19px 18px 19px 20px; }
  .home-guides-grid .seo-related-card {
    min-height: 158px;
    padding: 22px 20px;
  }
  .home-guides-grid .seo-related-card::before { inset-inline: 20px; }
}

@media (hover: none) {
  .seo-related-card:hover { transform: none; }
  .seo-related-card:hover i { transform: none; }
}

/* V12.2 — premium Instagram link-in-bio page */
.bio-page-body {
  min-width: 320px;
  min-height: 100vh;
  background: #080809;
}
.bio-page {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  padding: 24px 0 32px;
  background:
    radial-gradient(circle at 50% -15%, rgba(228,197,129,.16), transparent 34rem),
    radial-gradient(circle at -10% 45%, rgba(255,255,255,.035), transparent 28rem),
    linear-gradient(160deg,#09090a 0%,#0d0d0f 52%,#080809 100%);
}
.bio-page::before {
  content: '';
  position: fixed;
  z-index: -2;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: linear-gradient(to bottom,black,transparent 74%);
  mask-image: linear-gradient(to bottom,black,transparent 74%);
}
.bio-page::after {
  content: '';
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(105deg,transparent 30%,rgba(210,176,110,.025) 49%,transparent 68%);
}
.bio-aurora {
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
}
.bio-aurora-one {
  top: -180px;
  right: -180px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(210,176,110,.13);
  box-shadow: 0 0 120px rgba(210,176,110,.05) inset;
}
.bio-aurora-two {
  bottom: -230px;
  left: -210px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255,255,255,.055);
}
.bio-shell {
  position: relative;
  z-index: 2;
  width: min(680px,calc(100% - 32px));
  margin-inline: auto;
}
.bio-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 66px;
  padding: 0 8px 14px;
}
.bio-wordmark {
  display: inline-flex;
  align-items: center;
  border-radius: 10px;
}
.bio-wordmark img {
  width: 196px;
  height: auto;
}
.bio-language-nav {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 999px;
  background: rgba(255,255,255,.025);
  box-shadow: inset 0 1px rgba(255,255,255,.035);
}
.bio-language-nav a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 30px;
  border-radius: 999px;
  color: #8f8981;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  transition: color .22s ease,background-color .22s ease;
}
.bio-language-nav a:hover {
  color: #f4f0e8;
  background: rgba(255,255,255,.055);
}
.bio-language-nav a.active {
  color: #17130d;
  background: linear-gradient(135deg,#ead49d,#cda85f);
  box-shadow: 0 6px 20px rgba(210,176,110,.16);
}
.bio-profile-card {
  position: relative;
  overflow: hidden;
  padding: 46px 46px 38px;
  border: 1px solid rgba(233,210,160,.17);
  border-radius: 38px;
  background:
    linear-gradient(145deg,rgba(255,255,255,.064),rgba(255,255,255,.018) 54%),
    rgba(12,12,14,.86);
  box-shadow:
    0 42px 120px rgba(0,0,0,.5),
    inset 0 1px rgba(255,255,255,.055);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}
.bio-profile-card::before {
  content: '';
  position: absolute;
  inset: 0 46px auto;
  height: 2px;
  background: linear-gradient(90deg,transparent,#d8ba77,transparent);
  opacity: .8;
}
.bio-profile-card::after {
  content: '';
  position: absolute;
  top: -90px;
  right: -110px;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(210,176,110,.09);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(210,176,110,.018),0 0 0 58px rgba(210,176,110,.012);
  pointer-events: none;
}
.bio-monogram {
  position: relative;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  margin: 0 auto 24px;
  border: 1px solid rgba(230,202,139,.52);
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 24%,rgba(255,255,255,.11),transparent 42%),
    linear-gradient(145deg,#171719,#0b0b0c);
  box-shadow:
    0 18px 48px rgba(0,0,0,.34),
    0 0 0 7px rgba(210,176,110,.035),
    inset 0 0 0 1px rgba(255,255,255,.035);
}
.bio-monogram::before,
.bio-monogram::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 1px;
  background: #d7b870;
}
.bio-monogram::before { left: -6px; }
.bio-monogram::after { right: -6px; }
.bio-monogram span {
  color: #d8b96f;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -.08em;
  transform: translateX(-1px);
}
.bio-kicker {
  margin-bottom: 16px;
  color: #d9bd7e;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
  line-height: 1.45;
  text-align: center;
  text-transform: uppercase;
}
.bio-title {
  max-width: 570px;
  margin-inline: auto;
  color: #f4f0e8;
  font-family: var(--font-display);
  font-size: clamp(43px,7.2vw,57px);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: .94;
  text-align: center;
  text-wrap: balance;
}
.bio-title em {
  color: #d8b96f;
  font-weight: 500;
}
.bio-lead {
  max-width: 530px;
  margin: 22px auto 0;
  color: #aaa39a;
  font-size: 13.5px;
  line-height: 1.72;
  text-align: center;
  text-wrap: pretty;
}
.bio-signature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 22px 0 28px;
  color: #827c75;
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: .15em;
  text-align: center;
  text-transform: uppercase;
}
.bio-signature span {
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg,transparent,rgba(210,176,110,.55));
}
.bio-signature span:last-child { transform: rotate(180deg); }
.bio-featured-link,
.bio-link-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  align-items: center;
  border-radius: 20px;
  transition: transform .28s ease,border-color .28s ease,background-color .28s ease,box-shadow .28s ease;
}
.bio-featured-link {
  min-height: 88px;
  padding: 17px 18px 17px 23px;
  background: linear-gradient(135deg,#ead49d 0%,#d4b36b 55%,#bd9650 100%);
  color: #17130d;
  box-shadow: 0 16px 38px rgba(183,140,65,.17),inset 0 1px rgba(255,255,255,.38);
}
.bio-featured-link::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: inherit;
  pointer-events: none;
}
.bio-link-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}
.bio-link-copy strong {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -.015em;
  line-height: 1.05;
}
.bio-link-copy small {
  color: inherit;
  font-size: 10px;
  line-height: 1.45;
  opacity: .68;
}
.bio-link-arrow {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 14px;
  line-height: 1;
  opacity: .68;
  transition: transform .28s ease,background-color .28s ease,color .28s ease;
}
.bio-featured-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(183,140,65,.25),inset 0 1px rgba(255,255,255,.38);
}
.bio-featured-link:hover .bio-link-arrow {
  transform: translate(2px,-2px);
  background: #17130d;
  color: #ead49d;
  opacity: 1;
}
.bio-link-stack {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}
.bio-link-card {
  grid-template-columns: 34px minmax(0,1fr) auto;
  min-height: 80px;
  padding: 14px 16px;
  gap: 14px;
  border: 1px solid rgba(255,255,255,.075);
  background: linear-gradient(135deg,rgba(255,255,255,.045),rgba(255,255,255,.018));
  color: #e7e1d8;
  box-shadow: inset 0 1px rgba(255,255,255,.025);
}
.bio-link-number {
  color: #9d7c42;
  font-family: var(--font-display);
  font-size: 14px;
  text-align: center;
}
.bio-link-card .bio-link-copy strong { font-size: 18px; }
.bio-link-card .bio-link-copy small { color: #a29b92; opacity: 1; }
.bio-link-card .bio-link-arrow {
  width: 38px;
  height: 38px;
  border-color: rgba(210,176,110,.28);
  color: #d6b870;
  opacity: 1;
}
.bio-link-card:hover {
  transform: translateY(-3px);
  border-color: rgba(210,176,110,.30);
  background: linear-gradient(135deg,rgba(210,176,110,.09),rgba(255,255,255,.024));
  box-shadow: 0 15px 34px rgba(0,0,0,.18),inset 0 1px rgba(255,255,255,.035);
}
.bio-link-card:hover .bio-link-arrow {
  transform: translate(2px,-2px);
  background: #d2b06e;
  color: #17130d;
}
.bio-featured-link:focus-visible,
.bio-link-card:focus-visible,
.bio-wordmark:focus-visible,
.bio-language-nav a:focus-visible,
.bio-footer a:focus-visible {
  outline: 3px solid rgba(226,195,124,.68);
  outline-offset: 3px;
}
.bio-footer {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 25px 14px 0;
  color: #827c75;
  text-align: center;
}
.bio-footer p {
  color: #938c84;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.bio-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 10px;
}
.bio-footer a {
  color: #b8b0a6;
  transition: color .2s ease;
}
.bio-footer a:hover { color: #d8b96f; }
.bio-footer nav span { color: #514d49; }
.bio-footer small {
  color: #827c75;
  font-size: 9px;
}

@media (max-width: 560px) {
  .bio-page { padding: 12px 0 26px; }
  .bio-shell { width: min(100% - 20px,680px); }
  .bio-topbar {
    min-height: 58px;
    padding: 0 4px 10px;
    gap: 10px;
  }
  .bio-wordmark img { width: 158px; }
  .bio-language-nav a {
    width: 31px;
    height: 28px;
  }
  .bio-profile-card {
    padding: 34px 20px 25px;
    border-radius: 30px;
  }
  .bio-profile-card::before { inset-inline: 24px; }
  .bio-monogram {
    width: 80px;
    height: 80px;
    margin-bottom: 21px;
  }
  .bio-monogram span { font-size: 30px; }
  .bio-kicker { margin-bottom: 14px; font-size: 8px; }
  .bio-title { font-size: clamp(37px,11.6vw,46px); }
  .bio-lead {
    margin-top: 18px;
    font-size: 12.5px;
    line-height: 1.65;
  }
  .bio-signature {
    gap: 8px;
    margin: 19px 0 23px;
    font-size: 7.5px;
    letter-spacing: .11em;
  }
  .bio-signature span { width: 16px; }
  .bio-featured-link {
    min-height: 80px;
    padding: 15px 15px 15px 18px;
  }
  .bio-link-copy strong { font-size: 19px; }
  .bio-link-copy small { font-size: 9.5px; }
  .bio-link-card {
    grid-template-columns: 25px minmax(0,1fr) auto;
    min-height: 76px;
    padding: 13px 13px;
    gap: 10px;
  }
  .bio-link-card .bio-link-copy strong { font-size: 17px; }
  .bio-link-arrow {
    width: 38px;
    height: 38px;
  }
  .bio-link-card .bio-link-arrow {
    width: 35px;
    height: 35px;
  }
  .bio-footer { padding-top: 22px; }
}

@media (max-width: 370px) {
  .bio-wordmark img { width: 142px; }
  .bio-language-nav { gap: 2px; padding: 3px; }
  .bio-language-nav a { width: 29px; }
  .bio-profile-card { padding-inline: 17px; }
  .bio-link-number { display: none; }
  .bio-link-card { grid-template-columns: minmax(0,1fr) auto; }
}

@media (hover: none) {
  .bio-featured-link:hover,
  .bio-link-card:hover { transform: none; }
  .bio-featured-link:hover .bio-link-arrow,
  .bio-link-card:hover .bio-link-arrow { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .bio-featured-link,
  .bio-link-card,
  .bio-link-arrow { transition: none; }
}
