/* ═══════════════════════════════════════════════════════════════════
   Mentodino landing — 10 design variants
   ───────────────────────────────────────────────────────────────────
   Modern medical-startup polish. Each design has a distinct visual
   language: layout, typography, card style, color, spacing rhythm.
   ═══════════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { line-height: 1.6; overflow-x: hidden; font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img { max-width: 100%; }
a { text-decoration: none; color: inherit; }

[data-l="en"] { display: none !important; }
html[lang="en"] [data-l="cs"] { display: none !important; }
html[lang="en"] [data-l="en"] { display: revert !important; }

.design { display: none; min-height: 100vh; }
.design.active { display: block; }

/* ────── Variant nav (arrows / dots / label, fixed overlay) ────── */
.nav-arrow { position: fixed; top: 50%; transform: translateY(-50%); z-index: 9999; width: 56px; height: 56px; border-radius: 50%; border: none; background: rgba(15, 23, 42, .72); color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 28px rgba(15, 23, 42, .25); transition: transform .25s, background .25s; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.nav-arrow:hover { background: rgba(15, 23, 42, .92); transform: translateY(-50%) scale(1.08); }
.nav-arrow svg { width: 22px; height: 22px; stroke: currentColor; stroke-width: 2.4; fill: none; }
.nav-prev { left: 22px; }
.nav-next { right: 22px; }
.nav-dots { position: fixed; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 9999; display: flex; gap: 10px; padding: 11px 22px; background: rgba(15, 23, 42, .78); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-radius: 28px; box-shadow: 0 8px 28px rgba(15, 23, 42, .25); }
.nav-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255, 255, 255, .35); cursor: pointer; transition: .2s; border: none; padding: 0; }
.nav-dot.on { background: #fff; transform: scale(1.45); }
.nav-label { position: fixed; top: 22px; left: 50%; transform: translateX(-50%); z-index: 9999; padding: 9px 22px; background: rgba(15, 23, 42, .82); color: #fff; border-radius: 24px; font-size: .8rem; font-weight: 600; font-family: 'Inter', system-ui, sans-serif; pointer-events: none; opacity: 0; transition: opacity .3s; backdrop-filter: blur(8px); }
.nav-label.show { opacity: 1; }

/* ────── Layout / shared utilities ────── */
.ctr { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.logo-img { width: 40px; height: 40px; }
.hero-logo-img { width: 280px; height: 280px; }

/* All "color-on-accent-background" hero logos get inverted to white. */
.d1 .hero-logo-img, .d2 .hero-logo-img, .d3 .hero-logo-img, .d4 .hero-logo-img,
.d5 .hero-logo-img, .d6 .hero-logo-img, .d7 .hero-logo-img, .d8 .hero-logo-img,
.d9 .hero-logo-img { filter: brightness(0) invert(1) drop-shadow(0 14px 30px rgba(0, 0, 0, .25)) !important; }
.d10 .hero-logo-img { filter: drop-shadow(0 8px 22px rgba(0, 0, 0, .12)) !important; }
/* Dark-header designs (d2/d3/d5) use the dedicated mentodino-white.svg asset,
   wired in landing.js via the DESIGNS[].darkHeader flag. */

/* ────── Language switcher (shared across designs, dark variants override) ────── */
.lang-sw { position: relative; cursor: pointer; }
.lang-cur { display: inline-flex; align-items: center; gap: 4px; background: none; border: none; padding: 6px 4px; border-radius: 8px; font-size: .78rem; font-weight: 700; cursor: pointer; color: inherit; font-family: inherit; letter-spacing: .04em; line-height: 1; }
.lang-cur svg { transition: transform .2s; }
.lang-sw.open .lang-cur svg { transform: rotate(180deg); }
.lang-dd { display: none; position: absolute; top: calc(100% + 8px); right: 0; min-width: 130px; background: #fff; border-radius: 12px; box-shadow: 0 12px 40px rgba(15, 23, 42, .14); overflow: hidden; z-index: 200; border: 1px solid rgba(0, 0, 0, .04); }
.lang-sw.open .lang-dd { display: block; }
.lang-opt { display: block; width: 100%; padding: 10px 16px; border: none; background: none; text-align: left; font-size: .85rem; font-weight: 500; cursor: pointer; color: #1f2937; font-family: inherit; transition: background .15s, color .15s; }
.lang-opt:hover { background: #f3f4f6; }
.lang-opt.active { font-weight: 700; }

/* Dark-theme dropdowns */
.d2 .lang-dd, .d3 .lang-dd, .d5 .lang-dd { background: #1f2533; border-color: rgba(255, 255, 255, .08); }
.d2 .lang-opt, .d3 .lang-opt, .d5 .lang-opt { color: #d1d5db; }
.d2 .lang-opt:hover, .d3 .lang-opt:hover, .d5 .lang-opt:hover { background: rgba(255, 255, 255, .06); }

/* Header action buttons (Aplikace / Klientská sekce). Per-design rules override
   colour and padding but inherit this layout so the icon and label stay
   vertically centred with consistent spacing between them. */
.ab { display: inline-flex; align-items: center; gap: 8px; line-height: 1; }
.ab-icon { flex-shrink: 0; display: block; }
.ab-text { white-space: nowrap; }

/* Footer: shared layout for the link rows + social icons.
   Per-design .ftr rules force text-align:center and a small font — override here
   so the new column layout reads as a real footer regardless of variant. */
.ftr { text-align: left !important; padding: 56px 0 24px !important; font-size: 1rem !important; }
.ftr-cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; align-items: start; padding-bottom: 28px; border-bottom: 1px solid currentColor; text-align: left; }
.ftr-col h4 { font-size: .82rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; opacity: .85; margin-bottom: 14px; }
.ftr-col a { display: block; padding: 4px 0; opacity: .7; transition: opacity .2s; text-decoration: none; color: inherit; font-size: .9rem; }
.ftr-col a:hover { opacity: 1; }
.ftr-brand p { font-size: .88rem; opacity: .65; line-height: 1.6; max-width: 320px; margin: 8px 0 18px; }
.ftr-socials { display: flex; gap: 10px; }
.ftr-social { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; border: 1px solid currentColor; opacity: .7; transition: opacity .2s, transform .2s; color: inherit; }
.ftr-social:hover { opacity: 1; transform: translateY(-2px); }
.ftr-social svg { width: 16px; height: 16px; fill: currentColor; }
.ftr-bot { padding-top: 22px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; opacity: .8; font-size: .82rem; }
.ftr-bot a { color: inherit; text-decoration: none; opacity: .8; }
.ftr-bot a:hover { opacity: 1; }
@media (max-width: 760px) {
  .ftr-cols { grid-template-columns: 1fr; gap: 28px; }
}

/* ────── Mobile collapse (single-column for everything) ────── */
@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr !important; text-align: center; gap: 32px !important; }
  .hero-visual { order: -1; }
  .hero-logo-img { width: 180px !important; height: 180px !important; }
  .goals-grid, .mods-grid { grid-template-columns: 1fr !important; }
  .nav-arrow { width: 42px; height: 42px; }
  .nav-prev { left: 10px; } .nav-next { right: 10px; }
  h1 { font-size: 1.9rem !important; line-height: 1.18 !important; }
  .hide-m { display: none !important; }
  .ab-text { display: none !important; }
  .ab { padding: 8px 12px !important; }
  .hero { padding: 56px 0 48px !important; }
  .sec { padding: 56px 0 !important; }
}


/* ═══════════════════════════════════════════════════════════════════
   D1 — Clinical Teal · Modern medical SaaS dashboard feel
   - Sticky semi-transparent header with subtle blur
   - Hero with elevated stat-row card overlapping the bottom
   - Soft elevated cards with hover lift + accent stripe
   ═══════════════════════════════════════════════════════════════════ */
.d1 { font-family: 'Inter', sans-serif; color: #0f1f2a; background: #f7fbfc; }
.d1 .hdr { background: rgba(255, 255, 255, .82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid rgba(45, 106, 122, .08); padding: 14px 0; position: sticky; top: 0; z-index: 100; }
.d1 .hdr-in { display: flex; align-items: center; justify-content: space-between; }
.d1 .logo-t { font-weight: 700; font-size: 1.1rem; color: #134148; letter-spacing: -.01em; }
.d1 .hdr-r { display: flex; gap: 10px; align-items: center; }
.d1 .ab { padding: 9px 18px; background: linear-gradient(135deg, #2d6a7a, #3a8a9a); color: #fff; border-radius: 10px; font-size: .82rem; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; transition: transform .2s, box-shadow .2s; box-shadow: 0 4px 14px rgba(45, 106, 122, .25); }
.d1 .ab:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(45, 106, 122, .35); }
.d1 .pill { display: inline-block; padding: 6px 14px; border-radius: 999px; font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; background: rgba(255, 255, 255, .14); color: #c0f0f5; backdrop-filter: blur(8px); margin-bottom: 18px; }
.d1 .hero { padding: 96px 0 140px; background: radial-gradient(1200px 600px at 80% 10%, rgba(128, 216, 228, .35), transparent 60%), linear-gradient(135deg, #0c2a32 0%, #2d6a7a 55%, #45a4b3 100%); color: #fff; position: relative; overflow: hidden; }
.d1 .hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, .08) 0%, transparent 40%); pointer-events: none; }
.d1 .hero-split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; position: relative; z-index: 2; }
.d1 .hero h1 { font-size: 3rem; font-weight: 800; line-height: 1.08; letter-spacing: -.035em; }
.d1 .hero h1 em { font-style: normal; color: #80d8e4; background: linear-gradient(120deg, #80d8e4, #c0f0f5); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.d1 .hero p { opacity: .92; font-size: 1.08rem; margin: 22px 0 0; max-width: 540px; line-height: 1.6; }
.d1 .sec { padding: 96px 0; }
.d1 .sec-w { background: #fff; }
.d1 .goals-sec { margin-top: -90px; position: relative; z-index: 3; }
.d1 .goals-sec .ctr { background: #fff; border-radius: 24px; padding: 48px; box-shadow: 0 30px 80px -20px rgba(13, 70, 80, .18), 0 0 0 1px rgba(13, 70, 80, .04); }
.d1 .st { font-size: 2rem; font-weight: 800; color: #0c2a32; letter-spacing: -.025em; margin-bottom: 8px; }
.d1 .ss { color: #5a6b76; margin-bottom: 40px; max-width: 640px; font-size: 1rem; }
.d1 .goals-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.d1 .goal-card { background: #fff; border: 1px solid #e0eaee; border-radius: 14px; padding: 24px 20px; position: relative; transition: transform .25s, box-shadow .25s, border-color .25s; }
.d1 .goal-card::before { content: ''; position: absolute; inset: 0 0 auto 0; height: 3px; background: linear-gradient(90deg, #2d6a7a, #80d8e4); border-radius: 14px 14px 0 0; opacity: 0; transition: opacity .25s; }
.d1 .goal-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(45, 106, 122, .12); border-color: rgba(45, 106, 122, .2); }
.d1 .goal-card:hover::before { opacity: 1; }
.d1 .goal-icon { width: 44px; height: 44px; background: linear-gradient(135deg, #e8f6f8, #d0eef2); color: #2d6a7a; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.d1 .goal-letter { display: none; }
.d1 .goal-card h3 { font-size: .95rem; font-weight: 700; color: #0c2a32; margin-bottom: 6px; line-height: 1.25; }
.d1 .goal-card p { font-size: .82rem; color: #5a6b76; line-height: 1.5; }
.d1 .mods-sec { background: linear-gradient(180deg, #fff 0%, #ecf6f8 100%); }
.d1 .mods-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.d1 .mod-card { background: #fff; border: 1px solid #e0eaee; border-radius: 16px; padding: 30px; transition: transform .25s, box-shadow .25s; position: relative; overflow: hidden; }
.d1 .mod-card:hover { transform: translateY(-4px); box-shadow: 0 22px 50px rgba(45, 106, 122, .12); }
.d1 .mod-num { display: none; }
.d1 .mod-icon { width: 52px; height: 52px; background: linear-gradient(135deg, #2d6a7a, #45a4b3); color: #fff; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; box-shadow: 0 8px 20px rgba(45, 106, 122, .25); }
.d1 .mod-card h3 { font-size: 1.15rem; font-weight: 700; color: #0c2a32; margin-bottom: 8px; letter-spacing: -.01em; }
.d1 .mod-card p { color: #5a6b76; font-size: .92rem; line-height: 1.55; }
.d1 .cta-bar { background: linear-gradient(135deg, #0c2a32, #2d6a7a); color: #fff; padding: 80px 0; text-align: center; }
.d1 .cta-bar h2 { font-size: 2.2rem; font-weight: 800; letter-spacing: -.025em; margin-bottom: 14px; }
.d1 .cta-bar p { opacity: .85; margin-bottom: 28px; font-size: 1.05rem; }
.d1 .btn { display: inline-block; padding: 14px 30px; background: #fff; color: #0c2a32; border-radius: 10px; font-weight: 700; font-size: .95rem; transition: transform .2s, box-shadow .2s; box-shadow: 0 8px 24px rgba(0, 0, 0, .15); }
.d1 .btn:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(0, 0, 0, .25); }
.d1 .ftr { background: #0c2a32; color: rgba(255, 255, 255, .55); padding: 32px 0; text-align: center; font-size: .82rem; }


/* ═══════════════════════════════════════════════════════════════════
   D2 — Serif Elegant · Editorial / luxury wellness brand
   - Oversized Playfair display headings, dark cream background
   - Asymmetric hero with offset image
   - Goals as vertical numbered list with thin rules
   ═══════════════════════════════════════════════════════════════════ */
.d2 { font-family: 'Playfair Display', Georgia, serif; color: #1a1410; background: #1a1612; }
.d2 .hdr { background: transparent; padding: 28px 0; position: absolute; top: 0; left: 0; right: 0; z-index: 100; }
.d2 .hdr-in { display: flex; align-items: center; justify-content: space-between; }
.d2 .logo-t { font-weight: 700; font-size: 1.2rem; color: #f5e7d3; letter-spacing: .04em; font-style: italic; }
.d2 .hdr-r { display: flex; gap: 14px; align-items: center; }
.d2 .lang-cur { color: #f5e7d3; border: none; font-family: 'Inter', sans-serif; }
.d2 .ab { padding: 11px 22px; border: 1.5px solid #f5e7d3; color: #f5e7d3; border-radius: 0; font-family: 'Inter', sans-serif; font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .14em; transition: background .25s, color .25s; }
.d2 .ab:hover { background: #f5e7d3; color: #1a1612; }
.d2 .ab-icon { display: none; }
.d2 .pill { display: inline-block; font-family: 'Inter', sans-serif; font-size: .7rem; font-weight: 600; letter-spacing: .25em; text-transform: uppercase; color: #c9a875; padding-bottom: 14px; border-bottom: 1px solid rgba(201, 168, 117, .35); margin-bottom: 28px; }
.d2 .hero { background: linear-gradient(180deg, #1a1612 0%, #2a221b 100%); color: #f5e7d3; padding: 180px 0 130px; position: relative; overflow: hidden; }
.d2 .hero::before { content: ''; position: absolute; top: 20%; right: -10%; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(201, 168, 117, .12), transparent 65%); pointer-events: none; }
.d2 .hero-split { display: grid; grid-template-columns: 1.3fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 2; }
.d2 .hero h1 { font-size: 4.4rem; font-weight: 400; line-height: 1.05; letter-spacing: -.02em; }
.d2 .hero h1 em { font-style: italic; color: #c9a875; font-weight: 400; }
.d2 .hero p { font-family: 'Inter', sans-serif; font-size: 1.08rem; opacity: .8; margin: 28px 0 0; max-width: 480px; line-height: 1.7; }
.d2 .sec { padding: 110px 0; background: #1a1612; color: #f5e7d3; }
.d2 .sec-w { background: #fffaf2; color: #1a1612; }
.d2 .st { font-family: 'Playfair Display', serif; font-size: 2.6rem; font-weight: 400; margin-bottom: 14px; letter-spacing: -.015em; }
.d2 .st::after { content: ''; display: block; width: 56px; height: 1px; background: #c9a875; margin-top: 14px; }
.d2 .ss { font-family: 'Inter', sans-serif; opacity: .7; max-width: 560px; margin-bottom: 56px; font-size: 1rem; line-height: 1.7; }
/* Goals as a numbered editorial list */
.d2 .goals-grid { display: flex; flex-direction: column; max-width: 880px; }
.d2 .goal-card { display: grid; grid-template-columns: 80px 1fr auto; gap: 32px; align-items: center; padding: 28px 0; border-bottom: 1px solid rgba(26, 22, 18, .12); transition: padding .25s; }
.d2 .goal-card:last-child { border-bottom: none; }
.d2 .goal-card:hover { padding-left: 12px; }
.d2 .goal-letter { font-family: 'Playfair Display', serif; font-size: 3.2rem; font-weight: 400; color: #c9a875; font-style: italic; line-height: 1; }
.d2 .goal-icon { display: none; }
.d2 .goal-card h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 500; margin-bottom: 6px; }
.d2 .goal-card p { font-family: 'Inter', sans-serif; opacity: .7; font-size: .94rem; line-height: 1.6; }
.d2 .mods-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid rgba(245, 231, 211, .1); border-left: 1px solid rgba(245, 231, 211, .1); }
.d2 .mod-card { padding: 36px 30px; border-right: 1px solid rgba(245, 231, 211, .1); border-bottom: 1px solid rgba(245, 231, 211, .1); position: relative; transition: background .25s; }
.d2 .mod-card:hover { background: rgba(201, 168, 117, .06); }
.d2 .mod-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-style: italic; color: #c9a875; margin-bottom: 16px; }
.d2 .mod-icon { display: none; }
.d2 .mod-card h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 400; margin-bottom: 10px; }
.d2 .mod-card p { font-family: 'Inter', sans-serif; opacity: .7; font-size: .9rem; line-height: 1.65; }
.d2 .cta-bar { background: #fffaf2; color: #1a1612; padding: 110px 0; text-align: center; }
.d2 .cta-bar h2 { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 400; margin-bottom: 16px; letter-spacing: -.02em; }
.d2 .cta-bar h2 em { font-style: italic; color: #c9a875; }
.d2 .cta-bar p { font-family: 'Inter', sans-serif; opacity: .65; margin-bottom: 36px; font-size: 1.05rem; }
.d2 .btn { display: inline-block; padding: 14px 36px; background: #1a1612; color: #f5e7d3; border-radius: 0; font-family: 'Inter', sans-serif; font-weight: 600; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; transition: background .25s; }
.d2 .btn:hover { background: #c9a875; color: #1a1612; }
.d2 .ftr { background: #1a1612; color: rgba(245, 231, 211, .4); padding: 36px 0; text-align: center; font-family: 'Inter', sans-serif; font-size: .82rem; }


/* ═══════════════════════════════════════════════════════════════════
   D3 — Bold Geometric · Brutalist tech / startup
   - Hard 0-radius edges, thick borders, oversized numbers
   - Hero with split-color asymmetric block
   - Modules as bordered grid cells, no shadows
   ═══════════════════════════════════════════════════════════════════ */
.d3 { font-family: 'Space Grotesk', sans-serif; color: #0a0a0a; background: #f0ede8; }
.d3 .hdr { background: #0a0a0a; padding: 18px 0; position: sticky; top: 0; z-index: 100; border-bottom: 3px solid #ff4d2e; }
.d3 .hdr-in { display: flex; align-items: center; justify-content: space-between; }
.d3 .logo-t { font-weight: 700; font-size: 1.2rem; color: #fff; text-transform: uppercase; letter-spacing: .02em; }
.d3 .hdr-r { display: flex; gap: 12px; align-items: center; }
.d3 .lang-cur { color: #fff; border: none; padding: 6px 4px; border-radius: 0; }
.d3 .ab { padding: 10px 20px; background: #ff4d2e; color: #0a0a0a; border-radius: 0; font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: .04em; transition: transform .15s; border: 2px solid #ff4d2e; }
.d3 .ab:hover { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 #fff; }
.d3 .pill { display: inline-block; padding: 6px 14px; background: #ff4d2e; color: #0a0a0a; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 24px; }
.d3 .hero { background: #0a0a0a; color: #fff; padding: 100px 0 100px; position: relative; overflow: hidden; }
.d3 .hero::before { content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%; background: linear-gradient(135deg, #ff4d2e 0%, #ffa826 100%); clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%); }
.d3 .hero-split { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.d3 .hero h1 { font-size: 2.6rem; font-weight: 700; line-height: 1.05; letter-spacing: -.025em; text-transform: uppercase; }
.d3 .hero h1 em { font-style: normal; color: #ff4d2e; }
.d3 .hero p { font-size: 1.08rem; opacity: .9; margin: 24px 0 0; max-width: 460px; line-height: 1.55; }
.d3 .sec { padding: 100px 0; }
.d3 .sec-w { background: #fff; }
.d3 .st { font-size: 2.4rem; font-weight: 700; text-transform: uppercase; letter-spacing: -.025em; margin-bottom: 12px; line-height: 1.05; }
.d3 .st::before { content: '// '; color: #ff4d2e; }
.d3 .ss { color: #555; margin-bottom: 56px; max-width: 640px; font-size: 1.02rem; line-height: 1.6; }
.d3 .goals-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; border: 2px solid #0a0a0a; }
.d3 .goal-card { padding: 28px 22px; border-right: 2px solid #0a0a0a; transition: background .2s, color .2s; }
.d3 .goal-card:last-child { border-right: none; }
.d3 .goal-card:hover { background: #ff4d2e; color: #0a0a0a; }
.d3 .goal-icon { width: 36px; height: 36px; color: #ff4d2e; margin-bottom: 18px; transition: color .2s; }
.d3 .goal-card:hover .goal-icon { color: #0a0a0a; }
.d3 .goal-letter { display: none; }
.d3 .goal-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; text-transform: uppercase; line-height: 1.2; }
.d3 .goal-card p { font-size: .85rem; opacity: .8; line-height: 1.55; }
.d3 .mods-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 2px solid #0a0a0a; background: #0a0a0a; }
.d3 .mod-card { background: #f0ede8; padding: 36px 28px; border-right: 2px solid #0a0a0a; border-bottom: 2px solid #0a0a0a; position: relative; transition: background .2s; }
.d3 .mod-card:nth-child(3n) { border-right: none; }
.d3 .mod-card:nth-last-child(-n+3) { border-bottom: none; }
.d3 .mod-card:hover { background: #ffa826; }
.d3 .mod-num { position: absolute; top: 20px; right: 24px; font-size: 4rem; font-weight: 700; color: rgba(10, 10, 10, .08); line-height: 1; letter-spacing: -.04em; }
.d3 .mod-icon { display: none; }
.d3 .mod-card h3 { font-size: 1.3rem; font-weight: 700; text-transform: uppercase; margin-bottom: 10px; letter-spacing: -.01em; }
.d3 .mod-card p { font-size: .92rem; opacity: .8; line-height: 1.55; max-width: 320px; }
.d3 .cta-bar { background: #ff4d2e; color: #0a0a0a; padding: 90px 0; text-align: center; border-top: 4px solid #0a0a0a; border-bottom: 4px solid #0a0a0a; }
.d3 .cta-bar h2 { font-size: 2.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: -.025em; margin-bottom: 14px; }
.d3 .cta-bar p { font-size: 1.05rem; margin-bottom: 32px; font-weight: 500; }
.d3 .btn { display: inline-block; padding: 16px 36px; background: #0a0a0a; color: #ff4d2e; font-weight: 700; font-size: .95rem; text-transform: uppercase; letter-spacing: .04em; transition: transform .15s; border: 2px solid #0a0a0a; }
.d3 .btn:hover { transform: translate(-3px, -3px); box-shadow: 6px 6px 0 #fff; }
.d3 .ftr { background: #0a0a0a; color: #999; padding: 36px 0; text-align: center; font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; }


/* ═══════════════════════════════════════════════════════════════════
   D4 — Playful Purple · Soft consumer SaaS
   - Bubble-rounded everything (24-32px radius)
   - Pastel gradient mesh background, floating sticker elements
   - Goal cards as tilted pills, modules as floating bubbles
   ═══════════════════════════════════════════════════════════════════ */
.d4 { font-family: 'DM Sans', sans-serif; color: #2d1b4e; background: #faf7ff; }
.d4 .hdr { background: rgba(255, 255, 255, .85); backdrop-filter: blur(14px); padding: 14px 0; position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(155, 121, 245, .12); }
.d4 .hdr-in { display: flex; align-items: center; justify-content: space-between; }
.d4 .logo-t { font-weight: 700; font-size: 1.15rem; color: #6b3fa0; }
.d4 .hdr-r { display: flex; gap: 10px; align-items: center; }
.d4 .ab { padding: 11px 22px; background: linear-gradient(135deg, #9b79f5, #c896ff); color: #fff; border-radius: 999px; font-weight: 600; font-size: .85rem; transition: transform .25s, box-shadow .25s; box-shadow: 0 6px 18px rgba(155, 121, 245, .35); }
.d4 .ab:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(155, 121, 245, .5); }
.d4 .pill { display: inline-block; padding: 8px 18px; border-radius: 999px; font-size: .76rem; font-weight: 600; background: rgba(255, 255, 255, .18); color: #fff; backdrop-filter: blur(8px); margin-bottom: 24px; border: 1px solid rgba(255, 255, 255, .2); }
.d4 .hero { padding: 110px 0 130px; background: radial-gradient(ellipse 800px 400px at 20% 30%, rgba(255, 188, 217, .8), transparent), radial-gradient(ellipse 700px 500px at 90% 70%, rgba(155, 121, 245, .85), transparent), linear-gradient(135deg, #b88aff 0%, #ff8fc1 100%); color: #fff; position: relative; overflow: hidden; }
.d4 .hero::before { content: ''; position: absolute; width: 200px; height: 200px; background: rgba(255, 255, 255, .12); border-radius: 50%; top: 15%; right: 8%; filter: blur(2px); }
.d4 .hero::after { content: ''; position: absolute; width: 130px; height: 130px; background: rgba(255, 255, 255, .15); border-radius: 50%; bottom: 18%; left: 6%; filter: blur(1px); }
.d4 .hero-split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.d4 .hero h1 { font-size: 3.2rem; font-weight: 700; line-height: 1.08; letter-spacing: -.02em; }
.d4 .hero h1 em { font-style: normal; background: linear-gradient(120deg, #fff, #ffe2f4); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.d4 .hero p { font-size: 1.08rem; opacity: .94; margin: 24px 0 0; max-width: 480px; line-height: 1.6; }
.d4 .sec { padding: 100px 0; }
.d4 .sec-w { background: #fff; }
.d4 .st { font-size: 2.4rem; font-weight: 700; color: #2d1b4e; letter-spacing: -.025em; margin-bottom: 12px; line-height: 1.1; }
.d4 .ss { color: #6e6485; max-width: 620px; margin-bottom: 56px; font-size: 1.02rem; }
.d4 .goals-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.d4 .goal-card { background: #fff; border: 1px solid #ece5fb; border-radius: 28px; padding: 30px 22px; transition: transform .3s; position: relative; text-align: center; }
.d4 .goal-card:nth-child(odd) { transform: rotate(-1.5deg); }
.d4 .goal-card:nth-child(even) { transform: rotate(1.5deg); }
.d4 .goal-card:hover { transform: rotate(0) translateY(-6px); box-shadow: 0 18px 40px rgba(155, 121, 245, .18); }
.d4 .goal-icon { width: 56px; height: 56px; background: linear-gradient(135deg, #9b79f5, #c896ff); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; box-shadow: 0 8px 20px rgba(155, 121, 245, .35); }
.d4 .goal-letter { display: none; }
.d4 .goal-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; color: #2d1b4e; line-height: 1.25; }
.d4 .goal-card p { font-size: .85rem; color: #6e6485; line-height: 1.55; }
.d4 .mods-sec { background: linear-gradient(180deg, #fff, #f5edff); }
.d4 .mods-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.d4 .mod-card { background: #fff; border-radius: 32px; padding: 36px 30px; transition: transform .3s; box-shadow: 0 4px 22px rgba(155, 121, 245, .08); border: 1px solid rgba(155, 121, 245, .1); text-align: center; }
.d4 .mod-card:hover { transform: translateY(-6px); box-shadow: 0 22px 50px rgba(155, 121, 245, .2); }
.d4 .mod-num { display: none; }
.d4 .mod-icon { width: 64px; height: 64px; background: linear-gradient(135deg, #9b79f5, #ff8fc1); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; box-shadow: 0 10px 24px rgba(155, 121, 245, .3); }
.d4 .mod-card h3 { font-size: 1.25rem; font-weight: 700; color: #2d1b4e; margin-bottom: 10px; letter-spacing: -.01em; }
.d4 .mod-card p { color: #6e6485; font-size: .94rem; line-height: 1.6; }
.d4 .cta-bar { padding: 100px 0; text-align: center; background: radial-gradient(ellipse 600px 300px at 50% 0, rgba(255, 188, 217, .5), transparent), linear-gradient(135deg, #b88aff, #ff8fc1); color: #fff; }
.d4 .cta-bar h2 { font-size: 2.6rem; font-weight: 700; letter-spacing: -.025em; margin-bottom: 14px; }
.d4 .cta-bar p { opacity: .94; margin-bottom: 32px; font-size: 1.08rem; }
.d4 .btn { display: inline-block; padding: 16px 36px; background: #fff; color: #6b3fa0; border-radius: 999px; font-weight: 700; font-size: 1rem; transition: transform .25s, box-shadow .25s; box-shadow: 0 10px 28px rgba(0, 0, 0, .15); }
.d4 .btn:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(0, 0, 0, .25); }
.d4 .ftr { background: #2d1b4e; color: rgba(255, 255, 255, .55); padding: 36px 0; text-align: center; font-size: .85rem; }


/* ═══════════════════════════════════════════════════════════════════
   D5 — Dark Glassmorphism · Premium dark health-tech
   - Gradient mesh background with floating particles
   - Frosted glass cards with backdrop blur
   - Cyan/purple accents
   ═══════════════════════════════════════════════════════════════════ */
.d5 { font-family: 'Inter', sans-serif; color: #e8eaff; background: #050617; position: relative; overflow-x: hidden; }
.d5::before { content: ''; position: fixed; inset: 0; background: radial-gradient(ellipse 800px 600px at 10% 20%, rgba(96, 212, 224, .18), transparent 55%), radial-gradient(ellipse 700px 500px at 90% 80%, rgba(167, 139, 250, .2), transparent 55%), radial-gradient(ellipse 600px 400px at 50% 50%, rgba(96, 212, 224, .08), transparent 60%); pointer-events: none; z-index: 0; }
.d5 > * { position: relative; z-index: 1; }
.d5 .hdr { background: rgba(5, 6, 23, .55); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); padding: 14px 0; position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(255, 255, 255, .06); }
.d5 .hdr-in { display: flex; align-items: center; justify-content: space-between; }
.d5 .logo-t { font-weight: 700; font-size: 1.15rem; background: linear-gradient(120deg, #60d4e0, #a78bfa); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.d5 .hdr-r { display: flex; gap: 10px; align-items: center; }
.d5 .lang-cur { color: #e8eaff; border: none; }
.d5 .ab { padding: 10px 20px; background: rgba(255, 255, 255, .08); border: 1px solid rgba(96, 212, 224, .35); color: #e8eaff; border-radius: 10px; font-weight: 600; font-size: .82rem; backdrop-filter: blur(8px); transition: background .25s, border-color .25s; }
.d5 .ab:hover { background: rgba(96, 212, 224, .15); border-color: #60d4e0; }
.d5 .pill { display: inline-block; padding: 8px 18px; border-radius: 999px; font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; background: rgba(96, 212, 224, .12); color: #60d4e0; border: 1px solid rgba(96, 212, 224, .3); margin-bottom: 24px; backdrop-filter: blur(6px); }
.d5 .hero { padding: 130px 0 130px; position: relative; }
.d5 .particle { position: absolute; border-radius: 50%; opacity: .25; animation: floatp 6s ease-in-out infinite; filter: blur(20px); }
@keyframes floatp { 0%, 100% { transform: translateY(0) translateX(0); } 50% { transform: translateY(-20px) translateX(10px); } }
.d5 .hero-split { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.d5 .hero h1 { font-size: 3.6rem; font-weight: 800; line-height: 1.06; letter-spacing: -.035em; }
.d5 .hero h1 em { font-style: normal; background: linear-gradient(120deg, #60d4e0 0%, #a78bfa 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.d5 .hero p { font-size: 1.08rem; opacity: .75; margin: 26px 0 0; max-width: 500px; line-height: 1.65; }
.d5 .sec { padding: 100px 0; }
.d5 .sec-w { background: rgba(255, 255, 255, .02); }
.d5 .st { font-size: 2.4rem; font-weight: 700; letter-spacing: -.025em; margin-bottom: 12px; line-height: 1.1; }
.d5 .ss { opacity: .65; max-width: 620px; margin-bottom: 56px; font-size: 1rem; line-height: 1.65; }
.d5 .goals-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.d5 .goal-card { background: rgba(255, 255, 255, .04); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, .08); border-radius: 18px; padding: 26px 20px; transition: transform .3s, background .3s, border-color .3s; }
.d5 .goal-card:hover { transform: translateY(-4px); background: rgba(255, 255, 255, .07); border-color: rgba(96, 212, 224, .35); }
.d5 .goal-icon { width: 44px; height: 44px; background: linear-gradient(135deg, rgba(96, 212, 224, .25), rgba(167, 139, 250, .25)); border: 1px solid rgba(96, 212, 224, .35); color: #60d4e0; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.d5 .goal-letter { display: none; }
.d5 .goal-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; line-height: 1.25; }
.d5 .goal-card p { font-size: .85rem; opacity: .65; line-height: 1.55; }
.d5 .mods-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.d5 .mod-card { background: rgba(255, 255, 255, .04); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, .08); border-radius: 22px; padding: 32px; transition: transform .3s, border-color .3s; position: relative; overflow: hidden; }
.d5 .mod-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(96, 212, 224, .08), transparent 50%); opacity: 0; transition: opacity .3s; pointer-events: none; }
.d5 .mod-card:hover { transform: translateY(-4px); border-color: rgba(167, 139, 250, .4); }
.d5 .mod-card:hover::before { opacity: 1; }
.d5 .mod-num { font-size: 1.4rem; font-weight: 800; color: #60d4e0; letter-spacing: .04em; margin-bottom: 8px; }
.d5 .mod-icon { display: none; }
.d5 .mod-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; letter-spacing: -.01em; }
.d5 .mod-card p { opacity: .68; font-size: .92rem; line-height: 1.6; }
.d5 .cta-bar { padding: 100px 0; text-align: center; background: rgba(255, 255, 255, .03); backdrop-filter: blur(20px); border-top: 1px solid rgba(255, 255, 255, .06); border-bottom: 1px solid rgba(255, 255, 255, .06); }
.d5 .cta-bar h2 { font-size: 2.6rem; font-weight: 800; letter-spacing: -.025em; margin-bottom: 14px; background: linear-gradient(120deg, #60d4e0, #a78bfa); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.d5 .cta-bar p { opacity: .7; margin-bottom: 32px; font-size: 1.05rem; }
.d5 .btn { display: inline-block; padding: 14px 32px; background: linear-gradient(135deg, #60d4e0, #a78bfa); color: #050617; border-radius: 12px; font-weight: 700; font-size: .95rem; transition: transform .25s, box-shadow .25s; box-shadow: 0 12px 32px rgba(96, 212, 224, .3); }
.d5 .btn:hover { transform: translateY(-2px); box-shadow: 0 18px 42px rgba(96, 212, 224, .45); }
.d5 .ftr { background: transparent; color: rgba(232, 234, 255, .4); padding: 36px 0; text-align: center; font-size: .85rem; }


/* ═══════════════════════════════════════════════════════════════════
   D6 — Forest Green · Calm wellness / organic
   - Soft sage palette, blob-shape hero background
   - Cards with rounded-asymmetric corners (organic feel)
   - Centered layout, generous breathing room
   ═══════════════════════════════════════════════════════════════════ */
.d6 { font-family: 'Sora', sans-serif; color: #1c2e26; background: #f5f7f1; }
.d6 .hdr { background: rgba(245, 247, 241, .85); backdrop-filter: blur(12px); padding: 16px 0; position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(58, 116, 80, .1); }
.d6 .hdr-in { display: flex; align-items: center; justify-content: space-between; }
.d6 .logo-t { font-weight: 700; font-size: 1.15rem; color: #2a4836; }
.d6 .hdr-r { display: flex; gap: 10px; align-items: center; }
.d6 .ab { padding: 11px 22px; background: #3a7450; color: #fff; border-radius: 14px; font-weight: 600; font-size: .85rem; transition: background .25s, transform .25s; }
.d6 .ab:hover { background: #2a4836; transform: translateY(-1px); }
.d6 .pill { display: inline-block; padding: 6px 16px; background: rgba(255, 255, 255, .18); color: #fff; border-radius: 999px; font-size: .74rem; font-weight: 600; backdrop-filter: blur(6px); margin-bottom: 22px; border: 1px solid rgba(255, 255, 255, .25); }
.d6 .hero { padding: 56px 0 64px; background: linear-gradient(135deg, #2a4836 0%, #3a7450 60%, #5fa177 100%); color: #fff; position: relative; overflow: hidden; text-align: left; }
.d6 .hero::before { content: ''; position: absolute; width: 500px; height: 500px; background: rgba(255, 255, 255, .06); border-radius: 60% 40% 70% 30% / 30% 60% 40% 70%; top: -200px; right: -200px; }
.d6 .hero::after { content: ''; position: absolute; width: 400px; height: 400px; background: rgba(255, 255, 255, .04); border-radius: 50% 60% 40% 70% / 60% 30% 70% 40%; bottom: -250px; left: -150px; }
.d6 .hero-split { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; max-width: 1080px; margin: 0 auto; position: relative; z-index: 2; text-align: left; }
.d6 .hero h1 { font-size: 2.6rem; font-weight: 700; line-height: 1.1; letter-spacing: -.025em; }
.d6 .hero h1 em { font-style: normal; color: #c5e6cf; }
.d6 .hero p { font-size: 1rem; opacity: .9; margin: 16px 0 0; max-width: 580px; line-height: 1.6; }
.d6 .hero-visual { order: unset; justify-self: end; }
.d6 .hero-logo-img { width: 130px !important; height: 130px !important; }
.d6 .sec { padding: 100px 0; text-align: center; }
.d6 .sec-w { background: #fff; }
.d6 .st { font-size: 2.4rem; font-weight: 700; color: #2a4836; letter-spacing: -.025em; margin-bottom: 14px; }
.d6 .ss { color: #5a6e62; max-width: 620px; margin: 0 auto 56px; font-size: 1.04rem; line-height: 1.65; }
.d6 .goals-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.d6 .goal-card { background: #fff; border: 1px solid #e6ede5; border-radius: 32px 12px 32px 12px; padding: 30px 22px; transition: transform .3s, box-shadow .3s, border-radius .3s; text-align: left; }
.d6 .goal-card:hover { transform: translateY(-5px); border-radius: 12px 32px 12px 32px; box-shadow: 0 18px 40px rgba(58, 116, 80, .12); }
.d6 .goal-icon { width: 52px; height: 52px; background: linear-gradient(135deg, #d8ead8, #a8d4b6); color: #2a4836; border-radius: 50% 30% 50% 30%; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.d6 .goal-letter { display: none; }
.d6 .goal-card h3 { font-size: 1rem; font-weight: 700; color: #2a4836; margin-bottom: 6px; line-height: 1.25; }
.d6 .goal-card p { font-size: .85rem; color: #5a6e62; line-height: 1.6; }
.d6 .mods-sec { background: linear-gradient(180deg, #fff, #ebf2e7); }
.d6 .mods-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.d6 .mod-card { background: #fff; border-radius: 24px; padding: 28px 26px; text-align: left; transition: transform .3s, box-shadow .3s; border: 1px solid #e6ede5; display: grid; grid-template-columns: 60px 1fr; column-gap: 18px; align-items: start; }
.d6 .mod-card:hover { transform: translateY(-5px); box-shadow: 0 22px 48px rgba(58, 116, 80, .14); }
.d6 .mod-num { display: none; }
.d6 .mod-icon { width: 60px; height: 60px; background: linear-gradient(135deg, #3a7450, #5fa177); color: #fff; border-radius: 50% 40% 50% 40% / 40% 50% 40% 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 0; box-shadow: 0 10px 24px rgba(58, 116, 80, .25); grid-row: span 2; }
.d6 .mod-card h3 { font-size: 1.2rem; font-weight: 700; color: #2a4836; margin-bottom: 10px; letter-spacing: -.01em; }
.d6 .mod-card p { color: #5a6e62; font-size: .95rem; line-height: 1.6; }
.d6 .cta-bar { padding: 100px 0; text-align: center; background: linear-gradient(135deg, #2a4836, #5fa177); color: #fff; position: relative; overflow: hidden; }
.d6 .cta-bar::before { content: ''; position: absolute; width: 400px; height: 400px; background: rgba(255, 255, 255, .06); border-radius: 50% 30% 60% 40%; top: -100px; right: -100px; }
.d6 .cta-bar h2 { font-size: 2.6rem; font-weight: 700; letter-spacing: -.025em; margin-bottom: 14px; position: relative; z-index: 2; }
.d6 .cta-bar p { opacity: .9; margin-bottom: 32px; font-size: 1.08rem; position: relative; z-index: 2; }
.d6 .btn { display: inline-block; padding: 14px 32px; background: #fff; color: #2a4836; border-radius: 999px; font-weight: 700; font-size: .98rem; transition: transform .25s, box-shadow .25s; box-shadow: 0 10px 28px rgba(0, 0, 0, .15); position: relative; z-index: 2; }
.d6 .btn:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(0, 0, 0, .25); }
.d6 .ftr { background: #2a4836; color: rgba(255, 255, 255, .5); padding: 36px 0; text-align: center; font-size: .85rem; }


/* ═══════════════════════════════════════════════════════════════════
   D7 — Warm Terracotta · Earthy editorial / artisan
   - Hexagonal icon containers, warm ochre + terracotta
   - Cards with subtle texture borders
   - Two-column hero with overlapping pattern
   ═══════════════════════════════════════════════════════════════════ */
.d7 { font-family: 'DM Sans', sans-serif; color: #3a2a20; background: #faf3eb; }
.d7 .hdr { background: #faf3eb; padding: 18px 0; border-bottom: 2px dashed rgba(196, 95, 55, .25); position: sticky; top: 0; z-index: 100; }
.d7 .hdr-in { display: flex; align-items: center; justify-content: space-between; }
.d7 .logo-t { font-weight: 700; font-size: 1.15rem; color: #c45f37; }
.d7 .hdr-r { display: flex; gap: 12px; align-items: center; }
.d7 .ab { padding: 11px 22px; background: #c45f37; color: #fff; border-radius: 6px; font-weight: 600; font-size: .85rem; transition: background .25s; }
.d7 .ab:hover { background: #a04920; }
.d7 .pill { display: inline-block; padding: 6px 16px; background: rgba(255, 255, 255, .18); color: #fff; border-radius: 4px; font-size: .74rem; font-weight: 600; letter-spacing: .08em; backdrop-filter: blur(6px); margin-bottom: 22px; border: 1px solid rgba(255, 255, 255, .3); text-transform: uppercase; }
.d7 .hero { padding: 100px 0 110px; background: linear-gradient(135deg, #c45f37 0%, #d6824f 50%, #e8a06b 100%); color: #fff; position: relative; overflow: hidden; }
.d7 .hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255, 255, 255, .07) 1px, transparent 1px); background-size: 24px 24px; pointer-events: none; }
.d7 .hero-split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.d7 .hero h1 { font-size: 3.4rem; font-weight: 700; line-height: 1.08; letter-spacing: -.025em; }
.d7 .hero h1 em { font-style: italic; color: #fde7d4; font-weight: 600; }
.d7 .hero p { font-size: 1.06rem; opacity: .94; margin: 24px 0 0; max-width: 480px; line-height: 1.65; }
.d7 .sec { padding: 100px 0; }
.d7 .sec-w { background: #fff; }
.d7 .st { font-size: 2.3rem; font-weight: 700; color: #3a2a20; letter-spacing: -.02em; margin-bottom: 12px; }
.d7 .ss { color: #6e5848; max-width: 620px; margin-bottom: 56px; font-size: 1.02rem; line-height: 1.65; }
.d7 .goals-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.d7 .goal-card { text-align: center; padding: 24px 14px; transition: transform .3s; }
.d7 .goal-card:hover { transform: translateY(-6px); }
.d7 .goal-icon { width: 80px; height: 80px; margin: 0 auto 18px; background: linear-gradient(135deg, #c45f37, #e8a06b); color: #fff; clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%); display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 28px rgba(196, 95, 55, .25); }
.d7 .goal-letter { display: none; }
.d7 .goal-card h3 { font-size: 1.02rem; font-weight: 700; color: #3a2a20; margin-bottom: 6px; line-height: 1.25; }
.d7 .goal-card p { font-size: .86rem; color: #6e5848; line-height: 1.6; }
.d7 .mods-sec { background: #faf3eb; }
.d7 .mods-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.d7 .mod-card { background: #fff; border: 1px solid #e8d8c5; border-radius: 8px; padding: 32px 28px; transition: transform .3s, box-shadow .3s, border-color .3s; position: relative; }
.d7 .mod-card::before { content: ''; position: absolute; left: 0; top: 32px; bottom: 32px; width: 3px; background: #c45f37; }
.d7 .mod-card:hover { transform: translateX(6px); box-shadow: 0 14px 32px rgba(196, 95, 55, .14); border-color: #c45f37; }
.d7 .mod-num { font-size: 1.6rem; font-weight: 800; color: #c45f37; letter-spacing: .04em; margin-bottom: 10px; }
.d7 .mod-icon { display: none; }
.d7 .mod-card h3 { font-size: 1.18rem; font-weight: 700; color: #3a2a20; margin-bottom: 8px; }
.d7 .mod-card p { color: #6e5848; font-size: .92rem; line-height: 1.6; }
.d7 .cta-bar { padding: 100px 0; text-align: center; background: linear-gradient(135deg, #3a2a20, #6e3818); color: #fff; }
.d7 .cta-bar h2 { font-size: 2.6rem; font-weight: 700; letter-spacing: -.025em; margin-bottom: 14px; }
.d7 .cta-bar h2 em { font-style: italic; color: #e8a06b; }
.d7 .cta-bar p { opacity: .85; margin-bottom: 32px; font-size: 1.05rem; }
.d7 .btn { display: inline-block; padding: 14px 32px; background: #c45f37; color: #fff; border-radius: 6px; font-weight: 700; font-size: .95rem; transition: transform .25s, background .25s; }
.d7 .btn:hover { transform: translateY(-2px); background: #e8a06b; }
.d7 .ftr { background: #3a2a20; color: rgba(255, 255, 255, .5); padding: 36px 0; text-align: center; font-size: .85rem; }


/* ═══════════════════════════════════════════════════════════════════
   D8 — Ocean Blue · Corporate enterprise / trust
   - Deep navy + steel blue, structured grid
   - Stat band beneath hero, certification-style badges
   - Tabular feel with consistent spacing
   ═══════════════════════════════════════════════════════════════════ */
.d8 { font-family: 'Inter', sans-serif; color: #0f1c33; background: #fff; }
.d8 .hdr { background: #fff; padding: 16px 0; position: sticky; top: 0; z-index: 100; border-bottom: 1px solid #e0e6ed; }
.d8 .hdr-in { display: flex; align-items: center; justify-content: space-between; }
.d8 .logo-t { font-weight: 700; font-size: 1.15rem; color: #0f3c8a; letter-spacing: -.01em; }
.d8 .hdr-r { display: flex; gap: 10px; align-items: center; }
.d8 .ab { padding: 10px 22px; background: #0f3c8a; color: #fff; border-radius: 4px; font-weight: 600; font-size: .82rem; transition: background .2s; }
.d8 .ab:hover { background: #08245a; }
.d8 .pill { display: inline-block; padding: 6px 14px; background: rgba(255, 255, 255, .14); color: #b8d8ff; border-radius: 4px; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 24px; border: 1px solid rgba(184, 216, 255, .25); }
.d8 .hero { padding: 100px 0 100px; background: linear-gradient(135deg, #08245a 0%, #0f3c8a 50%, #1659b8 100%); color: #fff; position: relative; }
.d8 .hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px); background-size: 32px 32px; pointer-events: none; }
.d8 .hero-split { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.d8 .hero h1 { font-size: 3rem; font-weight: 800; line-height: 1.08; letter-spacing: -.03em; }
.d8 .hero h1 em { font-style: normal; color: #66d9ff; }
.d8 .hero p { font-size: 1.05rem; opacity: .85; margin: 24px 0 0; max-width: 500px; line-height: 1.6; }
.d8 .sec { padding: 100px 0; }
.d8 .sec-w { background: #f5f8fc; }
.d8 .st { font-size: 2.2rem; font-weight: 800; color: #0f1c33; letter-spacing: -.025em; margin-bottom: 12px; }
.d8 .st::before { content: ''; display: inline-block; width: 4px; height: 32px; background: #1659b8; margin-right: 16px; vertical-align: middle; border-radius: 2px; }
.d8 .ss { color: #5a6a82; max-width: 660px; margin-bottom: 56px; font-size: 1rem; line-height: 1.65; padding-left: 20px; }
.d8 .goals-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; border: 1px solid #d6dee8; border-radius: 8px; overflow: hidden; background: #fff; }
.d8 .goal-card { padding: 28px 22px; border-right: 1px solid #d6dee8; transition: background .25s; }
.d8 .goal-card:last-child { border-right: none; }
.d8 .goal-card:hover { background: #f5f8fc; }
.d8 .goal-icon { display: none; }
.d8 .goal-letter { display: inline-block; font-size: .68rem; font-weight: 700; color: #1659b8; padding: 3px 8px; background: #e6efff; border-radius: 3px; margin-bottom: 10px; letter-spacing: .1em; }
.d8 .goal-card h3 { font-size: 1rem; font-weight: 700; color: #0f1c33; margin-bottom: 6px; line-height: 1.25; }
.d8 .goal-card p { font-size: .85rem; color: #5a6a82; line-height: 1.55; }
.d8 .mods-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.d8 .mod-card { background: #fff; border: 1px solid #d6dee8; border-radius: 8px; padding: 32px 28px; transition: transform .25s, box-shadow .25s; }
.d8 .mod-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(15, 60, 138, .12); }
.d8 .mod-num { display: inline-block; padding: 4px 10px; background: #0f3c8a; color: #fff; border-radius: 3px; font-size: .72rem; font-weight: 700; letter-spacing: .08em; margin-bottom: 16px; }
.d8 .mod-icon { display: none; }
.d8 .mod-card h3 { font-size: 1.18rem; font-weight: 700; color: #0f1c33; margin-bottom: 8px; letter-spacing: -.01em; }
.d8 .mod-card p { color: #5a6a82; font-size: .92rem; line-height: 1.6; }
.d8 .cta-bar { padding: 90px 0; text-align: center; background: linear-gradient(135deg, #08245a, #1659b8); color: #fff; }
.d8 .cta-bar h2 { font-size: 2.4rem; font-weight: 800; letter-spacing: -.025em; margin-bottom: 14px; }
.d8 .cta-bar p { opacity: .85; margin-bottom: 32px; font-size: 1.05rem; }
.d8 .btn { display: inline-block; padding: 14px 36px; background: #66d9ff; color: #08245a; border-radius: 4px; font-weight: 700; font-size: .95rem; letter-spacing: .04em; text-transform: uppercase; transition: transform .2s, background .25s; }
.d8 .btn:hover { transform: translateY(-2px); background: #fff; }
.d8 .ftr { background: #08245a; color: rgba(255, 255, 255, .5); padding: 36px 0; text-align: center; font-size: .85rem; }


/* ═══════════════════════════════════════════════════════════════════
   D9 — Berry Playful · Vibrant startup energy
   - Hot magenta + coral accents, tilted hero, oversized type
   - Stacked cards with offset shadows
   - Marquee-style band of small modules
   ═══════════════════════════════════════════════════════════════════ */
.d9 { font-family: 'Sora', sans-serif; color: #2a0e35; background: #fff5f9; }
.d9 .hdr { background: #fff5f9; padding: 16px 0; position: sticky; top: 0; z-index: 100; }
.d9 .hdr-in { display: flex; align-items: center; justify-content: space-between; }
.d9 .logo-t { font-weight: 800; font-size: 1.2rem; color: #c41e7e; letter-spacing: -.02em; }
.d9 .hdr-r { display: flex; gap: 10px; align-items: center; }
.d9 .ab { padding: 11px 22px; background: #c41e7e; color: #fff; border-radius: 12px; font-weight: 700; font-size: .85rem; transition: transform .2s, box-shadow .25s; box-shadow: 4px 4px 0 #2a0e35; }
.d9 .ab:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 #2a0e35; }
.d9 .pill { display: inline-block; padding: 8px 18px; background: #ffe4ec; color: #c41e7e; border-radius: 999px; font-size: .76rem; font-weight: 700; margin-bottom: 24px; }
.d9 .hero { padding: 90px 0 110px; background: linear-gradient(135deg, #ff5e93 0%, #c41e7e 50%, #6e1659 100%); color: #fff; position: relative; overflow: hidden; }
.d9 .hero::before { content: ''; position: absolute; width: 500px; height: 500px; background: #ffa826; border-radius: 50%; top: -200px; right: -100px; opacity: .35; filter: blur(30px); }
.d9 .hero::after { content: ''; position: absolute; width: 350px; height: 350px; background: #ff5e93; border-radius: 50%; bottom: -150px; left: -50px; opacity: .25; filter: blur(20px); }
.d9 .hero-split { display: grid; grid-template-columns: 1.15fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.d9 .hero h1 { font-size: 4rem; font-weight: 800; line-height: 1; letter-spacing: -.04em; }
.d9 .hero h1 em { font-style: normal; background: linear-gradient(120deg, #ffa826, #fff); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.d9 .hero p { font-size: 1.1rem; opacity: .96; margin: 28px 0 0; max-width: 480px; line-height: 1.6; }
.d9 .sec { padding: 100px 0; }
.d9 .sec-w { background: #fff; }
.d9 .st { font-size: 2.6rem; font-weight: 800; color: #2a0e35; letter-spacing: -.03em; margin-bottom: 14px; line-height: 1.05; }
.d9 .st em { font-style: normal; color: #c41e7e; }
.d9 .ss { color: #6b4a78; max-width: 620px; margin-bottom: 56px; font-size: 1.04rem; line-height: 1.65; }
.d9 .goals-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.d9 .goal-card { background: #fff; border: 2px solid #2a0e35; border-radius: 16px; padding: 26px 20px; transition: transform .25s, box-shadow .25s; box-shadow: 4px 4px 0 #2a0e35; text-align: center; }
.d9 .goal-card:hover { transform: translate(-3px, -3px); box-shadow: 7px 7px 0 #c41e7e; }
.d9 .goal-icon { width: 52px; height: 52px; background: #ffe4ec; color: #c41e7e; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; border: 2px solid #2a0e35; }
.d9 .goal-letter { display: none; }
.d9 .goal-card h3 { font-size: 1rem; font-weight: 800; color: #2a0e35; margin-bottom: 6px; line-height: 1.25; }
.d9 .goal-card p { font-size: .86rem; color: #6b4a78; line-height: 1.55; }
.d9 .mods-sec { background: #fff5f9; }
.d9 .mods-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.d9 .mod-card { background: #fff; border: 2px solid #2a0e35; border-radius: 18px; padding: 32px 28px; transition: transform .25s, box-shadow .25s; box-shadow: 6px 6px 0 #2a0e35; text-align: center; }
.d9 .mod-card:nth-child(odd) { background: #fffaeb; }
.d9 .mod-card:nth-child(3n) { background: #ebfaf5; }
.d9 .mod-card:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 #c41e7e; }
.d9 .mod-num { display: none; }
.d9 .mod-icon { width: 56px; height: 56px; background: #c41e7e; color: #fff; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; border: 2px solid #2a0e35; }
.d9 .mod-card h3 { font-size: 1.22rem; font-weight: 800; color: #2a0e35; margin-bottom: 10px; letter-spacing: -.01em; }
.d9 .mod-card p { color: #6b4a78; font-size: .94rem; line-height: 1.6; }
.d9 .cta-bar { padding: 100px 0; text-align: center; background: #2a0e35; color: #fff; position: relative; overflow: hidden; }
.d9 .cta-bar::before { content: ''; position: absolute; width: 450px; height: 450px; background: #c41e7e; border-radius: 50%; top: -200px; right: -100px; opacity: .35; filter: blur(40px); }
.d9 .cta-bar h2 { font-size: 2.8rem; font-weight: 800; letter-spacing: -.025em; margin-bottom: 14px; position: relative; z-index: 2; }
.d9 .cta-bar p { opacity: .85; margin-bottom: 32px; font-size: 1.06rem; position: relative; z-index: 2; }
.d9 .btn { display: inline-block; padding: 16px 36px; background: #ffa826; color: #2a0e35; border: 2px solid #ffa826; border-radius: 12px; font-weight: 800; font-size: 1rem; transition: transform .2s, box-shadow .25s; box-shadow: 5px 5px 0 #c41e7e; position: relative; z-index: 2; }
.d9 .btn:hover { transform: translate(-3px, -3px); box-shadow: 8px 8px 0 #ff5e93; }
.d9 .ftr { background: #2a0e35; color: rgba(255, 255, 255, .5); padding: 36px 0; text-align: center; font-size: .85rem; }


/* ═══════════════════════════════════════════════════════════════════
   D10 — Monochrome Editorial · Sophisticated print magazine
   - Strict B/W palette, large numerals, thin rules
   - Hero with rule-bordered headline block
   - Goals as horizontal magazine columns, modules as bordered grid
   ═══════════════════════════════════════════════════════════════════ */
.d10 { font-family: 'Playfair Display', Georgia, serif; color: #0a0a0a; background: #fff; }
.d10 .hdr { background: #fff; padding: 22px 0; border-bottom: 1px solid #0a0a0a; position: sticky; top: 0; z-index: 100; }
.d10 .hdr-in { display: flex; align-items: center; justify-content: space-between; }
.d10 .logo-t { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.4rem; letter-spacing: -.02em; }
.d10 .hdr-r { display: flex; gap: 14px; align-items: center; }
.d10 .lang-cur { font-family: 'Inter', sans-serif; border-color: #0a0a0a; color: #0a0a0a; }
.d10 .ab { padding: 10px 24px; background: #0a0a0a; color: #fff; border-radius: 0; font-family: 'Inter', sans-serif; font-weight: 700; font-size: .76rem; text-transform: uppercase; letter-spacing: .14em; transition: background .2s; }
.d10 .ab:hover { background: #444; }
.d10 .ab-icon { display: none; }
.d10 .pill { display: inline-block; font-family: 'Inter', sans-serif; padding: 4px 0; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .28em; color: #0a0a0a; border-bottom: 1px solid #0a0a0a; margin-bottom: 32px; }
.d10 .hero { padding: 120px 0 100px; background: #fff; color: #0a0a0a; position: relative; }
.d10 .hero-split { display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; align-items: end; }
.d10 .hero h1 { font-family: 'Playfair Display', serif; font-size: 5rem; font-weight: 400; line-height: .98; letter-spacing: -.03em; }
.d10 .hero h1 em { font-style: italic; font-weight: 400; }
.d10 .hero p { font-family: 'Inter', sans-serif; font-size: 1.04rem; color: #444; margin: 32px 0 0; max-width: 460px; line-height: 1.7; padding-top: 32px; border-top: 1px solid #0a0a0a; }
.d10 .hero-logo-img { width: 220px !important; height: 220px !important; }
.d10 .sec { padding: 90px 0; border-top: 1px solid #0a0a0a; }
.d10 .sec-w { background: #f5f5f3; }
.d10 .st { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 400; letter-spacing: -.025em; margin-bottom: 14px; line-height: 1.05; }
.d10 .ss { font-family: 'Inter', sans-serif; color: #555; max-width: 620px; margin-bottom: 64px; font-size: 1rem; line-height: 1.7; }
/* Goals: magazine columns separated by hairlines */
.d10 .goals-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; border-top: 1px solid #0a0a0a; }
.d10 .goal-card { padding: 32px 18px 0 18px; border-right: 1px solid #0a0a0a; transition: background .2s; }
.d10 .goal-card:last-child { border-right: none; }
.d10 .goal-card:hover { background: rgba(0, 0, 0, .03); }
.d10 .goal-letter { font-family: 'Playfair Display', serif; font-size: 4rem; font-weight: 400; font-style: italic; line-height: 1; margin-bottom: 22px; }
.d10 .goal-icon { display: none; }
.d10 .goal-card h3 { font-family: 'Playfair Display', serif; font-size: 1.45rem; font-weight: 500; margin-bottom: 10px; line-height: 1.15; }
.d10 .goal-card p { font-family: 'Inter', sans-serif; font-size: .9rem; color: #555; line-height: 1.65; padding-bottom: 32px; border-bottom: 1px solid #0a0a0a; }
.d10 .mods-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: #0a0a0a; border: 1px solid #0a0a0a; }
.d10 .mod-card { background: #fff; padding: 40px 32px; transition: background .2s; position: relative; }
.d10 .mod-card:hover { background: #f5f5f3; }
.d10 .mod-num { font-family: 'Playfair Display', serif; font-size: 5rem; font-weight: 400; font-style: italic; line-height: .9; margin-bottom: 16px; color: #0a0a0a; }
.d10 .mod-icon { display: none; }
.d10 .mod-card h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 500; margin-bottom: 10px; line-height: 1.15; }
.d10 .mod-card p { font-family: 'Inter', sans-serif; color: #555; font-size: .94rem; line-height: 1.7; }
.d10 .cta-bar { padding: 110px 0; text-align: center; background: #0a0a0a; color: #fff; }
.d10 .cta-bar h2 { font-family: 'Playfair Display', serif; font-size: 3.4rem; font-weight: 400; letter-spacing: -.025em; margin-bottom: 18px; }
.d10 .cta-bar h2 em { font-style: italic; }
.d10 .cta-bar p { font-family: 'Inter', sans-serif; opacity: .65; margin-bottom: 36px; font-size: 1.04rem; }
.d10 .btn { display: inline-block; padding: 16px 38px; background: #fff; color: #0a0a0a; border-radius: 0; font-family: 'Inter', sans-serif; font-weight: 700; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; transition: background .2s; }
.d10 .btn:hover { background: #f5f5f3; }
.d10 .ftr { background: #fff; color: #444; padding: 36px 0; text-align: center; font-family: 'Inter', sans-serif; font-size: .82rem; border-top: 1px solid #0a0a0a; }


/* ═══════════════════════════════════════════════════════════════════
   D5 particle override — keep them visible (defined inline by JS)
   ═══════════════════════════════════════════════════════════════════ */
.particle { position: absolute; border-radius: 50%; opacity: .15; animation: floatp 4s ease-in-out infinite; }
@keyframes floatp { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }


/* ═══════════════════════════════════════════════════════════════════
   Header secondary button (.ab.ab-secondary) — softer "App" link next
   to the primary "Client area" button. Per-design overrides below tweak
   the contrast/treatment so it never competes with the primary CTA.
   ═══════════════════════════════════════════════════════════════════ */
.ab-secondary { background: transparent !important; box-shadow: none !important; }

.d1 .ab-secondary { color: #2d6a7a; border: 1px solid rgba(45, 106, 122, .35); }
.d1 .ab-secondary:hover { background: rgba(45, 106, 122, .08) !important; transform: none; box-shadow: none !important; }

.d2 .ab-secondary { color: #f5e7d3; border: 1.5px solid rgba(245, 231, 211, .4); }
.d2 .ab-secondary:hover { background: rgba(245, 231, 211, .1) !important; color: #f5e7d3; }

.d3 .ab-secondary { color: #fff; border: 2px solid #fff; background: transparent !important; }
.d3 .ab-secondary:hover { background: #fff !important; color: #0a0a0a; transform: none; box-shadow: none !important; }

.d4 .ab-secondary { color: #6b3fa0; border: 1px solid rgba(155, 121, 245, .35); border-radius: 999px; }
.d4 .ab-secondary:hover { background: rgba(155, 121, 245, .08) !important; transform: none; box-shadow: none !important; }

.d5 .ab-secondary { color: #e8eaff; border: 1px solid rgba(255, 255, 255, .15); background: transparent !important; }
.d5 .ab-secondary:hover { background: rgba(255, 255, 255, .06) !important; border-color: rgba(96, 212, 224, .4); }

.d6 .ab-secondary { color: #2a4836; border: 1px solid rgba(58, 116, 80, .3); }
.d6 .ab-secondary:hover { background: rgba(58, 116, 80, .08) !important; transform: none; }

.d7 .ab-secondary { color: #c45f37; border: 1px solid rgba(196, 95, 55, .4); }
.d7 .ab-secondary:hover { background: rgba(196, 95, 55, .08) !important; }

.d8 .ab-secondary { color: #0f3c8a; border: 1px solid rgba(15, 60, 138, .3); border-radius: 4px; }
.d8 .ab-secondary:hover { background: rgba(15, 60, 138, .06) !important; transform: none; }

.d9 .ab-secondary { color: #2a0e35; border: 2px solid #2a0e35; box-shadow: none !important; }
.d9 .ab-secondary:hover { background: #ffe4ec !important; transform: translate(-2px, -2px); box-shadow: 4px 4px 0 #2a0e35 !important; }

.d10 .ab-secondary { color: #0a0a0a; border: 1px solid #0a0a0a; background: transparent !important; }
.d10 .ab-secondary:hover { background: #f5f5f3 !important; }


/* ═══════════════════════════════════════════════════════════════════
   Footer with link row — applies to all designs. Per-design colour
   adjustments inherit from each .ftr block above (background already set).
   ═══════════════════════════════════════════════════════════════════ */
.ftr-in { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.ftr-links { display: flex; gap: 32px; flex-wrap: wrap; justify-content: center; }
.ftr-links a { color: inherit; opacity: .8; font-size: .9rem; font-weight: 500; transition: opacity .2s; text-decoration: none; }
.ftr-links a:hover { opacity: 1; text-decoration: underline; text-underline-offset: 4px; }
.ftr-copy { opacity: .6; font-size: .82rem; }

/* Footer link styling per design — adjust accents */
.d2 .ftr-links a, .d2 .ftr-copy { font-family: 'Inter', sans-serif; }
.d3 .ftr-links a { text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; }
.d10 .ftr-links a { font-family: 'Inter', sans-serif; text-transform: uppercase; letter-spacing: .14em; font-size: .76rem; }


/* ═══════════════════════════════════════════════════════════════════
   Mobile tweaks for the new dual buttons + footer layout
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .ab-secondary .ab-text { display: none !important; }
  .ftr-links { gap: 20px; }
}
