/* WellCare — Arctic wellness / editorial refresh */

@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=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

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

:root {
    --surface: #f3f8f6;
    --surface-elevated: #ffffff;
    --ink: #0f1f1a;
    --ink-soft: #3d524a;
    --muted: #6b7f76;
    --line: #d4e3dc;
    --accent: #1b6b5c;
    --accent-soft: #e3f4ef;
    --accent-bright: #24a189;
    --highlight: #c4f1e4;
    --warning-bg: #fff8e6;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 18px 50px rgba(15, 31, 26, 0.08);
    --shadow-sm: 0 8px 24px rgba(15, 31, 26, 0.06);
    --max: 1180px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    line-height: 1.65;
    color: var(--ink);
    background: var(--surface);
    min-height: 100vh;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--accent-bright);
    outline-offset: 3px;
}

.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px);
}

/* —— Header —— */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}

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

.logo {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    font-variation-settings: 'opsz' 72;
    letter-spacing: -0.02em;
    color: var(--ink);
}

.logo a {
    text-decoration: none;
    color: inherit;
}

.nav-main {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    align-items: center;
}

.nav-main a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ink-soft);
    text-decoration: none;
    padding: 0.35rem 0;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.nav-main a:hover {
    color: var(--accent);
    border-bottom-color: var(--highlight);
}

.nav-cta {
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    background: var(--accent);
    color: #fff !important;
    border: none !important;
}

.nav-cta:hover {
    background: var(--accent-bright);
    color: #fff !important;
}

/* —— Hero —— */
.hero {
    position: relative;
    padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(2.5rem, 6vw, 4rem);
    background:
        radial-gradient(120% 80% at 100% 0%, var(--highlight) 0%, transparent 55%),
        linear-gradient(165deg, #ffffff 0%, var(--surface) 100%);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

@media (min-width: 900px) {
    .hero-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 3rem;
        align-items: center;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    background: var(--accent-soft);
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 1.25rem;
}

.hero h1 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(2.1rem, 4.5vw, 3.35rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 36ch;
    margin-bottom: 1.75rem;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.stat-pill {
    background: var(--surface-elevated);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1.1rem;
    box-shadow: var(--shadow-sm);
    min-width: 140px;
}

.stat-pill strong {
    display: block;
    font-size: 1.35rem;
    font-family: 'Fraunces', serif;
    color: var(--accent);
}

.stat-pill span {
    font-size: 0.8rem;
    color: var(--muted);
}

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

.hero-panel h2 {
    font-family: 'Fraunces', serif;
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--ink);
}

.hero-panel p {
    font-size: 0.95rem;
    color: var(--ink-soft);
    margin-bottom: 1rem;
}

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

.hero-panel li {
    position: relative;
    padding-left: 1.35rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--muted);
}

.hero-panel li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-bright);
}

/* —— Product —— */
.product-section {
    padding: clamp(3rem, 7vw, 5rem) 0;
    background: var(--surface-elevated);
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
}

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

    .product-visual {
        position: sticky;
        top: 88px;
    }
}

.carousel-container {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, #fafdfb 0%, var(--surface) 100%);
    box-shadow: var(--shadow-sm);
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: min(52vw, 420px);
    min-height: 280px;
}

@media (min-width: 960px) {
    .carousel-slides {
        height: 480px;
    }
}

.carousel-slide {
    display: none;
    width: 100%;
    height: 100%;
}

.carousel-slide.active {
    display: block;
    animation: fadeSlide 0.45s ease;
}

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

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

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.95);
    color: var(--accent);
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    z-index: 5;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: var(--shadow-sm);
}

.carousel-btn:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.carousel-prev {
    left: 12px;
}

.carousel-next {
    right: 12px;
}

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

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--line);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.2s, background 0.2s;
}

.dot:hover {
    transform: scale(1.15);
}

.dot.active {
    background: var(--accent);
    transform: scale(1.2);
}

.product-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-soft);
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.product-info h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.65rem, 3vw, 2.1rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--ink);
}

.product-description {
    color: var(--ink-soft);
    margin-bottom: 1.75rem;
    font-size: 1.02rem;
}

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

.feature {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    padding: 0.85rem 1rem;
    background: var(--surface);
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
}

.feature-icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: var(--accent-soft);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
}

.product-specs {
    background: var(--warning-bg);
    border: 1px solid #f0e4c4;
    border-radius: var(--radius-sm);
    padding: 1.35rem 1.5rem;
    margin-bottom: 1.5rem;
}

.product-specs h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--ink);
}

.product-specs p {
    color: var(--ink-soft);
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
}

.product-price {
    margin-bottom: 1.25rem;
}

.price-label {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ink);
}

.btn-primary {
    display: inline-block;
    width: 100%;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 1.1rem 1.5rem;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--accent) 0%, #145a4e 100%);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 10px 28px rgba(27, 107, 92, 0.28);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(27, 107, 92, 0.35);
}

/* —— How it works —— */
.how-it-works {
    padding: clamp(3rem, 7vw, 5rem) 0;
    background: linear-gradient(180deg, #0f2a24 0%, #15352e 50%, #0f2a24 100%);
    color: #e8f5f1;
}

.how-it-works .section-title {
    color: #fff;
}

.section-title {
    font-family: 'Fraunces', serif;
    text-align: center;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: var(--ink);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

.comparison-item {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: 1.75rem;
    backdrop-filter: blur(6px);
}

.comparison-item h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.comparison-image {
    margin-bottom: 1rem;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.comparison-image img {
    width: 100%;
    height: auto;
    display: block;
}

.comparison-item p {
    color: rgba(232, 245, 241, 0.88);
    margin-bottom: 0.85rem;
    font-size: 0.98rem;
}

/* —— Eco —— */
.social-responsibility {
    padding: clamp(3rem, 7vw, 5rem) 0;
    background: var(--surface);
}

.responsibility-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 920px;
    margin: 0 auto;
}

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

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

.responsibility-copy p {
    font-size: 1.05rem;
    color: var(--ink-soft);
    line-height: 1.8;
}

/* —— Guarantee —— */
.guarantee {
    padding: clamp(2.5rem, 6vw, 4rem) 0;
    text-align: center;
    background: linear-gradient(120deg, var(--accent-soft) 0%, var(--highlight) 100%);
    border-block: 1px solid var(--line);
}

.guarantee .section-title {
    color: var(--ink);
}

.guarantee p {
    max-width: 640px;
    margin: 0 auto;
    color: var(--ink-soft);
    font-size: 1.05rem;
}

/* —— FAQ —— */
.faq {
    padding: clamp(3rem, 7vw, 5rem) 0;
    background: var(--surface-elevated);
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    background: var(--surface);
    padding: 1.25rem 1.4rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-item:hover {
    border-color: var(--accent-bright);
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: var(--muted);
    font-size: 0.95rem;
}

/* —— Contact —— */
.contact-section {
    padding: clamp(3rem, 7vw, 5rem) 0;
    background: var(--surface);
}

.contact-section .section-title {
    margin-bottom: 0.75rem;
}

.contact-lead {
    text-align: center;
    color: var(--muted);
    max-width: 520px;
    margin: 0 auto 2rem;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
}

.contact-item {
    flex: 1 1 240px;
    max-width: 320px;
    background: var(--surface-elevated);
    border-radius: var(--radius);
    border: 1px solid var(--line);
    padding: 1.75rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

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

.contact-item span {
    font-size: 0.88rem;
    color: var(--muted);
}

.contact-item a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* —— Footer —— */
.footer {
    background: var(--ink);
    color: #d8ebe4;
    padding: 3rem 0 1.5rem;
}

.footer-legal h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.35rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.legal-info {
    margin-bottom: 1.5rem;
}

.legal-info p {
    margin-bottom: 0.5rem;
    color: rgba(232, 245, 241, 0.85);
    font-size: 0.95rem;
}

.legal-info strong {
    color: #fff;
}

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

.health-notice h4 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 0.65rem;
}

.health-notice p {
    font-size: 0.9rem;
    line-height: 1.75;
    color: rgba(232, 245, 241, 0.82);
}

.contact-info-footer p {
    margin-bottom: 0.45rem;
    font-size: 0.92rem;
    color: rgba(232, 245, 241, 0.85);
}

.contact-info-footer strong {
    color: #fff;
}

.contact-info-footer a {
    color: var(--highlight);
    text-decoration: none;
    font-weight: 600;
}

.contact-info-footer a:hover {
    text-decoration: underline;
}

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

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.footer-links a {
    color: rgba(232, 245, 241, 0.88);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom > p {
    font-size: 0.85rem;
    color: rgba(232, 245, 241, 0.55);
}

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

.legal-page .container {
    max-width: 760px;
}

.legal-page h1 {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--ink);
}

.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-family: 'Fraunces', serif;
    font-size: 1.45rem;
    margin-bottom: 1rem;
    color: var(--ink);
}

.legal-page h3 {
    font-size: 1.1rem;
    margin: 1.5rem 0 0.65rem;
    color: var(--ink);
}

.legal-page p,
.legal-page li {
    color: var(--ink-soft);
    margin-bottom: 0.85rem;
    font-size: 1rem;
    line-height: 1.8;
}

.legal-page ul {
    margin-left: 1.25rem;
    margin-bottom: 1rem;
}

.legal-page a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

.legal-back {
    display: inline-block;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--accent);
    text-decoration: none;
}

.legal-back:hover {
    text-decoration: underline;
}

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

.withdrawal-form p {
    margin-bottom: 1rem;
}

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

.product-visual img,
.comparison-image img,
.responsibility-image img {
    background-color: var(--surface);
}

@media (max-width: 600px) {
    .carousel-slides {
        min-height: 240px;
        height: 55vw;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
