@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@400;500;600;700&display=swap');

:root {
    /* Color Palette */
    --bg-white: #FFFAFA;
    --primary-gold-start: #D4AF37;
    --primary-gold-end: #F6D365;
    --charcoal: #1C1C1C;
    --charcoal-light: #2D2D2D;
    --gold-glow: rgba(212, 175, 55, 0.15);

    /* Gradients */
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F1C40F 100%);
    --gold-gradient-soft: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(241, 196, 15, 0.1) 100%);
    --surface-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.4) 100%);
    --premium-black: #0F0F0F;

    /* Shadows */
    --shadow-soft: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    --shadow-gold: 0 10px 40px -15px rgba(212, 175, 55, 0.3);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Borders */
    --radius-lg: 20px;
    --radius-md: 12px;
    --container-width: 1200px;

    /* New Design Tokens */
    --mesh-color-1: rgba(212, 175, 55, 0.1);
    --mesh-color-2: rgba(0, 0, 0, 0.05);
    --mesh-color-3: rgba(255, 250, 250, 0.4);
}

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-white);
    color: var(--charcoal);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Mesh Gradient Background */
.mesh-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(at 100% 0%, var(--mesh-color-1) 0px, transparent 50%),
        radial-gradient(at 0% 100%, var(--mesh-color-1) 0px, transparent 50%),
        radial-gradient(at 0% 0%, var(--mesh-color-2) 0px, transparent 50%),
        radial-gradient(at 100% 100%, var(--mesh-color-2) 0px, transparent 50%);
    filter: blur(80px);
    opacity: 0.8;
}

.mesh-circle {
    position: absolute;
    width: 40%;
    height: 60%;
    border-radius: 50%;
    background: var(--gold-gradient);
    filter: blur(100px);
    opacity: 0.15;
    animation: mesh-move 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.mesh-circle:nth-child(2) {
    top: 40%;
    left: 50%;
    animation-duration: 30s;
    animation-delay: -5s;
    opacity: 0.1;
}

@keyframes mesh-move {
    0% {
        transform: translate(-10%, -10%) rotate(0deg);
    }

    100% {
        transform: translate(10%, 10%) rotate(360deg);
    }
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background: var(--gold-gradient);
    color: white;
    border: none;
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 45px -12px rgba(212, 175, 55, 0.45);
}

.btn-outline {
    background: transparent;
    border: 2px solid #D4AF37;
    color: #D4AF37;
    padding: 14px 32px;
}

.btn-outline:hover {
    background: #D4AF37;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.btn-white-gold {
    background: white;
    color: var(--primary-gold-start);
    border: none;
    font-weight: 700;
}

.btn-white-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.glass-dark {
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.text-gradient {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.mobile-only {
    display: none;
}

.section-padding {
    padding: 160px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    box-sizing: border-box;
    width: 100%;
}

.section-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -3px;
    color: #1A1A1A;
}

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

    .section-title {
        font-size: 2.8rem;
        letter-spacing: -2px;
    }
}

@media (max-width: 768px) {
    .section-padding {
        min-height: auto;
        padding: 60px 20px;
    }
}

/* Ensure content doesn't get cut off if taller than viewport */
@media (max-height: 800px),
(max-width: 768px) {
    .section-padding {
        min-height: auto;
        padding: 80px 0;
    }
}

.text-gradient {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-center {
    text-align: center;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 60px rgba(0, 0, 0, 0.04);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo,
.nav-cta {
    flex: 1;
}

.nav-cta {
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 768px) {
    .nav-content {
        padding: 0 20px;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.6rem !important;
    font-weight: 800;
    font-family: var(--font-heading);
    letter-spacing: -1px;
}

.logo-img {
    height: 44px !important;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0 auto;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #444;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    letter-spacing: -0.3px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: width 0.3s ease;
}

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

.nav-links a:hover {
    opacity: 1;
    color: var(--primary-gold-start);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 140px 0 100px;
    overflow: hidden;
    background-color: var(--bg-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }
}

.hero-bg-waves {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, var(--gold-glow) 0%, transparent 60%);
    z-index: 0;
}

.integration-icon-wrapper {
    width: 36px;
    height: 36px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
    flex-shrink: 0;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.integration-features li:hover .integration-icon-wrapper {
    background: var(--gold-gradient);
    color: white;
    transform: translateY(-2px);
}

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

.floating-box {
    position: absolute;
    border: 2.5px solid rgba(212, 175, 55, 0.4);
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(2px);
    opacity: 0.5;
    /* Increased for better visibility while keeping it premium */
    animation: float-premium linear infinite;
}

.box-1 {
    width: 60px;
    height: 60px;
    top: 15%;
    left: 10%;
    animation-duration: 18s;
}

.box-2 {
    width: 120px;
    height: 120px;
    top: 65%;
    left: 5%;
    animation-duration: 25s;
    animation-delay: -5s;
}

.box-3 {
    width: 80px;
    height: 80px;
    top: 25%;
    right: 15%;
    animation-duration: 22s;
    animation-delay: -2s;
}

.box-4 {
    width: 150px;
    height: 150px;
    top: 70%;
    right: 10%;
    animation-duration: 28s;
}

.box-5 {
    width: 40px;
    height: 40px;
    top: 45%;
    left: 45%;
    animation-duration: 20s;
    animation-delay: -10s;
}

@keyframes float-premium {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    33% {
        transform: translateY(-30px) rotate(3deg);
    }

    66% {
        transform: translateY(15px) rotate(-3deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 30px;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--charcoal);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-text-centered {
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-subtitle-centered {
    max-width: 800px !important;
}

.hero-actions-centered {
    justify-content: center;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

/* Live Ticker */
.hero-live-ticker {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    min-width: 400px;
    padding: 12px 30px;
    border-radius: 50px 50px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.ticker-content {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--charcoal);
}

.ticker-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10b981;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.5;
        transform: scale(0.9);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }

    100% {
        opacity: 0.5;
        transform: scale(0.9);
    }
}

/* Mockup Styles */
.dashboard-mockup {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    background: white;
    transition: transform 0.5s ease;
    height: 320px;
    /* Fixed uniform height for all slides */
    display: flex;
    flex-direction: column;
    width: 100%;
}

.dashboard-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.mockup-header {
    background: #f8f9fa;
    padding: 12px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.mockup-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-slider {
    position: relative;
    width: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: all 0.8s ease;
    pointer-events: none;
    z-index: 1;
}

.hero-slide.active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e0e0e0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.slider-dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--primary-gold-start);
}

.stat-trend {
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 5px;
}

.stat-t.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    font-family: var(--font-heading);
}

.price-val,
.price-suffix {
    transition: opacity 0.3s ease;
}

.price-suffix {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
}

.stat-trend.positive {
    color: #10b981;
}

.dots {
    display: flex;
    gap: 6px;
}

.dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e0e0e0;
}

.mockup-body {
    padding: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background: white;
    flex: 1;
    align-content: start;
}

.mockup-image-container {
    padding: 0 !important;
    overflow: hidden;
    display: block !important;
}

.mockup-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.stat-card {
    background: #fdfdfd;
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.revenue {
    grid-column: span 2;
    background: var(--gold-glow);
    border-color: rgba(212, 175, 55, 0.1);
}

.stat-label {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
}

.healthy {
    color: #10b981;
}

/* Bento Grid Features */
.features-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(130px, auto);
    gap: 16px;
    margin-top: 20px;
}

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

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

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

/* Staggered Reveal from different directions */
.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* New Bento Grid Layout (Screenshot Style) */
.features-grid-new {
    display: flex;
    gap: 25px;
    margin-top: 40px;
}

.bento-col-main {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.bento-col-side {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-row-split {
    display: flex;
    gap: 25px;
    flex: 1;
}

.card-monitoring-new {
    flex: 1.2;
}

.bento-stack {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.mockup-container {
    margin-top: auto;
    padding-top: 25px;
}

.mini-invoice-new {
    background: #fdfaf0;
    padding: 20px;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.invoice-price-tag {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--charcoal);
}

.wa-status-tag {
    background: #25d366;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dot-green {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.mini-chart-simple {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 60px;
    margin-top: 25px;
}

.bar-s {
    flex: 1;
    background: #e9c46a;
    border-radius: 4px;
    opacity: 0.6;
}

@media (max-width: 992px) {
    .features-grid-new {
        flex-direction: column;
    }

    .feature-row-split {
        flex-direction: column;
    }
}

.invoice-price {
    margin-top: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-gold-start);
}

.wa-bubble {
    position: absolute;
    right: -10px;
    bottom: 40px;
    background: #25D366;
    color: white;
    padding: 8px 12px;
    border-radius: 15px 15px 0 15px;
    font-size: 0.65rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    z-index: 2;
    animation: reveal-right 1s ease-out 0.5s forwards;
    opacity: 0;
}

.status-badge {
    position: absolute;
    right: 20px;
    top: 20px;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}

.status-badge .dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
}

@keyframes reveal-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes reveal-right {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.pulse .dot {
    animation: status-pulse 1.5s infinite;
}

@keyframes status-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.01);
    background: white;
    border-color: var(--primary-gold-start);
    box-shadow: var(--shadow-gold);
}

.bento-visual {
    margin-top: 20px;
    height: 100px;
    background: var(--gold-glow);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.visual-tag {
    background: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-gold-start);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.mini-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 60px;
    margin-top: 20px;
}

.mini-chart .bar {
    flex: 1;
    background: var(--gold-gradient);
    border-radius: 4px;
    opacity: 0.6;
    transition: height 1s ease;
}

/* Integration Section */
.bg-light {
    background-color: #F8F9FA;
}

.integration-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    padding: 60px;
    border-radius: 30px;
    align-items: center;
}

.integration-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* Pricing Section */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    font-weight: 600;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e0e0e0;
    transition: .4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

input:checked+.slider {
    background: var(--gold-gradient);
}

input:checked+.slider:before {
    transform: translateX(26px);
}

.pricing-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    margin-top: 40px !important;
    width: 100% !important;
}

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

@media (max-width: 640px) {
    .pricing-grid {
        grid-template-columns: 1fr !important;
    }
}

.pricing-card {
    background: #fff;
    padding: 24px 16px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
}

.pricing-card.featured {
    border: 2px solid var(--primary-gold-start);
    background: #fff;
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.15);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-gradient);
    color: white;
    padding: 3px 15px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    z-index: 10;
}

.pricing-card h3 {
    margin-top: 15px;
    font-size: 1.4rem;
    font-weight: 700;
}

.price {
    font-size: 2.22rem;
    font-weight: 800;
    color: var(--charcoal);
    margin: 12px 0;
}

.price-suffix {
    font-size: 0.9rem;
    color: #888;
    font-weight: 500;
}

.price-features {
    text-align: left;
    margin: 20px 0 30px;
    list-style: none;
    padding: 0;
}

.price-features li {
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-features li::before {
    content: "✓";
    color: var(--primary-gold-start);
    font-weight: 900;
}

/* Feature Bento Visuals */
.bento-visual {
    margin-top: 25px;
    width: 100%;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    padding: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.mini-chart {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 50px;
}

@keyframes barPulse {
    0% {
        opacity: 0.4;
        transform: scaleY(1);
    }

    50% {
        opacity: 0.8;
        transform: scaleY(1.1);
    }

    100% {
        opacity: 0.4;
        transform: scaleY(1);
    }
}

.mini-chart .bar {
    flex: 1;
    background: var(--gold-gradient);
    border-radius: 4px 4px 0 0;
    opacity: 0.8;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
    animation: barPulse 2s infinite ease-in-out;
    transform-origin: bottom;
}

.pricing-card.featured {
    border: 2px solid var(--primary-gold-start);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
    background: linear-gradient(to bottom, #fff, #fffaf0);
}

.pricing-card.featured .popular-badge {
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0% {
        transform: translateX(-50%) scale(1);
    }

    50% {
        transform: translateX(-50%) scale(1.05);
    }

    100% {
        transform: translateX(-50%) scale(1);
    }
}

.automation-ui-mockup {
    position: relative;
    height: 100px;
}

.mini-invoice {
    background: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    width: 70%;
}

.wa-bubble {
    position: absolute;
    right: 0;
    bottom: 10px;
    background: #25D366;
    color: white;
    padding: 6px 12px;
    border-radius: 20px 20px 0 20px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Dashboard Preview */
.dashboard-preview-main {
    margin-top: 60px;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 8px solid white;
}

.preview-img {
    width: 100%;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.dashboard-preview-main:hover .preview-img {
    transform: scale(1.02) translateY(-5px);
}

.glass-highlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: radial-gradient(circle at top right, var(--gold-glow) 0%, transparent 40%);
}

/* CTA Section */
/* CTA Section - Premium Re-design */
.cta-banner {
    padding: 100px 60px;
    text-align: center;
    border-radius: 60px;
    background: linear-gradient(135deg, #0F0F0F 0%, #1A1A1A 100%);
    color: white;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.4);
}

.cta-banner::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-banner::after {
    content: "";
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-banner h2 {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 900;
    letter-spacing: -2px;
    position: relative;
    z-index: 1;
}

.cta-banner p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 48px;
    color: #AAA;
    font-weight: 500;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.cta-banner .btn-white-gold {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    padding: 22px 50px;
    background: var(--gold-gradient);
    color: white !important;
    border: none;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

@media (max-width: 768px) {
    .cta-banner {
        padding: 80px 30px;
        border-radius: 40px;
    }

    .cta-banner h2 {
        font-size: 2.5rem;
    }
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    background: white;
    border-top: 1px solid #eee;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand p {
    margin: 20px 0;
    color: #666;
    max-width: 350px;
}

.footer-links h4 {
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #f0f0f0;
    color: #999;
    font-size: 0.9rem;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.hero .reveal {
    transition-delay: 0s !important;
}

/* Staggered Reveals */
.features-grid-new .reveal-left {
    transition-delay: 0.1s;
}

.features-grid-new .reveal-right {
    transition-delay: 0.2s;
}

.features-grid-new .reveal-up {
    transition-delay: 0.3s;
}

.testimonials-grid .testimonial-card:nth-child(1) {
    transition-delay: 0.1s;
}

.testimonials-grid .testimonial-card:nth-child(2) {
    transition-delay: 0.2s;
}

.testimonials-grid .testimonial-card:nth-child(3) {
    transition-delay: 0.3s;
}

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

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--charcoal);
    border-radius: 4px;
}

@media (max-width: 992px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 3rem;
    }

    .integration-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .pricing-card.featured {
        transform: scale(1);
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 40px;
        box-shadow: var(--shadow-soft);
        gap: 20px;
        text-align: center;
    }
}

.cta h2 {
    font-size: 3rem;
}

.footer-content {
    flex-direction: column;
    gap: 3rem;
    text-align: center;
}

.footer-links {
    flex-direction: column;
    gap: 1.5rem;
}

/* Background Variations */
.bg-gold-light {
    background: linear-gradient(135deg, #fffcf0 0%, #fff 100%);
}




/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    overflow: hidden;
}

.faq-question {
    padding: 24px;
    cursor: pointer;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #fafafa;
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    color: #666;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding: 0 24px 24px;
    max-height: 200px;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

/* Solutions Section */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.solution-card {
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.solution-card:hover {
    transform: translateY(-12px);
    border-color: var(--primary-gold-start);
    box-shadow: var(--shadow-gold);
}

.solution-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    height: 60px;
    color: var(--primary-gold-start);
}

.solution-icon svg {
    width: 48px;
    height: 48px;
    stroke: currentColor;
    transition: all 0.3s ease;
}

.solution-card:hover .solution-icon svg {
    transform: scale(1.1);
    stroke: var(--primary-gold-end);
}

.solution-features {
    text-align: left;
    margin-top: 20px;
    padding-left: 0;
}

.solution-features li {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.solution-features li::before {
    content: "•";
    color: var(--primary-gold-start);
    font-weight: bold;
}

/* Slide Content Animations */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-slide.active .dashboard-mockup {
    animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-slide.active .stat-card {
    opacity: 0;
    animation: slideUpFade 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-slide.active .stat-card:nth-child(1) {
    animation-delay: 0.2s;
}

.hero-slide.active .stat-card:nth-child(2) {
    animation-delay: 0.4s;
}

/* Documentation Section */
.docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.docs-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    border-radius: var(--radius-md);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.docs-card:hover {
    background: white;
    transform: translateX(10px);
    border-color: var(--primary-gold-start);
    box-shadow: var(--shadow-soft);
}

.docs-info h4 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.docs-info p {
    font-size: 0.85rem;
    color: #666;
}

.docs-arrow {
    font-size: 1.5rem;
    color: var(--primary-gold-start);
    font-weight: bold;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
        padding-top: 40px;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 2;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }



    .logo-img {
        height: 28px;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

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

    .feature-card {
        padding: 25px;
        min-height: 200px;
        display: flex;
        flex-direction: column;
    }

    .bento-lg,
    .bento-wide,
    .bento-tall {
        grid-column: span 2;
        grid-row: auto;
    }
}

/* Base styles for menu-toggle - hide by default */
.menu-toggle {
    display: none;
}

@media (max-width: 768px) {
    .nav-cta {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    .section-padding {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 3rem;
    }

    .logo,
    .nav-cta {
        flex: none;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        width: 30px;
        height: 30px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1001;
        position: relative;
    }

    .menu-toggle span {
        width: 24px;
        height: 2px;
        background: var(--charcoal);
        border-radius: 2px;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        position: relative;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 0;
        gap: 32px;
        transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
    }

    .nav-links li {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        width: 100%;
        text-align: center;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }

    /* Staggered Delay for Menu Items */
    .nav-links.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links.active li:nth-child(2) {
        transition-delay: 0.15s;
    }

    .nav-links.active li:nth-child(3) {
        transition-delay: 0.2s;
    }

    .nav-links.active li:nth-child(4) {
        transition-delay: 0.25s;
    }

    .nav-links.active li:nth-child(5) {
        transition-delay: 0.3s;
    }

    .nav-links.active li:nth-child(6) {
        transition-delay: 0.35s;
    }

    .nav-links a {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--charcoal);
        letter-spacing: -1px;
        display: block;
        padding: 5px;
    }

    .mobile-cta {
        margin-top: 20px;
        width: 80% !important;
        max-width: 250px;
        margin-left: auto;
        margin-right: auto;
        background: var(--gold-gradient);
        color: white !important;
        display: block;
        text-align: center;
        padding: 12px 24px;
        border-radius: 14px !important;
        font-weight: 700 !important;
        box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
    }

    .nav-links.active {
        right: 0;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

@media (max-width: 480px) {


    .hero-title {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }

    .section-title {
        font-size: 2rem;
    }

    .dashboard-mockup {
        height: 250px;
        /* Shorter for mobile */
    }

    .mockup-body {
        padding: 15px;
        gap: 10px;
    }

    .stat-value {
        font-size: 1.1rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .features-bento {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 16px;
    }

    .feature-card {
        padding: 20px;
        min-height: auto;
    }

    .bento-lg,
    .bento-wide,
    .bento-tall {
        grid-column: span 1;
    }

    .hero-live-ticker {
        min-width: 90%;
        padding: 10px 15px;
        font-size: 0.75rem;
    }
}

/* Partners Marquee */
.partners-marquee-section {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.02);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.partners-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.partners-marquee {
    width: 100%;
    display: flex;
}

.marquee-content {
    display: flex;
    gap: 80px;
    animation: marquee 30s linear infinite;
}

.partner-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #ccc;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.partner-logo:hover {
    color: var(--primary-gold-start);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Comparison Section */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
    width: 100%;
}

.comparison-card {
    padding: 40px;
    border-radius: var(--radius-lg);
    background: white;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
}

.comparison-card.conventional {
    border: 1px solid #eee;
    opacity: 0.7;
}

.comparison-card.monkey-enterprise {
    background: var(--charcoal);
    color: white;
    border: 1px solid var(--primary-gold-start);
    position: relative;
    transform: scale(1.05);
    z-index: 10;
}

.card-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--gold-gradient);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
}

.comparison-card h3 {
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.comparison-card ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.comparison-card ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
}

/* Mobile Ecosystem */
.mobile-ecosystem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ecosystem-visual {
    position: relative;
}

.phone-mockup {
    width: 280px;
    height: 580px;
    background: #1c1c1c;
    border-radius: 40px;
    border: 8px solid #333;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.3);
}

.ecosystem-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.eco-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.eco-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.eco-text h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.testimonial-card {
    padding: 40px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border-bottom: 4px solid var(--primary-gold-start);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.quote {
    font-style: italic;
    color: #555;
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-weight: 700;
    color: var(--charcoal);
    font-size: 1.1rem;
}

.author-title {
    font-size: 0.9rem;
    color: #888;
}

/* Global Responsiveness Overrides */
/* =========================================================================
   REFINED MOBILE & TABLET RESPONSIVENESS (CONSOLIDATED)
   ========================================================================= */

@media (max-width: 1200px) {
    .container {
        max-width: 90% !important;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        padding: 0 40px;
    }
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        padding: 0 20px;
    }

    .features-grid-new {
        grid-template-columns: 1fr;
    }

    .mobile-ecosystem-grid {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }

    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .solutions-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
        letter-spacing: -1.5px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    .pricing-grid {
        grid-template-columns: 1fr !important;
        padding: 0;
    }

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

    .comparison-grid {
        grid-template-columns: 1fr !important;
    }

    /* Fix overlapping badges in feature cards on small screens */
    .mockup-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }

    .wa-status-tag {
        width: 100%;
        justify-content: center;
    }

    /* Standardize Section Padding for Mobile */
    .section-padding {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2.5rem;
        letter-spacing: -1.5px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .container {
        padding: 0 20px;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .logo-img {
        height: 40px !important;
    }

    .btn {
        width: 100%;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
}

/* =========================================================================
   PREMIUM UI ENHANCEMENTS
   ========================================================================= */

.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.feature-card,
.solution-card,
.pricing-card,
.testimonial-card {
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover,
.solution-card:hover,
.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.2);
}

.pricing-card.featured {
    border: 2px solid var(--primary-gold-start);
    transform: scale(1.05);
    z-index: 2;
}

@media (max-width: 768px) {
    .pricing-card.featured {
        transform: scale(1);
    }
}

/* New Components for Enterprise Structure */
.hero-live-ticker {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 24px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 0.8rem;
    z-index: 10;
    white-space: nowrap;
    background: #0F0F0F;
    color: #FFFFFF !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.ticker-content {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #FFFFFF !important;
}

#ticker-text {
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #FFFFFF !important;
}

.ticker-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 10px #4ade80;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

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

.floating-box {
    position: absolute;
    background: var(--gold-gradient);
    border-radius: 12px;
    opacity: 0.05;
    animation: floating 6s infinite ease-in-out;
}

.box-1 {
    width: 100px;
    height: 100px;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.box-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    left: 80%;
    animation-delay: 1s;
}

.box-3 {
    width: 80px;
    height: 80px;
    top: 40%;
    left: 70%;
    animation-delay: 2s;
}

.box-4 {
    width: 120px;
    height: 120px;
    top: 80%;
    left: 20%;
    animation-delay: 3s;
}

.box-5 {
    width: 60px;
    height: 60px;
    top: 10%;
    left: 85%;
    animation-delay: 4s;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Features Grid New (Bento) Refined */
.features-grid-new {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 32px;
    margin-top: 60px;
}

.features-main-col,
.features-side-col {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-card {
    background: #FFFFFF;
    border-radius: 40px;
    padding: 48px;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border-color: rgba(212, 175, 55, 0.2);
}

.feature-icon {
    font-size: 2.8rem;
    margin-bottom: 32px;
    display: block;
}

.feature-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1a1a1a;
    letter-spacing: -0.5px;
    font-family: var(--font-heading);
}

.feature-card p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Mockup Components */
.mockup-container {
    margin-top: 40px;
    background: #FDFBF7;
    border-radius: 24px;
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(212, 175, 55, 0.08);
}

.invoice-price-tag {
    font-weight: 800;
    font-size: 1.6rem;
    color: #222;
}

.wa-status-tag {
    background: #27C372;
    color: #FFFFFF;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(39, 195, 114, 0.2);
}

.wa-status-tag::before {
    content: "";
    /* Corrected */
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.mini-chart-simple {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 60px;
    margin-top: 40px;
    padding-left: 4px;
}

.bar-s {
    flex: 1;
    background: rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    transition: height 0.3s ease;
}

.bar-s:nth-child(2) {
    background: rgba(212, 175, 55, 0.4);
}

.bar-s:nth-child(3) {
    background: rgba(212, 175, 55, 0.35);
}

.bar-s:nth-child(4) {
    background: rgba(212, 175, 55, 0.25);
}

/* Buttons & Links */
.btn-white-gold {
    background: #FFFFFF;
    color: var(--primary-gold-start) !important;
    padding: 18px 40px;
    border-radius: 16px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: inline-block;
}

.btn-white-gold:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.dashboard-preview-main {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 50px 150px -30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #0F0F0F;
}

.browser-header {
    background: #1A1A1A;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-dots {
    display: flex;
    gap: 8px;
}

.header-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.header-address {
    background: rgba(0, 0, 0, 0.3);
    padding: 6px 20px;
    border-radius: 100px;
    color: #888;
    font-size: 0.8rem;
    flex-grow: 1;
    max-width: 400px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.preview-img {
    width: 100%;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.dashboard-preview-main:hover .preview-img {
    transform: scale(1.02);
}

.glass-highlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

@media (max-width: 992px) {
    .features-grid-new {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature-card {
        padding: 32px;
    }
}
/* WhatsApp Floating Button & Label */
.whatsapp-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10000;
}

.whatsapp-label {
    background: white;
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    font-weight: 600;
    font-size: 0.95rem;
    color: #374151;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.whatsapp-container:hover .whatsapp-label {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-float {
    width: 65px;
    height: 65px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    cursor: pointer;
}

.whatsapp-float:hover {
    transform: scale(1.05);
    background-color: #22c35e;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.45);
}

.online-indicator {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 14px;
    height: 14px;
    background: #4ade80;
    border: 2.5px solid white;
    border-radius: 50%;
    z-index: 1;
}

@media (max-width: 768px) {
    .whatsapp-label {
        display: none; /* Hide label on mobile to keep it clean */
    }
    
    .whatsapp-container {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
    }
}


/* App Store Buttons */
.btn-app {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    background: #111827; /* gray-900 */
    border: 1px solid #1f2937; /* gray-800 */
    border-radius: 12px;
    color: white !important;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
    text-decoration: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    width: fit-content;
}

.btn-app:hover {
    background: #000000;
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.app-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
