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

body {
    font-family: 'Inter', sans-serif;
    background: #f5f5f0;
    color: #1a1a1a;
    overflow-x: hidden;
}

/* ===== Navbar ===== */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 48px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(245, 245, 240, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-brand {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.nav-brand-name {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: #1a1a1a;
}

.nav-brand-sub {
    font-size: 11px;
    font-weight: 500;
    color: #888;
    letter-spacing: 0.2px;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: #1a2e1a;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-cta:hover {
    background: #2D6A4F;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 106, 79, 0.25);
}

.nav-cta:active {
    transform: translateY(0);
    box-shadow: none;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    padding: 120px 48px 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-grainient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

/* ===== Hero Text (Left) ===== */
.hero-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.wa-native-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #2D6A4F;
    width: fit-content;
    cursor: default;
    transition: letter-spacing 0.3s, color 0.3s;
}

.wa-native-badge:hover {
    letter-spacing: 4px;
    color: #1a5c3a;
}

.wa-native-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #F5D000;
    flex-shrink: 0;
    animation: dotPulse 2.5s ease-in-out infinite;
}

.wa-native-badge:hover .wa-native-dot {
    animation: dotPulseFast 0.6s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245, 208, 0, 0.4); }
    50% { box-shadow: 0 0 0 6px rgba(245, 208, 0, 0); }
}

@keyframes dotPulseFast {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(245, 208, 0, 0.5); }
    50% { transform: scale(1.3); box-shadow: 0 0 0 8px rgba(245, 208, 0, 0); }
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    color: #1a1a1a;
}

.hero-title-highlight {
    background: #C1F90A;
    padding: 2px 10px;
    display: inline;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    transition: background 0.3s, box-shadow 0.3s;
}

.hero-title:hover .hero-title-highlight {
    background: #d4ff2a;
    box-shadow: 4px 4px 0 #a8d600;
}

.hero-desc {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    max-width: 480px;
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 48px;
    background: #1a2e1a;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    width: fit-content;
    position: relative;
    overflow: hidden;
}

.hero-cta-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 40%, rgba(193, 249, 10, 0.15) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.hero-cta-btn:hover::after {
    transform: translateX(100%);
}

.hero-cta-btn:hover {
    background: #2D6A4F;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 40px rgba(45, 106, 79, 0.3);
    letter-spacing: 0.5px;
}

.hero-cta-btn:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 4px 12px rgba(45, 106, 79, 0.2);
}

.hero-talk-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s, gap 0.3s;
    width: fit-content;
}

.hero-talk-link svg {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-talk-link:hover {
    color: #2D6A4F;
    gap: 12px;
}

.hero-talk-link:hover svg {
    transform: scale(1.2) rotate(-8deg);
}

.hero-phone-info {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 18px;
    background: rgba(37, 211, 102, 0.06);
    border: 1px solid rgba(37, 211, 102, 0.15);
    border-radius: 12px;
    max-width: 480px;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.hero-phone-info:hover {
    background: rgba(37, 211, 102, 0.12);
    border-color: rgba(37, 211, 102, 0.3);
    transform: translateY(-2px);
}

.hero-phone-info svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.hero-phone-info span {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.hero-phone-info strong {
    color: #1a1a1a;
}

/* ===== Hero Visual (Right) ===== */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

.hero-mockup-scene {
    position: relative;
    width: 100%;
    max-width: 520px;
    aspect-ratio: 1 / 1.15;
    margin: 0 auto;
}

/* Yellow starburst — overlaps top-right of phone */
.hero-starburst {
    position: absolute;
    top: -4%;
    right: 4%;
    width: 150px;
    height: 150px;
    background: #F5D000;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(
        50% 0%, 61% 11%, 74% 3%, 77% 18%, 92% 17%, 88% 32%,
        100% 39%, 92% 50%, 100% 61%, 88% 68%, 92% 83%, 77% 82%,
        74% 97%, 61% 89%, 50% 100%, 39% 89%, 26% 97%, 23% 82%,
        8% 83%, 12% 68%, 0% 61%, 8% 50%, 0% 39%, 12% 32%,
        8% 17%, 23% 18%, 26% 3%, 39% 11%
    );
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s;
    cursor: pointer;
    animation: starburstIdle 4s ease-in-out infinite;
}

@keyframes starburstIdle {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(3deg); }
}

.hero-starburst:hover {
    transform: scale(1.12) rotate(-8deg) !important;
    filter: drop-shadow(0 8px 24px rgba(245, 208, 0, 0.4));
    animation: none;
}

.hero-starburst:active {
    transform: scale(0.95) rotate(0deg) !important;
}

.hero-starburst span {
    font-family: 'Anton', sans-serif;
    font-size: 26px;
    color: #1a1a1a;
    text-align: center;
    line-height: 1.15;
    letter-spacing: 1px;
    transform: rotate(12deg);
    transition: transform 0.3s;
}

.hero-starburst:hover span {
    transform: rotate(0deg) scale(1.05);
}

/* Phone mockup — right side of scene */
.mockup-phone {
    position: absolute;
    top: 6%;
    right: 5%;
    width: 55%;
    height: auto;
    z-index: 2;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.1));
    border-radius: 24px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s;
}

.mockup-phone:hover {
    transform: translateY(-8px) scale(1.02);
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.18));
}

/* Stamp cards */
/* Brewy — left side, overlapping the phone */
.mockup-stamp1 {
    position: absolute;
    top: 30%;
    left: 0;
    width: 50%;
    height: auto;
    z-index: 3;
    filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.15));
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s;
    cursor: pointer;
}

.mockup-stamp1:hover {
    transform: translateY(-10px) translateX(6px) rotate(-2deg) scale(1.04);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.22));
}

/* Kelly's Bakes — bottom-right, overlapping the phone */
.mockup-stamp2 {
    position: absolute;
    bottom: 5%;
    right: 0;
    width: 45%;
    height: auto;
    z-index: 4;
    transform: rotate(2deg);
    filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.15));
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s;
    cursor: pointer;
}

.mockup-stamp2:hover {
    transform: rotate(-1deg) translateY(-10px) scale(1.04);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.22));
}

/* Parallax-like tilt on whole scene hover */
.hero-mockup-scene:hover .mockup-phone {
    transform: translateY(-4px);
}

.hero-mockup-scene:hover .mockup-stamp1:not(:hover) {
    transform: translateX(-4px) translateY(-2px);
}

.hero-mockup-scene:hover .mockup-stamp2:not(:hover) {
    transform: rotate(2deg) translateX(4px) translateY(-2px);
}

/* ===== Fade-in Animation ===== */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
}

.fade-in.animate {
    animation: fadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stamp-specific entrance overrides */
.mockup-stamp1.fade-in.animate {
    animation: fadeInLeft 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.mockup-stamp2.fade-in.animate {
    animation: fadeInRotate 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-starburst.fade-in.animate {
    animation: fadeInScale 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}

@keyframes fadeInRotate {
    from {
        opacity: 0;
        transform: rotate(2deg) translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: rotate(2deg) translateY(0) scale(1);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.6) rotate(12deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

/* Gentle float after entrance */
.mockup-stamp1.float {
    animation: floatY 5s ease-in-out infinite;
}

.mockup-stamp2.float {
    animation: floatYRotate 5s ease-in-out infinite 0.8s;
}

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes floatYRotate {
    0%, 100% { transform: rotate(2deg) translateY(0); }
    50% { transform: rotate(2deg) translateY(-6px); }
}

/* ===== Loyalty Made Simple Section ===== */
.loyalty-section {
    position: relative;
    background: #102E19;
    padding: 80px 48px 90px;
    overflow: hidden;
}

.loyalty-bg-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.loyalty-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.loyalty-title {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1.5px;
    transition: text-shadow 0.4s;
    cursor: default;
}

.loyalty-title:hover {
    text-shadow: 0 0 40px rgba(193, 249, 10, 0.25);
}

.loyalty-subtitle {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #C1F90A;
    margin-bottom: 24px;
    transition: letter-spacing 0.4s;
    cursor: default;
}

.loyalty-subtitle:hover {
    letter-spacing: 5px;
}

.loyalty-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    max-width: 560px;
}

.loyalty-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 28px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                background 0.3s,
                border-color 0.3s,
                box-shadow 0.4s;
    cursor: default;
}

.loyalty-card--muted {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #d4d4c8;
}

.loyalty-card--muted:hover {
    background: rgba(255, 255, 255, 0.13);
    border-color: rgba(193, 249, 10, 0.2);
    transform: translateX(8px);
    box-shadow: -4px 0 0 0 #C1F90A;
}

.loyalty-card--highlight {
    background: #C1F90A;
    color: #1a2e1a;
}

.loyalty-card--highlight:hover {
    background: #d4ff2a;
    transform: translateX(8px) scale(1.02);
    box-shadow: 0 8px 30px rgba(193, 249, 10, 0.2), -4px 0 0 0 #F5D000;
}

.loyalty-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s;
}

.loyalty-card:hover .loyalty-card-icon {
    transform: rotate(-10deg) scale(1.1);
    background: rgba(255, 255, 255, 0.18);
}

.loyalty-card--highlight:hover .loyalty-card-icon {
    background: rgba(26, 46, 26, 0.18);
}

.loyalty-card-icon--dark {
    background: rgba(26, 46, 26, 0.12);
}

/* Scroll-triggered fade-in */
.fade-in-scroll {
    opacity: 0;
    transform: translateY(24px);
}

.fade-in-scroll.animate {
    animation: fadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ===== How It Works Section ===== */
.hiw-section {
    position: relative;
    background: #f5f5f0;
    padding: 100px 48px 120px;
    overflow: hidden;
}

/* Floating decorative icons */
.hiw-float-icon {
    position: absolute;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    pointer-events: none;
}

.hiw-float-icon--mail {
    top: 6%;
    left: 12%;
    width: 60px;
    height: 60px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    border-radius: 18px;
    animation: hiwFloat 6s ease-in-out infinite;
}

.hiw-float-icon--chat {
    top: 6%;
    right: 30%;
    width: 48px;
    height: 48px;
    background: #e8ede4;
    border-radius: 50%;
    animation: hiwFloat 5s ease-in-out infinite 1s;
}

.hiw-float-icon--dots {
    top: 38%;
    left: 48%;
    width: 50px;
    height: 50px;
    background: #e8edf5;
    border-radius: 50%;
    animation: hiwFloat 7s ease-in-out infinite 0.5s;
}

.hiw-float-icon--cup {
    bottom: 6%;
    right: 5%;
    width: 56px;
    height: 56px;
    background: #1a2e1a;
    border-radius: 14px;
    animation: hiwFloat 5.5s ease-in-out infinite 1.5s;
}

@keyframes hiwFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Layout */
.hiw-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1280px;
    margin: 0 auto;
}

/* Left column */
.hiw-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hiw-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 4px;
}

.hiw-title {
    font-family: 'Inter', sans-serif;
    font-size: 72px;
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -3px;
    color: #1a1a1a;
    margin-bottom: 32px;
}

.hiw-title-highlight {
    font-family: 'Anton', sans-serif;
    font-style: italic;
    font-size: 80px;
    background: #F5D000;
    padding: 0 12px;
    display: inline;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    letter-spacing: -2px;
}

.hiw-title-it {
    font-weight: 900;
    font-size: 60px;
    letter-spacing: -2px;
}

.hiw-title-works {
    font-weight: 900;
    font-size: 80px;
    letter-spacing: -4px;
}

/* Step header (clickable) */
.hiw-step-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    margin-top: 8px;
    background: none;
    border: none;
    padding: 10px 14px;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    font-family: 'Inter', sans-serif;
}

.hiw-step-header:hover {
    background: rgba(45, 106, 79, 0.06);
}

.hiw-step-header.is-active {
    background: rgba(45, 106, 79, 0.08);
}

.hiw-step-header:active {
    transform: scale(0.98);
}

.hiw-step-number {
    font-family: 'Anton', sans-serif;
    font-size: 52px;
    color: #2D6A4F;
    line-height: 1;
    letter-spacing: -1px;
    transition: color 0.3s, transform 0.3s;
}

.hiw-step-header.is-active .hiw-step-number {
    color: #1a2e1a;
    transform: scale(1.05);
}

.hiw-step-label {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #888;
    transition: color 0.3s;
}

.hiw-step-header.is-active .hiw-step-label {
    color: #1a1a1a;
}

.hiw-step-header:hover .hiw-step-label {
    color: #555;
}

/* Steps with progress bar */
.hiw-steps {
    display: flex;
    gap: 0;
    position: relative;
}

.hiw-progress-track {
    width: 3px;
    background: #ddd;
    border-radius: 3px;
    position: relative;
    flex-shrink: 0;
    margin-left: 4px;
}

.hiw-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #1a2e1a;
    border-radius: 3px;
    height: 25%;
    transition: height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hiw-step-list {
    display: flex;
    flex-direction: column;
}

.hiw-step-item {
    background: none;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #bbb;
    text-align: left;
    padding: 16px 20px;
    cursor: pointer;
    position: relative;
    transition: color 0.3s, padding-left 0.3s, background 0.3s;
    border-radius: 0 10px 10px 0;
}

.hiw-step-item:hover {
    color: #555;
    background: rgba(0,0,0,0.02);
}

.hiw-step-item.is-active {
    color: #1a1a1a;
    padding-left: 28px;
}

.hiw-step-item.is-active::before {
    content: '';
    position: absolute;
    left: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: #1a2e1a;
    border-radius: 50%;
    border: 2px solid #f5f5f0;
    box-shadow: 0 0 0 2px #1a2e1a;
}

/* Right column — Image */
.hiw-right {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.hiw-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 520px;
    aspect-ratio: 1 / 1.1;
}

.hiw-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transform: scale(0.97) translateY(12px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.hiw-image.is-active {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: auto;
}

/* ===== Print QR Code Section ===== */
.qr-section {
    position: relative;
    overflow: hidden;
}

/* Top half — light */
.qr-top {
    position: relative;
    background: #f5f5f0;
    padding: 80px 48px 180px;
    overflow: visible;
}

.qr-top-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
}

/* Gradient blobs */
.qr-blob {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    filter: blur(0px);
}

.qr-blob--1 {
    width: 280px;
    height: 280px;
    top: -8%;
    right: 10%;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.3) 0%, rgba(193, 249, 10, 0.1) 60%, transparent 80%);
}

.qr-blob--2 {
    width: 360px;
    height: 360px;
    top: 20%;
    right: 18%;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.2) 0%, rgba(193, 249, 10, 0.08) 50%, transparent 75%);
}

/* Step header */
.qr-step-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.qr-step-number {
    font-family: 'Anton', sans-serif;
    font-size: 52px;
    color: #2D6A4F;
    line-height: 1;
    letter-spacing: -1px;
    background: #F5D000;
    padding: 0 8px;
    border-radius: 6px;
}

.qr-step-label {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #1a1a1a;
}

/* QR card floating between halves */
.qr-card-wrapper {
    position: absolute;
    bottom: -140px;
    right: 12%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-card {
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
}

.qr-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.14);
}

.qr-card-img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    border-radius: 8px;
}

.qr-card-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1a1a1a;
}

/* Crosshair / scan frame */
.qr-crosshair {
    position: absolute;
    width: 280px;
    height: auto;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.85;
    animation: qrScanPulse 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes qrScanPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.04); }
}

/* Bottom half — dark green */
.qr-bottom {
    position: relative;
    background: #102E19;
    padding: 180px 48px 100px;
}

.qr-bottom-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
}

.qr-bottom-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    font-style: italic;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #C1F90A;
    margin-bottom: 12px;
}

.qr-bottom-title {
    font-family: 'Inter', sans-serif;
    font-size: 56px;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -2.5px;
    color: #fff;
}

.qr-bottom-highlight {
    font-family: 'Anton', sans-serif;
    font-size: 72px;
    letter-spacing: -1px;
    color: #fff;
}

/* ===== Customer Scan & Message Section ===== */
.scan-section {
    position: relative;
    background: #f5f5f0;
    padding: 100px 48px 120px;
    overflow: hidden;
}

.scan-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
}

/* Left column */
.scan-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.scan-step-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 8px;
}

.scan-step-number {
    font-family: 'Anton', sans-serif;
    font-size: 56px;
    color: #2D6A4F;
    line-height: 1;
    letter-spacing: -1px;
    background: #F5D000;
    padding: 0 10px;
    border-radius: 6px;
}

.scan-title {
    font-family: 'Inter', sans-serif;
    font-size: 52px;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -2.5px;
    color: #1a1a1a;
}

.scan-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.scan-mini-starburst {
    width: 80px;
    height: 80px;
    background: #F5D000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    clip-path: polygon(
        50% 0%, 61% 11%, 74% 3%, 77% 18%, 92% 17%, 88% 32%,
        100% 39%, 92% 50%, 100% 61%, 88% 68%, 92% 83%, 77% 82%,
        74% 97%, 61% 89%, 50% 100%, 39% 89%, 26% 97%, 23% 82%,
        8% 83%, 12% 68%, 0% 61%, 8% 50%, 0% 39%, 12% 32%,
        8% 17%, 23% 18%, 26% 3%, 39% 11%
    );
    animation: starburstIdle 4s ease-in-out infinite;
}

.scan-mini-starburst span {
    font-family: 'Anton', sans-serif;
    font-size: 11px;
    color: #1a1a1a;
    text-align: center;
    line-height: 1.15;
    letter-spacing: 0.5px;
    transform: rotate(6deg);
}

.scan-title-message {
    font-family: 'Anton', sans-serif;
    font-size: 72px;
    font-style: italic;
    color: #2D6A4F;
    letter-spacing: -2px;
    line-height: 1;
}

/* Yes / X buttons */
.scan-buttons {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    margin-top: 28px;
    position: relative;
}

.scan-btn {
    border: none;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scan-btn--yes {
    padding: 14px 40px;
    background: #25D366;
    color: #fff;
    border-radius: 14px;
}

.scan-btn--yes:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.scan-btn--no {
    padding: 14px 18px;
    background: #e05555;
    color: #fff;
    border-radius: 14px;
}

.scan-btn--no:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(224, 85, 85, 0.3);
}

.scan-btn:active {
    transform: translateY(0) scale(0.96);
}

.scan-hand {
    width: 56px;
    height: auto;
    margin-left: -14px;
    margin-bottom: -8px;
    animation: scanHandBounce 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes scanHandBounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    30% { transform: translateY(-10px) rotate(-5deg); }
    60% { transform: translateY(-4px) rotate(0deg); }
}

/* Right column — phone mockup */
.scan-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.scan-mockup-scene {
    position: relative;
    width: 100%;
    max-width: 540px;
    aspect-ratio: 1 / 1.2;
}

.scan-phone {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: auto;
    z-index: 2;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.1));
    border-radius: 24px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.scan-phone:hover {
    transform: translateY(-6px);
}

/* Brewy stamp — left, overlapping */
.scan-stamp1 {
    position: absolute;
    top: 30%;
    left: -5%;
    width: 55%;
    height: auto;
    z-index: 3;
    filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.15));
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.scan-stamp1:hover {
    transform: translateY(-8px) rotate(-1deg) scale(1.03);
}

/* Kelly's Bakes — bottom right */
.scan-stamp2 {
    position: absolute;
    bottom: 0;
    right: -8%;
    width: 48%;
    height: auto;
    z-index: 5;
    transform: rotate(2deg);
    filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.15));
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.scan-stamp2:hover {
    transform: rotate(-1deg) translateY(-8px) scale(1.03);
}

/* Heart emoji bubble */
.scan-emoji {
    position: absolute;
    bottom: 32%;
    left: 12%;
    z-index: 4;
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    animation: scanEmojiBob 3s ease-in-out infinite;
}

@keyframes scanEmojiBob {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-6px) scale(1.08); }
}

/* Yes/X buttons on phone area */
.scan-phone-btns {
    position: absolute;
    bottom: 15%;
    left: 25%;
    z-index: 4;
    display: flex;
    gap: 8px;
}

.scan-pbtn {
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scan-pbtn--yes {
    padding: 10px 28px;
    background: #25D366;
    color: #fff;
}

.scan-pbtn--no {
    padding: 10px 14px;
    background: #e05555;
    color: #fff;
}

/* ===== You Confirm & They Collected Section ===== */
.confirm-section {
    position: relative;
    background: #f5f5f0;
    padding: 100px 48px 120px;
    overflow: hidden;
}

.confirm-container {
    max-width: 1280px;
    margin: 0 auto;
}

/* Header row */
.confirm-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 48px;
}

.confirm-col {
    flex: 1;
}

.confirm-step-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.confirm-step-number {
    font-family: 'Anton', sans-serif;
    font-size: 56px;
    color: #2D6A4F;
    line-height: 1;
    letter-spacing: -1px;
    background: #F5D000;
    padding: 0 10px;
    border-radius: 6px;
}

.confirm-step-title {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -2px;
    color: #1a2e1a;
    line-height: 1;
}

.confirm-ampersand {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: #2D6A4F;
    flex-shrink: 0;
    padding-top: 8px;
}

.confirm-col-title {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -2px;
    color: #1a2e1a;
    line-height: 1;
    display: block;
    margin-bottom: 12px;
}

.confirm-sub {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    line-height: 1.6;
}

/* Phone images row */
.confirm-phones {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.confirm-phone-card {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.confirm-phone-card:hover {
    transform: translateY(-8px);
}

.confirm-phone-img {
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: 20px;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.1));
    display: block;
    margin: 0 auto;
}

/* ===== CTA Banner ===== */
.cta-banner {
    position: relative;
    background: #102E19;
    padding: 80px 48px 80px;
    margin-top: -100px;
    z-index: 5;
    overflow: hidden;
}

.cta-banner-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cta-banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
}

.cta-banner-title {
    font-family: 'Inter', sans-serif;
    font-size: 64px;
    font-weight: 900;
    letter-spacing: -3px;
    color: #fff;
    line-height: 1;
}

.cta-banner-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 52px;
    background: #C1F90A;
    color: #1a2e1a;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1px;
    border: none;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.cta-banner-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,0.2) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.cta-banner-btn:hover::after {
    transform: translateX(100%);
}

.cta-banner-btn:hover {
    background: #d4ff2a;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 40px rgba(193, 249, 10, 0.25);
}

.cta-banner-btn:active {
    transform: translateY(0) scale(0.98);
}

/* ===== Footer ===== */
.site-footer {
    background: #102E19;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.footer-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.footer-container {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}

.footer-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-legal a {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: rgba(255,255,255,0.8);
}

.footer-dot {
    color: rgba(255,255,255,0.25);
    font-size: 12px;
}

.footer-copyright {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.4);
}

.footer-watermark {
    font-family: 'Inter', sans-serif;
    font-size: clamp(60px, 12vw, 160px);
    font-weight: 900;
    letter-spacing: -4px;
    color: rgba(255,255,255,0.04);
    text-align: center;
    line-height: 1;
    padding: 20px 0 40px;
    white-space: nowrap;
    overflow: visible;
    user-select: none;
}

/* ===== Scroll to Top ===== */
.scroll-top-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #1a2e1a;
    color: #C1F90A;
    border: 2px solid rgba(193, 249, 10, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s, background 0.2s, box-shadow 0.2s;
}

.scroll-top-btn.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.scroll-top-btn:hover {
    background: #2D6A4F;
    box-shadow: 0 6px 20px rgba(45, 106, 79, 0.3);
    transform: translateY(-2px);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero { padding: 100px 32px 60px; }
    .hero-content { gap: 40px; }
    .hero-title { font-size: 42px; }
    .hero-starburst { width: 120px; height: 120px; }
    .hero-starburst span { font-size: 18px; }

    .hiw-section { padding: 80px 32px 100px; }
    .hiw-title { font-size: 56px; }
    .hiw-title-highlight { font-size: 64px; }
    .hiw-title-works { font-size: 64px; }
    .hiw-title-it { font-size: 48px; }
    .hiw-layout { gap: 40px; }

    .qr-card-wrapper { right: 8%; }
    .qr-card-img { width: 160px; height: 160px; }
    .qr-bottom-title { font-size: 44px; }
    .qr-bottom-highlight { font-size: 56px; }
    .qr-blob--1 { width: 200px; height: 200px; }
    .qr-blob--2 { width: 260px; height: 260px; }

    .scan-section { padding: 80px 32px 100px; }
    .scan-title { font-size: 42px; }
    .scan-title-message { font-size: 56px; }

    .confirm-section { padding: 80px 32px 100px; }
    .confirm-step-title { font-size: 40px; }
    .confirm-col-title { font-size: 40px; }
    .confirm-ampersand { font-size: 40px; }

    .cta-banner { padding: 60px 32px; }
    .cta-banner-title { font-size: 52px; }
}

@media (max-width: 768px) {
    .navbar { padding: 14px 20px; }
    .nav-cta { padding: 8px 18px; font-size: 13px; }

    .loyalty-section { padding: 60px 24px 70px; }
    .loyalty-title { font-size: 30px; }
    .loyalty-card { padding: 16px 20px; font-size: 15px; }

    .hiw-section { padding: 60px 24px 80px; }
    .hiw-layout { grid-template-columns: 1fr; gap: 40px; }
    .hiw-title { font-size: 44px; }
    .hiw-title-highlight { font-size: 52px; }
    .hiw-title-works { font-size: 52px; }
    .hiw-title-it { font-size: 38px; }
    .hiw-step-number { font-size: 40px; }
    .hiw-float-icon--dots { display: none; }
    .hiw-image-wrapper { max-width: 400px; margin: 0 auto; }

    .qr-top { padding: 60px 24px 160px; }
    .qr-bottom { padding: 160px 24px 60px; }
    .qr-card-wrapper { right: 50%; transform: translateX(50%); }
    .qr-card-img { width: 150px; height: 150px; }
    .qr-bottom-title { font-size: 32px; letter-spacing: -1.5px; }
    .qr-bottom-highlight { font-size: 42px; }
    .qr-step-number { font-size: 40px; }

    .scan-section { padding: 60px 24px 80px; }
    .scan-layout { grid-template-columns: 1fr; gap: 48px; }
    .scan-title { font-size: 34px; }
    .scan-title-message { font-size: 48px; }
    .scan-step-number { font-size: 42px; }
    .scan-mockup-scene { max-width: 400px; margin: 0 auto; }
    .qr-blob--1 { width: 150px; height: 150px; right: 5%; }
    .qr-blob--2 { width: 200px; height: 200px; right: 10%; }

    .confirm-section { padding: 60px 24px 80px; }
    .confirm-header { flex-direction: column; gap: 24px; }
    .confirm-step-title { font-size: 32px; }
    .confirm-col-title { font-size: 32px; }
    .confirm-ampersand { font-size: 32px; align-self: center; }
    .confirm-step-number { font-size: 42px; }
    .confirm-phones { grid-template-columns: 1fr; gap: 32px; }
    .confirm-phone-img { max-width: 320px; }

    .cta-banner { padding: 50px 24px; margin-top: -60px; }
    .cta-banner-title { font-size: 34px; letter-spacing: -1.5px; }
    .cta-banner-btn { padding: 16px 36px; font-size: 14px; width: 100%; }

    .footer-container { padding: 0 24px; }
    .footer-top-bar { flex-direction: column; gap: 12px; align-items: flex-start; }
    .scroll-top-btn { bottom: 20px; right: 20px; width: 42px; height: 42px; }

    .hero {
        padding: 100px 24px 48px;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-title {
        font-size: 36px;
        letter-spacing: -1.5px;
    }

    .hero-cta-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hero-mockup-scene {
        max-width: 360px;
        margin: 0 auto;
    }

    .mockup-phone { width: 58%; right: 3%; }
    .mockup-stamp1 { width: 48%; left: 0; top: 28%; }
    .mockup-stamp2 { width: 42%; right: 2%; }

    .hero-starburst {
        width: 100px;
        height: 100px;
        top: -2%;
        right: 2%;
    }

    .hero-starburst span {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-title { font-size: 30px; }
    .nav-brand-name { font-size: 16px; }
    .nav-brand-sub { font-size: 10px; }
}
