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

:root {
    --navy:        #0c2044;
    --navy-deep:   #081733;
    --navy-mid:    #112c55;
    --navy-light:  #1a3f73;
    --red:         #c8232c;
    --red-hover:   #a91d24;
    --white:       #ffffff;
    --off-white:   #f5f6f9;
    --pale:        #eaecf1;
    --text:        #1e293b;
    --text-mid:    #475569;
    --text-muted:  #64748b;
    --border:      #e2e5eb;
    --shadow-sm:   0 1px 3px rgba(12,32,68,.06);
    --shadow-md:   0 4px 20px rgba(12,32,68,.10);
    --shadow-lg:   0 12px 40px rgba(12,32,68,.18);
    --font-head:   'Outfit', sans-serif;
    --font-body:   'Plus Jakarta Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text);
    font-size: 17px;
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    background: var(--white);
}

img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ── Scroll-reveal animation ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(.22,.61,.36,1), transform 0.7s cubic-bezier(.22,.61,.36,1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ── Buttons ── */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(.22,.61,.36,1);
    border: 2px solid transparent;
    text-align: center;
}
.btn-red {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}
.btn-red:hover {
    background: var(--red-hover);
    border-color: var(--red-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200,35,44,.3);
}
.btn-navy-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}
.btn-navy-outline:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-block { display: block; width: 100%; }

/* ══════════════════════════════════════
   SITE HEADER
══════════════════════════════════════ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    box-shadow: 0 1px 6px rgba(12,32,68,.06);
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 36px;
    width: 100%;
}

.logo-img {
    height: 38px;
    width: auto;
    flex-shrink: 0;
}

.logo-tagline {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--navy);
    white-space: nowrap;
    letter-spacing: -0.2px;
}
.logo-tagline strong {
    color: var(--red);
    font-weight: 700;
}

.btn-header-cta {
    padding: 10px 24px;
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    white-space: nowrap;
}
.btn-header-cta:hover {
    background: var(--red-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(200,35,44,.25);
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
    background: var(--white);
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 40px 24px 56px;
}

/* "Built for Canadian Businesses" pill badge */
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 22px;
    border: 1.5px solid var(--border);
    border-radius: 40px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 32px;
    background: var(--white);
}
.hero__badge i {
    font-size: 14px;
    color: var(--red);
}

/* Maple leaf decorations */
.hero__leaf {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}
/* Left leaf: bottom-left, near content */
.hero__leaf--left {
    width: 180px;
    bottom: 60px;
    left: calc(50% - 520px);
}
/* Right leaf: top-right, larger, near content */
.hero__leaf--right {
    width: 250px;
    top: 140px;
    right: calc(50% - 560px);
}

.hero__inner {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin: 0 auto;
}

.hero__title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    line-height: 1.12;
    color: var(--navy);
    text-transform: uppercase;
    margin-bottom: 28px;
    letter-spacing: -0.3px;
}
.hero__title .red {
    color: var(--red);
}

.hero__video {
    max-width: 620px;
    margin: 0 auto 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    cursor: pointer;
}
.hero__video img { width: 100%; display: block; }
.hero__video iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
}

/* Play button */
.hero__video::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 60px; height: 60px;
    background-color: rgba(0,0,0,.55);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 55% 50%;
    background-size: 24px;
    transition: transform 0.3s, background-color 0.3s;
}
.hero__video:hover::after {
    transform: translate(-50%,-50%) scale(1.1);
    background-color: rgba(0,0,0,.7);
}
/* Hide play button when video is playing */
.hero__video:not(:has(img))::after {
    display: none;
}

.hero__desc {
    font-size: 1rem;
    line-height: 1.72;
    color: var(--text-mid);
    max-width: 600px;
    margin: 0 auto 28px;
}

.hero__cta { margin-bottom: 16px; }

.hero__sub {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
}

.hero__sub-light {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ══════════════════════════════════════
   STATS BAR
══════════════════════════════════════ */
.stats {
    position: relative;
    padding: 36px 24px;
    overflow: hidden;
}
.stats__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.stats__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.stats__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(200, 35, 44, 0.82);
}

.stats__grid {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.stats__item {
    text-align: center;
    color: var(--white);
    padding: 20px 18px;
    background: rgba(0, 0, 0, 0.30);
    border-radius: 6px;
}

.stats__item h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.45;
}
.stats__item p {
    font-size: 0.76rem;
    color: rgba(255,255,255,.5);
    line-height: 1.35;
}

/* ══════════════════════════════════════
   AS A BUSINESS OWNER
══════════════════════════════════════ */
.bizowner {
    position: relative;
    padding: 48px 24px 44px;
    overflow: hidden;
}

.bizowner__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.bizowner__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}
/* White fade from left to reveal image on right */
.bizowner__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(255,255,255,0.98) 0%,
        rgba(255,255,255,0.96) 40%,
        rgba(255,255,255,0.65) 65%,
        rgba(255,255,255,0.10) 100%
    );
}

.bizowner__inner {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
}

.bizowner__text {
    max-width: 520px;
}

.bizowner__text h2 {
    font-family: var(--font-body);
    font-size: clamp(1.6rem, 3vw, 2.15rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.32;
    margin-bottom: 24px;
}

.arrow-list-biz { list-style: none; margin-bottom: 28px; }
.arrow-list-biz li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    font-size: 0.98rem;
    color: var(--text-mid);
    line-height: 1.5;
}
.arrow-list-biz li::before {
    content: '\2192';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--text-mid);
    font-weight: 700;
    font-size: 0.95rem;
}

.bizowner__note {
    font-size: 0.98rem;
    color: var(--text-mid);
    line-height: 1.6;
}

/* ══════════════════════════════════════
   WHAT MAKES THIS DIFFERENT
══════════════════════════════════════ */
.different {
    background: var(--off-white);
    padding: 72px 24px 56px;
    border-top: 1px solid var(--border);
}

.sec-heading {
    text-align: center;
    margin-bottom: 12px;
}
.sec-heading h2 {
    font-family: var(--font-head);
    font-size: clamp(1.65rem, 3vw, 2.2rem);
    font-weight: 400;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.sec-heading h2 .red {
    color: var(--red);
    font-weight: 700;
}

.sec-sub {
    text-align: center;
    font-size: 0.98rem;
    color: var(--text-mid);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.diff-cards {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.diff-card {
    background: var(--navy);
    border-radius: 8px;
    padding: 32px 28px 36px;
    transition: box-shadow 0.3s, transform 0.3s;
}
.diff-card:hover {
    box-shadow: 0 12px 36px rgba(12,32,68,.35);
    transform: translateY(-3px);
}

.diff-card h3 {
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    padding-bottom: 14px;
    margin-bottom: 18px;
    border-bottom: 2px solid rgba(255,255,255,.25);
}

.dot-list { list-style: none; }
.dot-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 14px;
    font-size: 0.98rem;
    color: rgba(255,255,255,.88);
    line-height: 1.55;
}
.dot-list li:last-child { margin-bottom: 0; }
.dot-list li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    top: 0;
    color: rgba(255,255,255,.88);
    font-size: 1rem;
}

.diff-footnote {
    text-align: center;
    font-size: 0.98rem;
    color: var(--text-mid);
    max-width: 560px;
    margin: 40px auto 0;
    line-height: 1.6;
}

/* ══════════════════════════════════════
   WHAT YOU GET
══════════════════════════════════════ */
.whatyouget {
    position: relative;
    padding: 72px 24px 64px;
    overflow: hidden;
}
.whatyouget__bg {
    position: absolute;
    inset: 0; z-index: 0;
}
.whatyouget__bg img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.whatyouget__bg::after {
    content: '';
    position: absolute; inset: 0;
    background: rgba(255,255,255,0.78);
}

.whatyouget__inner {
    position: relative; z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
}

.whatyouget .sec-heading h2 {
    color: var(--navy);
}
.whatyouget .sec-heading h2 .red {
}

.wyg-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.wyg-block {
    background: rgba(255,255,255,0.72);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 28px 28px 32px;
}

.wyg-block h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    padding-bottom: 12px;
    margin-bottom: 14px;
    border-bottom: 1px solid var(--border);
}
.wyg-block ul { list-style: none; }
.wyg-block ul li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 12px;
    font-size: 0.98rem;
    color: var(--text);
    line-height: 1.55;
}
.wyg-block ul li:last-child { margin-bottom: 0; }
.wyg-block ul li::before {
    content: '\2022';
    position: absolute;
    left: 0; top: 0;
    color: var(--text);
    font-size: 1rem;
}

.wyg-cta {
    text-align: center;
    margin-top: 48px;
}

.wyg-sub {
    text-align: center;
    font-size: 0.9rem;
    color: var(--navy);
    margin-top: 12px;
}

/* ══════════════════════════════════════
   MEMBERSHIP PLANS
══════════════════════════════════════ */
.membership {
    position: relative;
    padding: 72px 24px;
    overflow: hidden;
}

.membership__bg {
    position: absolute; inset: 0; z-index: 0;
}
.membership__bg img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.membership__bg::after {
    content: '';
    position: absolute; inset: 0;
    background: rgba(12, 32, 68, 0.88);
}

.membership__leaf {
    position: absolute;
    z-index: 1;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 55%;
    max-width: 600px;
    opacity: 0.06;
    pointer-events: none;
}

.membership__inner {
    position: relative; z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
}

.membership .sec-heading h2 { color: var(--white); }
.membership .sec-sub { color: rgba(255,255,255,.68); }

.plans-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.plan {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.25);
    display: flex;
    flex-direction: column;
}
.plan ul {
    flex: 1;
}

.plan__badge {
    display: block;
    padding: 12px 14px;
    font-family: var(--font-body);
    font-size: 0.98rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.3px;
    background: var(--navy);
    color: var(--white);
}
.plan__badge--red {
    background: var(--red);
}

.plan__price {
    font-family: var(--font-head);
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--navy);
    padding: 22px 24px 14px;
    line-height: 1;
}

.plan ul {
    list-style: none;
    padding: 0 28px 48px;
}
.plan ul li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
    font-size: 0.98rem;
    color: var(--text);
    line-height: 1.5;
}
.plan ul li:last-child { margin-bottom: 0; }
.plan ul li::before {
    content: '\2022';
    position: absolute;
    left: 0; top: 0;
    color: var(--text);
    font-size: 1rem;
}

.membership__cta {
    text-align: center;
    margin-top: 40px;
}

.membership__note {
    text-align: center;
    font-size: 0.88rem;
    color: rgba(255,255,255,.6);
    margin-top: 16px;
}

/* ══════════════════════════════════════
   PREVIEW EXPERIENCE
══════════════════════════════════════ */
.preview {
    position: relative;
    padding: 72px 24px;
    overflow: hidden;
}

.preview__bg {
    position: absolute; inset: 0; z-index: 0;
}
.preview__bg img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.preview__bg::after {
    content: '';
    position: absolute; inset: 0;
    background: rgba(255, 255, 255, 0.82);
}

.preview__inner {
    position: relative; z-index: 2;
    max-width: 680px;
    margin: 0 auto;
}

.preview .sec-heading h2 {
    color: var(--navy);
}

.preview__sub {
    text-align: center;
    font-size: 0.98rem;
    color: var(--text-mid);
    margin-bottom: 28px;
}

.preview__label {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.preview__checklist {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
}

.preview__check-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 14px 20px;
}

.preview__check-text {
    font-size: 1rem;
    color: var(--red);
    position: relative;
    padding-left: 18px;
}
.preview__check-text::before {
    content: '\2022';
    position: absolute;
    left: 0; top: 0;
    color: var(--red);
    font-size: 1rem;
}

.preview__check-icon {
    color: #22c55e;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-left: 16px;
}

.preview__fine {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ══════════════════════════════════════
   GET EARLY ACCESS
══════════════════════════════════════ */
.early {
    background: var(--navy-deep);
    padding: 64px 24px;
    text-align: center;
    color: var(--white);
}

.early__inner {
    max-width: 680px;
    margin: 0 auto;
}

.early h2 {
    font-family: var(--font-head);
    font-size: clamp(1.65rem, 3vw, 2.2rem);
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}
.early h2 .red { color: var(--red); font-weight: 700; }

.early__subtitle {
    font-size: 0.98rem;
    color: rgba(255,255,255,.7);
    margin-bottom: 6px;
}

.early__desc {
    font-size: 0.98rem;
    color: rgba(255,255,255,.6);
    line-height: 1.65;
    margin-bottom: 28px;
}

.early__fine {
    font-size: 0.88rem;
    color: rgba(255,255,255,.5);
    margin-top: 16px;
    line-height: 1.5;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
    background: #0a1a35;
    color: rgba(255,255,255,.55);
    padding: 20px 24px;
    font-size: 0.88rem;
    border-top: 1px solid rgba(255,255,255,.08);
}
.footer__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer__col {
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer__icon {
    font-size: 1.1rem;
    color: var(--red);
}
.footer a {
    color: rgba(255,255,255,.55);
    text-decoration: none;
    transition: color 0.2s;
}
.footer a:hover { color: var(--white); }
.footer__social {
    display: flex;
    gap: 12px;
    align-items: center;
}
.footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}
.footer__social a:hover {
    opacity: 0.8;
}
.footer__social a img {
    width: 28px;
    height: 28px;
    display: block;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */

/* ── Tablet landscape & small desktop ── */
@media (max-width: 1200px) {
    .hero__leaf--left  { width: 150px; left: calc(50% - 460px); }
    .hero__leaf--right { width: 210px; right: calc(50% - 480px); }
}

@media (max-width: 1024px) {
    /* Header */
    .logo-tagline { display: none; }
    .logo-img { height: 32px; }
    .header-main { padding: 14px 24px; }

    /* Hero */
    .hero { padding: 36px 20px 48px; }
    .hero__leaf--left  { width: 120px; bottom: 30px; left: 10px; }
    .hero__leaf--right { width: 160px; top: 80px; right: 5px; }
    .hero__inner { max-width: 680px; }

    /* Stats */
    .stats { padding: 20px 20px; }

    /* Sections */
    .bizowner { padding: 48px 20px; }

    .different { padding: 56px 20px; }
    .diff-cards { max-width: 960px; }

    .whatyouget { padding: 56px 20px; }
    .membership { padding: 56px 20px; }

    /* Plans 2-col */
    .plans-row { grid-template-columns: 1fr 1fr; }
    .plans-row .plan:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        justify-self: center;
        width: 100%;
    }

    .preview { padding: 56px 20px; }
    .early { padding: 52px 20px; }
}

/* ── Tablet portrait ── */
@media (max-width: 768px) {
    /* Header */
    .header-main { padding: 12px 16px; }
    .logo-img { height: 28px; }
    .btn-header-cta { padding: 8px 16px; font-size: 0.75rem; }

    /* Hero */
    .hero { padding: 32px 16px 32px; }
    .hero__title { font-size: clamp(1.6rem, 4.5vw, 2.4rem); margin-bottom: 24px; }
    .hero__badge { padding: 6px 16px; font-size: 0.72rem; margin-bottom: 24px; }
    .hero__leaf--left  { width: 85px; bottom: 20px; left: 5px; opacity: 0.5; }
    .hero__leaf--right { width: 105px; top: 20px; right: 0; opacity: 0.5; }
    .hero__video { max-width: 100%; margin-bottom: 28px; }
    .hero__video::after { width: 48px; height: 48px; background-size: 20px; }
    .hero__desc { font-size: 0.84rem; margin-bottom: 24px; }
    .hero__cta .btn { padding: 12px 24px; font-size: 0.8rem; }

    /* Stats */
    .stats { padding: 24px 16px; }
    .stats__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .stats__item { padding: 16px 14px; }
    .stats__item h4 { font-size: 0.74rem; }

    /* Business Owner */
    .bizowner { padding: 44px 16px; }
    .bizowner__text { max-width: 100%; }
    .bizowner__text h2 { font-size: 1.3rem; }
    .arrow-list-biz li { font-size: 0.82rem; }
    .bizowner__bg::after {
        background: linear-gradient(
            to right,
            rgba(255,255,255,0.97) 0%,
            rgba(255,255,255,0.95) 50%,
            rgba(255,255,255,0.75) 80%,
            rgba(255,255,255,0.5) 100%
        );
    }

    /* What Makes Different */
    .different { padding: 48px 16px; }
    .diff-cards { grid-template-columns: 1fr; gap: 16px; }
    .diff-card { padding: 28px 24px; }
    .diff-card h3 { font-size: 1.05rem; }
    .dot-list li { font-size: 0.8rem; }

    /* What You Get */
    .whatyouget { padding: 48px 16px; }
    .wyg-grid { grid-template-columns: 1fr; gap: 16px; }
    .wyg-block { padding: 24px 22px 28px; }
    .wyg-block h3 { font-size: 1rem; }

    /* Membership Plans */
    .membership { padding: 48px 16px; }
    .plans-row {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    .plans-row .plan:last-child {
        grid-column: auto;
        max-width: none;
    }
    .plan__price { font-size: 1.8rem; }

    /* Preview */
    .preview { padding: 48px 16px; }
    .preview__check-item { padding: 12px 16px; }
    .preview__check-text { font-size: 0.82rem; }

    /* Early Access */
    .early { padding: 48px 16px; }
    .early h2 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
    .early__desc { font-size: 0.82rem; }

    /* Footer */
    .footer { padding: 18px 16px; }
    .footer__inner { flex-direction: column; text-align: center; gap: 14px; }
    .footer__social { justify-content: center; }
}

/* ── Mobile ── */
@media (max-width: 480px) {
    /* Header */
    .header-main { padding: 10px 12px; }
    .logo-img { height: 24px; }
    .btn-header-cta { padding: 7px 12px; font-size: 0.7rem; }

    /* Hero */
    .hero { padding: 24px 12px 28px; }
    .hero__title { font-size: 1.45rem; margin-bottom: 20px; letter-spacing: -0.3px; }
    .hero__badge { padding: 5px 14px; font-size: 0.68rem; margin-bottom: 18px; gap: 5px; }
    .hero__badge i { font-size: 12px; }
    .hero__leaf--left  { width: 55px; bottom: 10px; left: 2px; opacity: 0.35; }
    .hero__leaf--right { width: 65px; top: 10px; right: 2px; opacity: 0.35; }
    .hero__video::after { width: 40px; height: 40px; background-size: 16px; }
    .hero__desc { font-size: 0.78rem; margin-bottom: 20px; line-height: 1.6; }
    .hero__sub { font-size: 0.74rem; }
    .hero__sub-light { font-size: 0.72rem; }

    /* Buttons full-width on mobile */
    .btn { display: block; width: 100%; padding: 12px 20px; font-size: 0.78rem; }
    .hero__cta .btn { padding: 13px 20px; }

    /* Stats */
    .stats { padding: 16px 12px; }
    .stats__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .stats__item { padding: 14px 10px; }
    .stats__item h4 { font-size: 0.68rem; }

    /* Business Owner */
    .bizowner { padding: 32px 12px; }
    .bizowner__text h2 { font-size: 1.15rem; margin-bottom: 18px; }
    .arrow-list-biz li { font-size: 0.78rem; margin-bottom: 7px; }
    .bizowner__note { font-size: 0.78rem; }

    /* What Makes Different */
    .different { padding: 36px 12px; }
    .sec-heading h2 { font-size: 1.3rem; }
    .sec-sub { font-size: 0.78rem; margin-bottom: 28px; }
    .diff-card { padding: 22px 18px; }
    .diff-card h3 { font-size: 0.95rem; padding-bottom: 12px; margin-bottom: 14px; }
    .dot-list li { font-size: 0.76rem; margin-bottom: 10px; }
    .diff-footnote { font-size: 0.76rem; margin-top: 28px; }

    /* What You Get */
    .whatyouget { padding: 36px 12px; }
    .wyg-block { padding: 20px 18px 24px; }
    .wyg-block h3 { font-size: 0.95rem; padding-bottom: 10px; margin-bottom: 12px; }
    .wyg-block ul li { font-size: 0.78rem; margin-bottom: 10px; }
    .wyg-cta { margin-top: 28px; }
    .wyg-sub { font-size: 0.74rem; }

    /* Membership Plans */
    .membership { padding: 36px 12px; }
    .plans-row { max-width: 100%; }
    .plan__badge { font-size: 0.72rem; padding: 10px 12px; }
    .plan__price { font-size: 1.6rem; padding: 20px 18px 12px; }
    .plan ul li { font-size: 0.76rem; margin-bottom: 7px; }
    .membership__note { font-size: 0.68rem; }

    /* Preview */
    .preview { padding: 36px 12px; }
    .preview__sub { font-size: 0.8rem; }
    .preview__check-item { padding: 10px 14px; }
    .preview__check-text { font-size: 0.78rem; }
    .preview__fine { font-size: 0.72rem; }

    /* Early Access */
    .early { padding: 36px 12px; }
    .early h2 { font-size: 1.3rem; }
    .early__desc { font-size: 0.78rem; margin-bottom: 20px; }
    .early__fine { font-size: 0.66rem; }

    /* Footer */
    .footer { padding: 16px 12px; font-size: 0.65rem; }
    .footer__social a svg { width: 18px; height: 18px; }
    .footer__social { gap: 8px; }
}

/* ── Very small screens ── */
@media (max-width: 360px) {
    .hero__title { font-size: 1.25rem; }
    .hero__badge { font-size: 0.64rem; padding: 4px 10px; }
    .hero__leaf--left  { width: 40px; opacity: 0.25; }
    .hero__leaf--right { width: 50px; opacity: 0.25; }
    .btn { font-size: 0.72rem; padding: 11px 16px; }
    .sec-heading h2 { font-size: 1.15rem; }
    .plan__price { font-size: 1.4rem; padding: 16px 14px 10px; }
    .logo-img { height: 22px; }
    .btn-header-cta { padding: 6px 10px; font-size: 0.66rem; }
}
