/* =========================================================
   NURSANA – Design System (Clean & Modern)
   Marke: NURSANA-Blau · Font: Inter
   Geteilt von allen Seiten (index, funktionen, preise, team, kontakt)
   ========================================================= */

:root {
    /* Marke */
    --brand:      #1976D2;
    --brand-600:  #1565C0;
    --brand-700:  #0D47A1;
    --brand-400:  #42A5F5;
    --brand-50:   #EAF3FC;
    --brand-100:  #D4E6F9;

    --success:    #2E9E5B;
    --success-50: #E7F6ED;

    /* Neutral */
    --ink:        #15212E;
    --ink-soft:   #38485A;
    --muted:      #647689;
    --line:       #E6ECF2;
    --line-soft:  #EEF3F8;

    --bg:         #FFFFFF;
    --bg-soft:    #F5F9FD;
    --bg-tint:    #F0F6FD;

    /* Form */
    --radius-sm:  10px;
    --radius:     14px;
    --radius-lg:  22px;
    --radius-pill: 999px;

    --shadow-sm:  0 1px 2px rgba(16,40,67,.06), 0 1px 3px rgba(16,40,67,.04);
    --shadow:     0 6px 18px rgba(16,40,67,.08);
    --shadow-lg:  0 18px 50px rgba(16,40,67,.14);
    --shadow-brand: 0 14px 36px rgba(25,118,210,.28);

    --maxw:       1180px;
    --gap:        clamp(1rem, 2.2vw, 1.6rem);

    --t: 0.22s cubic-bezier(.4,0,.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
/* Bilder behalten IMMER ihr Seitenverhältnis – nie verzerren */
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2rem); }
.section { padding-block: clamp(3.5rem, 7vw, 6.5rem); }
.section--soft { background: var(--bg-soft); }
.section--tint { background: linear-gradient(180deg, var(--bg-tint), var(--bg)); }

.eyebrow {
    display: inline-block;
    font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    color: var(--brand-600);
    margin-bottom: .75rem;
}
.section-head { max-width: 680px; margin-inline: auto; text-align: center; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-title {
    font-size: clamp(1.7rem, 3.6vw, 2.55rem);
    font-weight: 800; letter-spacing: -.02em; line-height: 1.12; color: var(--ink);
}
.section-sub { margin-top: .9rem; font-size: 1.08rem; color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    font-weight: 600; font-size: .98rem; line-height: 1;
    padding: .85rem 1.5rem; border-radius: var(--radius-pill);
    border: 1.5px solid transparent; cursor: pointer;
    transition: transform var(--t), box-shadow var(--t), background var(--t), border-color var(--t), color var(--t);
    white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--brand); color: #fff; box-shadow: var(--shadow-brand); }
.btn-primary:hover { background: var(--brand-600); transform: translateY(-2px); }
.btn-outline { background: #fff; color: var(--brand-700); border-color: var(--brand-100); }
.btn-outline:hover { border-color: var(--brand); background: var(--brand-50); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink-soft); }
.btn-ghost:hover { color: var(--brand-700); }
.btn-white { background: #fff; color: var(--brand-700); box-shadow: var(--shadow); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-lg { padding: 1.02rem 1.9rem; font-size: 1.05rem; }
.btn-block { width: 100%; }
.link-arrow { display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; color: var(--brand-600); transition: gap var(--t), color var(--t); }
.link-arrow:hover { gap: .7rem; color: var(--brand-700); }

/* ---------- Header / Nav ---------- */
.site-header {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(255,255,255,.82);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color var(--t), box-shadow var(--t);
}
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; height: 72px; }
.nav-logo img { height: 34px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: .35rem; }
.nav-menu a {
    font-size: .95rem; font-weight: 500; color: var(--ink-soft);
    padding: .5rem .8rem; border-radius: var(--radius-sm);
    transition: color var(--t), background var(--t);
}
.nav-menu a:hover, .nav-menu a.active { color: var(--brand-700); background: var(--brand-50); }
.nav-actions { display: flex; align-items: center; gap: .6rem; }
.nav-toggle { display: none; background: none; border: none; color: var(--ink); padding: .4rem; border-radius: var(--radius-sm); }
.nav-toggle svg { width: 26px; height: 26px; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: linear-gradient(180deg, var(--bg-tint) 0%, #fff 78%); }
.hero::before {
    content: ""; position: absolute; inset: -30% -10% auto -10%; height: 70%;
    background: radial-gradient(50% 60% at 75% 0%, rgba(66,165,245,.20), transparent 70%);
    pointer-events: none;
}
.hero-grid {
    position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem);
    align-items: center; padding-block: clamp(3rem, 6vw, 5.5rem);
}
.hero-badge {
    display: inline-flex; align-items: center; gap: .55rem;
    background: #fff; border: 1px solid var(--brand-100); color: var(--brand-700);
    font-size: .85rem; font-weight: 600; padding: .45rem .9rem; border-radius: var(--radius-pill);
    box-shadow: var(--shadow-sm); margin-bottom: 1.4rem;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 4px var(--success-50); }
.hero-title { font-size: clamp(2.1rem, 5vw, 3.5rem); font-weight: 800; letter-spacing: -.025em; line-height: 1.08; color: var(--ink); }
.hero-title .grad { background: linear-gradient(120deg, var(--brand) 10%, var(--brand-400)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-desc { margin-top: 1.3rem; font-size: 1.16rem; color: var(--ink-soft); max-width: 36ch; }
.hero-cta { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .8rem; }
.hero-meta { margin-top: 1.8rem; display: flex; flex-wrap: wrap; gap: 1.2rem; color: var(--muted); font-size: .9rem; }
.hero-meta span { display: inline-flex; align-items: center; gap: .4rem; }
.hero-meta svg { width: 17px; height: 17px; color: var(--success); }

.hero-visual { position: relative; }
.hero-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg); padding: 1rem; transform: rotate(.4deg);
}
.hero-card img { border-radius: calc(var(--radius-lg) - 8px); width: 100%; height: auto; display: block; }
.hero-float {
    position: absolute; background: #fff; border: 1px solid var(--line);
    border-radius: var(--radius); box-shadow: var(--shadow-lg);
    padding: .8rem 1rem; display: flex; align-items: center; gap: .65rem; font-size: .85rem; font-weight: 600;
}
.hero-float .ico { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; color: #fff; flex-shrink: 0; }
.hero-float--a { bottom: -18px; left: -14px; }
.hero-float--b { top: -16px; right: -10px; }
.hero-float small { display: block; font-weight: 500; color: var(--muted); font-size: .72rem; }

/* ---------- Trust strip ---------- */
.trust { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); background: #fff; }
.trust-row {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem 2.4rem;
    padding-block: 1.5rem;
}
.trust-item { display: inline-flex; align-items: center; gap: .55rem; color: var(--ink-soft); font-size: .92rem; font-weight: 600; }
.trust-item svg { width: 19px; height: 19px; color: var(--brand); }

/* ---------- Feature cards (highlights) ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.feature-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
    padding: 1.7rem; transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--brand-100); }
.feature-ico {
    width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center;
    background: var(--brand-50); color: var(--brand-600); margin-bottom: 1.1rem;
}
.feature-ico svg { width: 25px; height: 25px; }
.feature-card h3 { font-size: 1.16rem; font-weight: 700; letter-spacing: -.01em; margin-bottom: .45rem; }
.feature-card p { color: var(--muted); font-size: .96rem; }
.feature-tag { display:inline-block; font-size:.72rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase; color: var(--brand-600); margin-bottom:.6rem; }

/* ---------- Advantages ---------- */
.adv-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
.adv-card { text-align: center; padding: 1.5rem 1.2rem; }
.adv-ico {
    width: 58px; height: 58px; border-radius: 16px; margin: 0 auto 1rem; display: grid; place-items: center;
    background: linear-gradient(135deg, var(--brand), var(--brand-400)); color: #fff; box-shadow: var(--shadow-brand);
}
.adv-ico svg { width: 27px; height: 27px; }
.adv-card h3 { font-size: 1.06rem; font-weight: 700; margin-bottom: .4rem; }
.adv-card p { color: var(--muted); font-size: .92rem; }

/* ---------- Partners + Netzwerk ---------- */
.logo-strip { display: flex; flex-wrap: wrap; align-items: stretch; justify-content: center; gap: var(--gap); }
.logo-card {
    flex: 1 1 220px; max-width: 300px;
    display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
    padding: 2rem 1.5rem; transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.logo-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--brand-100); }
.logo-card .logo-wrap { height: 70px; display: grid; place-items: center; margin-bottom: 1rem; }
.logo-card .logo-wrap img { max-height: 64px; max-width: 200px; object-fit: contain; }
.logo-card .logo-wrap img.tall { max-height: 88px; }
.logo-card b { font-size: 1rem; font-weight: 700; }
.logo-card span { font-size: .86rem; color: var(--muted); margin-top: .25rem; }

.network-band {
    margin-top: clamp(2rem, 4vw, 3rem); display: flex; flex-wrap: wrap; gap: 1.5rem;
    align-items: center; justify-content: space-between;
    background: linear-gradient(120deg, var(--brand-700), var(--brand)); color: #fff;
    border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.4rem) clamp(1.6rem, 4vw, 2.8rem); box-shadow: var(--shadow-brand);
}
.network-band .nb-text { max-width: 640px; }
.network-band .eyebrow { color: #BBDDFB; }
.network-band h3 { font-size: clamp(1.3rem,2.6vw,1.7rem); font-weight: 800; letter-spacing: -.01em; }
.network-band p { margin-top: .55rem; color: #E3F0FC; font-size: 1rem; }
.network-band .nb-logo {
    background: #fff; border-radius: var(--radius); padding: 1.1rem 1.6rem; display: grid; place-items: center;
    box-shadow: var(--shadow); flex-shrink: 0;
}
.network-band .nb-logo img { max-height: 62px; max-width: 220px; }

.testimonial {
    max-width: 800px; margin: clamp(2.5rem,5vw,3.5rem) auto 0; text-align: center;
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: clamp(2rem,4vw,2.75rem);
}
.testimonial .quote { font-size: 1.18rem; line-height: 1.6; color: var(--ink); font-style: italic; }
.testimonial .who { margin-top: 1.3rem; font-weight: 700; }
.testimonial .role { color: var(--muted); font-size: .9rem; }

/* ---------- Pricing teaser ---------- */
.price-teaser { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--gap); margin-top: 1rem; }
.price-mini { background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg); padding: 1.8rem; text-align:center; transition: transform var(--t), box-shadow var(--t), border-color var(--t); }
.price-mini:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--brand-100); }
.price-mini.is-featured { border-color: var(--brand); box-shadow: var(--shadow-brand); position: relative; }
.price-mini .pm-name { font-weight: 700; color: var(--muted); font-size: .95rem; }
.price-mini .pm-amount { font-size: 2.3rem; font-weight: 800; letter-spacing: -.02em; margin-top: .4rem; }
.price-mini .pm-amount small { font-size: .95rem; font-weight: 600; color: var(--muted); }
.price-mini .pm-note { color: var(--muted); font-size: .88rem; margin-top: .3rem; }

/* ---------- CTA band ---------- */
.cta {
    text-align: center; color: #fff; border-radius: var(--radius-lg);
    background: linear-gradient(125deg, var(--brand-700), var(--brand) 60%, var(--brand-400));
    padding: clamp(2.6rem, 6vw, 4.5rem) 1.5rem; box-shadow: var(--shadow-brand);
}
.cta h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); font-weight: 800; letter-spacing: -.02em; }
.cta p { margin-top: .9rem; font-size: 1.1rem; color: #E3F0FC; max-width: 560px; margin-inline: auto; }
.cta .hero-cta { justify-content: center; margin-top: 2rem; }

/* ---------- Forms ---------- */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: .88rem; font-weight: 600; color: var(--ink-soft); margin-bottom: .4rem; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; font: inherit; color: var(--ink);
    background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
    padding: .8rem .9rem; transition: border-color var(--t), box-shadow var(--t);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px var(--brand-50);
}
.form-note { font-size: .82rem; color: var(--muted); margin-top: .4rem; }

/* ---------- Footer ---------- */
.site-footer { background: #0E1B29; color: #C4D2DF; padding-block: clamp(3rem,5vw,4rem) 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer-brand img { height: 36px; margin-bottom: 1rem; }
.footer-brand p { color: #91A3B5; font-size: .92rem; max-width: 32ch; }
.footer-col h4 { color: #fff; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col a { display: block; color: #AEBECC; font-size: .94rem; padding: .28rem 0; transition: color var(--t); }
.footer-col a:hover { color: #fff; }
.footer-bottom {
    margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1);
    display: flex; flex-wrap: wrap; gap: .6rem; align-items: center; justify-content: space-between;
    color: #7E92A4; font-size: .86rem;
}
.footer-bottom .swiss { display: inline-flex; align-items: center; gap: .45rem; }
.footer-bottom .swiss svg { width: 15px; height: 15px; }

/* ---------- Page hero (Unterseiten) ---------- */
.page-hero { background: linear-gradient(180deg, var(--bg-tint), var(--bg)); border-bottom: 1px solid var(--line-soft); text-align: center; padding-block: clamp(3rem,6vw,5rem); }
.page-hero h1 { font-size: clamp(2rem,4.4vw,3rem); font-weight: 800; letter-spacing: -.025em; line-height: 1.1; }
.page-hero p { margin-top: 1rem; font-size: 1.12rem; color: var(--muted); max-width: 620px; margin-inline: auto; }

/* ---------- Feature-Detail-Rows (Funktionen) ---------- */
.feat-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.feat-row + .feat-row { margin-top: clamp(3rem,6vw,5rem); }
.feat-row.reverse .feat-text { order: 2; }
.feat-label { display:inline-block; font-size:.78rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--brand-600); margin-bottom:.7rem; }
.feat-text h2 { font-size: clamp(1.5rem,3vw,2.1rem); font-weight:800; letter-spacing:-.02em; line-height:1.12; }
.feat-text > p { margin-top:.9rem; color:var(--muted); font-size:1.05rem; }
.feat-list { margin-top:1.3rem; display:grid; gap:.65rem; }
.feat-list li { display:flex; gap:.6rem; align-items:flex-start; color:var(--ink-soft); font-size:.98rem; }
.feat-list svg { width:20px; height:20px; color:var(--success); flex-shrink:0; margin-top:.1rem; }
.feat-frame { background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg); box-shadow:var(--shadow-lg); padding:.8rem; }
.feat-frame img { width:100%; border-radius:calc(var(--radius-lg) - 6px); }
.feat-frame.portrait { max-width:330px; margin-inline:auto; }
.feat-stats { display:grid; grid-template-columns:repeat(3,1fr); gap:.8rem; margin-top:1.4rem; }
.feat-stat { background:var(--bg-soft); border:1px solid var(--line); border-radius:var(--radius); padding:1rem; text-align:center; }
.feat-stat b { display:block; font-size:1.3rem; font-weight:800; color:var(--brand-700); }
.feat-stat span { font-size:.8rem; color:var(--muted); }

/* ---------- Pricing (Preise-Seite) ---------- */
.price-block { margin-top: clamp(2.5rem,5vw,3.5rem); }
.price-block .ps-title { text-align:center; font-size:clamp(1.4rem,2.6vw,1.9rem); font-weight:800; letter-spacing:-.01em; margin-bottom:.4rem; }
.price-block .ps-sub { text-align:center; color:var(--muted); margin-bottom:2rem; max-width:700px; margin-inline:auto; }
.price-grid { display:grid; gap:var(--gap); }
.price-grid.cols-6 { grid-template-columns:repeat(3,1fr); }
.price-grid.cols-3 { grid-template-columns:repeat(3,1fr); max-width:980px; margin-inline:auto; }
.price-grid.single { grid-template-columns:1fr; max-width:440px; margin-inline:auto; }
.price-card { position:relative; background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg); padding:1.8rem 1.6rem; transition:transform var(--t),box-shadow var(--t),border-color var(--t); }
.price-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-lg); border-color:var(--brand-100); }
.price-card.featured { border-color:var(--brand); box-shadow:var(--shadow-brand); }
.price-badge { position:absolute; top:-12px; left:50%; transform:translateX(-50%); background:var(--brand); color:#fff; font-size:.72rem; font-weight:700; letter-spacing:.04em; padding:.32rem .85rem; border-radius:var(--radius-pill); white-space:nowrap; }
.price-name { font-size:1.15rem; font-weight:800; }
.price-desc { color:var(--muted); font-size:.92rem; margin-top:.25rem; min-height:1.2em; }
.price-amount { margin:1.1rem 0 .2rem; font-weight:800; letter-spacing:-.02em; display:flex; align-items:baseline; gap:.25rem; flex-wrap:wrap; }
.price-amount .cur { font-size:1rem; font-weight:700; color:var(--muted); }
.price-amount .num { font-size:2.3rem; }
.price-amount .per { font-size:.95rem; font-weight:600; color:var(--muted); }
.price-yearly { color:var(--muted); font-size:.86rem; }
.price-feats { margin:1.2rem 0 1.5rem; display:grid; gap:.55rem; }
.price-feats li { display:flex; gap:.55rem; align-items:flex-start; font-size:.9rem; color:var(--ink-soft); }
.price-feats svg { width:18px; height:18px; color:var(--success); flex-shrink:0; margin-top:.1rem; }
.price-note { text-align:center; color:var(--muted); font-size:.82rem; margin-top:1.2rem; }
.callout { max-width:820px; margin:2.5rem auto 0; padding:1.4rem 1.8rem; background:var(--brand-50); border:1px solid var(--brand-100); border-radius:var(--radius); }
.callout h4 { color:var(--brand-700); font-size:1rem; margin-bottom:.4rem; }
.callout p { font-size:.9rem; color:var(--ink-soft); }
.callout p + p { margin-top:.4rem; }

/* ---------- Team-Seite ---------- */
.team-grid { display:grid; grid-template-columns:1fr 1fr; gap:var(--gap); }
.team-card { background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg); padding:2rem; }
.team-photo { width:120px; height:120px; border-radius:50%; object-fit:cover; border:3px solid var(--brand-50); margin-bottom:1.2rem; }
.team-card h3 { font-size:1.25rem; font-weight:800; }
.team-role { color:var(--brand-600); font-weight:600; font-size:.95rem; margin-top:.2rem; }
.team-sub { color:var(--muted); font-size:.9rem; margin-bottom:.4rem; }
.team-card p { color:var(--ink-soft); font-size:.96rem; margin-top:.7rem; }
.team-card .link-arrow { margin-top:1rem; }

/* ---------- Kontakt-Seite ---------- */
.contact-grid { display:grid; grid-template-columns:1fr 1.2fr; gap:clamp(2rem,5vw,3.5rem); align-items:start; }
.contact-info h3 { font-size:1.2rem; font-weight:800; margin-bottom:1.4rem; }
.contact-item { display:flex; gap:1rem; margin-bottom:1.4rem; }
.contact-item .ci-ico { width:44px; height:44px; border-radius:12px; background:var(--brand-50); color:var(--brand-600); display:grid; place-items:center; flex-shrink:0; }
.contact-item .ci-ico svg { width:22px; height:22px; }
.contact-item h4 { font-size:.85rem; color:var(--muted); font-weight:600; margin-bottom:.15rem; }
.contact-item a, .contact-item p { color:var(--ink); font-weight:500; }
.contact-card { background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg); box-shadow:var(--shadow); padding:clamp(1.6rem,3vw,2.2rem); }
.support-banner { display:flex; flex-wrap:wrap; gap:1rem; align-items:center; justify-content:space-between; background:var(--brand-50); border:1px solid var(--brand-100); border-radius:var(--radius); padding:1.2rem 1.5rem; margin-bottom:2.5rem; }
.support-banner p { color:var(--brand-700); font-size:.96rem; }

@media (max-width: 860px) {
  .feat-row { grid-template-columns:1fr; }
  .feat-row.reverse .feat-text { order:0; }
  .feat-frame { order:-1; }
  .price-grid.cols-6, .price-grid.cols-3 { grid-template-columns:repeat(2,1fr); }
  .team-grid { grid-template-columns:1fr; }
  .contact-grid { grid-template-columns:1fr; }
}
@media (max-width: 540px) {
  .price-grid.cols-6, .price-grid.cols-3 { grid-template-columns:1fr; }
  .feat-stats { grid-template-columns:repeat(3,1fr); }
}

/* ---------- Lightbox (Screenshots gross & lesbar) ---------- */
.feat-frame img, .hero-card img { cursor: zoom-in; }
.lightbox {
    position: fixed; inset: 0; z-index: 2000;
    display: flex; align-items: center; justify-content: center;
    padding: clamp(1rem, 4vw, 3rem);
    background: rgba(13,26,41,.88); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px);
    opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
    max-width: 96vw; max-height: 92vh; width: auto; height: auto;
    border-radius: var(--radius); box-shadow: var(--shadow-lg); background: #fff;
    cursor: zoom-out; transform: scale(.97); transition: transform .25s ease;
}
.lightbox.open img { transform: scale(1); }
.lightbox-close {
    position: absolute; top: 1.1rem; right: 1.3rem; width: 46px; height: 46px; border-radius: 50%;
    background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.32); color: #fff;
    display: grid; place-items: center; cursor: pointer; transition: background .2s ease;
}
.lightbox-close:hover { background: rgba(255,255,255,.3); }
.lightbox-close svg { width: 22px; height: 22px; }
.lightbox-hint { position: absolute; bottom: 1.1rem; left: 0; right: 0; text-align: center; color: rgba(255,255,255,.72); font-size: .85rem; pointer-events: none; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; }
.hide-mobile { }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-desc, .hero-meta { margin-inline: auto; }
    .hero-cta, .hero-meta { justify-content: center; }
    .hero-visual { max-width: 540px; margin-inline: auto; order: -1; }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .adv-grid { grid-template-columns: repeat(2, 1fr); }
    .price-teaser { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
    .nav-menu, .nav-actions .btn-ghost { display: none; }
    .nav-toggle { display: inline-grid; place-items: center; }
    .site-header.nav-open .nav-menu {
        display: flex; flex-direction: column; align-items: stretch; gap: .2rem;
        position: absolute; top: 72px; left: 0; right: 0;
        background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-lg);
        padding: 1rem clamp(1.1rem,4vw,2rem) 1.4rem;
    }
    .site-header.nav-open .nav-menu a { padding: .85rem .8rem; font-size: 1rem; }
    .network-band { flex-direction: column; text-align: center; align-items: center; }
    .network-band .nb-text { margin-inline: auto; }
}
@media (max-width: 540px) {
    .form-row { grid-template-columns: 1fr; }
    .feature-grid { grid-template-columns: 1fr; }
    .adv-grid { grid-template-columns: 1fr; }
    .hero-float--a { left: 0; } .hero-float--b { right: 0; }
}
