/* ============================================
   Aurovela — arkusz stylów głównych
   ============================================ */

:root {
    --navy-900: #081a3a;
    --navy-800: #0e2a5a;
    --navy-700: #163a82;
    --blue-600: #2563eb;
    --blue-500: #3b82f6;
    --blue-400: #60a5fa;
    --sky-300: #7dd3fc;
    --sky-200: #bae6fd;
    --soft-100: #e0f2fe;
    --pale-50:  #f1f8ff;

    --bg:        #f6f9fd;
    --surface:   #ffffff;
    --surface-2: #f1f6fc;

    --ink:        #0b1733;
    --ink-soft:   #2a3656;
    --ink-muted:  #5b6a8c;
    --line:       #dfe7f2;
    --line-soft:  #ebf1f8;

    --shadow-xs: 0 1px 2px rgba(11,23,51,.06);
    --shadow-sm: 0 4px 14px rgba(11,23,51,.07);
    --shadow-md: 0 10px 30px rgba(11,23,51,.09);
    --shadow-lg: 0 24px 60px rgba(11,23,51,.14);

    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-xl: 36px;

    --container: 1180px;

    --t-fast: .2s ease;
    --t-med:  .35s cubic-bezier(.2,.7,.2,1);
}

/* --- Reset & podstawy --- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16.5px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--blue-600); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--navy-800); }

h1, h2, h3, h4 {
    font-family: "Fraunces", Georgia, "Times New Roman", serif;
    font-weight: 500;
    line-height: 1.18;
    color: var(--navy-900);
    margin: 0 0 .55em;
    letter-spacing: -.012em;
    text-wrap: balance;
}

h1 { font-size: clamp(2.1rem, 4.4vw + .5rem, 3.4rem); }
h2 { font-size: clamp(1.7rem, 2.4vw + .6rem, 2.4rem); }
h3 { font-size: clamp(1.2rem, 1vw + .9rem, 1.45rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-family: "Manrope", sans-serif; font-weight: 700; letter-spacing: .01em; }

p { margin: 0 0 1em; color: var(--ink-soft); hyphens: auto; }

.lead { font-size: 1.12rem; color: var(--ink-soft); max-width: 56ch; }

ul { padding-left: 1.1em; }
li { margin-bottom: .35em; color: var(--ink-soft); }

::selection { background: var(--sky-200); color: var(--navy-900); }

/* --- Container & utilities --- */
.wrap {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 22px;
}

.eyebrow {
    display: inline-block;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--blue-600);
    margin-bottom: 14px;
    position: relative;
    padding-left: 28px;
}
.eyebrow::before {
    content: "";
    position: absolute;
    left: 0; top: 50%;
    width: 18px; height: 1.5px;
    background: var(--blue-500);
    transform: translateY(-50%);
}

.section {
    padding: clamp(60px, 9vw, 110px) 0;
    position: relative;
}

.section--tight  { padding: clamp(50px, 6vw, 80px) 0; }
.section--alt    { background: var(--surface-2); }
.section--navy   { background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%); color: #dbe7ff; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section--navy p { color: #b9c8e6; }

/* ============================================
   NAVIGATION
   ============================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.78);
    backdrop-filter: saturate(160%) blur(14px);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color var(--t-fast), background var(--t-fast);
}
.site-header.scrolled {
    border-bottom-color: var(--line);
    background: rgba(255,255,255,.92);
}

.nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.brand {
    font-family: "Fraunces", serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy-900);
    letter-spacing: -.01em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.brand-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sky-300), var(--blue-600));
    box-shadow: 0 0 0 4px rgba(59,130,246,.14);
}
.brand:hover { color: var(--navy-900); }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0; padding: 0;
}
.nav-menu a {
    display: inline-block;
    padding: 9px 14px;
    color: var(--ink-soft);
    font-weight: 500;
    font-size: .96rem;
    border-radius: 999px;
    transition: background var(--t-fast), color var(--t-fast);
}
.nav-menu a:hover,
.nav-menu a.is-active {
    color: var(--navy-900);
    background: var(--soft-100);
}

.nav-cta {
    margin-left: 10px;
}

.nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 9px;
    cursor: pointer;
}
.nav-toggle span {
    display: block;
    width: 22px; height: 2px;
    background: var(--navy-800);
    margin: 4px 0;
    transition: transform var(--t-med), opacity var(--t-fast);
    border-radius: 2px;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: inherit;
    font-weight: 600;
    font-size: .96rem;
    padding: 12px 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform var(--t-fast), box-shadow var(--t-med), background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
    text-decoration: none;
    white-space: nowrap;
}
.btn--primary {
    background: var(--navy-800);
    color: #fff;
    box-shadow: 0 8px 22px rgba(14,42,90,.25);
}
.btn--primary:hover {
    background: var(--navy-900);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(14,42,90,.32);
}
.btn--ghost {
    background: transparent;
    color: var(--navy-800);
    border-color: var(--line);
}
.btn--ghost:hover {
    border-color: var(--navy-800);
    background: var(--pale-50);
}
.btn--light {
    background: #fff;
    color: var(--navy-900);
    border-color: var(--line);
}
.btn--light:hover { background: var(--soft-100); }

.btn .arrow { font-weight: 400; transition: transform var(--t-fast); }
.btn:hover .arrow { transform: translateX(3px); }

/* ============================================
   HERO
   ============================================ */

.hero {
    position: relative;
    padding: clamp(56px, 8vw, 110px) 0 clamp(48px, 7vw, 90px);
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    top: -120px; right: -180px;
    width: 520px; height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, rgba(125,211,252,.35), rgba(125,211,252,0) 70%);
    z-index: 0;
    pointer-events: none;
}
.hero::after {
    content: "";
    position: absolute;
    bottom: -90px; left: -120px;
    width: 360px; height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37,99,235,.13), rgba(37,99,235,0) 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.hero-copy h1 .accent {
    font-style: italic;
    color: var(--blue-600);
    font-weight: 400;
}
.hero-copy .lead { margin: 18px 0 32px; }

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}
.hero-meta-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.hero-meta-item strong {
    font-family: "Fraunces", serif;
    font-size: 1.6rem;
    color: var(--navy-900);
    font-weight: 500;
}
.hero-meta-item span {
    font-size: .85rem;
    color: var(--ink-muted);
    letter-spacing: .02em;
}

.hero-visual {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.hero-visual img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.hero-visual-badge {
    position: absolute;
    bottom: 22px; left: 22px; right: 22px;
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(8px);
    border-radius: var(--r-md);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-sm);
}
.hero-visual-badge-icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--sky-300), var(--blue-500));
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 700;
    flex-shrink: 0;
}
.hero-visual-badge p {
    margin: 0;
    font-size: .9rem;
    color: var(--ink);
    font-weight: 500;
    line-height: 1.35;
}

/* CTA cluster */
.cta-cluster {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* ============================================
   FEATURES / VALUE ROW
   ============================================ */

.value-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
}
.value-row-item {
    padding: 28px 30px;
    border-right: 1px solid var(--line-soft);
}
.value-row-item:last-child { border-right: none; }
.value-row-item h4 {
    color: var(--navy-900);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.value-row-item h4::before {
    content: "";
    width: 8px; height: 8px;
    border-radius: 2px;
    background: var(--blue-500);
    transform: rotate(45deg);
    flex-shrink: 0;
}
.value-row-item p { margin: 0; font-size: .94rem; }

/* ============================================
   PRODUCT SECTION
   ============================================ */

.product {
    position: relative;
}
.product-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.product-visual {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: var(--r-xl);
    background:
        radial-gradient(circle at 30% 25%, rgba(125,211,252,.45), rgba(125,211,252,0) 55%),
        linear-gradient(135deg, #e9f3ff, #c9def8);
    display: grid;
    place-items: center;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.product-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            -22deg,
            rgba(255,255,255,.0) 0,
            rgba(255,255,255,.0) 28px,
            rgba(255,255,255,.22) 28px,
            rgba(255,255,255,.22) 29px
        );
    pointer-events: none;
}
.product-visual img {
    position: relative;
    z-index: 1;
    width: 70%;
    max-width: 360px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 30px 40px rgba(11,23,51,.25));
}

.product-tag {
    position: absolute;
    top: 22px; left: 22px;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(6px);
    padding: 7px 14px;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 700;
    color: var(--navy-800);
    letter-spacing: .08em;
    text-transform: uppercase;
    z-index: 2;
}

.product-copy h2 { margin-bottom: 22px; }

.product-list {
    list-style: none;
    padding: 0;
    margin: 28px 0 32px;
    display: grid;
    gap: 14px;
}
.product-list li {
    position: relative;
    padding-left: 34px;
    color: var(--ink-soft);
    margin: 0;
    line-height: 1.55;
}
.product-list li::before {
    content: "";
    position: absolute;
    left: 0; top: 6px;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--soft-100);
    background-image:
        linear-gradient(45deg, transparent 45%, var(--blue-600) 45%, var(--blue-600) 55%, transparent 55%),
        linear-gradient(-45deg, transparent 45%, var(--blue-600) 45%, var(--blue-600) 55%, transparent 55%);
    background-size: 11px 2.5px, 7px 2.5px;
    background-position: 4px 12px, 8px 8px;
    background-repeat: no-repeat;
}

/* ============================================
   INGREDIENTS / CARDS
   ============================================ */

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
    margin-top: 48px;
}

.card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 30px 26px;
    transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--sky-200);
}

.card-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--soft-100), #fff);
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    color: var(--blue-600);
    position: relative;
}
.card-icon svg { width: 24px; height: 24px; }

.card h3 {
    font-family: "Manrope", sans-serif;
    font-size: 1.12rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--navy-900);
}
.card p {
    font-size: .95rem;
    line-height: 1.6;
    margin: 0;
    color: var(--ink-soft);
}

/* Editorial alt card variant — asymmetric */
.card--accent {
    background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
    color: #d9e6ff;
    border: none;
    grid-column: span 1;
}
.card--accent h3 { color: #fff; font-family: "Fraunces", serif; font-weight: 500; font-size: 1.4rem; }
.card--accent p { color: #b3c6e6; }

/* ============================================
   LIFESTYLE / EDITORIAL SPLIT
   ============================================ */

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}
.split--reverse .split-text { order: 2; }
.split--reverse .split-visual { order: 1; }

.split-visual {
    position: relative;
    aspect-ratio: 5 / 6;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.split-visual img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}
.split-visual:hover img { transform: scale(1.04); }

.split-visual-deco {
    position: absolute;
    bottom: -18px; right: -18px;
    width: 130px; height: 130px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sky-300), var(--blue-500));
    z-index: -1;
    opacity: .7;
}

.split-text .eyebrow { margin-bottom: 18px; }
.split-quote {
    margin-top: 28px;
    padding: 22px 26px;
    border-left: 3px solid var(--blue-500);
    background: var(--soft-100);
    border-radius: 0 var(--r-md) var(--r-md) 0;
    font-family: "Fraunces", serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--navy-800);
    line-height: 1.5;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */

.faq-wrap {
    max-width: 800px;
    margin: 48px auto 0;
}

.faq-item {
    border-bottom: 1px solid var(--line);
}
.faq-item:first-child { border-top: 1px solid var(--line); }

.faq-q {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 22px 50px 22px 4px;
    text-align: left;
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy-900);
    position: relative;
    transition: color var(--t-fast);
}
.faq-q:hover { color: var(--blue-600); }
.faq-q::after {
    content: "+";
    position: absolute;
    right: 8px; top: 50%;
    transform: translateY(-50%);
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--blue-600);
    transition: transform var(--t-med);
}
.faq-item.is-open .faq-q::after { transform: translateY(-50%) rotate(45deg); }

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--t-med);
}
.faq-a-inner {
    padding: 0 4px 24px;
    color: var(--ink-soft);
    font-size: .98rem;
    line-height: 1.7;
}

/* ============================================
   CTA BANNER
   ============================================ */

.cta-banner {
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 60%, var(--blue-600) 100%);
    color: #fff;
    border-radius: var(--r-xl);
    padding: clamp(40px, 6vw, 70px);
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: "";
    position: absolute;
    top: -100px; right: -100px;
    width: 360px; height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(125,211,252,.3), transparent 70%);
}
.cta-banner-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
}
.cta-banner h2 { color: #fff; margin-bottom: 14px; }
.cta-banner p { color: #c5d6f2; margin: 0; max-width: 50ch; }
.cta-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

/* ============================================
   FORMS
   ============================================ */

.form {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: clamp(28px, 4vw, 44px);
    box-shadow: var(--shadow-xs);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}
.form-group { margin-bottom: 18px; }
.form-group--full { grid-column: 1 / -1; }

.form label {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--navy-800);
    letter-spacing: .01em;
}
.form input,
.form textarea,
.form select {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--line);
    border-radius: var(--r-sm);
    font-family: inherit;
    font-size: 1rem;
    background: var(--surface-2);
    color: var(--ink);
    transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
}
.form input:focus,
.form textarea:focus,
.form select:focus {
    outline: none;
    border-color: var(--blue-500);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(59,130,246,.14);
}
.form textarea { min-height: 140px; resize: vertical; }

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .88rem;
    color: var(--ink-soft);
    margin-bottom: 22px;
}
.form-check input { width: auto; margin-top: 4px; }

.form-error {
    color: #b91c1c;
    font-size: .82rem;
    margin-top: 6px;
    display: none;
}
.form-group.has-error input,
.form-group.has-error textarea { border-color: #b91c1c; background: #fff5f5; }
.form-group.has-error .form-error { display: block; }

/* ============================================
   CONTACT GRID
   ============================================ */

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr .9fr;
    gap: 50px;
    align-items: start;
}

.info-block {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 30px;
    margin-bottom: 22px;
}
.info-block h3 {
    font-family: "Manrope", sans-serif;
    font-size: 1.05rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.info-block h3 .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--blue-500);
}
.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}
.info-list li {
    color: var(--ink-soft);
    font-size: .96rem;
    margin: 0;
}
.info-list strong {
    display: block;
    color: var(--navy-900);
    font-weight: 600;
    margin-bottom: 2px;
    font-size: .82rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.map-block {
    aspect-ratio: 16 / 9;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--surface-2);
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    position: relative;
    background:
        linear-gradient(135deg, var(--pale-50), #fff),
        repeating-linear-gradient(45deg, transparent 0, transparent 24px, var(--line-soft) 24px, var(--line-soft) 25px);
    background-blend-mode: multiply;
}
.map-block::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(0deg, transparent 0 38px, rgba(37,99,235,.05) 38px 39px),
        repeating-linear-gradient(90deg, transparent 0 38px, rgba(37,99,235,.05) 38px 39px);
}
.map-pin {
    position: relative;
    z-index: 2;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    border-radius: var(--r-md);
    padding: 14px 22px;
    text-align: center;
    max-width: 280px;
}
.map-pin strong { color: var(--navy-900); display: block; margin-bottom: 4px; }
.map-pin span { color: var(--ink-muted); font-size: .9rem; }

/* ============================================
   SUCCESS PAGE
   ============================================ */

.success-wrap {
    min-height: 70vh;
    display: grid;
    place-items: center;
    padding: 60px 0;
}
.success-card {
    max-width: 560px;
    text-align: center;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    padding: clamp(40px, 5vw, 60px);
    box-shadow: var(--shadow-md);
}
.success-icon {
    width: 76px; height: 76px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sky-300), var(--blue-500));
    margin: 0 auto 24px;
    display: grid;
    place-items: center;
    color: #fff;
}
.success-icon svg { width: 36px; height: 36px; }

/* ============================================
   LEGAL PAGES
   ============================================ */

.legal-page { padding: clamp(50px, 6vw, 80px) 0; }
.legal-page .wrap { max-width: 820px; }
.legal-page h1 { margin-bottom: 8px; }
.legal-page .legal-meta {
    color: var(--ink-muted);
    font-size: .9rem;
    margin-bottom: 36px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 22px;
}
.legal-page h2 {
    font-size: 1.4rem;
    margin-top: 38px;
    color: var(--navy-900);
}
.legal-page h3 {
    font-family: "Manrope", sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin-top: 24px;
    color: var(--navy-800);
}
.legal-page p, .legal-page li {
    color: var(--ink-soft);
    line-height: 1.75;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background: var(--navy-900);
    color: #b9c8e6;
    padding: 70px 0 32px;
    margin-top: 40px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}
.footer-brand .brand { color: #fff; }
.footer-brand p {
    color: #94a8cc;
    font-size: .94rem;
    max-width: 32ch;
    margin-top: 18px;
}
.footer h4 {
    color: #fff;
    font-size: .9rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 18px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 10px; }
.footer ul a {
    color: #b9c8e6;
    font-size: .94rem;
    transition: color var(--t-fast);
}
.footer ul a:hover { color: #fff; }

.footer-contact-line {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: .94rem;
    color: #b9c8e6;
}
.footer-contact-line svg {
    width: 16px; height: 16px;
    margin-top: 3px;
    color: var(--sky-300);
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 26px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    color: #7a8cae;
    font-size: .86rem;
}
.footer-bottom a { color: #b9c8e6; }
.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}

/* ============================================
   COOKIE BANNER
   ============================================ */

.cookie-banner {
    position: fixed;
    bottom: 22px;
    left: 22px;
    right: 22px;
    max-width: 720px;
    margin: 0 auto;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 22px;
    z-index: 200;
    transform: translateY(140%);
    opacity: 0;
    transition: transform .5s cubic-bezier(.2,.7,.2,1), opacity .4s ease;
}
.cookie-banner.is-visible {
    transform: translateY(0);
    opacity: 1;
}
.cookie-banner p {
    margin: 0;
    flex: 1;
    font-size: .92rem;
    color: var(--ink-soft);
    line-height: 1.5;
}
.cookie-banner-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.cookie-banner-actions .btn {
    padding: 9px 16px;
    font-size: .88rem;
}

/* ============================================
   FADE-IN ANIMATIONS
   ============================================ */

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 960px) {
    .hero-grid,
    .product-grid,
    .split,
    .contact-grid,
    .cta-banner-grid {
        grid-template-columns: 1fr;
    }
    .split--reverse .split-text,
    .split--reverse .split-visual { order: initial; }

    .value-row {
        grid-template-columns: 1fr;
    }
    .value-row-item {
        border-right: none;
        border-bottom: 1px solid var(--line-soft);
    }
    .value-row-item:last-child { border-bottom: none; }

    .cta-banner-actions { justify-content: flex-start; }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 720px) {
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0; right: 0;
        background: var(--surface);
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 18px 22px 28px;
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow-md);
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: transform var(--t-med), opacity var(--t-med);
    }
    .nav-menu.is-open {
        transform: none;
        opacity: 1;
        pointer-events: auto;
    }
    .nav-menu a {
        padding: 14px 16px;
        border-radius: var(--r-sm);
    }
    .nav-cta { margin-left: 0; }
    .nav-toggle { display: block; }

    .hero-meta { gap: 22px; }
    .hero-meta-item strong { font-size: 1.35rem; }

    .form-row { grid-template-columns: 1fr; }

    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    .cookie-banner-actions { justify-content: center; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; }
}

@media (max-width: 480px) {
    body { font-size: 16px; }
    .section { padding: 56px 0; }
    .product-visual img { width: 78%; }
    .hero-visual-badge {
        bottom: 14px; left: 14px; right: 14px;
        padding: 12px 14px;
    }
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
    html { scroll-behavior: auto; }
}
