/* =========================================================
   SYDNEY IPTV — DESIGN SYSTEM
   Australian premium light theme
   ========================================================= */

:root {
    /* Brand palette */
    --c-ocean: #0B5FAE;          /* Sydney Harbour blue — primary */
    --c-ocean-dark: #084785;
    --c-ocean-light: #E6F0FA;
    --c-coral: #FF6B47;          /* Sunset coral — CTA accent */
    --c-coral-dark: #E5532F;
    --c-eucalyptus: #2E8B6F;     /* Australian bush green */
    --c-gold: #F4B400;           /* Warm sand/gold */

    /* Neutrals */
    --c-ink: #0F1B2D;
    --c-text: #2A3547;
    --c-muted: #6B7689;
    --c-line: #E4E8EF;
    --c-bg: #FFFFFF;
    --c-bg-soft: #F7F9FC;
    --c-bg-warm: #FFF8F2;

    /* WhatsApp brand */
    --c-wa: #25D366;
    --c-wa-dark: #1DA851;

    /* Typography */
    --ff-head: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
    --ff-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

    /* Spacing & radius */
    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 22px;
    --r-pill: 999px;
    --shadow-sm: 0 2px 8px rgba(11,95,174,.06);
    --shadow-md: 0 10px 30px rgba(11,95,174,.10);
    --shadow-lg: 0 24px 60px rgba(11,95,174,.14);

    --container: 1200px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--ff-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--c-text);
    background: var(--c-bg);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-ocean); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--c-coral); }
h1, h2, h3, h4, h5, h6 {
    font-family: var(--ff-head);
    color: var(--c-ink);
    line-height: 1.2;
    font-weight: 800;
    margin: 0 0 .6em;
    letter-spacing: -.01em;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.55rem); }
p { margin: 0 0 1em; }
ul, ol { padding-left: 1.2em; }

/* Container */
.container { max-width: var(--container); margin: 0 auto; padding: 0 22px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 22px; }

/* Section base */
section { padding: 90px 0; }
.section-tight { padding: 60px 0; }
.section-soft { background: var(--c-bg-soft); }
.section-warm { background: var(--c-bg-warm); }
.section-ocean { background: linear-gradient(135deg, var(--c-ocean) 0%, var(--c-ocean-dark) 100%); color: #fff; }
.section-ocean h1, .section-ocean h2, .section-ocean h3 { color: #fff; }

.eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-weight: 700;
    font-size: .8rem;
    color: var(--c-coral);
    margin-bottom: 14px;
}
.section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section-head p { font-size: 1.08rem; color: var(--c-muted); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--r-pill);
    font-family: var(--ff-head);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all .25s ease;
    white-space: nowrap;
}
.btn-primary { background: var(--c-coral); color: #fff; box-shadow: 0 8px 20px rgba(255,107,71,.32); }
.btn-primary:hover { background: var(--c-coral-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(255,107,71,.4); }
.btn-secondary { background: var(--c-ocean); color: #fff; }
.btn-secondary:hover { background: var(--c-ocean-dark); color: #fff; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--c-ocean); border-color: var(--c-ocean); }
.btn-ghost:hover { background: var(--c-ocean); color: #fff; }
.btn-wa { background: var(--c-wa); color: #fff; box-shadow: 0 8px 20px rgba(37,211,102,.3); }
.btn-wa:hover { background: var(--c-wa-dark); color: #fff; transform: translateY(-2px); }
.btn-lg { padding: 17px 36px; font-size: 1.05rem; }
.btn-block { display: flex; justify-content: center; width: 100%; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.96);
    backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid var(--c-line);
}
.topbar {
    background: var(--c-ocean);
    color: #fff;
    font-size: .85rem;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; padding-top: 8px; padding-bottom: 8px; gap: 16px; flex-wrap: wrap; }
.topbar a { color: #fff; }
.topbar-links { display: flex; gap: 18px; }
.topbar-links span, .topbar-links a { display: inline-flex; align-items: center; gap: 6px; }

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 22px;
}
.site-logo img { max-height: 56px; width: auto; }
.site-logo .text-logo { font-family: var(--ff-head); font-weight: 800; font-size: 1.5rem; color: var(--c-ocean); }

.main-nav { display: flex; align-items: center; }
.main-nav ul { list-style: none; display: flex; gap: 6px; margin: 0; padding: 0; }
.main-nav a {
    display: block;
    padding: 10px 14px;
    color: var(--c-ink);
    font-weight: 600;
    border-radius: var(--r-sm);
    font-size: .95rem;
}
.main-nav a:hover, .main-nav .current-menu-item > a { color: var(--c-ocean); background: var(--c-ocean-light); }

.header-cta { display: flex; align-items: center; gap: 12px; }
.menu-toggle { display: none; background: transparent; border: 0; padding: 8px; cursor: pointer; }
.menu-toggle span { display: block; width: 26px; height: 3px; background: var(--c-ink); margin: 5px 0; border-radius: 2px; transition: .3s; }

@media (max-width: 1023px) {
    .menu-toggle { display: block; }
    .main-nav {
        position: fixed;
        top: 0; right: -100%;
        width: 320px; max-width: 85vw;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 28px 28px;
        box-shadow: var(--shadow-lg);
        transition: right .3s ease;
        overflow-y: auto;
    }
    .main-nav.is-open { right: 0; }
    .main-nav ul { flex-direction: column; width: 100%; gap: 0; }
    .main-nav a { padding: 14px 12px; border-bottom: 1px solid var(--c-line); }
    .header-cta .btn:not(.btn-wa) { display: none; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
    position: relative;
    padding: 90px 0 80px;
    background:
        radial-gradient(ellipse at 80% 0%, rgba(255,107,71,.10), transparent 60%),
        radial-gradient(ellipse at 0% 100%, rgba(11,95,174,.08), transparent 60%),
        linear-gradient(180deg, #FFFFFF 0%, #F7F9FC 100%);
    overflow: hidden;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--c-line);
    padding: 8px 16px;
    border-radius: var(--r-pill);
    font-size: .85rem;
    font-weight: 600;
    color: var(--c-ink);
    box-shadow: var(--shadow-sm);
    margin-bottom: 22px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--c-eucalyptus); box-shadow: 0 0 0 4px rgba(46,139,111,.18); }
.hero h1 { margin-bottom: 20px; }
.hero h1 .accent { color: var(--c-coral); }
.hero-lead { font-size: 1.15rem; color: var(--c-muted); max-width: 540px; margin-bottom: 32px; }
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-trust { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 10px; font-size: .92rem; color: var(--c-text); }
.hero-trust-item .icon { width: 28px; height: 28px; color: var(--c-eucalyptus); }
.hero-visual { position: relative; }
.hero-visual img { border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }
.hero-visual .floating-card {
    position: absolute;
    background: #fff;
    border-radius: var(--r-md);
    padding: 14px 18px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .9rem;
    font-weight: 600;
}
.hero-visual .fc-1 { top: 30px; left: -20px; }
.hero-visual .fc-2 { bottom: 30px; right: -10px; }
.fc-icon { width: 38px; height: 38px; border-radius: 10px; background: var(--c-ocean-light); color: var(--c-ocean); display: flex; align-items: center; justify-content: center; }

@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual .floating-card { display: none; }
}

/* =========================================================
   PRICING
   ========================================================= */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.price-card {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--r-lg);
    padding: 34px 26px;
    text-align: center;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    position: relative;
    display: flex; flex-direction: column;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--c-ocean-light); }
.price-card.popular { border-color: var(--c-coral); box-shadow: var(--shadow-md); transform: translateY(-6px); }
.popular-tag {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--c-coral); color: #fff;
    padding: 6px 18px; border-radius: var(--r-pill);
    font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}
.price-name { font-size: .9rem; text-transform: uppercase; letter-spacing: .12em; color: var(--c-muted); margin-bottom: 8px; }
.price-amount { font-family: var(--ff-head); font-size: 2.6rem; font-weight: 800; color: var(--c-ink); }
.price-amount .currency { font-size: 1.2rem; vertical-align: super; }
.price-period { color: var(--c-muted); font-size: .9rem; margin-bottom: 22px; }
.price-features { list-style: none; padding: 0; margin: 22px 0 28px; text-align: left; flex-grow: 1; }
.price-features li { padding: 8px 0 8px 28px; position: relative; font-size: .94rem; }
.price-features li::before {
    content: "✓"; position: absolute; left: 0; top: 8px;
    width: 20px; height: 20px; line-height: 20px; text-align: center;
    background: var(--c-eucalyptus); color: #fff; border-radius: 50%; font-size: .75rem; font-weight: 700;
}

@media (max-width: 1023px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pricing-grid { grid-template-columns: 1fr; } }

/* =========================================================
   FEATURE GRID (icon cards)
   ========================================================= */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.feat-card {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--r-lg);
    padding: 32px 28px;
    transition: transform .3s ease, box-shadow .3s ease;
}
.feat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feat-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--c-ocean-light), #fff);
    display: flex; align-items: center; justify-content: center;
    color: var(--c-ocean);
    margin-bottom: 20px;
    font-size: 26px;
}
.feat-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.feat-card p { color: var(--c-muted); margin: 0; font-size: .96rem; }
@media (max-width: 900px) { .feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .feat-grid { grid-template-columns: 1fr; } }

/* =========================================================
   SPLIT (image + text)
   ========================================================= */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-img img { border-radius: var(--r-lg); box-shadow: var(--shadow-md); }
.split-content h2 { margin-bottom: 18px; }
.split-bullets { list-style: none; padding: 0; margin: 22px 0; }
.split-bullets li { padding: 10px 0 10px 36px; position: relative; }
.split-bullets li::before {
    content: ""; position: absolute; left: 0; top: 14px;
    width: 22px; height: 22px;
    background: var(--c-coral);
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") no-repeat center / contain;
            mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") no-repeat center / contain;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 36px; } .split.reverse { direction: ltr; } }

/* =========================================================
   STEPS
   ========================================================= */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step-card { background: #fff; border-radius: var(--r-lg); padding: 32px 26px; border: 1px solid var(--c-line); position: relative; }
.step-card::before {
    counter-increment: step;
    content: counter(step, decimal-leading-zero);
    font-family: var(--ff-head);
    font-size: 2.4rem; font-weight: 800;
    color: var(--c-coral); opacity: .25;
    position: absolute; top: 14px; right: 22px;
}
.step-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step-card p { color: var(--c-muted); margin: 0; font-size: .94rem; }
@media (max-width: 900px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps-grid { grid-template-columns: 1fr; } }

/* =========================================================
   DEVICES ROW
   ========================================================= */
.devices-row {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 18px;
}
.device-pill {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--r-md);
    padding: 22px 12px;
    text-align: center;
    font-weight: 600;
    font-size: .85rem;
    color: var(--c-ink);
    transition: all .25s ease;
}
.device-pill:hover { border-color: var(--c-ocean); color: var(--c-ocean); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.device-icon { font-size: 1.8rem; display: block; margin-bottom: 8px; }
@media (max-width: 1023px) { .devices-row { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 560px) { .devices-row { grid-template-columns: repeat(2, 1fr); } }

/* =========================================================
   TESTIMONIALS (card grid, no JS carousel needed)
   ========================================================= */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--r-lg);
    padding: 30px;
    position: relative;
}
.testi-card::before {
    content: "“";
    font-family: Georgia, serif;
    font-size: 5rem;
    line-height: 1;
    color: var(--c-coral);
    opacity: .2;
    position: absolute;
    top: 8px;
    right: 24px;
}
.testi-stars { color: var(--c-gold); margin-bottom: 12px; letter-spacing: 2px; }
.testi-quote { font-size: 1rem; color: var(--c-text); }
.testi-author { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--c-ocean-light); color: var(--c-ocean); display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--ff-head); }
.testi-name { font-weight: 700; color: var(--c-ink); font-size: .95rem; }
.testi-loc { font-size: .82rem; color: var(--c-muted); }
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }

/* =========================================================
   STATS COUNTER
   ========================================================= */
.stats-strip {
    background: linear-gradient(135deg, var(--c-ocean) 0%, var(--c-ocean-dark) 100%);
    color: #fff;
    padding: 60px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat-num { font-family: var(--ff-head); font-size: 2.6rem; font-weight: 800; color: #fff; line-height: 1; }
.stat-label { color: rgba(255,255,255,.78); font-size: .92rem; margin-top: 6px; }
@media (max-width: 700px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; } }

/* =========================================================
   ACCORDION (FAQ)
   ========================================================= */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--r-md);
    margin-bottom: 14px;
    overflow: hidden;
}
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 56px 20px 24px;
    font-weight: 700;
    font-family: var(--ff-head);
    color: var(--c-ink);
    position: relative;
    font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 20px; top: 50%;
    transform: translateY(-50%);
    width: 32px; height: 32px; line-height: 30px;
    text-align: center;
    background: var(--c-ocean-light); color: var(--c-ocean);
    border-radius: 50%;
    font-weight: 700; font-size: 1.3rem;
    transition: transform .2s ease;
}
.faq-item[open] summary::after { content: "−"; background: var(--c-coral); color: #fff; }
.faq-answer { padding: 0 24px 22px; color: var(--c-text); }

/* =========================================================
   COMPARISON TABLE
   ========================================================= */
.compare-wrap { overflow-x: auto; }
.compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.compare-table th, .compare-table td { padding: 18px 22px; text-align: left; border-bottom: 1px solid var(--c-line); }
.compare-table thead th { background: var(--c-ocean); color: #fff; font-weight: 700; }
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table .yes { color: var(--c-eucalyptus); font-weight: 700; }
.compare-table .no { color: #C84444; font-weight: 700; }

/* =========================================================
   CHANNELS SHOWCASE
   ========================================================= */
.channel-cats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 50px; }
.cat-pill {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--r-md);
    padding: 22px 18px;
    text-align: center;
    transition: all .25s ease;
}
.cat-pill:hover { background: var(--c-ocean-light); border-color: var(--c-ocean); transform: translateY(-3px); }
.cat-pill .num { font-family: var(--ff-head); font-size: 1.9rem; font-weight: 800; color: var(--c-coral); }
.cat-pill .label { font-weight: 600; color: var(--c-ink); margin-top: 4px; }
@media (max-width: 700px) { .channel-cats { grid-template-columns: repeat(2, 1fr); } }

.country-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.country-flag {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--r-sm);
    padding: 14px 10px;
    text-align: center;
    font-size: .85rem;
    font-weight: 600;
    color: var(--c-ink);
}
.country-flag .emoji { font-size: 1.6rem; display: block; margin-bottom: 4px; }
@media (max-width: 700px) { .country-grid { grid-template-columns: repeat(3, 1fr); } }

/* =========================================================
   CTA BANNER
   ========================================================= */
.cta-banner {
    background: linear-gradient(135deg, var(--c-coral) 0%, #FF8E5C 100%);
    color: #fff;
    border-radius: var(--r-lg);
    padding: 60px 50px;
    text-align: center;
    box-shadow: 0 30px 60px rgba(255,107,71,.25);
}
.cta-banner h2 { color: #fff; margin-bottom: 14px; }
.cta-banner p { font-size: 1.1rem; opacity: .95; max-width: 640px; margin: 0 auto 28px; }
.cta-banner .btn { background: #fff; color: var(--c-coral); }
.cta-banner .btn:hover { background: var(--c-ink); color: #fff; }
@media (max-width: 700px) { .cta-banner { padding: 44px 26px; } }

/* =========================================================
   PAGE HEADER (inner pages)
   ========================================================= */
.page-header {
    background:
        radial-gradient(ellipse at 90% 0%, rgba(255,107,71,.12), transparent 60%),
        linear-gradient(180deg, var(--c-ocean-light) 0%, #fff 100%);
    padding: 70px 0 60px;
    text-align: center;
    border-bottom: 1px solid var(--c-line);
}
.page-header h1 { margin-bottom: 14px; }
.page-header p { color: var(--c-muted); max-width: 720px; margin: 0 auto; font-size: 1.05rem; }
.breadcrumb { color: var(--c-muted); font-size: .88rem; margin-bottom: 16px; }
.breadcrumb a { color: var(--c-ocean); }
.breadcrumb .sep { margin: 0 8px; }

/* =========================================================
   CONTENT BLOCK (legal pages, about, etc.)
   ========================================================= */
.content-block {
    background: #fff;
    max-width: 880px;
    margin: 0 auto;
    padding: 0;
}
.content-block h2 { margin-top: 40px; }
.content-block h3 { margin-top: 26px; }
.content-block ul, .content-block ol { margin: 0 0 1.2em; }
.content-block li { padding: 4px 0; }

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px; align-items: start; }
.contact-info-card {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--r-lg);
    padding: 32px;
    margin-bottom: 22px;
    box-shadow: var(--shadow-sm);
}
.contact-info-card h3 { font-size: 1.15rem; margin-bottom: 16px; }
.contact-row { display: flex; gap: 14px; align-items: flex-start; padding: 12px 0; border-bottom: 1px dashed var(--c-line); }
.contact-row:last-child { border-bottom: 0; }
.contact-row .icon { width: 42px; height: 42px; flex-shrink: 0; border-radius: 12px; background: var(--c-ocean-light); color: var(--c-ocean); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.contact-row .label { font-size: .8rem; color: var(--c-muted); text-transform: uppercase; letter-spacing: .08em; }
.contact-row .val { font-weight: 600; color: var(--c-ink); }
.contact-form-wrap {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--r-lg);
    padding: 36px;
    box-shadow: var(--shadow-sm);
}
.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-weight: 600; margin-bottom: 6px; font-size: .9rem; color: var(--c-ink); }
.form-row input, .form-row textarea, .form-row select {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--c-line);
    border-radius: var(--r-sm);
    font-family: var(--ff-body);
    font-size: 1rem;
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
    outline: 0;
    border-color: var(--c-ocean);
    box-shadow: 0 0 0 3px rgba(11,95,174,.12);
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* =========================================================
   BLOG
   ========================================================= */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
    display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-img { aspect-ratio: 16/10; overflow: hidden; background: var(--c-ocean-light); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 24px; flex-grow: 1; display: flex; flex-direction: column; }
.blog-meta { font-size: .82rem; color: var(--c-muted); margin-bottom: 10px; display: flex; gap: 14px; }
.blog-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.blog-card h3 a { color: var(--c-ink); }
.blog-card h3 a:hover { color: var(--c-ocean); }
.blog-card-excerpt { color: var(--c-muted); font-size: .94rem; flex-grow: 1; }
.blog-card-link { margin-top: 16px; font-weight: 700; color: var(--c-coral); display: inline-flex; align-items: center; gap: 6px; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .blog-grid { grid-template-columns: 1fr; } }

.single-article { max-width: 820px; margin: 0 auto; }
.single-article .featured-img { border-radius: var(--r-lg); overflow: hidden; margin-bottom: 30px; box-shadow: var(--shadow-md); }
.single-article h1 { margin-bottom: 16px; }
.single-meta { display: flex; gap: 18px; color: var(--c-muted); font-size: .92rem; margin-bottom: 28px; padding-bottom: 22px; border-bottom: 1px solid var(--c-line); }
.single-content { font-size: 1.05rem; line-height: 1.8; }
.single-content h2 { font-size: 1.7rem; margin-top: 36px; }
.single-content h3 { font-size: 1.3rem; margin-top: 28px; }
.single-content blockquote {
    border-left: 4px solid var(--c-coral);
    background: var(--c-bg-warm);
    padding: 18px 22px;
    border-radius: 0 var(--r-md) var(--r-md) 0;
    margin: 22px 0;
    font-style: italic;
    color: var(--c-ink);
}
.single-content img { border-radius: var(--r-md); margin: 22px 0; }
.post-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 32px; }
.post-tags a { background: var(--c-ocean-light); color: var(--c-ocean); padding: 6px 14px; border-radius: var(--r-pill); font-size: .82rem; font-weight: 600; }

.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 50px; }
.pagination a, .pagination span {
    min-width: 42px; height: 42px; line-height: 42px; padding: 0 14px;
    border-radius: var(--r-sm); text-align: center; font-weight: 700;
    background: #fff; border: 1px solid var(--c-line); color: var(--c-ink);
}
.pagination .current { background: var(--c-ocean); color: #fff; border-color: var(--c-ocean); }
.pagination a:hover { background: var(--c-ocean-light); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
    background: var(--c-ink);
    color: rgba(255,255,255,.78);
    padding: 70px 0 0;
    margin-top: 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
}
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; text-transform: uppercase; letter-spacing: .08em; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { padding: 6px 0; }
.footer-col a { color: rgba(255,255,255,.78); }
.footer-col a:hover { color: var(--c-coral); }
.footer-brand .text-logo { color: #fff; font-family: var(--ff-head); font-weight: 800; font-size: 1.5rem; margin-bottom: 14px; display: block; }
.footer-brand img { max-height: 50px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: .94rem; line-height: 1.7; }
.footer-contact-row { display: flex; gap: 10px; align-items: flex-start; padding: 6px 0; font-size: .92rem; }
.footer-contact-row .icon { color: var(--c-coral); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    font-size: .88rem;
}
.footer-payments { display: flex; gap: 10px; opacity: .7; }
.footer-payments span { background: rgba(255,255,255,.08); padding: 6px 12px; border-radius: var(--r-sm); font-size: .82rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; gap: 30px; } }

/* =========================================================
   FLOATING WHATSAPP BUTTON
   ========================================================= */
.float-wa {
    position: fixed;
    bottom: 22px; right: 22px;
    background: var(--c-wa);
    color: #fff;
    padding: 14px 22px 14px 18px;
    border-radius: var(--r-pill);
    box-shadow: 0 12px 30px rgba(37,211,102,.4);
    display: flex; align-items: center; gap: 10px;
    z-index: 90;
    font-weight: 700;
    font-family: var(--ff-head);
    transition: all .3s ease;
}
.float-wa:hover { background: var(--c-wa-dark); color: #fff; transform: translateY(-3px) scale(1.03); }
.float-wa svg { width: 24px; height: 24px; flex-shrink: 0; }
@media (max-width: 560px) {
    .float-wa { padding: 12px 18px 12px 14px; font-size: .9rem; bottom: 14px; right: 14px; }
    .float-wa .label-text { display: none; }
    .float-wa { padding: 14px; }
}

/* =========================================================
   UTILITY
   ========================================================= */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-3 { margin-top: 30px; }
.mb-3 { margin-bottom: 30px; }
.gap-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* Skip link for a11y */
.skip-link { position: absolute; left: -9999px; top: 0; }
.skip-link:focus { left: 10px; top: 10px; background: var(--c-ocean); color: #fff; padding: 10px 16px; border-radius: 8px; z-index: 200; }

/* Image placeholder */
.img-ph {
    background: linear-gradient(135deg, var(--c-ocean-light), #fff);
    color: var(--c-ocean);
    border: 2px dashed rgba(11,95,174,.3);
    border-radius: var(--r-md);
    display: flex; align-items: center; justify-content: center;
    aspect-ratio: 16/10;
    font-weight: 700; font-size: .9rem; text-align: center; padding: 20px;
}

/* =========================================================
   EXTENSIONS — added for legal pages, subscription, trial
   ========================================================= */

/* utility text */
.muted-small { font-size: .85rem; color: var(--c-muted); margin-top: 8px; }
.eyebrow-light { color: rgba(255,255,255,.92); }

/* page header tight variant */
.page-header-tight { padding: 60px 0 40px; }
.page-header .header-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.page-header .header-cta .btn { display: inline-flex; }

/* legal documents */
.legal-doc { font-size: 1rem; line-height: 1.75; color: var(--c-text); }
.legal-doc h2 { margin-top: 36px; margin-bottom: 14px; font-size: 1.5rem; color: var(--c-ink); padding-top: 8px; border-top: 1px solid var(--c-line); }
.legal-doc h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.legal-doc h3 { margin-top: 24px; margin-bottom: 10px; font-size: 1.2rem; color: var(--c-ink); }
.legal-doc p { margin: 0 0 14px; }
.legal-doc ul, .legal-doc ol { margin: 0 0 16px; padding-left: 22px; }
.legal-doc li { margin-bottom: 8px; }
.legal-doc a { color: var(--c-ocean); text-decoration: underline; }
.legal-doc a:hover { color: var(--c-ocean-dark); }
.legal-doc strong { color: var(--c-ink); }
.legal-doc em { color: var(--c-muted); }

/* numbered list */
.numbered-list { list-style: decimal; padding-left: 22px; margin: 0 0 16px; }
.numbered-list li { margin-bottom: 10px; line-height: 1.7; }
.numbered-list strong { color: var(--c-ink); }

/* callouts */
.callout {
    border-radius: var(--r-lg);
    padding: 28px 32px;
    margin: 12px 0 24px;
    background: var(--c-bg-soft);
    border-left: 4px solid var(--c-ocean);
    display: flex; gap: 18px; align-items: flex-start;
}
.callout-success { background: #EAF7F1; border-left-color: var(--c-eucalyptus); }
.callout-trial { background: var(--c-bg-warm); border-left-color: var(--c-coral); }
.callout-icon { font-size: 2.2rem; flex-shrink: 0; line-height: 1; }
.callout h3 { margin: 0 0 8px; font-size: 1.2rem; color: var(--c-ink); }
.callout p { margin: 0; color: var(--c-text); line-height: 1.7; }
.callout-body { flex: 1; }

/* pricing fine print */
.pricing-fine {
    text-align: center;
    margin-top: 28px;
    color: var(--c-muted);
    font-size: .92rem;
}
.pricing-fine a { color: var(--c-ocean); text-decoration: underline; }

/* pricing grid - 4 columns variant */
.pricing-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 24px;
}
@media (max-width: 1100px) {
    .pricing-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .pricing-grid-4 { grid-template-columns: 1fr; }
}

/* price equiv badge inside price card */
.price-equiv {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 12px;
    background: var(--c-ocean-light);
    color: var(--c-ocean-dark);
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 600;
}
.popular .price-equiv {
    background: rgba(255,255,255,.18);
    color: #fff;
}

/* payment methods grid */
.payments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}
@media (max-width: 800px) { .payments-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .payments-grid { grid-template-columns: 1fr; } }
.payment-card {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--r-md);
    padding: 20px 24px;
    display: flex; flex-direction: column; gap: 4px;
    transition: all .2s ease;
}
.payment-card:hover { border-color: var(--c-ocean); transform: translateY(-2px); }
.payment-card strong { color: var(--c-ink); font-size: 1.02rem; }
.payment-card span { color: var(--c-muted); font-size: .88rem; }

/* CTA banner variants */
.cta-banner-coral {
    background: linear-gradient(135deg, var(--c-coral) 0%, var(--c-coral-dark) 100%);
}
.cta-banner-trial {
    background: linear-gradient(135deg, var(--c-ocean) 0%, var(--c-ocean-dark) 100%);
}
.cta-banner .cta-buttons {
    display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
    margin-top: 12px;
}
.cta-fine {
    margin-top: 18px;
    color: rgba(255,255,255,.85);
    font-size: .92rem;
}

/* btn-ghost-light for use inside dark CTA banners */
.btn-ghost-light {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,.55);
}
.btn-ghost-light:hover {
    background: rgba(255,255,255,.12);
    border-color: #fff;
    color: #fff;
}

/* =========================================================
   FREE TRIAL HERO
   ========================================================= */
.trial-hero {
    background: linear-gradient(135deg, var(--c-ocean) 0%, var(--c-ocean-dark) 100%);
    color: #fff;
    padding: 80px 0 70px;
    position: relative;
    overflow: hidden;
}
.trial-hero::before {
    content: '';
    position: absolute;
    top: -10%; right: -10%; width: 50%; height: 120%;
    background: radial-gradient(circle, rgba(255,107,71,.25) 0%, transparent 70%);
    pointer-events: none;
}
.trial-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 56px;
    align-items: center;
    position: relative; z-index: 1;
}
.trial-hero-text h1 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 2.85rem);
    line-height: 1.15;
    margin: 16px 0 18px;
    letter-spacing: -0.02em;
}
.trial-hero-text .lead {
    color: rgba(255,255,255,.92);
    font-size: 1.12rem;
    margin-bottom: 28px;
    line-height: 1.6;
}
.trial-hero-text .hero-cta {
    display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px;
}
.trial-hero-text .eyebrow {
    background: rgba(255,255,255,.15);
    color: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    display: inline-block;
    font-size: .85rem;
    letter-spacing: .04em;
}
.hero-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 24px;
}
.hero-bullets li {
    color: rgba(255,255,255,.95);
    font-size: .98rem;
}
.trial-hero-media img {
    width: 100%;
    border-radius: var(--r-lg);
    box-shadow: 0 30px 60px rgba(0,0,0,.35);
}
@media (max-width: 900px) {
    .trial-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-bullets { grid-template-columns: 1fr; }
}

/* =========================================================
   TRUST STRIP (trial page)
   ========================================================= */
.trust-strip {
    background: #fff;
    border-bottom: 1px solid var(--c-line);
    padding: 40px 0;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.trust-item .trust-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--c-ocean);
    font-family: var(--font-head);
    letter-spacing: -0.02em;
}
.trust-item .trust-label {
    color: var(--c-muted);
    font-size: .92rem;
    margin-top: 4px;
}
@media (max-width: 700px) {
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-item .trust-num { font-size: 1.7rem; }
}
