:root {
    /* Color Palette */
    --primary-gold: #FFB703;
    --deep-gold: #F4A300;
    --dark-brown: #3E2723;
    --warm-cream: #FFF8E1;
    --soft-sand: #FAF3D3;
    --accent-orange: #FB8500;
    --white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.4);
    --glass-border: rgba(255, 255, 255, 0.2);

    /* Typography */
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Poppins', sans-serif;

    /* Layout */
    --section-padding: 100px 20px;
    --max-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--warm-cream);
    color: var(--dark-brown);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: none;
    font-family: var(--font-main);
    gap: 10px;
}

.btn-primary {
    background: var(--primary-gold);
    color: var(--dark-brown);
    box-shadow: 0 4px 15px rgba(255, 183, 3, 0.3);
}

.btn-primary:hover {
    background: var(--deep-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 183, 3, 0.5);
}

.btn-outline {
    border: 2px solid var(--primary-gold);
    color: var(--dark-brown);
}

.btn-outline:hover {
    background: var(--primary-gold);
    transform: translateY(-3px);
}

/* Store Badges */
.store-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.store-btn {
    background: #000;
    color: #fff;
    padding: 10px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* GSAP conflict fix: avoid 'all' transition */
    transition: background 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, border-color 0.3s ease;
}

.store-btn:hover {
    transform: translateY(-5px);
    background: #222;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-gold);
}

.store-btn svg {
    width: 24px;
    height: 24px;
}

.store-btn .btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.store-btn .btn-text small {
    font-size: 0.65rem;
    text-transform: uppercase;
    font-weight: 500;
}

.store-btn .btn-text span {
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

/* Dynamic Background */
.honeycomb-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.hex-svg-grid {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    opacity: 0.15;
}

/* Specific Section Layouts */
section {
    padding: var(--section-padding);
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    letter-spacing: -0.02em;
}

.section-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
    font-size: 1.2rem;
    color: rgba(62, 39, 35, 0.7);
    line-height: 1.6;
}

.section-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 4px;
    background: var(--primary-gold);
    margin: 1.5rem auto 0;
    border-radius: 10px;
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}

nav.scrolled {
    background: rgba(255, 248, 225, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(62, 39, 35, 0.05);
    padding: 15px 0;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--dark-brown);
}

.logo-icon {
    width: 35px;
    height: 35px;
    background: var(--primary-gold);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li a {
    font-weight: 500;
    color: var(--dark-brown);
    position: relative;
    padding-bottom: 5px;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-links li a:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 120px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(62, 39, 35, 0.8);
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
}

.hero-visual {
    perspective: 1500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 290px;
    height: 600px;
    position: relative;
    z-index: 2;
    transform-style: preserve-3d;
    transform: rotateY(-18deg) rotateX(8deg) rotateZ(2deg);
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
}

.hero:hover .phone-mockup {
    transform: rotateY(-8deg) rotateX(4deg) rotateZ(1deg) translateY(-15px);
}

.phone-frame {
    width: 100%;
    height: 100%;
    background: #080808;
    border-radius: 46px;
    padding: 12px;
    box-shadow:
        15px 15px 40px rgba(0, 0, 0, 0.4),
        0 0 0 4px #1a1a1a,
        inset 0 0 10px rgba(255, 255, 255, 0.1);
    position: relative;
    transform: translateZ(10px);
    backface-visibility: hidden;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    /* Light fallback */
    border-radius: 36px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transform: translateZ(1px);
    /* Slight lifting to prevent Z-fighting */
    backface-visibility: hidden;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    -webkit-user-drag: none;
}

.phone-speaker {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background: #1a1a1a;
    border-radius: 10px;
    z-index: 20;
}

.phone-home-indicator {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    z-index: 20;
}

.particle {
    position: absolute;
    background: var(--primary-gold);
    opacity: 0.1;
    z-index: 1;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

/* Problem Section */
.problem-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
    flex-wrap: wrap;
    align-items: stretch;
}

/* Updated Problem Card - Enhanced Visibility */
.problem-card {
    background: #ffffff;
    padding: 50px 30px;
    border-radius: 32px;
    box-shadow: 0 10px 30px rgba(62, 39, 35, 0.04);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(62, 39, 35, 0.05);
    display: flex;
    flex-direction: column;
    height: auto;
    flex: 1;
    min-width: 250px;
    max-width: 320px;
    opacity: 1;
    /* Ensure visible by default */
}

.problem-card:hover {
    transform: translateY(-15px);
    background: #ffffff;
    box-shadow: 0 40px 80px rgba(255, 183, 3, 0.12);
    border-color: var(--primary-gold);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 25px;
    display: inline-block;
    filter: drop-shadow(0 5px 10px rgba(255, 183, 3, 0.2));
}

.problem-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark-brown);
    font-weight: 700;
}

.problem-card p {
    font-size: 0.95rem;
    color: #5D4037;
    /* More visible brown */
    line-height: 1.6;
}

/* Why Bees - World Class Hive Cluster */
.honeycomb-section {
    background-color: var(--soft-sand);
    padding: 100px 0;
    overflow: hidden;
}

.hive-cluster {
    position: relative;
    max-width: 1000px;
    margin: 60px auto;
    height: 600px;
}

.hive-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.core-hex {
    width: 200px;
    height: 220px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(255, 183, 3, 0.1);
    border: 1px solid rgba(255, 183, 3, 0.3);
    position: relative;
    overflow: hidden;
}

.core-hex::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: rotate(45deg);
    animation: lightSweep 4s infinite linear;
}

@keyframes lightSweep {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.core-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-brown);
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.core-sub {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--primary-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 5px;
    position: relative;
    z-index: 2;
}

@keyframes corePulse {

    0%,
    100% {
        transform: scale(1) translate(-50%, -50%);
        filter: brightness(1);
    }

    50% {
        transform: scale(1.05) translate(-50%, -50%);
        filter: brightness(1.2);
    }
}

/* Fix absolute positioning issue for corePulse by using a wrapper or separate transform */
.hive-center {
    animation: corePulse 4s infinite ease-in-out;
}

@keyframes corePulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.08);
    }
}

.hive-orbit {
    position: relative;
    width: 100%;
    height: 100%;
}

.orbit-node {
    position: absolute;
    width: 300px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 183, 3, 0.1);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 5;
}

.orbit-node:hover {
    transform: translateY(-10px);
    background: #ffffff;
    box-shadow: 0 30px 60px rgba(255, 183, 3, 0.15);
    border-color: var(--primary-gold);
}

.node-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.node-text h3 {
    font-size: 1.25rem;
    margin-bottom: 6px;
    color: var(--dark-brown);
    font-weight: 700;
}

.node-text p {
    font-size: 0.9rem;
    color: rgba(62, 39, 35, 0.8);
    line-height: 1.5;
}

/* Precise Positioning for the Elite Look */
.node-top-left {
    top: 0%;
    left: 0%;
}

.node-top-right {
    top: 0%;
    right: 0%;
}

.node-bottom-left {
    bottom: 0%;
    left: 0%;
}

.node-bottom-right {
    bottom: 0%;
    right: 0%;
}

@media (max-width: 950px) {
    .hive-cluster {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .hive-center {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        animation: none;
        margin: 40px 0;
    }

    .hive-orbit {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .orbit-node {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Clean Bee Cards */
.bee-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 20px;
}

.bee-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 36px 28px;
    border: 1px solid rgba(62, 39, 35, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.bee-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.07);
    border-color: rgba(255, 183, 3, 0.3);
}

.bee-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.bee-card:hover .bee-card-icon {
    transform: scale(1.1) rotate(-3deg);
}

.bee-card-icon svg {
    width: 36px;
    height: 36px;
}

.bee-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-brown);
    margin: 0;
}

.bee-card p {
    font-size: 0.9rem;
    color: rgba(62, 39, 35, 0.7);
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 900px) {
    .bee-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .bee-cards {
        grid-template-columns: 1fr;
    }
}

/* BBOX Ecosystem Pillars - Rich Card Design */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 20px;
}

.pillar-card {
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(62, 39, 35, 0.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.pillar-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
}

.pillar-illustration {
    width: 100%;
    padding: 40px 30px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
}

.pillar-illustration svg {
    width: 120px;
    height: 120px;
}

.pillar-card.pillar-gold .pillar-illustration {
    background: linear-gradient(160deg, #FFF8E1 0%, #FFF3CD 100%);
}

.pillar-card.pillar-orange .pillar-illustration {
    background: linear-gradient(160deg, #FFF3E0 0%, #FFE0B2 100%);
}

.pillar-card.pillar-green .pillar-illustration {
    background: linear-gradient(160deg, #E8F5E9 0%, #C8E6C9 100%);
}

.pillar-card.pillar-gold:hover {
    border-color: #FFB703;
    box-shadow: 0 30px 70px rgba(255, 183, 3, 0.1);
}

.pillar-card.pillar-orange:hover {
    border-color: #FB8500;
    box-shadow: 0 30px 70px rgba(251, 133, 0, 0.1);
}

.pillar-card.pillar-green:hover {
    border-color: #2E7D32;
    box-shadow: 0 30px 70px rgba(46, 125, 50, 0.1);
}

.pillar-content {
    padding: 28px 30px 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.pillar-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    align-self: flex-start;
}

.pillar-content h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark-brown);
    margin: 0;
    line-height: 1.2;
}

.pillar-content p {
    font-size: 0.92rem;
    color: rgba(62, 39, 35, 0.7);
    line-height: 1.7;
    margin: 0;
}

.pillar-features {
    list-style: none;
    padding: 0;
    margin: 6px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pillar-features li {
    font-size: 0.88rem;
    color: rgba(62, 39, 35, 0.75);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 900px) {
    .pillars-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-inline: auto;
    }
}

/* Horizontal Process Flow */
.process-flow {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-top: 20px;
    flex-wrap: nowrap;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 0;
    max-width: 200px;
}

.process-icon-wrap {
    position: relative;
    width: 100px;
    height: 100px;
    background: var(--step-bg, #FFF8E1);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border: 1.5px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
}

.process-step:hover .process-icon-wrap {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.process-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-icon svg {
    width: 52px;
    height: 52px;
}

.process-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 28px;
    height: 28px;
    background: var(--step-color, #FFB703);
    color: white;
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.process-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 8px;
    line-height: 1.3;
}

.process-content p {
    font-size: 0.82rem;
    color: rgba(62, 39, 35, 0.65);
    line-height: 1.6;
    padding: 0 8px;
}

.process-arrow {
    display: flex;
    align-items: center;
    padding-top: 34px;
    /* align with icon centre */
    flex-shrink: 0;
    width: 60px;
}

.process-arrow svg {
    width: 60px;
    height: 24px;
}

@keyframes dashMove {
    to {
        stroke-dashoffset: -18;
    }
}

.process-arrow svg path:first-child {
    animation: dashMove 1.5s linear infinite;
}

@media (max-width: 900px) {
    .process-flow {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        max-width: 350px;
        margin: 0 auto;
    }

    .process-step {
        max-width: 100%;
        width: 100%;
        flex-direction: row;
        text-align: left;
        gap: 20px;
        margin-bottom: 10px;
    }

    .process-icon-wrap {
        flex-shrink: 0;
        margin-bottom: 0;
    }

    .process-arrow {
        width: 100px;
        /* Matches icon-wrap width for perfect alignment */
        height: 60px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: rotate(90deg);
        margin: -10px 0;
    }

    .process-arrow svg {
        width: 50px;
        height: auto;
    }
}

/* Power Features — Bento Grid */
.features-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
    margin-top: 20px;
}

.bento-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px 30px;
    border: 1px solid rgba(62, 39, 35, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    overflow: hidden;
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    opacity: 0.04;
    background: currentColor;
    transform: translate(30%, -30%);
}

.bento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

/* Large hero card spans row 1–2, col 1 */
.bento-large {
    grid-row: 1 / 3;
    grid-column: 1 / 2;
    gap: 18px;
}

.bento-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bento-icon svg {
    width: 70px;
    height: 70px;
}

.bento-icon-sm {
    width: 52px;
    height: 52px;
}

.bento-icon-sm svg {
    width: 52px;
    height: 52px;
}

.bento-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    align-self: flex-start;
}

.bento-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark-brown);
    margin: 0;
    line-height: 1.25;
}

.bento-large h3 {
    font-size: 1.7rem;
}

.bento-card p {
    font-size: 0.88rem;
    color: rgba(62, 39, 35, 0.65);
    line-height: 1.7;
    margin: 0;
}

.bento-large p {
    font-size: 0.95rem;
}

.bento-stats {
    display: flex;
    gap: 24px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(62, 39, 35, 0.06);
}

.bento-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bento-stat span {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark-brown);
    line-height: 1;
}

.bento-stat small {
    font-size: 0.75rem;
    color: rgba(62, 39, 35, 0.5);
    font-weight: 500;
}

/* Colour accents on hover border */
.feat-gold:hover {
    border-color: #FFB703;
    box-shadow: 0 24px 60px rgba(255, 183, 3, 0.1);
}

.feat-blue:hover {
    border-color: #1565C0;
    box-shadow: 0 24px 60px rgba(21, 101, 192, 0.08);
}

.feat-orange:hover {
    border-color: #E65100;
    box-shadow: 0 24px 60px rgba(230, 81, 0, 0.08);
}

.feat-green:hover {
    border-color: #1B5E20;
    box-shadow: 0 24px 60px rgba(27, 94, 32, 0.08);
}

.feat-purple:hover {
    border-color: #4A148C;
    box-shadow: 0 24px 60px rgba(74, 20, 140, 0.08);
}

.feat-teal:hover {
    border-color: #00695C;
    box-shadow: 0 24px 60px rgba(0, 105, 92, 0.08);
}

@media (max-width: 900px) {
    .features-bento {
        grid-template-columns: 1fr 1fr;
    }

    .bento-large {
        grid-row: auto;
        grid-column: 1 / 3;
    }
}

@media (max-width: 560px) {
    .features-bento {
        grid-template-columns: 1fr;
    }

    .bento-large {
        grid-column: 1 / 2;
    }
}

.feature-card:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 15px 40px rgba(255, 183, 3, 0.1);
}

/* Target Audience Section */
.audience-header {
    text-align: center;
    margin-bottom: 50px;
}

.audience-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #FFB703;
    background: #FFF8E1;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 18px;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.audience-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 28px 22px 30px;
    border: 1px solid rgba(62, 39, 35, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    overflow: hidden;
}

.audience-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 0 0 24px 24px;
}

.aud-home::after {
    background: #FFB703;
}

.aud-sme::after {
    background: #1565C0;
}

.aud-freelancer::after {
    background: #6A1B9A;
}

.aud-warehouse::after {
    background: #1B5E20;
}

.aud-student::after {
    background: #E65100;
}

.audience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.08);
}

.audience-card:hover::after {
    opacity: 1;
}

.aud-home:hover {
    border-color: rgba(255, 183, 3, 0.3);
}

.aud-sme:hover {
    border-color: rgba(21, 101, 192, 0.3);
}

.aud-freelancer:hover {
    border-color: rgba(106, 27, 154, 0.3);
}

.aud-warehouse:hover {
    border-color: rgba(27, 94, 32, 0.3);
}

.aud-student:hover {
    border-color: rgba(230, 81, 0, 0.3);
}

.audience-icon-wrap {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    transition: transform 0.3s ease;
}

.audience-card:hover .audience-icon-wrap {
    transform: scale(1.08) translateY(-2px);
}

.audience-icon-wrap svg {
    width: 72px;
    height: 72px;
}

.audience-label {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    align-self: flex-start;
}

.audience-card h3 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--dark-brown);
    margin: 0;
    line-height: 1.3;
}

.audience-card p {
    font-size: 0.82rem;
    color: rgba(62, 39, 35, 0.65);
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

.audience-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
    border-top: 1px solid rgba(62, 39, 35, 0.06);
    padding-top: 14px;
}

.audience-features li {
    font-size: 0.78rem;
    color: rgba(62, 39, 35, 0.7);
    font-weight: 500;
    padding-left: 14px;
    position: relative;
}

.audience-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #FFB703;
    font-weight: 700;
}

@media (max-width: 1100px) {
    .audience-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 700px) {
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 460px) {
    .audience-grid {
        grid-template-columns: 1fr;
    }
}





/* =========================================
   CTA Section
   ========================================= */
.final-cta {
    background: linear-gradient(135deg, #FFB703, #FB8500);
    color: var(--dark-brown);
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    top: -150px;
    right: -100px;
}

.final-cta::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    bottom: -120px;
    left: -80px;
}

.cta-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--dark-brown);
    background: rgba(255, 255, 255, 0.35);
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.final-cta h2 {
    color: var(--dark-brown);
    font-size: 2.8rem;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.final-cta p {
    font-size: 1.1rem;
    color: rgba(62, 39, 35, 0.75);
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    position: relative;
    z-index: 1;
}

.btn-cta-main {
    font-size: 1.2rem !important;
    padding: 18px 44px !important;
    background: var(--dark-brown) !important;
    color: #FFB703 !important;
    border-radius: 60px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 30px rgba(62, 39, 35, 0.3);
    transition: all 0.3s ease;
}

.btn-cta-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(62, 39, 35, 0.4);
}

/* =========================================
   Footer
   ========================================= */
.site-footer {
    background: #1a1108;
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Brand column */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    color: #FFB703;
    text-decoration: none;
    letter-spacing: 2px;
}

.footer-logo .logo-icon {
    width: 32px;
    height: 32px;
    background: #FFB703;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.footer-summary {
    font-size: 0.88rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.5);
    max-width: 360px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 4px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.social-link:hover {
    background: #FFB703;
    border-color: #FFB703;
    color: #1a1108;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 183, 3, 0.25);
}

/* Link columns */
.footer-col h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 22px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.25s ease;
    position: relative;
    padding-left: 0;
}

.footer-col ul li a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #FFB703;
    transition: width 0.3s ease;
}

.footer-col ul li a:hover {
    color: #FFB703;
}

.footer-col ul li a:hover::before {
    width: 100%;
}

/* Footer bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
}

.footer-tagline {
    font-weight: 600;
    color: rgba(255, 183, 3, 0.4) !important;
    letter-spacing: 1px;
}

/* Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 2000;
    padding: 0;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--dark-brown);
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(10px);
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* =========================================
   Responsive — General & Layout
   ========================================= */
@media (max-width: 991px) {
    :root {
        --section-padding: 80px 20px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--warm-cream);
        /* Matching theme */
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1500;
        box-shadow: -15px 0 40px rgba(0, 0, 0, 0.1);
        padding: 40px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li a {
        font-size: 1.5rem;
        font-weight: 700;
        font-family: var(--font-heading);
    }

    .nav-cta {
        display: none;
    }

    /* Hero Section */
    .hero {
        padding-top: 100px;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-text h1 {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .hero-text p {
        margin-inline: auto;
        font-size: 1.1rem;
    }

    .store-badges {
        justify-content: center;
    }

    .hero-btns {
        justify-content: center;
    }

    .phone-mockup {
        width: 260px;
        height: 540px;
        transform: rotateY(-10deg) rotateX(5deg) scale(0.9);
        margin-bottom: 40px;
    }

    .hero:hover .phone-mockup {
        transform: rotateY(-5deg) rotateX(2deg) translateY(-10px) scale(0.92);
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-description {
        margin-bottom: 3rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .problem-grid {
        flex-direction: column;
        align-items: center;
    }

    .problem-card {
        max-width: 100%;
        width: 100%;
    }

    .bee-card {
        padding: 30px 20px;
    }

    .process-step {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-btns .btn {
        width: 100%;
    }

    .store-btn {
        width: 100%;
        justify-content: center;
    }

    .phone-mockup {
        width: 220px;
        height: 460px;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

/* =========================================
   Responsive — Footer
   ========================================= */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px 40px;
    }

    .footer-brand {
        grid-column: 1 / 3;
        text-align: center;
        align-items: center;
    }

    .footer-summary {
        margin-inline: auto;
    }

    .footer-social {
        justify-content: center;
    }

    .final-cta h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 560px) {
    .site-footer {
        padding-top: 60px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-col ul {
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding: 40px 0;
    }

    .final-cta h2 {
        font-size: 1.8rem;
    }

    .btn-cta-main {
        font-size: 1.1rem !important;
        padding: 16px 36px !important;
    }
}