﻿:root {
    --ink: #101312;
    --paper: #f7f3ea;
    --paper-soft: #fffaf0;
    --panel: #ffffff;
    --line: rgba(16, 19, 18, .12);
    --muted: #5c6763;
    --teal: #008f7a;
    --teal-dark: #006b5d;
    --amber: #f4ad34;
    --coral: #ef6f5e;
    --charcoal: #171b1a;
    --good: #0f8a5f;
    --bad: #c43e3e;
    --shadow: 0 22px 70px rgba(16, 19, 18, .12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: "Manrope", "Trebuchet MS", sans-serif;
    background:
        linear-gradient(135deg, rgba(244, 173, 52, .14), transparent 28%),
        linear-gradient(225deg, rgba(0, 143, 122, .13), transparent 32%),
        var(--paper);
    color: var(--ink);
}
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 4px; }
img { max-width: 100%; display: block; }
.shell { width: min(1160px, calc(100% - 36px)); margin: 0 auto; }
.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(247, 243, 234, .88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
}
.nav {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
    white-space: nowrap;
    flex: 0 0 auto;
}
.brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: #fff;
    background: #fff;
    border: 1px solid rgba(0, 143, 122, .18);
    box-shadow: 0 10px 24px rgba(0, 143, 122, .24);
    overflow: hidden;
    flex: 0 0 auto;
}
.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex: 1 1 auto;
    min-width: 0;
    flex-wrap: nowrap;
}
.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .72);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}
.nav-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--ink);
    transition: transform .18s ease, opacity .18s ease;
}
.site-header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.pill,
.btn {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 8px;
    font-weight: 800;
    border: 1px solid var(--line);
    line-height: 1;
    white-space: nowrap;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.pill { padding: 9px 11px; background: rgba(255, 255, 255, .58); }
.site-header .pill,
.site-header .btn { flex: 0 0 auto; }
.footer .nav-links { flex: 0 1 auto; flex-wrap: wrap; }
.btn {
    padding: 12px 17px;
    border: 0;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    box-shadow: 0 14px 28px rgba(0, 143, 122, .22);
}
.btn:hover,
.pill:hover { transform: translateY(-1px); text-decoration: none; }
.btn:disabled,
.btn.disabled {
    cursor: default;
    opacity: .72;
    transform: none;
    box-shadow: none;
}
.btn.secondary {
    color: var(--ink);
    background: var(--panel);
    border: 1px solid var(--line);
    box-shadow: none;
}
.btn.warn { background: linear-gradient(135deg, var(--coral), #c84e41); }
.page-shell { padding: 34px 0 70px; }
.flash {
    margin: 18px auto 0;
    padding: 13px 15px;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: var(--panel);
    box-shadow: 0 12px 32px rgba(16, 19, 18, .08);
}
.flash.ok { border-color: rgba(15, 138, 95, .35); color: var(--good); }
.flash.bad { border-color: rgba(196, 62, 62, .35); color: var(--bad); }
.mail-note {
    margin-top: 12px;
    padding: 12px 14px;
    border: 1px solid rgba(244, 173, 52, .45);
    border-left: 4px solid var(--amber);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(244, 173, 52, .16), rgba(0, 143, 122, .1));
    color: #513b06;
    font-size: 14px;
    line-height: 1.55;
}
.mail-note strong {
    color: #0f5f53;
}
.mail-note .not-spam {
    display: inline-flex;
    align-items: center;
    padding: 2px 7px;
    border-radius: 999px;
    background: #0f8a5f;
    color: #fff;
    font-weight: 900;
    letter-spacing: .02em;
}
.grid { display: grid; gap: 18px; }
.row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.checkout-summary { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.subscription-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.two-col { grid-template-columns: minmax(0, 1fr) minmax(280px, .82fr); }
.card {
    background: rgba(255, 255, 255, .84);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 14px 38px rgba(16, 19, 18, .07);
}
.muted { color: var(--muted); }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--teal-dark);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 12px;
}
h1,
h2,
h3 {
    font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
    letter-spacing: 0;
}
label { display: block; margin: 12px 0 7px; font-weight: 800; }
input,
select,
textarea {
    width: 100%;
    padding: 12px 13px;
    border-radius: 8px;
    border: 1px solid rgba(16, 19, 18, .18);
    background: #fff;
    color: var(--ink);
    font: inherit;
}
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid rgba(0, 143, 122, .18);
    border-color: var(--teal);
}
textarea { min-height: 130px; resize: vertical; }
.table-wrap { width: 100%; overflow-x: auto; }
.table { width: 100%; border-collapse: collapse; min-width: 680px; }
.table th,
.table td {
    padding: 12px 10px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}
.table th { color: var(--muted); font-size: 13px; }
.footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, .78);
    padding: 34px 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: minmax(240px, 1.2fr) minmax(180px, .8fr) minmax(250px, 1fr) minmax(260px, 1fr);
    align-items: start;
    justify-content: space-between;
    gap: 16px;
}
.footer a { color: #fff; }
.footer-about {
    min-width: 0;
}
.footer-brand {
    display: block;
    color: #fff;
    font-weight: 900;
}
.footer-kicker {
    display: block;
    margin-bottom: 9px;
    color: rgba(255, 255, 255, .52);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}
.footer-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
}
.social-links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}
.social-links a {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 7px 10px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .08);
    font-size: 13px;
    font-weight: 900;
}
.social-links a:hover {
    text-decoration: none;
    background: rgba(255, 255, 255, .14);
}
.social-mark {
    width: 22px;
    height: 22px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    color: var(--charcoal);
    background: #fff;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}
.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.payment-chip {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 11px;
    border-radius: 8px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .08);
    font-size: 13px;
    font-weight: 900;
}
.payment-symbol {
    width: 24px;
    height: 24px;
    display: inline-grid;
    place-items: center;
    border-radius: 7px;
    color: #12312b;
    background: linear-gradient(135deg, #f7f3ea, #f4ad34);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .58);
    flex: 0 0 auto;
}
.payment-symbol svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
}
.payment-symbol-paypal {
    color: #fff;
    background: linear-gradient(135deg, #1f72d2, #123a8f);
    font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
    font-size: 16px;
    line-height: 1;
}
.footer-year {
    grid-column: 1 / -1;
    color: rgba(255, 255, 255, .58);
    font-size: 13px;
}
.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 50;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    min-height: 56px;
    padding: 8px 15px 8px 8px;
    border-radius: 18px;
    color: #fff;
    background: linear-gradient(135deg, #25d366 0%, #0f9f78 100%);
    border: 1px solid rgba(255, 255, 255, .32);
    box-shadow: 0 18px 44px rgba(9, 124, 91, .28), inset 0 1px 0 rgba(255, 255, 255, .24);
    font-weight: 900;
    line-height: 1.1;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
    animation: whatsappBreathe 3.4s ease-in-out infinite;
}
.whatsapp-float::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, .34), transparent 34%);
    pointer-events: none;
}
.whatsapp-float:hover {
    text-decoration: none;
    animation-play-state: paused;
    transform: translateY(-3px);
    filter: saturate(1.06);
    box-shadow: 0 24px 56px rgba(9, 124, 91, .34), inset 0 1px 0 rgba(255, 255, 255, .28);
}
.whatsapp-icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .96);
    color: #128c7e;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .12);
}
.whatsapp-icon svg {
    width: 22px;
    height: 22px;
    display: block;
    fill: currentColor;
}
.whatsapp-copy {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    white-space: nowrap;
}
.whatsapp-title {
    font-size: 14px;
}
.whatsapp-subtitle {
    font-size: 11px;
    font-weight: 800;
    color: rgba(255, 255, 255, .82);
}
@keyframes whatsappBreathe {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}
@media (max-width: 1080px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .nav {
        min-height: 66px;
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        padding: 11px 0;
    }
    .nav-toggle { display: inline-flex; margin-left: auto; }
    .site-header .header-links {
        display: none;
        width: 100%;
        align-items: stretch;
        flex-direction: column;
        gap: 8px;
        padding: 8px 0 5px;
    }
    .site-header.nav-open .header-links { display: flex; }
    .site-header .header-links .pill,
    .site-header .header-links .btn {
        width: 100%;
        justify-content: center;
    }
}
@media (max-width: 820px) {
    .nav {
        min-height: 66px;
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        padding: 11px 0;
    }
    .nav-toggle { display: inline-flex; margin-left: auto; }
    .site-header .header-links {
        display: none;
        width: 100%;
        align-items: stretch;
        flex-direction: column;
        gap: 8px;
        padding: 8px 0 5px;
    }
    .site-header.nav-open .header-links { display: flex; }
    .site-header .header-links .pill,
    .site-header .header-links .btn {
        width: 100%;
        justify-content: center;
    }
    .footer-grid { grid-template-columns: 1fr; }
    .footer .nav-links { justify-content: flex-start; }
    .row { grid-template-columns: 1fr; }
    .checkout-summary,
    .stats-grid,
    .subscription-grid,
    .two-col { grid-template-columns: 1fr; }
    .shell { width: min(100% - 26px, 1160px); }
    .pill,
    .btn { min-height: 40px; }
    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        width: 56px;
        min-height: 56px;
        padding: 8px;
        justify-content: center;
        border-radius: 999px;
    }
    .whatsapp-copy { display: none; }
}

