/* WellCare — Nordic / clinical landing (static, no third-party scripts) */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,400&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700&display=swap');

*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --ink: #0b1220;
    --ink-soft: #3d4a5f;
    --paper: #f4f8fb;
    --surface: #ffffff;
    --line: #d7e2ec;
    --accent: #0f766e;
    --accent-hover: #0d9488;
    --violet: #5b21b6;
    --radius: 20px;
    --radius-sm: 12px;
    --shadow: 0 18px 50px rgba(11, 18, 32, 0.08);
    --shadow-sm: 0 6px 20px rgba(11, 18, 32, 0.06);
    --max: 1120px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--ink-soft);
    background: var(--paper);
    min-height: 100vh;
}

h1, h2, h3, h4 {
    font-family: 'Fraunces', Georgia, serif;
    color: var(--ink);
    font-weight: 600;
    line-height: 1.2;
}

a {
    color: var(--accent);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

a:hover {
    color: var(--accent-hover);
}

.container {
    width: min(100% - 40px, var(--max));
    margin-inline: auto;
}

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    flex-wrap: wrap;
}

.brand {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
}

.brand a {
    color: var(--ink);
    text-decoration: none;
}

.brand a:hover {
    color: var(--accent);
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1rem;
    align-items: center;
}

.site-nav a {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--ink-soft);
    text-decoration: none;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    transition: background 0.15s ease, color 0.15s ease;
}

.site-nav a:hover {
    background: rgba(15, 118, 110, 0.1);
    color: var(--accent);
}

.site-nav__legal {
    padding-left: 0.75rem;
    margin-left: 0.25rem;
    border-left: 1px solid var(--line);
}

.site-nav__legal a {
    font-size: 0.85rem;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    padding: clamp(3rem, 8vw, 6rem) 0 clamp(4rem, 10vw, 7rem);
    overflow: hidden;
    background:
        radial-gradient(1200px 500px at 10% -10%, rgba(15, 118, 110, 0.12), transparent 55%),
        radial-gradient(900px 400px at 90% 20%, rgba(91, 33, 182, 0.08), transparent 50%),
        linear-gradient(165deg, #ffffff 0%, #eef6ff 100%);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230f766e' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.7;
    pointer-events: none;
}

.hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 900px) {
    .hero__grid {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

.hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(15, 118, 110, 0.1);
    padding: 0.45rem 1rem;
    border-radius: 999px;
    margin-bottom: 1.25rem;
}

.hero h1 {
    font-size: clamp(2.1rem, 4.5vw, 3.25rem);
    margin: 0 0 1rem;
    letter-spacing: -0.03em;
}

.hero__lead {
    font-size: 1.15rem;
    max-width: 36ch;
    margin: 0 0 1.75rem;
    color: var(--ink-soft);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.hero__panel {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.75rem;
}

.hero__panel h2 {
    font-size: 1.15rem;
    margin: 0 0 0.75rem;
}

.hero__panel ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero__panel li {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    padding: 0.5rem 0;
    border-top: 1px solid var(--line);
    font-size: 0.95rem;
}

.hero__panel li:first-of-type {
    border-top: none;
    padding-top: 0;
}

.hero__tick {
    flex-shrink: 0;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 50%;
    background: rgba(15, 118, 110, 0.15);
    color: var(--accent);
    font-size: 0.75rem;
    display: grid;
    place-items: center;
    font-weight: 700;
    margin-top: 0.1rem;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.95rem 1.6rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn--primary {
    background: linear-gradient(135deg, var(--accent), #0d9488);
    color: #fff;
    box-shadow: 0 10px 28px rgba(15, 118, 110, 0.35);
}

.btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 34px rgba(15, 118, 110, 0.4);
    color: #fff;
}

.btn--ghost {
    background: var(--surface);
    color: var(--ink);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

.btn--ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* ---------- Sections ---------- */
.section {
    padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.section--surface {
    background: var(--surface);
}

.section--tint {
    background: linear-gradient(180deg, #e8f4f2 0%, var(--paper) 100%);
}

.section__head {
    max-width: 640px;
    margin-bottom: 2.5rem;
}

.section__eyebrow {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--violet);
    margin-bottom: 0.5rem;
}

.section__title {
    font-size: clamp(1.75rem, 3.5vw, 2.35rem);
    margin: 0 0 0.75rem;
}

.section__intro {
    margin: 0;
    font-size: 1.08rem;
}

/* ---------- Product ---------- */
.product-layout {
    display: grid;
    gap: 2.5rem;
    align-items: start;
}

@media (min-width: 960px) {
    .product-layout {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.gallery {
    position: sticky;
    top: 88px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.gallery__viewport {
    position: relative;
    height: min(520px, 58vw);
    max-height: 560px;
    background: #fafcfd;
}

.gallery__slide {
    display: none;
    width: 100%;
    height: 100%;
    margin: 0;
}

.gallery__slide.is-active {
    display: block;
    animation: fadeSlide 0.45s ease;
}

@keyframes fadeSlide {
    from { opacity: 0; transform: scale(0.985); }
    to { opacity: 1; transform: scale(1); }
}

.gallery__slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1.25rem;
}

.gallery__nav {
    position: absolute;
    inset-block: 0;
    margin: auto;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: var(--ink);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: background 0.15s ease, color 0.15s ease;
    z-index: 2;
}

.gallery__nav:hover {
    background: var(--accent);
    color: #fff;
}

.gallery__nav--prev { left: 12px; }
.gallery__nav--next { right: 12px; }

.gallery__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 1rem;
    background: var(--surface);
    border-top: 1px solid var(--line);
}

.gallery__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: #cbd5e1;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.15s ease;
}

.gallery__dot.is-active {
    background: var(--accent);
    transform: scale(1.15);
}

.product-copy .product-title {
    font-size: clamp(1.6rem, 3vw, 2rem);
    margin: 0 0 1rem;
}

.product-copy .lede {
    font-size: 1.08rem;
    margin-bottom: 1.5rem;
}

.feature-grid {
    display: grid;
    gap: 0.65rem;
    margin-bottom: 1.75rem;
}

.feature-pill {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 0.85rem 1rem;
    background: var(--paper);
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    font-size: 0.95rem;
}

.feature-pill strong {
    color: var(--ink);
    font-weight: 600;
}

.spec-card {
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    padding: 1.25rem 1.4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(145deg, #ffffff, #f8fafc);
}

.spec-card h3 {
    font-size: 1.05rem;
    margin: 0 0 0.75rem;
}

.spec-card p {
    margin: 0.35rem 0;
    font-size: 0.98rem;
}

.price-row {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 1rem;
}

.product-copy .btn--primary {
    width: 100%;
    max-width: 320px;
}

/* ---------- Compare ---------- */
.compare {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 800px) {
    .compare {
        grid-template-columns: 1fr 1fr;
    }
}

.compare-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 1.75rem;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

.compare-card h3 {
    font-size: 1.2rem;
    margin: 0 0 1rem;
}

.compare-card img {
    width: 100%;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    border: 1px solid var(--line);
}

.compare-card p {
    margin: 0 0 0.85rem;
    font-size: 0.98rem;
}

.compare-card--accent {
    border-color: rgba(15, 118, 110, 0.35);
    box-shadow: 0 12px 40px rgba(15, 118, 110, 0.12);
}

/* ---------- Eco strip ---------- */
.eco-strip {
    display: grid;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 880px) {
    .eco-strip {
        grid-template-columns: 1fr 1.1fr;
    }
}

.eco-strip img {
    width: 100%;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

/* ---------- Guarantee band ---------- */
.guarantee-band {
    text-align: center;
    padding: clamp(3rem, 7vw, 4.5rem) 1.5rem;
    background: linear-gradient(120deg, #0f766e 0%, #115e59 45%, #312e81 100%);
    color: rgba(255, 255, 255, 0.92);
}

.guarantee-band h2 {
    color: #fff;
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    margin: 0 0 1rem;
}

.guarantee-band p {
    max-width: 52ch;
    margin: 0 auto;
    font-size: 1.08rem;
    line-height: 1.75;
}

/* ---------- FAQ ---------- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.faq-item {
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    background: var(--surface);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-item summary {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--ink);
    padding: 1.1rem 1.25rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    color: var(--accent);
    font-size: 1.25rem;
    line-height: 1;
}

.faq-item[open] summary::after {
    content: '–';
}

.faq-item .faq-body {
    padding: 0 1.25rem 1.15rem;
    border-top: 1px solid var(--line);
}

.faq-item .faq-body p {
    margin: 0.75rem 0 0;
    font-size: 0.98rem;
}

/* ---------- Contact ---------- */
.contact-cards {
    display: grid;
    gap: 1rem;
    max-width: 640px;
    margin-top: 1.5rem;
}

@media (min-width: 520px) {
    .contact-cards {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-card {
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

.contact-card strong {
    display: block;
    font-size: 1.15rem;
    color: var(--ink);
    margin-bottom: 0.35rem;
}

.contact-card span,
.contact-card a {
    font-size: 0.92rem;
}

.contact-card a {
    font-weight: 600;
    word-break: break-word;
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.78);
    padding: 3rem 0 1.5rem;
    margin-top: 0;
}

.site-footer h3 {
    color: #fff;
    font-size: 1.2rem;
    margin: 0 0 1.25rem;
}

.site-footer .grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .site-footer .grid {
        grid-template-columns: 1fr 1fr;
    }
}

.site-footer .legal-block p,
.site-footer .notice p,
.site-footer .foot-contact p {
    margin: 0.4rem 0;
    font-size: 0.95rem;
    line-height: 1.65;
}

.site-footer .notice {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 1.25rem 1.4rem;
}

.site-footer .notice h4 {
    color: #fff;
    font-size: 1rem;
    margin: 0 0 0.65rem;
}

.site-footer a {
    color: #5eead4;
}

.site-footer a:hover {
    color: #99f6e4;
}

.footer-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.88rem;
}

.footer-bar nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
}

.footer-bar nav a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 500;
}

.footer-bar nav a:hover {
    color: #5eead4;
}

/* ---------- Legal pages ---------- */
.legal-page {
    padding: clamp(2.5rem, 6vw, 4rem) 0 4rem;
    min-height: 50vh;
}

.legal-page h1 {
    font-size: clamp(2rem, 4vw, 2.6rem);
    margin: 0 0 2rem;
}

.legal-page section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--line);
}

.legal-page section:last-of-type {
    border-bottom: none;
}

.legal-page h2 {
    font-size: 1.45rem;
    margin: 0 0 1rem;
}

.legal-page h3 {
    font-size: 1.1rem;
    margin: 1.5rem 0 0.65rem;
}

.legal-page p,
.legal-page li {
    font-size: 1rem;
    line-height: 1.75;
}

.legal-page ul {
    padding-left: 1.35rem;
}

.withdrawal-form {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .gallery {
        position: static;
    }

    .gallery__viewport {
        height: 320px;
    }

    .site-nav__legal {
        border-left: none;
        padding-left: 0;
        margin-left: 0;
        width: 100%;
    }
}

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