/* ============================================================
   PRAXIS PAZER — Design System
   Apple-inspired · minimalist · glass / frosted aesthetic
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,500;0,6..72,600;1,6..72,400&display=swap');

:root {
    /* Palette — calm, clinical, serene */
    --bg: #f5f7fb;
    --bg-2: #eef2f9;
    --ink: #0f172a;
    --ink-soft: #475569;
    --muted: #8a93a6;
    --line: rgba(15, 23, 42, 0.08);
    --line-strong: rgba(15, 23, 42, 0.14);

    /* Accent — serene blue → teal */
    --accent: #3f8d83;
    --accent-deep: #2c6f66;
    --accent-soft: #7faea4;
    --teal: #6fae9b;

    /* Glass */
    --glass-bg: rgba(255, 255, 255, 0.62);
    --glass-bg-strong: rgba(255, 255, 255, 0.78);
    --glass-border: rgba(255, 255, 255, 0.7);
    --glass-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
    --glass-shadow-lg: 0 24px 70px rgba(15, 23, 42, 0.12);

    /* Type */
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
    --serif: 'Newsreader', 'Iowan Old Style', Georgia, 'Times New Roman', serif;

    /* Layout */
    --container: 1180px;
    --container-narrow: 760px;
    --gutter: clamp(20px, 4vw, 44px);
    --radius: 26px;
    --radius-sm: 16px;
    --radius-lg: 36px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--sans);
    font-weight: 400;
    font-size: 17px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--bg);
    position: relative;
    overflow-x: hidden;
}

/* --- Ambient aurora background ------------------------------ */
.aurora {
    position: fixed;
    inset: 0;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
    background:
        linear-gradient(180deg, #fbfdfc 0%, #f1f5f3 100%);
}
.aurora::before,
.aurora::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.28;
}
.aurora::before {
    width: 52vw; height: 52vw;
    top: -12vw; right: -8vw;
    background: radial-gradient(circle at 30% 30%, rgba(63, 141, 131, 0.45), transparent 65%);
}
.aurora::after {
    width: 46vw; height: 46vw;
    bottom: -14vw; left: -10vw;
    background: radial-gradient(circle at 60% 40%, rgba(111, 174, 155, 0.38), transparent 65%);
}
.aurora span {
    position: absolute;
    width: 34vw; height: 34vw;
    top: 38%; left: 42%;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.18;
    background: radial-gradient(circle, rgba(127, 174, 164, 0.5), transparent 70%);
}

/* ============================================================
   Typography
   ============================================================ */

h1, h2, h3, h4 {
    font-family: var(--sans);
    color: var(--ink);
    line-height: 1.08;
    letter-spacing: -0.022em;
    font-weight: 600;
}

/* Editorial serif for the display headings — more professional, calmer gravitas */
h1, h2 {
    font-family: var(--serif);
    letter-spacing: -0.018em;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 500;
    line-height: 1.05;
}
h2 { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 500; line-height: 1.12; }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.6rem); font-weight: 600; }
h4 {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
}

p { color: var(--ink-soft); margin-bottom: 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--accent-deep); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--accent); }

.lead {
    font-size: clamp(1.15rem, 2.2vw, 1.4rem);
    line-height: 1.5;
    font-weight: 400;
    color: var(--ink-soft);
    letter-spacing: -0.01em;
}

.eyebrow {
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    display: inline-block;
    margin-bottom: 1.1rem;
}

.gradient-text {
    background: linear-gradient(100deg, var(--accent) 0%, var(--teal) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ============================================================
   Layout
   ============================================================ */

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--gutter); }

section { padding: clamp(60px, 9vw, 120px) 0; }
section.tight { padding: clamp(40px, 6vw, 72px) 0; }

.section-head { max-width: 680px; margin-bottom: clamp(40px, 6vw, 68px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin-bottom: 18px; }

.grid-2 { display: grid; grid-template-columns: 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 24px; }
.grid-4 { display: grid; grid-template-columns: 1fr; gap: 22px; }

@media (min-width: 820px) {
    .grid-2 { grid-template-columns: 1fr 1fr; }
    .grid-2-wide { grid-template-columns: 1.15fr 0.85fr; }
}
@media (min-width: 720px) {
    .grid-3 { grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.4vw, 30px); }
}
@media (min-width: 720px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   Navigation — frosted glass, sticky
   ============================================================ */

.nav {
    position: sticky;
    top: 14px;
    z-index: 100;
    margin: 14px auto 0;
    max-width: var(--container);
    width: calc(100% - 28px);
    border-radius: 100px;
    background: var(--glass-bg-strong);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: var(--glass-shadow-lg); }

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px clamp(18px, 3vw, 26px);
}

.nav-brand {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 9px;
}
.nav-brand:hover { color: var(--ink); }
.nav-brand .dot {
    width: 11px; height: 11px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--teal));
    display: inline-block;
}

.nav-links { display: none; list-style: none; gap: 4px; align-items: center; }
@media (min-width: 980px) { .nav-links { display: flex; } }

.nav-links a {
    font-size: 0.92rem;
    color: var(--ink-soft);
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 100px;
    transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--ink); background: rgba(15, 23, 42, 0.05); }
.nav-links a.active { color: var(--accent-deep); background: rgba(63, 141, 131, 0.1); }

.nav-cta {
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    padding: 9px 20px !important;
    background: var(--ink) !important;
    color: #fff !important;
    border-radius: 100px;
    transition: transform 0.2s, background 0.2s;
}
.nav-cta:hover { background: var(--accent-deep) !important; color: #fff !important; transform: translateY(-1px); }

.nav-toggle {
    display: flex; flex-direction: column; gap: 5px;
    background: none; border: 0; cursor: pointer; padding: 8px;
}
@media (min-width: 980px) { .nav-toggle { display: none; } }
.nav-toggle span { display: block; width: 22px; height: 2px; border-radius: 2px; background: var(--ink); transition: transform 0.25s, opacity 0.25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
    display: none;
    list-style: none;
    padding: 6px 14px 16px;
    border-top: 1px solid var(--line);
    margin: 0 8px;
}
.nav-mobile.open { display: block; }
.nav-mobile li { padding: 2px 0; }
.nav-mobile a { display: block; padding: 12px 10px; border-radius: 12px; font-weight: 500; color: var(--ink); }
.nav-mobile a:hover { background: rgba(15, 23, 42, 0.05); }

/* ============================================================
   Buttons — Apple pill style
   ============================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--sans);
    font-size: 0.98rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 100px;
    border: 1px solid transparent;
    background: rgba(15, 23, 42, 0.06);
    color: var(--ink);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    letter-spacing: -0.01em;
}
.btn:hover { transform: translateY(-2px); background: rgba(15, 23, 42, 0.1); color: var(--ink); }

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
    color: #fff;
    box-shadow: 0 10px 26px rgba(63, 141, 131, 0.32);
}
.btn-primary:hover { color: #fff; box-shadow: 0 14px 34px rgba(63, 141, 131, 0.42); }

.btn-ghost { background: transparent; border: 1px solid var(--line-strong); }
.btn-ghost:hover { background: rgba(15, 23, 42, 0.04); }

.btn-arrow::after { content: '→'; transition: transform 0.25s ease; }
.btn-arrow:hover::after { transform: translateX(5px); }

.btn-lg { padding: 17px 36px; font-size: 1.05rem; }

/* ============================================================
   Glass card
   ============================================================ */

.glass {
    background: var(--glass-bg);
    backdrop-filter: saturate(160%) blur(18px);
    -webkit-backdrop-filter: saturate(160%) blur(18px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    box-shadow: var(--glass-shadow);
}

.card {
    background: var(--glass-bg);
    backdrop-filter: saturate(160%) blur(18px);
    -webkit-backdrop-filter: saturate(160%) blur(18px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    box-shadow: var(--glass-shadow);
    padding: clamp(26px, 3vw, 38px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--glass-shadow-lg); }

.card .ico {
    width: 52px; height: 52px;
    border-radius: 15px;
    display: grid; place-items: center;
    font-size: 1.5rem;
    margin-bottom: 22px;
    background: linear-gradient(135deg, rgba(63, 141, 131,0.14), rgba(111, 174, 155,0.14));
    border: 1px solid rgba(63, 141, 131,0.16);
}
.card h3 { margin-bottom: 12px; }
.card p { font-size: 0.97rem; }

.card-link {
    display: inline-flex; align-items: center; gap: 7px;
    margin-top: 20px;
    font-size: 0.88rem; font-weight: 600;
    color: var(--accent-deep);
}
.card-link::after { content: '→'; transition: transform 0.2s; }
.card-link:hover::after { transform: translateX(4px); }

/* ============================================================
   Hero
   ============================================================ */

.hero { padding: clamp(60px, 9vw, 110px) 0 clamp(50px, 7vw, 90px); }

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(36px, 6vw, 60px);
    align-items: center;
}
@media (min-width: 920px) {
    .hero-grid { grid-template-columns: 1.05fr 0.95fr; }
}

.hero h1 { margin-bottom: 26px; }
.hero .lead { margin-bottom: 34px; max-width: 540px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.hero-badges {
    margin-top: 40px;
    padding-top: 26px;
    border-top: 1px solid var(--line);
    display: flex; flex-wrap: wrap;
    gap: 14px 32px;
    font-size: 0.86rem;
    color: var(--ink-soft);
}
.hero-badges div { display: flex; align-items: center; gap: 9px; }
.hero-badges .check {
    width: 22px; height: 22px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--teal));
    color: #fff; display: grid; place-items: center; font-size: 0.7rem; flex: none;
}

/* Portrait — placeholder on the right */
.hero-portrait {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(160deg, #dde7fb 0%, #cdeef0 100%);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow-lg);
    display: grid; place-items: center;
    max-width: 460px;
    margin: 0 auto;
    width: 100%;
}
.hero-portrait::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.6), transparent 55%),
        radial-gradient(ellipse at 75% 80%, rgba(63, 141, 131,0.16), transparent 60%);
}
.hero-portrait .placeholder {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--ink-soft);
}
.hero-portrait .photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    display: block;
}
.hero-portrait .placeholder .silhouette {
    width: 96px; height: 96px;
    border-radius: 50%;
    background: rgba(255,255,255,0.55);
    border: 1px solid var(--glass-border);
    display: grid; place-items: center;
    font-size: 2.6rem;
    margin: 0 auto 16px;
}
.hero-portrait .placeholder span {
    font-size: 0.82rem;
    letter-spacing: 0.04em;
}
/* floating glass chip on portrait */
.portrait-chip {
    position: absolute;
    z-index: 3;
    left: 18px; bottom: 18px;
    padding: 12px 16px;
    background: var(--glass-bg-strong);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
    font-size: 0.82rem;
    line-height: 1.3;
}
.portrait-chip strong { display: block; color: var(--ink); font-weight: 600; }
.portrait-chip span { color: var(--muted); }

/* Line icons (SVG) */
.icn {
    width: 26px; height: 26px;
    stroke: currentColor; fill: none;
    stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round;
    display: block;
}
.ico { color: var(--accent-deep); }
.cred-ico { color: var(--accent-deep); }
.hw-ico { color: var(--teal); }
.hw .hw-ico .icn { width: 18px; height: 18px; }
.blog-cover { color: var(--accent-deep); }
.blog-cover .icn { width: 46px; height: 46px; stroke-width: 1.4; opacity: 0.8; }
.ico-num { font-family: var(--serif); color: var(--accent-deep); font-weight: 600; font-size: 1.5rem; }
.build-ico { color: var(--accent-deep); }
.build-ico .icn { width: 46px; height: 46px; margin: 0 auto; }

/* Credentials list (key/value rows) */
.about-credentials { list-style: none; padding: 0; margin: 0; }
.about-credentials li {
    display: flex; justify-content: space-between; gap: 20px; align-items: baseline;
    padding: 14px 0; border-bottom: 1px solid var(--line);
    font-size: 0.98rem;
}
.about-credentials li:last-child { border-bottom: 0; }
.about-credentials li strong { color: var(--ink); font-weight: 600; }
.about-credentials li span { color: var(--muted); font-size: 0.9rem; letter-spacing: 0.02em; }

/* Name plate under the portrait */
.name-plate { text-align: center; margin-top: 22px; }
.name-plate .name {
    font-family: var(--serif);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.01em;
    line-height: 1.1;
}
.name-plate .role {
    margin-top: 7px;
    font-size: 0.84rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
}
.name-plate .role::before,
.name-plate .role::after {
    content: ''; display: inline-block; width: 22px; height: 1px;
    background: var(--line-strong); vertical-align: middle; margin: 0 12px;
}

/* ============================================================
   Pill / tag list
   ============================================================ */

.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
    font-size: 0.9rem; font-weight: 500;
    padding: 9px 18px;
    border-radius: 100px;
    background: var(--glass-bg);
    border: 1px solid var(--line);
    color: var(--ink-soft);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.pill.accent { color: var(--accent-deep); border-color: rgba(63, 141, 131,0.25); background: rgba(63, 141, 131,0.07); }
.pill.muted { color: var(--muted); text-decoration: line-through; opacity: 0.75; }

/* ============================================================
   Pricing
   ============================================================ */

.price-card {
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: saturate(160%) blur(18px);
    -webkit-backdrop-filter: saturate(160%) blur(18px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    box-shadow: var(--glass-shadow);
    padding: clamp(28px, 3vw, 40px);
    display: flex; flex-direction: column;
    height: 100%;
}
.price-card.featured {
    border: 1.5px solid rgba(63, 141, 131,0.4);
    box-shadow: 0 24px 60px rgba(63, 141, 131,0.18);
}
.price-tag {
    position: absolute; top: 22px; right: 22px;
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, var(--accent), var(--teal));
    padding: 5px 12px; border-radius: 100px;
}
.price-card h3 { margin-bottom: 6px; }
.price-card .sub { font-size: 0.92rem; color: var(--muted); margin-bottom: 22px; }
.price-amount {
    font-size: 3rem; font-weight: 700; letter-spacing: -0.03em; color: var(--ink);
    line-height: 1; margin-bottom: 6px;
}
.price-amount small { font-size: 1rem; font-weight: 500; color: var(--muted); }
.price-meta { font-size: 0.85rem; color: var(--muted); margin-bottom: 26px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.price-features { list-style: none; margin: 0 0 30px; display: grid; gap: 12px; }
.price-features li { display: flex; gap: 11px; font-size: 0.96rem; color: var(--ink-soft); }
.price-features li .tick {
    flex: none; width: 21px; height: 21px; border-radius: 50%;
    background: rgba(63, 141, 131,0.12); color: var(--accent-deep);
    display: grid; place-items: center; font-size: 0.7rem; margin-top: 2px;
}
.price-card .btn { margin-top: auto; justify-content: center; }

/* ============================================================
   Steps / process
   ============================================================ */

.steps { display: grid; gap: 18px; counter-reset: step; }
.step {
    display: grid; grid-template-columns: 48px 1fr; gap: 20px; align-items: start;
    padding: 22px clamp(20px, 2.5vw, 30px);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    box-shadow: var(--glass-shadow);
}
.step .n {
    width: 44px; height: 44px; border-radius: 13px;
    display: grid; place-items: center;
    font-weight: 700; font-size: 1.1rem; color: #fff;
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
}
.step h3 { font-size: 1.15rem; margin-bottom: 5px; }
.step p { font-size: 0.95rem; margin: 0; }

/* ============================================================
   Blog
   ============================================================ */

.blog-grid { display: grid; grid-template-columns: 1fr; gap: 26px; }
@media (min-width: 720px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card {
    display: flex; flex-direction: column;
    background: var(--glass-bg);
    backdrop-filter: saturate(160%) blur(18px);
    -webkit-backdrop-filter: saturate(160%) blur(18px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    box-shadow: var(--glass-shadow);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--glass-shadow-lg); }
.blog-cover {
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, #dbe6fc, #cdeef0);
    display: grid; place-items: center;
    font-size: 2.4rem;
}
.blog-cover.c2 { background: linear-gradient(135deg, #e7dcfb, #d5e6fb); }
.blog-cover.c3 { background: linear-gradient(135deg, #cdeef0, #e3f5dc); }
.blog-body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.blog-body .cat { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.blog-body h3 { font-size: 1.28rem; margin-bottom: 10px; color: var(--ink); }
.blog-card:hover h3 { color: var(--accent-deep); }
.blog-body p { font-size: 0.95rem; margin-bottom: 18px; }
.blog-body .meta { margin-top: auto; font-size: 0.82rem; color: var(--muted); }

/* Article */
.article { padding: clamp(40px, 6vw, 80px) 0 clamp(60px, 9vw, 110px); }
.article-hero { padding-top: clamp(40px, 6vw, 70px); }
.article-hero h1 { font-size: clamp(2rem, 5vw, 3.3rem); margin-bottom: 20px; }
.article-meta { font-size: 0.88rem; color: var(--muted); display: flex; gap: 22px; flex-wrap: wrap; margin-top: 22px; }
.prose { max-width: 720px; }
.prose p { font-size: 1.08rem; line-height: 1.75; margin-bottom: 1.3em; }
.prose h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 1.8em 0 0.6em; }
.prose h3 { margin: 1.5em 0 0.5em; }
.prose ul, .prose ol { margin: 0 0 1.3em; padding-left: 24px; }
.prose li { margin-bottom: 10px; color: var(--ink-soft); font-size: 1.05rem; }
.prose blockquote {
    margin: 1.8em 0; padding: 20px 26px;
    border-left: 3px solid var(--accent);
    background: var(--glass-bg);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 1.2rem; font-style: italic; color: var(--ink);
}

/* ============================================================
   Video cards (YouTube)
   ============================================================ */

.video-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 700px) { .video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .video-grid { grid-template-columns: repeat(3, 1fr); } }

.video-card {
    display: block;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    box-shadow: var(--glass-shadow);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.video-card:hover { transform: translateY(-5px); box-shadow: var(--glass-shadow-lg); }
.video-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #1a2440, #2b3a63);
    display: grid; place-items: center;
}
.video-thumb .play {
    width: 60px; height: 60px; border-radius: 50%;
    background: rgba(255,255,255,0.92);
    display: grid; place-items: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    transition: transform 0.2s;
}
.video-card:hover .play { transform: scale(1.08); }
.video-thumb .play::after { content: ''; border-left: 16px solid var(--accent-deep); border-top: 10px solid transparent; border-bottom: 10px solid transparent; margin-left: 4px; }
.video-info { padding: 20px 22px 24px; }
.video-info h3 { font-size: 1.08rem; margin-bottom: 6px; color: var(--ink); }
.video-info span { font-size: 0.82rem; color: var(--muted); }

/* ============================================================
   FAQ accordion
   ============================================================ */

.faq { display: grid; gap: 14px; max-width: 780px; margin: 0 auto; }
.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    box-shadow: var(--glass-shadow);
    overflow: hidden;
}
.faq-q {
    width: 100%; text-align: left; cursor: pointer;
    background: none; border: 0;
    font-family: var(--sans); font-size: 1.08rem; font-weight: 600; color: var(--ink);
    padding: 20px 24px;
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q .plus { flex: none; font-size: 1.3rem; color: var(--accent); transition: transform 0.25s ease; font-weight: 400; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a-inner { padding: 0 24px 22px; color: var(--ink-soft); font-size: 0.98rem; }

/* ============================================================
   CTA banner
   ============================================================ */

.cta {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding: clamp(44px, 7vw, 84px) clamp(28px, 5vw, 70px);
    text-align: center;
    background: linear-gradient(135deg, #2c6f66 0%, #3f8d83 45%, #6fae9b 100%);
    color: #fff;
    box-shadow: 0 30px 70px rgba(63, 141, 131,0.3);
}
.cta::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 20% 10%, rgba(255,255,255,0.25), transparent 50%);
    pointer-events: none;
}
.cta h2, .cta .eyebrow { color: #fff; position: relative; }
.cta .eyebrow { color: rgba(255,255,255,0.85); }
.cta p { color: rgba(255,255,255,0.9); position: relative; max-width: 560px; margin: 0 auto 30px; }
.cta .btn { position: relative; }
.cta .btn-primary { background: #fff; color: var(--accent-deep); box-shadow: 0 12px 30px rgba(0,0,0,0.2); }
.cta .btn-primary:hover { background: #fff; color: var(--accent-deep); }
.cta .btn-ghost { border-color: rgba(255,255,255,0.5); color: #fff; }
.cta .btn-ghost:hover { background: rgba(255,255,255,0.12); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ============================================================
   Slot picker (built-in, no backend)
   ============================================================ */

.slotpicker { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 620px) { .slotpicker { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 940px) { .slotpicker { grid-template-columns: repeat(3, 1fr); } }

.slot-day {
    background: var(--glass-bg);
    backdrop-filter: saturate(160%) blur(18px);
    -webkit-backdrop-filter: saturate(160%) blur(18px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    box-shadow: var(--glass-shadow);
    padding: 20px 20px 22px;
}
.slot-day .day-label { font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.slot-day .day-sub { font-size: 0.82rem; color: var(--muted); margin-bottom: 16px; }
.slot-btns { display: flex; flex-wrap: wrap; gap: 10px; }
.slot-btn {
    font-family: var(--sans); font-size: 0.95rem; font-weight: 600;
    padding: 11px 18px; border-radius: 100px; cursor: pointer;
    border: 1px solid var(--line-strong); background: rgba(255,255,255,0.7); color: var(--ink);
    transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.slot-btn:hover { transform: translateY(-2px); border-color: var(--accent); color: var(--accent-deep); }
.slot-btn.selected {
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    color: #fff; border-color: transparent;
    box-shadow: 0 8px 20px rgba(63, 141, 131,0.32);
}
.slot-confirm {
    margin-top: 26px;
    padding: 22px clamp(20px, 3vw, 30px);
    border-radius: var(--radius-sm);
    background: var(--glass-bg-strong);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    display: none;
}
.slot-confirm.show { display: block; }
.slot-confirm .chosen { font-weight: 600; color: var(--ink); font-size: 1.1rem; margin-bottom: 6px; }

/* ============================================================
   Booking embed
   ============================================================ */

.booking-frame {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow-lg);
    background: var(--glass-bg-strong);
    min-height: 640px;
}
.booking-frame iframe { width: 100%; min-height: 640px; border: 0; display: block; }
.booking-note {
    margin-top: 18px; font-size: 0.88rem; color: var(--muted); text-align: center;
}

/* ============================================================
   Values / quote
   ============================================================ */

.value-quote {
    font-size: clamp(1.5rem, 3.4vw, 2.3rem);
    font-weight: 600; letter-spacing: -0.02em; line-height: 1.25;
    max-width: 820px;
}
.value-quote .gradient-text { font-weight: 700; }
.attribution { margin-top: 22px; font-size: 0.92rem; color: var(--muted); }

/* ============================================================
   Forms
   ============================================================ */

.form { display: grid; gap: 18px; }
.form-row { display: grid; gap: 7px; }
.form-row label { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }
.form-row input, .form-row textarea, .form-row select {
    font-family: var(--sans); font-size: 1rem; color: var(--ink);
    background: rgba(255,255,255,0.7);
    border: 1px solid var(--line-strong);
    border-radius: 14px;
    padding: 14px 16px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
    outline: 0; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(63, 141, 131,0.12);
}
.form-row textarea { resize: vertical; min-height: 130px; line-height: 1.5; }

/* ============================================================
   Footer
   ============================================================ */

footer { padding: clamp(56px, 8vw, 84px) 0 36px; margin-top: 20px; }
.footer-card {
    background: var(--glass-bg);
    backdrop-filter: saturate(160%) blur(18px);
    -webkit-backdrop-filter: saturate(160%) blur(18px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--glass-shadow);
    padding: clamp(34px, 5vw, 60px);
}
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 44px; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: clamp(24px, 4vw, 56px); } }
.footer-brand { font-size: 1.3rem; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); display: flex; align-items: center; gap: 9px; margin-bottom: 14px; }
.footer-brand .dot { width: 11px; height: 11px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--teal)); }
.footer-grid h4 { margin-bottom: 16px; }
.footer-grid ul { list-style: none; }
.footer-grid li { padding: 5px 0; }
.footer-grid a { color: var(--ink-soft); font-size: 0.94rem; }
.footer-grid a:hover { color: var(--accent-deep); }
.footer-base {
    padding-top: 28px; border-top: 1px solid var(--line);
    display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px;
    font-size: 0.84rem; color: var(--muted);
}
.footer-base a { color: var(--muted); }
.footer-base .links a { margin-left: 22px; }

/* ============================================================
   Utility + emergency note
   ============================================================ */

.note {
    background: rgba(255,255,255,0.55);
    border: 1px solid var(--line);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius-sm);
    padding: 20px 24px;
    font-size: 0.95rem;
    color: var(--ink-soft);
}
.note strong { color: var(--ink); }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ============================================================
   Reveal animation
   ============================================================ */

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
    .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   Approach: funnel phases + homework + sources
   ============================================================ */

.phases { display: grid; gap: 22px; }

.phase {
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: saturate(160%) blur(18px);
    -webkit-backdrop-filter: saturate(160%) blur(18px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    box-shadow: var(--glass-shadow);
    padding: clamp(26px, 3vw, 40px);
    overflow: hidden;
}
.phase::before {
    content: '';
    position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
    background: linear-gradient(180deg, var(--accent), var(--teal));
}
/* Funnel illusion: each phase a little narrower */
.phase.p1 { margin: 0; }
.phase.p2 { margin: 0 clamp(0px, 3vw, 36px); }
.phase.p3 { margin: 0 clamp(0px, 6vw, 72px); }

.phase-head { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 14px; }
.phase-badge {
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--accent-deep); background: rgba(63, 141, 131,0.1);
    padding: 6px 14px; border-radius: 100px;
}
.phase-sessions { font-size: 0.82rem; color: var(--muted); font-weight: 600; }
.phase h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); margin-bottom: 10px; }
.phase .method-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.phase .method-tags .pill { font-size: 0.82rem; padding: 7px 14px; }

.hw {
    display: flex; align-items: flex-start; gap: 12px;
    margin-top: 20px; padding: 14px 18px;
    background: rgba(111, 174, 155,0.08);
    border: 1px solid rgba(111, 174, 155,0.22);
    border-radius: var(--radius-sm);
    font-size: 0.92rem; color: var(--ink-soft);
}
.hw .hw-ico { flex: none; font-size: 1.1rem; }
.hw strong { color: var(--ink); }

/* Sources / references in articles */
.sources {
    margin-top: 40px; padding: 26px clamp(20px, 3vw, 32px);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    box-shadow: var(--glass-shadow);
}
.sources h3 { font-size: 1.05rem; margin-bottom: 14px; }
.sources ol { margin: 0; padding-left: 20px; }
.sources li { font-size: 0.86rem; line-height: 1.55; color: var(--ink-soft); margin-bottom: 9px; }
.sources li:last-child { margin-bottom: 0; }
.sources a { word-break: break-word; }
.prose sup { font-size: 0.7em; color: var(--accent-deep); font-weight: 700; }

.disclaimer {
    margin-top: 28px; font-size: 0.84rem; color: var(--muted); font-style: italic;
    border-top: 1px solid var(--line); padding-top: 18px;
}

/* Price justification note */
.price-note {
    font-size: 0.8rem; color: var(--muted); line-height: 1.45;
    margin: -8px 0 20px;
}

/* Credentials & memberships */
.creds { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 28px; }
@media (min-width: 720px) { .creds { grid-template-columns: repeat(3, 1fr); } }
.cred {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    box-shadow: var(--glass-shadow);
    padding: 22px 22px 24px;
}
.cred .cred-ico { font-size: 1.5rem; margin-bottom: 12px; }
.cred h3 { font-size: 1.05rem; margin-bottom: 6px; }
.cred p { font-size: 0.9rem; margin: 0; }

.cred-logo {
    display: inline-flex; align-items: center; gap: 16px;
    margin-top: 26px; padding: 16px 22px;
    background: var(--glass-bg-strong);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    box-shadow: var(--glass-shadow);
}
.cred-logo img { height: 56px; width: auto; display: block; }
.cred-logo .ph {
    height: 56px; min-width: 120px; padding: 0 18px;
    display: grid; place-items: center; text-align: center;
    border: 1px dashed var(--line-strong); border-radius: 10px;
    font-size: 0.74rem; color: var(--muted); line-height: 1.2;
}
.cred-logo div span { display: block; }
.cred-logo strong { color: var(--ink); font-size: 0.95rem; }
.cred-logo small { color: var(--muted); font-size: 0.82rem; }

/* Legal pages */
.legal { max-width: 760px; }
.legal h3 { margin: 1.8em 0 0.5em; font-size: 1.15rem; }
.legal h3:first-child { margin-top: 0; }
.legal p, .legal li { font-size: 0.96rem; color: var(--ink-soft); line-height: 1.65; }
.legal ul { padding-left: 22px; margin: 0 0 1em; }
.legal li { margin-bottom: 7px; }
.legal .ph { color: var(--accent-deep); font-weight: 600; }

/* ============================================================
   Additions: nav fit, Ampel, vfp seal, degree badges, self-test
   ============================================================ */

/* Slightly tighter nav so more tabs fit */
@media (min-width: 980px) {
    .nav-links { gap: 2px; }
    .nav-links a { padding: 8px 11px; font-size: 0.9rem; }
}

/* Availability traffic light */
.ampel {
    display: inline-flex; align-items: center; gap: 16px;
    padding: 14px 22px; border-radius: 100px;
    background: var(--glass-bg-strong);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    text-align: left;
}
.ampel-lights { display: flex; flex-direction: column; gap: 6px; }
.ampel-lights i { width: 12px; height: 12px; border-radius: 50%; background: #d7dce4; display: block; }
.ampel--amber .ampel-lights .l-y { background: #f3b21b; box-shadow: 0 0 10px rgba(243,178,27,0.7); }
.ampel--green .ampel-lights .l-g { background: #34b37a; box-shadow: 0 0 10px rgba(52,179,122,0.7); }
.ampel--red .ampel-lights .l-r { background: #e4572e; box-shadow: 0 0 10px rgba(228,87,46,0.7); }
.ampel-text strong { display: block; color: var(--ink); font-weight: 600; font-size: 0.98rem; }
.ampel-text span { color: var(--muted); font-size: 0.86rem; }

/* vfp seal / Gütesiegel */
.seal { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px; }
.seal-badge {
    width: 180px; height: 180px; border-radius: 50%;
    background: #fff; border: 1px solid var(--line);
    box-shadow: var(--glass-shadow-lg);
    display: grid; place-items: center; padding: 18px;
}
.seal-badge img { width: 100%; height: 100%; object-fit: contain; display: block; }
.seal-cap strong { display: block; color: var(--ink); font-weight: 600; }
.seal-cap span { color: var(--muted); font-size: 0.9rem; }

/* Degree badges (BA / MA / Dr.) */
.degrees { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.degrees span {
    font-size: 0.76rem; font-weight: 700; letter-spacing: 0.04em;
    padding: 6px 13px; border-radius: 9px;
    background: rgba(63, 141, 131, 0.1); color: var(--accent-deep);
    border: 1px solid rgba(63, 141, 131, 0.18);
}

/* ============================================================
   Self-test (Selbsttest)
   ============================================================ */
.test-tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.test-tab {
    font-family: var(--sans); font-size: 0.95rem; font-weight: 600;
    padding: 11px 22px; border-radius: 100px; cursor: pointer;
    border: 1px solid var(--line-strong); background: var(--glass-bg); color: var(--ink-soft);
    transition: all 0.2s ease;
}
.test-tab:hover { border-color: var(--accent); color: var(--accent-deep); }
.test-tab.active { background: linear-gradient(135deg, var(--accent), var(--accent-deep)); color: #fff; border-color: transparent; box-shadow: 0 8px 20px rgba(63,141,131,0.3); }

.test-panel { display: none; }
.test-panel.active { display: block; }

.quiz-q { padding: 20px 0; border-bottom: 1px solid var(--line); }
.quiz-q .q-text { font-weight: 500; color: var(--ink); margin-bottom: 14px; font-size: 1.02rem; }
.likert { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; max-width: 360px; }
.likert label { cursor: pointer; position: relative; }
.likert input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.likert .opt {
    display: grid; place-items: center; height: 46px; border-radius: 12px;
    border: 1px solid var(--line-strong); background: rgba(255,255,255,0.7);
    font-weight: 600; color: var(--ink-soft); transition: all 0.15s ease;
}
.likert label:hover .opt { border-color: var(--accent); }
.likert input:checked + .opt { background: linear-gradient(135deg, var(--accent), var(--accent-deep)); color: #fff; border-color: transparent; }
.likert-scale { display: flex; justify-content: space-between; max-width: 360px; margin-top: 7px; font-size: 0.76rem; color: var(--muted); }

.quiz-actions { margin-top: 28px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.quiz-hint { font-size: 0.85rem; color: var(--muted); }

.quiz-result {
    margin-top: 26px; padding: clamp(24px, 3vw, 34px);
    border-radius: var(--radius); border: 1px solid var(--glass-border);
    background: var(--glass-bg); box-shadow: var(--glass-shadow); display: none;
}
.quiz-result.show { display: block; }
.result-band { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.1rem; margin-bottom: 12px; }
.result-band .pip { width: 14px; height: 14px; border-radius: 50%; }
.result-score { font-size: 0.9rem; color: var(--muted); margin-bottom: 14px; }
.band-low { color: #2f8f5b; } .band-low .pip { background: #34b37a; }
.band-mid { color: #b9831a; } .band-mid .pip { background: #f3b21b; }
.band-high { color: #c2452a; } .band-high .pip { background: #e4572e; }

/* ============================================================
   Self-test (deep version): selection, domains, breakdown
   ============================================================ */
.test-select { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 760px) { .test-select { grid-template-columns: repeat(3, 1fr); } }
.test-card { cursor: pointer; text-align: left; transition: transform .25s ease, box-shadow .25s ease; }
.test-card:hover { transform: translateY(-5px); box-shadow: var(--glass-shadow-lg); }
.test-card .meta { margin-top: 16px; font-size: 0.85rem; color: var(--muted); }

.back-link { cursor: pointer; display: inline-flex; align-items: center; gap: 7px; font-weight: 600; color: var(--accent-deep); margin-bottom: 18px; }
.test-area { display: none; }
.test-area.active { display: block; }

.domain-head { font-family: var(--serif); font-size: clamp(1.3rem, 2.4vw, 1.6rem); font-weight: 600; margin: 40px 0 4px; color: var(--ink); }
.domain-sub { font-size: 0.86rem; color: var(--muted); margin-bottom: 4px; }

.sci-note { font-size: 0.9rem; color: var(--ink-soft); background: var(--glass-bg); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px 22px; }

/* Result breakdown */
.breakdown { display: grid; gap: 16px; margin: 20px 0 6px; }
.breakdown .lbl { display: flex; justify-content: space-between; gap: 12px; font-size: 0.92rem; margin-bottom: 6px; color: var(--ink); }
.breakdown .lbl span:last-child { color: var(--muted); font-variant-numeric: tabular-nums; }
.meter { height: 9px; border-radius: 6px; background: rgba(15,23,42,0.08); overflow: hidden; }
.meter > i { display: block; height: 100%; border-radius: 6px; background: linear-gradient(90deg, var(--accent), var(--accent-deep)); }
.meter.m-mid > i { background: linear-gradient(90deg, #f3b21b, #d6951a); }
.meter.m-high > i { background: linear-gradient(90deg, #e4572e, #c2452a); }

.crisis-box {
    margin-top: 20px; padding: 18px 22px; border-radius: var(--radius-sm);
    background: rgba(228,87,46,0.08); border: 1px solid rgba(228,87,46,0.32); color: #8f3015;
    font-size: 0.96rem;
}
.crisis-box strong { color: #7d2a13; }

/* ============================================================
   Book portfolio
   ============================================================ */
.books { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 620px) { .books { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .books { grid-template-columns: repeat(3, 1fr); } }

.book { display: flex; flex-direction: column; height: 100%; }
.book .cover-link { display: block; }
.book-cover {
    aspect-ratio: 3 / 4; border-radius: 14px; padding: 24px 22px;
    display: flex; flex-direction: column; justify-content: space-between;
    box-shadow: var(--glass-shadow-lg); color: #fff; text-align: center;
    transition: transform .28s ease, box-shadow .28s ease;
}
.book .cover-link:hover .book-cover { transform: translateY(-6px); box-shadow: 0 28px 64px rgba(15,23,42,0.24); }
.bc-author { font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.85; }
.bc-title { font-family: var(--serif); font-size: clamp(1.3rem, 2vw, 1.55rem); line-height: 1.16; font-weight: 600; margin: auto 0; }
.bc-foot { font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.82; }
.book h3 { font-size: 1.16rem; margin: 20px 0 6px; }
.book p { font-size: 0.93rem; }
.book .card-link { margin-top: auto; padding-top: 14px; }
