@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* ==========================================
   DESIGN VARIABLES (LIGHT EDITORIAL)
   ========================================== */
:root {
    --bg-light: #f0f8ff;
    --bg-panel: #ffffff;
    --text-dark: #0b0f18;
    --text-muted: #5e6b7d;
    --primary: #2768f8;
    --primary-light: rgba(39, 104, 248, 0.08);
    --border-dark: rgba(11, 15, 24, 0.08);
    --border-thick: 2px solid #0b0f18;
    --font-display: 'Outfit', sans-serif;
    --font-sans: 'Plus Jakarta Sans', sans-serif;
    --font-logo: 'Bricolage Grotesque', sans-serif;
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-quick: all 0.2s ease;
    --card-width: 330px;
    --card-height: 440px;
    --stack-height: 530px;
    --mockup-img-height: 190px;
}

/* Lenis smooth scroll helper styles */
html.lenis, html.lenis body {
    height: auto;
}
.lenis-smooth {
    scroll-behavior: auto !important;
}
.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}
.lenis-stopped {
    overflow: hidden;
}
.lenis-scrolling iframe {
    pointer-events: none;
}

/* ==========================================
   GLOBAL RESET & INITIAL SETUP
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-family: var(--font-sans);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
    background: var(--text-dark);
}

/* ==========================================
   TYPOGRAPHY & EDITORIAL TITLES
   ========================================== */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 0.95;
    text-transform: uppercase;
}

h1 {
    font-size: clamp(3.2rem, 8vw + 1rem, 7.5rem);
}

h2 {
    font-size: clamp(2.5rem, 5vw + 0.5rem, 4.8rem);
}

h3 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
}

p {
    font-size: 1.15rem;
    line-height: 1.5;
    color: var(--text-muted);
}

/* Simple text tags replacing Space Grotesk mono elements */
.editorial-tag {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
    margin-bottom: 12px;
}

/* ==========================================
   LAYOUT STRUCTURE (GRID SEPARATORS)
   ========================================== */
.canvas-wrapper {
    position: relative;
    width: 100%;
}

.section-wrapper {
    border-bottom: 1px solid var(--border-dark);
    padding: 120px 0;
    position: relative;
}

.full-screen-panel {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    border-bottom: 1px solid var(--border-dark);
}

.container {
    width: 100%;
    padding: 0 60px;
}

/* Dynamic Buttons with Hover Arrow Slides */
.btn-editorial {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: #0b0f18;
    color: var(--bg-light);
    border: none;
    padding: 20px 40px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-editorial::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    transition: var(--transition-smooth);
    z-index: 1;
}

.btn-editorial span {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-editorial svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.btn-editorial:hover {
    color: #ffffff;
}

.btn-editorial:hover::before {
    top: 0;
}

.btn-editorial:hover svg {
    transform: translateX(4px);
}

.btn-editorial-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
    padding: 18px 38px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.btn-editorial-outline span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-editorial-outline svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.btn-editorial-outline:hover {
    background-color: var(--text-dark);
    color: var(--bg-light);
}

.btn-editorial-outline:hover svg {
    transform: translateX(4px);
}

/* ==========================================
   STICKY EDITORIAL NAVIGATION
   ========================================== */
.header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background-color: rgba(240, 248, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-dark);
    z-index: 999;
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.header-nav.scrolled {
    height: 75px;
    border-bottom: 2px solid var(--text-dark);
}

.nav-container {
    width: 100%;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-logo);
    font-weight: 800;
    font-size: 2rem;
    text-decoration: none;
    color: var(--text-dark);
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: none;
}

.logo span {
    color: var(--primary);
}

.logo img {
    display: none;
}

/* Inverted logo styling for dark backgrounds like the footer */
.logo-light {
    color: #ffffff !important;
}

.logo-light img {
    display: none;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    padding: 8px 0;
    transition: var(--transition-quick);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-quick);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Active Link State */
.nav-links a.active {
    color: var(--primary);
}

.nav-links a.active::after {
    width: 100%;
}

.mobile-only-link {
    display: none !important;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition-quick);
}

/* ==========================================
   HERO SECTION (ASYMMETRICAL BRUTALIST)
   ========================================== */
.hero-section {
    padding-top: 90px;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.hero-content h1 {
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 1.35rem;
    margin-bottom: 40px;
    max-width: 650px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 24px;
    margin-bottom: 50px;
}

.hero-stats-row {
    display: flex;
    border-top: 1px solid var(--border-dark);
    padding-top: 40px;
    gap: 60px;
}

.hero-stat-box {
    display: flex;
    flex-direction: column;
}

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.hero-stat-label {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

/* 3D Card Stack Mockup (Out of the Box) */
.hero-card-stack {
    position: relative;
    width: 100%;
    height: var(--stack-height);
    perspective: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stack-card {
    position: absolute;
    width: var(--card-width);
    height: var(--card-height);
    background-color: #ffffff;
    border: 3.5px solid var(--text-dark);
    border-radius: 20px;
    padding: 24px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), z-index 0.6s, opacity 0.6s, box-shadow 0.6s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    user-select: none;
}

/* Opaque Pastel Helper Classes for Card Stack */
.card-bg-1 { background-color: #e0f2fe !important; } /* Sky Blue */
.card-bg-2 { background-color: #dcfce7 !important; } /* Mint Green */
.card-bg-3 { background-color: #fef9c3 !important; } /* Lemon Yellow */
.card-bg-4 { background-color: #ffedd5 !important; } /* Peach */
.card-bg-5 { background-color: #f3e8ff !important; } /* Lavender */
.card-bg-6 { background-color: #fce7f3 !important; } /* Bubblegum Pink */
.card-bg-7 { background-color: #ccfbf1 !important; } /* Teal */
.card-bg-8 { background-color: #ffe4e6 !important; } /* Rose */
.card-bg-9 { background-color: #eff6ff !important; } /* Soft Blue */
.card-bg-10 { background-color: #f5f3ff !important; } /* Violet */
.card-bg-11 { background-color: #f0fdf4 !important; } /* Emerald Light */

/* Dynamic layered stack classes with brutalist offset shadows */
.card-back {
    transform: rotateY(-15deg) rotateX(10deg) translateZ(-65px) translateX(-50px) translateY(12px);
    z-index: 1;
    border-color: var(--text-dark);
    box-shadow: 4px 4px 0px var(--text-dark);
}

.card-middle {
    transform: rotateY(-10deg) rotateX(8deg) translateZ(-30px) translateX(-25px) translateY(6px);
    z-index: 2;
    border-color: var(--text-dark);
    box-shadow: 8px 8px 0px var(--text-dark);
}

.card-front {
    transform: rotateY(-5deg) rotateX(5deg) translateZ(0);
    z-index: 3;
    border-color: var(--text-dark);
    box-shadow: 12px 12px 0px var(--text-dark);
    cursor: grab;
}

.hero-card-stack.grabbing .card-front {
    cursor: grabbing;
}

/* Real Image wrappers inside card stack */
.mockup-img-wrapper {
    width: 100%;
    height: var(--mockup-img-height);
    border: 3px solid var(--text-dark);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 12px;
    background-color: #ffffff;
    box-shadow: 4px 4px 0px var(--text-dark);
    position: relative;
}

.mockup-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(5%) contrast(102%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-front:hover .mockup-img-wrapper img {
    transform: scale(1.08) rotate(1deg);
}

/* Card UI Mockup items */
.card-header-ui {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid var(--text-dark);
    padding-bottom: 10px;
    margin-bottom: 4px;
}

.card-header-ui span:first-child {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background-color: var(--text-dark);
    color: #ffffff;
    padding: 3px 8px;
    border-radius: 6px;
    border: 1.5px solid var(--text-dark);
    box-shadow: 1.5px 1.5px 0px var(--text-dark);
}

.card-dot-ui {
    width: 12px;
    height: 12px;
    background-color: #22c55e;
    border-radius: 50%;
    box-shadow: 1.5px 1.5px 0px var(--text-dark);
    border: 2px solid var(--text-dark);
}

.card-body-ui {
    margin-top: 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.card-body-ui h4 {
    font-size: 1.35rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    color: var(--text-dark);
    margin-bottom: 0px;
    line-height: 1.1;
}

.card-body-ui p {
    font-size: 0.88rem;
    line-height: 1.35;
    color: var(--text-dark);
    opacity: 0.85;
    font-weight: 500;
}

.card-tag-ui {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    background-color: #ffffff;
    color: var(--text-dark);
    border: 2.5px solid var(--text-dark);
    box-shadow: 2px 2px 0px var(--text-dark);
    padding: 3px 10px;
    border-radius: 8px;
    width: fit-content;
    display: inline-block;
}

.card-footer-ui {
    border-top: 3px solid var(--text-dark);
    padding-top: 12px;
    margin-top: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-price-ui {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.card-footer-ui button {
    background-color: var(--primary);
    color: white;
    border: 2.5px solid var(--text-dark);
    box-shadow: 3px 3px 0px var(--text-dark);
    border-radius: 8px;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 900;
    padding: 8px 16px;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.15s, box-shadow 0.15s;
}

.card-footer-ui button:hover {
    background-color: #1d4ed8;
    transform: translate(-1px, -1px);
    box-shadow: 4px 4px 0px var(--text-dark);
}

.card-footer-ui button:active {
    transform: translate(2px, 2px);
    box-shadow: 1px 1px 0px var(--text-dark);
}

/* ==========================================
   INFINITE MARQUEE TICKER BANNER
   ========================================== */
.marquee-container {
    background-color: #0b0f18;
    color: var(--bg-light);
    border-top: 1px solid var(--border-dark);
    border-bottom: 2px solid var(--text-dark);
    overflow: hidden;
    white-space: nowrap;
    padding: 24px 0;
    display: flex;
}

.marquee-content {
    display: flex;
    animation: marquee-run 25s linear infinite;
}

.marquee-content span {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0 40px;
    display: inline-flex;
    align-items: center;
    gap: 20px;
}

.marquee-content span::after {
    content: '///';
    color: var(--primary);
    font-family: var(--font-display);
}

@keyframes marquee-run {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================
   PINNED SPLIT-SCROLL HOW-IT-WORKS SECTION
   ========================================== */
.split-scroll-section {
    position: relative;
    border-bottom: 1px solid var(--border-dark);
}

.split-scroll-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

/* Left Pinned Column */
.split-left-column {
    padding: 120px 60px;
    border-right: 1px solid var(--border-dark);
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pinned-content-top h2 {
    margin-bottom: 24px;
}

.pinned-role-switcher {
    display: inline-flex;
    background-color: rgba(11, 15, 24, 0.05);
    border: 2px solid var(--text-dark);
    padding: 4px;
    border-radius: 4px;
    margin-top: 30px;
}

.pinned-role-btn {
    background: none;
    border: none;
    color: var(--text-dark);
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 12px 24px;
    cursor: pointer;
    transition: var(--transition-quick);
}

.pinned-role-btn.active {
    background-color: var(--text-dark);
    color: var(--bg-light);
}

/* Gen Z Interactive Match Radar Widget Styles */
.radar-widget-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 20px;
    perspective: 1000px;
    width: 100%;
}

.radar-container {
    position: relative;
    width: 200px;
    height: 200px;
    background-color: var(--bg-panel);
    border: 3px solid var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 8px 8px 0px var(--text-dark);
    cursor: pointer;
    transform-style: preserve-3d;
    transition: box-shadow 0.3s ease, transform 0.1s ease;
    overflow: hidden;
}

.radar-container:hover {
    box-shadow: 12px 12px 0px var(--text-dark);
}

.radar-circle {
    position: absolute;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.radar-outer {
    width: 160px;
    height: 160px;
    border: 2px dashed rgba(11, 15, 24, 0.2);
    animation: radar-spin-outer 25s linear infinite;
}

.radar-middle {
    width: 110px;
    height: 110px;
    border: 1.5px solid rgba(11, 15, 24, 0.08);
}

.radar-sweep {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 50%;
    background: linear-gradient(to top, var(--primary), transparent);
    transform-origin: bottom center;
    animation: radar-sweep-spin 3s linear infinite;
}

.radar-center {
    position: relative;
    width: 54px;
    height: 54px;
    background-color: #ffffff;
    border: 3px solid var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 0px var(--text-dark);
    z-index: 5;
    overflow: hidden;
}

.radar-center img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

/* Pulsing radar dots */
.radar-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #22c55e; /* green matching verified profiles */
    border: 2px solid var(--text-dark);
    border-radius: 50%;
    box-shadow: 1.5px 1.5px 0px var(--text-dark);
    animation: radar-dot-pulse 1.6s infinite ease-in-out;
}

.dot-1 { top: 20%; left: 25%; animation-delay: 0s; }
.dot-2 { bottom: 25%; right: 20%; animation-delay: 0.5s; }
.dot-3 { top: 50%; right: 15%; animation-delay: 1s; }

.radar-status-badge {
    margin-top: 24px;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 900;
    color: var(--text-dark);
    border: 2.5px solid var(--text-dark);
    background-color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    box-shadow: 3px 3px 0px var(--text-dark);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-pulse {
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    border: 1.5px solid var(--text-dark);
    box-shadow: 0 0 5px #22c55e;
    animation: status-pulse-glow 1s infinite alternate;
}

/* Animations */
@keyframes radar-spin-outer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes radar-sweep-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes radar-dot-pulse {
    0%, 100% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(1.25); filter: brightness(1.2); }
}

@keyframes status-pulse-glow {
    0% { opacity: 0.6; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1.1); box-shadow: 0 0 8px #22c55e; }
}

/* Right Scrollable Column */
.split-right-column {
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Each step occupies exactly 100vh for snapped alignment */
.scroll-step-card-wrapper {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 60px;
}

.scroll-step-card {
    background-color: var(--bg-panel);
    border: 2px solid var(--text-dark);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 8px 8px 0px rgba(11, 15, 24, 1);
    transition: var(--transition-smooth);
    width: 100%;
}

.scroll-step-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0px rgba(11, 15, 24, 1);
}

/* How It Works Card Hover Pastel Background Colors */
#workerSteps .scroll-step-card-wrapper:nth-of-type(1) .scroll-step-card:hover,
#businessSteps .scroll-step-card-wrapper:nth-of-type(1) .scroll-step-card:hover {
    background-color: #e0f2fe; /* Sky Blue */
}
#workerSteps .scroll-step-card-wrapper:nth-of-type(2) .scroll-step-card:hover,
#businessSteps .scroll-step-card-wrapper:nth-of-type(2) .scroll-step-card:hover {
    background-color: #dcfce7; /* Mint Green */
}
#workerSteps .scroll-step-card-wrapper:nth-of-type(3) .scroll-step-card:hover,
#businessSteps .scroll-step-card-wrapper:nth-of-type(3) .scroll-step-card:hover {
    background-color: #fef9c3; /* Lemon Yellow */
}

.step-num {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    display: block;
}

.scroll-step-card h3 {
    margin-bottom: 20px;
    font-size: 1.8rem;
}

/* Custom visual cards inside right column representing app pages */
.step-preview-ui {
    margin-top: 24px;
    border-top: 1px dashed var(--border-dark);
    padding-top: 20px;
}

/* ==========================================
   ASYMMETRIC BENTO GRID FEATURES SECTION
   ========================================== */
.bento-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px auto;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 320px;
    gap: 30px;
}

.bento-card {
    background-color: var(--bg-panel);
    border: 2px solid var(--text-dark);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.bento-card:hover {
    transform: translateY(-6px) scale(1.005);
    box-shadow: 8px 8px 0px var(--text-dark);
}

/* Bento Card Hover Pastel Background Colors */
.bento-grid .bento-card:nth-of-type(1):hover { background-color: #e0f2fe; } /* Sky Blue */
.bento-grid .bento-card:nth-of-type(2):hover { background-color: #dcfce7; } /* Mint Green */
.bento-grid .bento-card:nth-of-type(3):hover { background-color: #fef9c3; } /* Lemon Yellow */
.bento-grid .bento-card:nth-of-type(4):hover { background-color: #ffedd5; } /* Peach */
.bento-grid .bento-card:nth-of-type(5):hover { background-color: #f3e8ff; } /* Lavender */
.bento-grid .bento-card:nth-of-type(6):hover { background-color: #fce7f3; } /* Bubblegum Pink */

/* Bento image wrappers */
.bento-img-wrapper {
    width: 100%;
    height: 140px;
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
}

.bento-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Asymmetrical Spans */
.bento-span-2 {
    grid-column: span 2;
}

.bento-row-span-2 {
    grid-row: span 2;
    justify-content: space-between;
}

.bento-card-icon {
    width: 54px;
    height: 54px;
    fill: var(--primary);
    margin-bottom: 20px;
}

.bento-card h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.bento-card p {
    font-size: 1rem;
}



/* ==========================================
   EDITORIAL TESTIMONIALS SECTION
   ========================================== */
.editorial-testimonials {
    border-bottom: 1px solid var(--border-dark);
}

.testimonial-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
}

/* Gen Z Testimonial Card Styles */
.testimonial-quotes-col {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.testimonial-card {
    border: 3.5px solid var(--text-dark);
    border-radius: 20px;
    padding: 35px 40px;
    box-shadow: 8px 8px 0px var(--text-dark);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    cursor: pointer;
    background-color: var(--bg-panel);
}

.testimonial-card:hover {
    transform: translateY(-6px) rotate(-0.5deg);
    box-shadow: 12px 12px 0px var(--text-dark);
}

.testimonial-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 2px dashed var(--text-dark);
    padding-bottom: 16px;
    position: relative;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2.5px solid var(--text-dark);
    background-color: var(--primary);
    color: #ffffff;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 0px var(--text-dark);
}

.testimonial-card-header .author-name {
    font-family: var(--font-display);
    font-weight: 850;
    font-size: 1.2rem;
    color: var(--text-dark);
    display: block;
    line-height: 1.2;
}

.testimonial-card-header .author-role {
    font-size: 0.85rem;
    color: var(--text-dark);
    opacity: 0.75;
    font-weight: 500;
}

.testimonial-tag-sticker {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(3deg);
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    background-color: #ffffff;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
    box-shadow: 2px 2px 0px var(--text-dark);
    padding: 3px 10px;
    border-radius: 6px;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.5;
    color: var(--text-dark) !important;
    font-weight: 500;
}

/* Gen Z FAQ Card Styles */
.faq-editorial-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
}

.faq-list {
    border-top: none !important;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-row {
    background-color: var(--bg-panel);
    border: 3.5px solid var(--text-dark) !important;
    border-radius: 20px;
    box-shadow: 6px 6px 0px var(--text-dark);
    transition: var(--transition-smooth);
    margin-bottom: 0 !important;
    overflow: hidden;
}

.faq-row:hover {
    transform: translateY(-4px);
    box-shadow: 10px 10px 0px var(--text-dark);
}

.faq-row-btn {
    padding: 24px 30px !important;
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}

.faq-row-btn h3 {
    font-size: 1.25rem !important;
    color: var(--text-dark);
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    flex: 1;
    line-height: 1.2;
}

.faq-row-number {
    font-family: var(--font-display);
    font-weight: 900;
    color: var(--primary) !important;
    font-size: 1.15rem !important;
    margin-right: 25px;
}

.faq-plus-icon {
    width: 32px !important;
    height: 32px !important;
    border: 2.5px solid var(--text-dark);
    border-radius: 50%;
    background-color: var(--bg-light);
    box-shadow: 2px 2px 0px var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-quick);
    position: relative;
    flex-shrink: 0;
}

.faq-plus-icon::before,
.faq-plus-icon::after {
    content: '';
    position: absolute;
    background-color: var(--text-dark);
    transition: var(--transition-quick);
}

.faq-plus-icon::before {
    width: 12px !important;
    height: 2.5px !important;
    top: 13px !important;
    left: 8px !important;
}

.faq-plus-icon::after {
    width: 2.5px !important;
    height: 12px !important;
    top: 8px !important;
    left: 13px !important;
}

/* Active Row FAQ adjustments */
.faq-row.active {
    background-color: #f3e8ff; /* Soft lavender active color for opened FAQs */
}

.faq-row.active .faq-plus-icon {
    background-color: var(--text-dark);
    transform: rotate(135deg); /* Spin plus into x */
}

.faq-row.active .faq-plus-icon::before,
.faq-row.active .faq-plus-icon::after {
    background-color: #ffffff;
}

.faq-row.active .faq-plus-icon::after {
    opacity: 1 !important; /* Keep it visible to form an X */
}

.faq-row-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-row-answer-content {
    padding-left: 70px !important;
    padding-right: 40px !important;
    padding-bottom: 24px !important;
    font-size: 1.05rem !important;
    line-height: 1.5;
    color: var(--text-dark) !important;
    font-weight: 500;
}

/* Pinned Columns Widgets (Rating Badge and Support Ticket Coupon) */
.rating-widget-brutalist {
    border: 3.5px solid var(--text-dark);
    border-radius: 20px;
    padding: 30px;
    background-color: #eff6ff; /* Soft Blue */
    margin-bottom: 40px;
    box-shadow: 8px 8px 0 var(--text-dark);
    position: relative;
}

.brutalist-star {
    fill: #facc15 !important;
    stroke: var(--text-dark) !important;
    stroke-width: 1.5px !important;
    stroke-linejoin: round !important;
    filter: drop-shadow(2px 2px 0px var(--text-dark));
    width: 24px;
    height: 24px;
    transition: transform 0.2s ease;
}

.brutalist-star:hover {
    transform: scale(1.2) rotate(8deg);
}

.faq-ticket-card {
    position: relative;
    border: 3.5px solid var(--text-dark);
    border-radius: 20px;
    padding: 30px;
    background-color: #ffe4e6 !important; /* Rose Pink */
    box-shadow: 6px 6px 0 var(--text-dark);
    margin-bottom: 40px;
}

.ticket-separator {
    border-top: 3.5px dashed var(--text-dark);
    margin: 25px -30px;
    position: relative;
}

.ticket-separator::before,
.ticket-separator::after {
    content: '';
    position: absolute;
    top: -11.75px; /* Centers the 20px height minus the border width */
    width: 20px;
    height: 20px;
    background-color: var(--bg-light); /* Matches body light blue bg */
    border: 3.5px solid var(--text-dark);
    border-radius: 50%;
    z-index: 2;
    transition: var(--transition-quick);
}

.ticket-separator::before {
    left: -10px;
}

.ticket-separator::after {
    right: -10px;
}


.faq-ticket-card:hover .ticket-separator::before,
.faq-ticket-card:hover .ticket-separator::after {
    transform: scale(1.1);
}

/* How It Works page Brutalist Barcode Coupon Card */
.how-it-works-coupon {
    border: 3.5px solid var(--text-dark);
    border-radius: 20px;
    padding: 30px;
    background-color: #fef9c3; /* Lemon Yellow */
    box-shadow: 6px 6px 0 var(--text-dark);
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.how-it-works-coupon:hover {
    transform: translateY(-4px) rotate(0.5deg);
    box-shadow: 10px 10px 0 var(--text-dark);
}

.coupon-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.coupon-pill {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    background-color: var(--text-dark);
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: 0.05em;
}

.coupon-badge {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    background-color: #ffffff;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
    box-shadow: 2px 2px 0 var(--text-dark);
    padding: 3px 8px;
    border-radius: 6px;
}

.coupon-title {
    font-size: 1.4rem;
    font-weight: 850;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 5px;
}

.coupon-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.coupon-list li {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.coupon-list li span {
    font-family: var(--font-display);
    font-weight: 900;
    color: var(--primary);
}

.coupon-barcode-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}

.coupon-separator-dots {
    border-top: 3.5px dashed var(--text-dark);
    width: 100%;
    margin-bottom: 12px;
}

.barcode-wrapper {
    height: 40px;
    display: flex;
    gap: 3px;
    align-items: stretch;
}

.barcode-line {
    background-color: var(--text-dark);
    width: 2px;
}

.barcode-line.thin { width: 1.5px; }
.barcode-line.medium { width: 3.5px; }
.barcode-line.thick { width: 6px; }

.barcode-number {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.2em;
}

/* ==========================================
   DOWNLOAD BLOCK (HIGH IMPACT BRUTALIST)
   ========================================== */
.download-block {
    background-color: var(--primary);
    border: 2px solid var(--text-dark);
    border-radius: 30px;
    padding: 80px;
    box-shadow: 15px 15px 0px #0b0f18;
    color: var(--bg-light);
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.download-text h2 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    margin-bottom: 24px;
}

.download-text p {
    color: rgba(240, 248, 255, 0.85);
    margin-bottom: 40px;
    font-size: 1.25rem;
}

.download-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.badge-svg {
    height: 50px;
    border: 2px solid var(--bg-light);
    border-radius: 8px;
    transition: var(--transition-quick);
}

.badge-svg:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(11, 15, 24, 0.15);
}

.download-qr-box {
    display: flex;
    align-items: center;
    gap: 24px;
    background-color: rgba(11, 15, 24, 0.2);
    border: 1px solid rgba(240, 248, 255, 0.2);
    padding: 20px;
    border-radius: 12px;
    width: fit-content;
}

.download-qr-box svg {
    width: 90px;
    height: 90px;
}

/* Pinned graphics inside CTA */
.download-mockup-deck {
    position: relative;
    height: 380px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.download-mockup-deck .stack-card {
    box-shadow: -15px 15px 0px #0b0f18;
}

/* ==========================================
   GOOD FELLA HIGH-IMPACT FOOTER (90VH)
   ========================================== */
.footer-editorial {
    background-color: #0b0f18;
    color: var(--bg-light);
    min-height: 90vh;
    padding: 80px 60px 40px 60px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Good Fella 10vw huge title */
.footer-huge-heading {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(3rem, 10vw, 10rem);
    line-height: 0.85;
    letter-spacing: -0.01em; /* Adjusted to prevent letter collision/jointing */
    text-transform: uppercase;
    color: var(--bg-light);
    margin-top: 40px;
    margin-bottom: 60px;
}

.footer-huge-heading span {
    color: var(--primary);
}

/* Infinitely rotating stamp badge */
.footer-rotating-badge {
    position: absolute;
    right: 80px;
    top: 80px;
    width: 140px;
    height: 140px;
    pointer-events: none;
    z-index: 10;
}

.footer-badge-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    object-fit: contain;
    pointer-events: none;
    z-index: 11;
}

.footer-rotating-badge svg {
    width: 100%;
    height: 100%;
    animation: spin-infinite 20s linear infinite;
}

.footer-rotating-badge path {
    fill: none;
}

.footer-rotating-badge text {
    font-family: var(--font-display);
    font-size: 8px;
    font-weight: 700;
    fill: var(--bg-light);
    letter-spacing: 0.23em;
    text-transform: uppercase;
}

@keyframes spin-infinite {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.footer-grid-row {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 0.5fr);
    gap: 60px;
    border-top: 1px solid rgba(240, 248, 255, 0.1);
    border-bottom: 1px solid rgba(240, 248, 255, 0.1);
    padding: 50px 0;
    margin-bottom: 40px;
}

.footer-brand-info h4 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.footer-brand-info p {
    color: rgba(240, 248, 255, 0.6);
    max-width: 320px;
    font-size: 1rem;
    margin-bottom: 24px;
}

.footer-social-row {
    display: flex;
    gap: 16px;
}

.footer-social-row a {
    color: #ffffff; /* solid white */
    transition: var(--transition-quick);
    opacity: 1;
}

.footer-social-row a:hover {
    color: var(--primary);
}

.footer-col-header {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links-list a {
    text-decoration: none;
    color: rgba(240, 248, 255, 0.6);
    font-size: 0.95rem;
    transition: var(--transition-quick);
}

.footer-links-list a:hover {
    color: var(--bg-light);
    padding-left: 4px;
}

.footer-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: rgba(240, 248, 255, 0.4);
}

.footer-meta-links {
    display: flex;
    gap: 30px;
}

.footer-meta-links a {
    text-decoration: none;
    color: rgba(240, 248, 255, 0.4);
    transition: var(--transition-quick);
}

.footer-meta-links a:hover {
    color: var(--bg-light);
}

/* ==========================================
   LEGAL SUBPAGES LAYOUT (Terms / Privacy)
   ========================================== */
.legal-page-header {
    background-color: rgba(39, 104, 248, 0.03);
    border-bottom: 1px solid var(--border-dark);
    padding: 160px 0 60px 0;
    text-align: center;
}

.legal-page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 16px;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.legal-grid-container {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 60px;
    padding: 60px 0;
}

.legal-sidebar {
    position: sticky;
    top: 130px;
    height: fit-content;
}

.legal-sidebar-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-left: 2px solid var(--border-dark);
    padding-left: 20px;
}

.legal-sidebar-menu a {
    text-decoration: none;
    color: var(--text-muted);
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    transition: var(--transition-quick);
    display: block;
    padding: 4px 0;
}

.legal-sidebar-menu li.active a,
.legal-sidebar-menu a:hover {
    color: var(--primary);
}

.legal-sidebar-menu li.active {
    border-left: 2px solid var(--primary);
    margin-left: -22px;
    padding-left: 20px;
}

.legal-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.legal-section h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-dark);
    padding-bottom: 10px;
    text-transform: uppercase;
}

.legal-section p {
    margin-bottom: 16px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.legal-section ul {
    margin-left: 24px;
    margin-bottom: 16px;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 1.05rem;
}

/* ==========================================
   RESPONSIVE OVERRIDES (MOBILE FIRST)
   ========================================== */
@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }

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

    .hero-stats-row {
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px 40px;
    }

    .full-screen-panel {
        min-height: auto !important;
        padding-top: 130px !important;
        padding-bottom: 60px !important;
    }

    .split-scroll-grid {
        grid-template-columns: 1fr;
    }

    .split-left-column {
        height: auto;
        position: relative;
        padding: 60px 40px;
        border-right: none;
        border-bottom: 1px solid var(--border-dark);
    }

    .split-right-column {
        padding: 0;
    }

    .scroll-step-card-wrapper {
        height: auto;
        padding: 60px 40px;
    }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: minmax(320px, auto);
    }

    .bento-span-2 {
        grid-column: span 2;
    }

    .bento-row-span-2 {
        grid-row: span 1 !important;
    }

    .testimonial-layout {
        grid-template-columns: 1fr;
    }

    .testimonial-info-col,
    .faq-info-col {
        position: relative !important;
        top: 0 !important;
        height: auto !important;
        margin-bottom: 40px;
    }

    .faq-editorial-grid {
        grid-template-columns: 1fr;
    }

    .download-block {
        grid-template-columns: 1fr;
    }

    .footer-editorial {
        min-height: auto;
        padding: 60px 40px 40px 40px;
    }

    .footer-rotating-badge {
        display: none; /* Hide stamp on mobile for space */
    }

    .footer-grid-row {
        grid-template-columns: 1fr 1fr;
    }

    /* Legal Subpages Layout Responsive overrides */
    .legal-grid-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 0;
    }

    .legal-sidebar {
        position: relative;
        top: 0;
        width: 100%;
        margin-bottom: 20px;
    }

    .legal-sidebar-menu {
        flex-direction: row;
        flex-wrap: wrap;
        border-left: none;
        border-bottom: 2px solid var(--border-dark);
        padding-left: 0;
        padding-bottom: 15px;
        gap: 16px;
    }

    .legal-sidebar-menu li.active {
        border-left: none;
        border-bottom: 2px solid var(--primary);
        margin-left: 0;
        margin-bottom: -17px;
        padding-left: 0;
        padding-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .nav-container {
        padding: 0 24px;
    }

    .section-wrapper {
        padding: 60px 0 !important;
    }

    .hero-stat-number {
        font-size: 2.5rem !important;
    }

    .split-left-column {
        padding: 40px 20px !important;
    }

    .scroll-step-card-wrapper {
        padding: 30px 20px !important;
    }

    .scroll-step-card {
        padding: 24px !important;
    }

    .how-it-works-coupon {
        padding: 20px !important;
    }

    body.menu-open {
        overflow: hidden !important;
    }

    .mobile-only-link {
        display: block !important;
    }

    .btn-menu-download {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        background-color: var(--primary) !important;
        color: #ffffff !important;
        border: 2px solid var(--text-dark) !important;
        box-shadow: 4px 4px 0px var(--text-dark) !important;
        padding: 14px 28px !important;
        border-radius: 8px !important;
        width: 100%;
        text-align: center;
        font-family: var(--font-display);
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        text-decoration: none;
        margin-top: 10px;
        transition: var(--transition-quick);
    }

    .btn-menu-download:hover {
        background-color: #1d4ed8 !important;
        transform: translate(-1px, -1px);
        box-shadow: 5px 5px 0px var(--text-dark) !important;
    }

    .header-nav .btn-editorial-outline {
        display: none !important;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 90px;
        left: 0;
        width: 100%;
        height: calc(100vh - 90px);
        background-color: var(--bg-light);
        border-bottom: 2px solid var(--text-dark);
        flex-direction: column;
        padding: 40px 24px;
        gap: 24px;
        overflow-y: auto;
        z-index: 998;
    }

    .header-nav.scrolled .nav-links {
        top: 75px;
        height: calc(100vh - 75px);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-toggle {
        display: flex;
    }

    /* Morphing Hamburger toggle open animation into an X */
    .mobile-toggle.open span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .mobile-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.open span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* Hero Card Stack mobile responsive adjustments */
    .card-back {
        transform: rotateY(-12deg) rotateX(8deg) translateZ(-40px) translateX(-20px) translateY(8px) !important;
        box-shadow: 4px 4px 0px var(--text-dark) !important;
    }
    .card-middle {
        transform: rotateY(-8deg) rotateX(6deg) translateZ(-20px) translateX(-10px) translateY(4px) !important;
        box-shadow: 6px 6px 0px var(--text-dark) !important;
    }
    .card-front {
        transform: rotateY(-4deg) rotateX(4deg) translateZ(0) !important;
        box-shadow: 8px 8px 0px var(--text-dark) !important;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn-editorial,
    .hero-buttons .btn-editorial-outline {
        width: 100%;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .bento-card {
        padding: 24px;
    }

    .bento-span-2 {
        grid-column: span 1;
    }

    .bento-row-span-2 {
        grid-row: span 1;
    }

    .testimonial-card {
        padding: 24px 20px;
    }

    .faq-row-btn {
        padding: 18px 20px !important;
    }

    .faq-row-answer-content {
        padding-left: 45px !important;
        padding-right: 20px !important;
    }

    .download-block {
        padding: 40px 24px;
    }

    .download-badges {
        justify-content: center !important;
        gap: 16px !important;
    }

    .badge-svg {
        height: 40px !important;
        width: auto !important;
    }

    .download-qr-box {
        display: none !important; /* Users can't scan QR on their own device */
    }

    .download-mockup-deck {
        height: var(--card-height);
        margin-top: 40px;
    }

    .footer-grid-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-meta-row {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    :root {
        --card-width: 280px;
        --card-height: 380px;
        --stack-height: 440px;
        --mockup-img-height: 140px;
    }

    h1 {
        font-size: clamp(2.2rem, 10vw, 3.8rem);
    }

    .btn-editorial, .btn-editorial-outline {
        padding: 16px 28px;
        font-size: 0.9rem;
    }

    .header-nav .btn-editorial-outline {
        padding: 8px 16px !important;
        font-size: 0.8rem !important;
    }
}

@media (max-width: 360px) {
    :root {
        --card-width: 240px;
        --card-height: 330px;
        --stack-height: 390px;
        --mockup-img-height: 120px;
    }

    .pinned-role-btn {
        padding: 10px 14px;
        font-size: 0.8rem;
    }
}

/* ==========================================
   PRICING PAGES STYLING
   ========================================== */
.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.pricing-header-block {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.pricing-header-block h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.pricing-card {
    background-color: var(--bg-panel);
    border: 2.5px solid var(--text-dark);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-smooth);
    box-shadow: 4px 4px 0px var(--text-dark);
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 10px 10px 0px var(--text-dark);
}

.pricing-card.premium {
    border-color: var(--primary);
    box-shadow: 4px 4px 0px var(--primary);
}

.pricing-card.premium:hover {
    box-shadow: 10px 10px 0px var(--primary);
}

.plan-tag {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: inline-block;
}

.pricing-card.premium .plan-tag {
    color: var(--primary);
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.plan-price {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1;
}

.plan-price span {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-muted);
}

.plan-desc {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.5;
    flex-grow: 1;
}

@media (max-width: 768px) {
    .pricing-container {
        padding: 40px 10px;
    }
    .pricing-card {
        padding: 30px 24px;
    }
}

@media (max-width: 480px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .plan-price {
        font-size: 2.5rem;
    }
}


