/* =========================================================
   Ocularix — Stil principal
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
    --c-ink: #0b1a2b;
    --c-ink-soft: #2a3b51;
    --c-muted: #5a6a7e;
    --c-line: #dfe6ee;
    --c-paper: #fbfcfe;
    --c-white: #ffffff;

    --c-azure-50: #eaf4fb;
    --c-azure-100: #cfe6f5;
    --c-azure-300: #6cb6df;
    --c-azure-500: #1f7fb9;
    --c-azure-700: #145b8a;
    --c-azure-900: #0a3a5e;

    --c-silver-50: #f3f5f8;
    --c-silver-200: #d8dde4;
    --c-silver-400: #a9b1bd;
    --c-silver-600: #6f7886;

    --c-accent: #c98a3d;

    --shadow-sm: 0 1px 2px rgba(11, 26, 43, .06), 0 1px 1px rgba(11, 26, 43, .04);
    --shadow-md: 0 8px 20px -10px rgba(11, 26, 43, .18), 0 4px 8px -4px rgba(11, 26, 43, .08);
    --shadow-lg: 0 24px 50px -28px rgba(11, 26, 43, .25);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 22px;

    --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
    --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

    --container: 1180px;
    --pad-x: clamp(20px, 4vw, 40px);
}

/* =========================================================
   Reset / baseline
   ========================================================= */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16.5px;
    line-height: 1.65;
    color: var(--c-ink);
    background: var(--c-paper);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-azure-700); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--c-azure-500); }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: -0.015em;
    line-height: 1.18;
    color: var(--c-ink);
    margin: 0 0 .6em;
}
h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
h3 { font-size: 1.25rem; font-weight: 600; }
p { margin: 0 0 1em; color: var(--c-ink-soft); }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--pad-x);
}

/* helper */
.eyebrow {
    display: inline-block;
    font-size: .78rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--c-azure-700);
    font-weight: 600;
    margin-bottom: 14px;
}
.eyebrow::before {
    content: '';
    display: inline-block;
    width: 22px;
    height: 1px;
    background: var(--c-azure-500);
    vertical-align: middle;
    margin-right: 10px;
    transform: translateY(-2px);
}

/* =========================================================
   Header / Nav
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: saturate(160%) blur(14px);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    border-bottom: 1px solid var(--c-line);
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 24px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--c-ink);
    letter-spacing: -.01em;
}
.brand:hover { color: var(--c-azure-700); }
.brand-mark {
    width: 30px; height: 30px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 30%, #fff 0 14%, transparent 15%),
        radial-gradient(circle at 50% 50%, var(--c-azure-900) 0 40%, var(--c-azure-500) 41% 60%, var(--c-azure-100) 61% 100%);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.4), 0 2px 6px rgba(20, 91, 138, .35);
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    padding: 0; margin: 0;
}
.nav-links a {
    color: var(--c-ink-soft);
    font-size: .94rem;
    font-weight: 500;
    position: relative;
    padding: 4px 0;
}
.nav-links a::after {
    content: '';
    position: absolute;
    left: 0; bottom: -2px;
    width: 0; height: 2px;
    background: var(--c-azure-500);
    transition: width .25s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--c-ink); }

.nav-cta {
    background: var(--c-ink);
    color: var(--c-white);
    padding: 10px 18px;
    border-radius: 999px;
    font-size: .88rem;
    font-weight: 600;
    transition: background .2s, transform .2s;
}
.nav-cta:hover { background: var(--c-azure-700); color: #fff; transform: translateY(-1px); }

.nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--c-line);
    border-radius: 8px;
    width: 42px; height: 42px;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.nav-toggle span {
    display: block;
    width: 18px; height: 2px;
    background: var(--c-ink);
    position: relative;
    transition: background .2s;
}
.nav-toggle span::before,
.nav-toggle span::after {
    content: '';
    position: absolute;
    left: 0;
    width: 18px; height: 2px;
    background: var(--c-ink);
    transition: transform .25s;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span::after  { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 880px) {
    .nav-toggle { display: inline-flex; }
    .nav-links {
        position: absolute;
        top: 100%; left: 0; right: 0;
        flex-direction: column;
        gap: 0;
        background: #fff;
        border-bottom: 1px solid var(--c-line);
        padding: 10px var(--pad-x) 20px;
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: opacity .2s, transform .2s;
    }
    .nav-links.is-open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
    .nav-links li { width: 100%; border-bottom: 1px solid var(--c-line); }
    .nav-links li:last-child { border-bottom: 0; }
    .nav-links a { display: block; padding: 14px 0; font-size: 1rem; }
    .nav-links a::after { display: none; }
    .nav-cta { align-self: flex-start; margin-top: 8px; }
}

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

.hero {
    position: relative;
    padding: clamp(60px, 9vw, 110px) 0 clamp(70px, 10vw, 130px);
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 60% at 80% 0%, var(--c-azure-50) 0%, transparent 60%),
        linear-gradient(180deg, #fff 0%, var(--c-paper) 100%);
}
.hero::before {
    content: '';
    position: absolute;
    top: -120px; right: -80px;
    width: 480px; height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--c-azure-100) 0%, transparent 70%);
    opacity: .55;
    z-index: 0;
}
.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(30px, 5vw, 70px);
    align-items: center;
}
.hero-copy h1 span {
    color: var(--c-azure-700);
    font-style: italic;
    font-weight: 400;
}
.hero-copy .lead {
    font-size: 1.12rem;
    color: var(--c-ink-soft);
    max-width: 540px;
    margin-bottom: 30px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 36px;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 999px;
    font-size: .95rem;
    font-weight: 600;
    border: 1px solid transparent;
    transition: all .25s;
    cursor: pointer;
    text-decoration: none;
}
.btn-primary {
    background: var(--c-ink);
    color: #fff;
}
.btn-primary:hover {
    background: var(--c-azure-700);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.btn-ghost {
    background: transparent;
    color: var(--c-ink);
    border-color: var(--c-line);
}
.btn-ghost:hover {
    border-color: var(--c-ink);
    background: #fff;
}

.hero-meta {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
    padding-top: 26px;
    border-top: 1px solid var(--c-line);
}
.hero-meta div strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.55rem;
    color: var(--c-azure-900);
    line-height: 1;
    margin-bottom: 6px;
}
.hero-meta div small {
    font-size: .82rem;
    color: var(--c-muted);
    letter-spacing: .04em;
}

.hero-visual {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--c-azure-50);
}
.hero-visual img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.hero-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(10, 58, 94, .25) 100%);
}
.hero-badge {
    position: absolute;
    bottom: 22px; left: 22px;
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(6px);
    padding: 14px 18px;
    border-radius: 14px;
    font-size: .85rem;
    line-height: 1.4;
    box-shadow: var(--shadow-md);
    max-width: 220px;
    z-index: 1;
}
.hero-badge strong {
    display: block;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--c-azure-900);
    margin-bottom: 2px;
}

@media (max-width: 880px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-visual { max-width: 460px; margin: 0 auto; }
}

/* =========================================================
   Sections — common
   ========================================================= */

section { padding: clamp(60px, 9vw, 110px) 0; }
.section-head {
    max-width: 680px;
    margin-bottom: 56px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--c-muted); font-size: 1.05rem; }

/* =========================================================
   Pillars (3-col info)
   ========================================================= */

.pillars {
    background: #fff;
    border-top: 1px solid var(--c-line);
    border-bottom: 1px solid var(--c-line);
}
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-left: 1px solid var(--c-line);
}
.pillar {
    padding: 38px 32px;
    border-right: 1px solid var(--c-line);
}
.pillar-num {
    font-family: var(--font-display);
    font-size: .9rem;
    color: var(--c-azure-700);
    letter-spacing: .12em;
    margin-bottom: 18px;
}
.pillar h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.pillar p { font-size: .95rem; margin: 0; }

@media (max-width: 760px) {
    .pillars-grid { grid-template-columns: 1fr; border-left: 0; }
    .pillar { border-right: 0; border-bottom: 1px solid var(--c-line); }
    .pillar:last-child { border-bottom: 0; }
}

/* =========================================================
   Product card (asymmetric)
   ========================================================= */

.product {
    background: linear-gradient(180deg, var(--c-paper) 0%, #fff 100%);
}
.product-wrap {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: clamp(30px, 5vw, 70px);
    align-items: center;
}
.product-visual {
    position: relative;
    padding: 40px;
    background:
        radial-gradient(circle at 50% 40%, var(--c-azure-100) 0%, transparent 65%),
        linear-gradient(135deg, #fff 0%, var(--c-silver-50) 100%);
    border-radius: 24px;
    border: 1px solid var(--c-line);
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-visual::before {
    content: '';
    position: absolute;
    inset: 24px;
    border: 1px dashed var(--c-silver-200);
    border-radius: 16px;
    pointer-events: none;
}
.product-visual img {
    max-width: 78%;
    max-height: 78%;
    object-fit: contain;
    filter: drop-shadow(0 30px 40px rgba(20, 91, 138, .22));
    transition: transform .5s ease;
}
.product-visual:hover img { transform: translateY(-6px) scale(1.02); }

.product-card-floating {
    position: absolute;
    top: 22px; right: 22px;
    background: #fff;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: .78rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--c-line);
    display: flex; align-items: center; gap: 8px;
}
.product-card-floating::before {
    content: '';
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--c-azure-500);
    box-shadow: 0 0 0 4px var(--c-azure-100);
}

.product-info h2 { margin-bottom: 18px; }
.product-info .price-block {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin: 24px 0 28px;
    padding: 22px 24px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--c-line);
}
.price-tag {
    font-family: var(--font-display);
    font-size: 2.1rem;
    font-weight: 600;
    color: var(--c-azure-900);
    line-height: 1;
}
.price-note { font-size: .9rem; color: var(--c-muted); }

.product-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}
.product-bullets li {
    position: relative;
    padding: 10px 0 10px 32px;
    border-bottom: 1px solid var(--c-line);
    color: var(--c-ink-soft);
    font-size: .96rem;
}
.product-bullets li:last-child { border-bottom: 0; }
.product-bullets li::before {
    content: '';
    position: absolute;
    left: 0; top: 16px;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--c-azure-50);
    border: 1px solid var(--c-azure-300);
}
.product-bullets li::after {
    content: '';
    position: absolute;
    left: 5px; top: 21px;
    width: 8px; height: 4px;
    border-left: 2px solid var(--c-azure-700);
    border-bottom: 2px solid var(--c-azure-700);
    transform: rotate(-45deg);
}

@media (max-width: 880px) {
    .product-wrap { grid-template-columns: 1fr; }
    .product-visual { max-width: 460px; margin: 0 auto; }
}

/* =========================================================
   Ingredients / approach grid
   ========================================================= */

.approach {
    background: #fff;
}
.approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.approach-item {
    padding: 30px 28px;
    background: var(--c-paper);
    border-radius: 18px;
    border: 1px solid var(--c-line);
    transition: transform .3s, box-shadow .3s, border-color .3s;
}
.approach-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--c-azure-300);
}
.approach-item .icon {
    width: 46px; height: 46px;
    border-radius: 12px;
    background: var(--c-azure-50);
    color: var(--c-azure-700);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
}
.approach-item h3 { font-size: 1.1rem; margin-bottom: 8px; }
.approach-item p { font-size: .94rem; margin: 0; }

/* Make a 2x2 asymmetric pattern */
.approach-grid .approach-item:nth-child(2) { transform: translateY(28px); }
.approach-grid .approach-item:nth-child(2):hover { transform: translateY(24px); }

@media (max-width: 760px) {
    .approach-grid { grid-template-columns: 1fr; gap: 18px; }
    .approach-grid .approach-item:nth-child(2) { transform: none; }
    .approach-grid .approach-item:nth-child(2):hover { transform: translateY(-4px); }
}

/* =========================================================
   Lifestyle / split image
   ========================================================= */

.lifestyle {
    background: var(--c-azure-900);
    color: #e6eef5;
    position: relative;
    overflow: hidden;
}
.lifestyle::before {
    content: '';
    position: absolute;
    top: -100px; left: -100px;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(108, 182, 223, .25) 0%, transparent 70%);
}
.lifestyle .container { position: relative; z-index: 1; }
.lifestyle h2 { color: #fff; }
.lifestyle p { color: rgba(230, 238, 245, .82); }
.lifestyle .eyebrow { color: var(--c-azure-300); }
.lifestyle .eyebrow::before { background: var(--c-azure-300); }

.lifestyle-wrap {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: clamp(30px, 5vw, 70px);
    align-items: center;
}
.lifestyle-image {
    aspect-ratio: 5 / 4;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.lifestyle-image img { width: 100%; height: 100%; object-fit: cover; }

.lifestyle-list {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
    counter-reset: lifestyle;
}
.lifestyle-list li {
    counter-increment: lifestyle;
    padding: 16px 0 16px 50px;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,.1);
    color: rgba(230, 238, 245, .9);
    font-size: .98rem;
}
.lifestyle-list li:last-child { border-bottom: 0; }
.lifestyle-list li::before {
    content: counter(lifestyle, decimal-leading-zero);
    position: absolute;
    left: 0; top: 16px;
    font-family: var(--font-display);
    color: var(--c-azure-300);
    font-size: .9rem;
    letter-spacing: .08em;
}

@media (max-width: 880px) {
    .lifestyle-wrap { grid-template-columns: 1fr; }
}

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

.faq { background: var(--c-paper); }
.faq-list {
    max-width: 820px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--c-line);
}
.faq-item:first-child { border-top: 1px solid var(--c-line); }
.faq-trigger {
    width: 100%;
    background: transparent;
    border: 0;
    text-align: left;
    padding: 24px 50px 24px 0;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--c-ink);
    position: relative;
    transition: color .2s;
}
.faq-trigger:hover { color: var(--c-azure-700); }
.faq-trigger::after {
    content: '';
    position: absolute;
    right: 8px; top: 50%;
    width: 14px; height: 14px;
    border-right: 2px solid var(--c-ink);
    border-bottom: 2px solid var(--c-ink);
    transform: translateY(-70%) rotate(45deg);
    transition: transform .3s;
}
.faq-item.is-open .faq-trigger::after {
    transform: translateY(-30%) rotate(-135deg);
}
.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}
.faq-panel-inner {
    padding: 0 60px 24px 0;
    color: var(--c-ink-soft);
    font-size: .98rem;
}

/* =========================================================
   CTA strip
   ========================================================= */

.cta-strip {
    background: linear-gradient(120deg, var(--c-azure-900) 0%, var(--c-azure-700) 100%);
    color: #fff;
    text-align: center;
    padding: 60px 0;
}
.cta-strip h2 { color: #fff; max-width: 700px; margin: 0 auto 14px; }
.cta-strip p { color: rgba(255,255,255,.85); max-width: 580px; margin: 0 auto 26px; }
.cta-strip .btn-primary { background: #fff; color: var(--c-azure-900); }
.cta-strip .btn-primary:hover { background: var(--c-azure-50); color: var(--c-azure-900); }

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

.site-footer {
    background: #0a1626;
    color: #b5c1d1;
    padding: 70px 0 30px;
    font-size: .92rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .brand { color: #fff; margin-bottom: 14px; }
.footer-brand p { color: #8a98ad; max-width: 320px; }
.footer-col h4 {
    color: #fff;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin: 0 0 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: #b5c1d1; }
.footer-col a:hover { color: #fff; }
.footer-contact-line {
    display: block;
    margin-bottom: 6px;
    color: #b5c1d1;
}
.footer-bottom {
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    color: #6f7d92;
    font-size: .83rem;
}

@media (max-width: 880px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   About page
   ========================================================= */

.page-hero {
    padding: clamp(60px, 8vw, 100px) 0 clamp(40px, 5vw, 60px);
    background:
        radial-gradient(ellipse 60% 80% at 100% 0%, var(--c-azure-50) 0%, transparent 60%),
        var(--c-paper);
}
.page-hero h1 { max-width: 780px; }
.page-hero .lead { max-width: 640px; color: var(--c-ink-soft); font-size: 1.1rem; }

.story-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 5vw, 70px);
    align-items: start;
}
.story-image {
    aspect-ratio: 4/5;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 100px;
}
.story-image img { width: 100%; height: 100%; object-fit: cover; }
.story-text h2 { margin-top: 0; }
.story-text h3 { margin-top: 30px; }

@media (max-width: 880px) {
    .story-wrap { grid-template-columns: 1fr; }
    .story-image { position: static; max-width: 480px; }
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.value-card {
    padding: 32px 28px;
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: 18px;
    transition: border-color .3s, transform .3s;
}
.value-card:hover { border-color: var(--c-azure-300); transform: translateY(-3px); }
.value-card .num {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--c-azure-700);
    line-height: 1;
    margin-bottom: 14px;
    font-weight: 500;
}
.value-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.value-card p { font-size: .94rem; margin: 0; }

@media (max-width: 760px) { .values-grid { grid-template-columns: 1fr; } }

/* =========================================================
   Contact page
   ========================================================= */

.contact-wrap {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 50px;
    align-items: start;
}
.contact-info {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: 22px;
    padding: 38px 34px;
}
.contact-info h3 { font-size: 1.05rem; text-transform: uppercase; letter-spacing: .1em; font-family: var(--font-body); font-weight: 600; color: var(--c-muted); margin: 26px 0 8px; }
.contact-info h3:first-child { margin-top: 0; }
.contact-info p { color: var(--c-ink); margin: 0 0 4px; font-size: 1rem; }
.contact-info a { color: var(--c-ink); }
.contact-info a:hover { color: var(--c-azure-700); }

.contact-form {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: 22px;
    padding: 38px 34px;
}
.form-row { margin-bottom: 18px; }
.form-row label {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    color: var(--c-ink);
    margin-bottom: 7px;
}
.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--c-line);
    border-radius: 10px;
    font-family: inherit;
    font-size: .96rem;
    color: var(--c-ink);
    background: var(--c-paper);
    transition: border-color .2s, background .2s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--c-azure-500);
    background: #fff;
}
.form-row textarea { resize: vertical; min-height: 120px; }
.form-row .error-msg {
    color: #b14444;
    font-size: .82rem;
    margin-top: 6px;
    display: none;
}
.form-row.has-error input,
.form-row.has-error textarea {
    border-color: #b14444;
}
.form-row.has-error .error-msg { display: block; }
.form-check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: .88rem;
    color: var(--c-ink-soft);
}
.form-check input { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; accent-color: var(--c-azure-700); }

.map-placeholder {
    margin-top: 40px;
    aspect-ratio: 16/7;
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(31, 127, 185, .07) 0%, rgba(108, 182, 223, .15) 100%),
        repeating-linear-gradient(0deg, transparent 0, transparent 39px, rgba(31, 127, 185, .12) 39px, rgba(31, 127, 185, .12) 40px),
        repeating-linear-gradient(90deg, transparent 0, transparent 39px, rgba(31, 127, 185, .12) 39px, rgba(31, 127, 185, .12) 40px),
        #fff;
    border: 1px solid var(--c-line);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.map-pin {
    position: relative;
    width: 18px; height: 18px;
    background: var(--c-azure-700);
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(31, 127, 185, .22), 0 0 0 14px rgba(31, 127, 185, .12);
}
.map-pin::after {
    content: 'Șoseaua Colentina 2, București';
    position: absolute;
    top: -38px; left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: .82rem;
    color: var(--c-ink);
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--c-line);
}

@media (max-width: 880px) {
    .contact-wrap { grid-template-columns: 1fr; }
}

/* =========================================================
   Success page
   ========================================================= */

.success-section {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at 50% 40%, var(--c-azure-50) 0%, transparent 60%), var(--c-paper);
}
.success-card {
    max-width: 580px;
    margin: 0 auto;
}
.success-icon {
    width: 80px; height: 80px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: var(--c-azure-50);
    border: 2px solid var(--c-azure-300);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-azure-700);
}
.success-icon svg { width: 36px; height: 36px; }

/* =========================================================
   Legal pages
   ========================================================= */

.legal-content {
    max-width: 820px;
    margin: 0 auto;
}
.legal-content h2 {
    font-size: 1.4rem;
    margin: 40px 0 14px;
    color: var(--c-azure-900);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
    font-size: 1.05rem;
    margin: 24px 0 8px;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--c-ink);
}
.legal-content p, .legal-content li {
    font-size: .98rem;
    color: var(--c-ink-soft);
}
.legal-content ul { padding-left: 22px; }
.legal-content ul li { margin-bottom: 6px; }
.legal-content .updated {
    font-size: .85rem;
    color: var(--c-muted);
    margin-bottom: 32px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--c-line);
}

/* =========================================================
   Cookie banner
   ========================================================= */

.cookie-banner {
    position: fixed;
    bottom: 16px; left: 16px; right: 16px;
    max-width: 720px;
    margin: 0 auto;
    padding: 18px 22px;
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    z-index: 100;
    transform: translateY(140%);
    transition: transform .4s ease;
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner p {
    margin: 0;
    flex: 1 1 280px;
    font-size: .88rem;
    color: var(--c-ink-soft);
}
.cookie-banner p a { text-decoration: underline; }
.cookie-banner-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.cookie-banner .btn {
    padding: 10px 18px;
    font-size: .85rem;
}

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

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
}
