:root {
    /* Color Palette */
    --color-navy: #0A2240;
    --color-gold: #E2A93A;
    --color-cream: #F7F3E8;
    --color-grey: #6B6F78;
    --color-mint: #6CC8A1;
    --color-black-ink: #051120;

    /* Modern Accents */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    --glow-gold: 0 0 20px rgba(226, 169, 58, 0.4);
    --glow-navy: 0 0 30px rgba(10, 34, 64, 0.3);

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

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}

/* Reset & Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: linear-gradient(135deg, #0A1628 0%, #0D1B2A 25%, #1B263B 50%, #0D1B2A 75%, #0A1628 100%);
    background-size: 400% 400%;
    animation: gradientBg 15s ease infinite;
    color: var(--color-cream);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(226, 169, 58, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(108, 200, 161, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

@keyframes gradientBg {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

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: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative;
    z-index: 1;
}

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

.text-gold {
    color: var(--color-gold);
}

.text-navy {
    color: var(--color-navy);
}

.text-mint {
    color: var(--color-mint);
}

.text-cream {
    color: var(--color-cream);
}

.section-padding {
    padding: var(--spacing-xl) 0;
}

/* Glassmorphism Utility */
.glass-panel {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--glass-shadow);
    border-radius: var(--radius-lg);
}

.glass-panel-light {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: var(--glass-shadow);
    border-radius: var(--radius-lg);
    color: var(--color-navy);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 0.5rem;
    letter-spacing: 0.5px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold), #C6922B);
    color: var(--color-navy);
    box-shadow: var(--glow-gold);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(226, 169, 58, 0.6);
}

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

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(226, 169, 58, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
    animation: float 10s infinite ease-in-out;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.hero-text h1 {
    font-size: 4.5rem;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 4px 20px rgba(226, 169, 58, 0.3);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-text .subline {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: var(--spacing-md);
    max-width: 550px;
    font-weight: 300;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.badge:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(226, 169, 58, 0.3);
    transform: translateY(-2px);
}

.qr-block {
    background: rgba(255, 255, 255, 0.1);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-gold);
    box-shadow: var(--glow-gold);
    max-width: 320px;
    margin: 0 auto;
    text-align: center;
    backdrop-filter: blur(10px);
}

.qr-block img {
    width: 100%;
    border-radius: var(--radius-sm);
    margin-bottom: var(--spacing-sm);
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

.stat-card {
    text-align: center;
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(226, 169, 58, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(226, 169, 58, 0.15) 0%, rgba(108, 200, 161, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
    border-color: rgba(226, 169, 58, 0.5);
    transform: translateY(-10px);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.35),
        0 0 40px rgba(226, 169, 58, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(226, 169, 58, 0.2), rgba(108, 200, 161, 0.15));
    border-radius: 50%;
    border: 2px solid rgba(226, 169, 58, 0.4);
    position: relative;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow:
        0 10px 25px rgba(226, 169, 58, 0.2),
        inset 0 2px 12px rgba(255, 255, 255, 0.4);
}

.stat-icon svg {
    width: 38px;
    height: 38px;
    color: var(--color-gold);
    transition: all 0.5s ease;
    stroke-width: 2.5;
}

.stat-card:hover .stat-icon {
    transform: scale(1.15) rotate(-5deg);
    background: linear-gradient(135deg, rgba(226, 169, 58, 0.3), rgba(108, 200, 161, 0.2));
    border-color: var(--color-gold);
    box-shadow:
        0 15px 35px rgba(226, 169, 58, 0.35),
        inset 0 2px 18px rgba(255, 255, 255, 0.5);
}

.stat-card:hover .stat-icon svg {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 2px 6px rgba(226, 169, 58, 0.4));
}

.stat-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(226, 169, 58, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.4s ease;
}

.stat-card:hover .stat-icon::before {
    opacity: 1;
    width: 140%;
    height: 140%;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-cream);
    margin-bottom: var(--spacing-xs);
}

.stat-desc {
    font-size: 0.9rem;
    opacity: 0.7;
    color: var(--color-cream);
}

/* How It Works */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.step-card {
    text-align: center;
    padding: var(--spacing-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.step-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-color: rgba(226, 169, 58, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.step-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(226, 169, 58, 0.15), rgba(226, 169, 58, 0.05));
    border: 2px solid rgba(226, 169, 58, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    color: var(--color-gold);
    box-shadow: 0 8px 25px rgba(226, 169, 58, 0.2), inset 0 2px 10px rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.4s ease;
}

.step-card:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(226, 169, 58, 0.4), inset 0 2px 10px rgba(255, 255, 255, 0.2);
}

/* Comparison Table */
.comparison-table-wrapper {
    padding: 0;
    max-width: 950px;
    margin: 0 auto;
    overflow-x: auto;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(10, 15, 25, 0.95) 0%, rgba(15, 20, 30, 0.98) 100%);
    border: 1px solid rgba(226, 169, 58, 0.2);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 1px rgba(226, 169, 58, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.comparison-table thead tr {
    background: linear-gradient(135deg, rgba(226, 169, 58, 0.15) 0%, rgba(226, 169, 58, 0.08) 100%);
    border-bottom: 2px solid var(--color-gold);
}

.comparison-table th {
    padding: 1.5rem 2rem;
    text-align: center;
    font-weight: 700;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.comparison-table th.feature-name-col {
    text-align: left;
    color: #FFFFFF;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.comparison-table th.free-col {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.03);
}

.comparison-table th.pro-col {
    color: var(--color-gold);
    background: linear-gradient(135deg, rgba(226, 169, 58, 0.1) 0%, rgba(226, 169, 58, 0.05) 100%);
    position: relative;
}

.comparison-table th.pro-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(226, 169, 58, 0.3);
    border-bottom: none;
    pointer-events: none;
}

.comparison-table th.pro-col::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    box-shadow: 0 0 10px rgba(226, 169, 58, 0.5);
}

.comparison-table tbody tr {
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-table tbody tr:hover {
    background: linear-gradient(90deg, transparent, rgba(226, 169, 58, 0.08), transparent);
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table td {
    padding: 1.25rem 2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.03);
}

.comparison-table td:last-child {
    border-right: none;
}

.comparison-table td.feature-name {
    font-weight: 600;
    color: #E8E8E8;
    text-align: left;
    font-size: 1.05rem;
    background: rgba(255, 255, 255, 0.02);
}

.comparison-table td.feature-value {
    text-align: center;
    color: #B8B8B8;
    font-size: 1rem;
    font-weight: 500;
}

.comparison-table td.feature-value.pro-value {
    color: var(--color-gold);
    font-weight: 700;
    background: linear-gradient(135deg, rgba(226, 169, 58, 0.05) 0%, transparent 100%);
    position: relative;
    text-shadow: 0 0 20px rgba(226, 169, 58, 0.3);
}

.comparison-table td.feature-value.pro-value::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(226, 169, 58, 0.3), transparent);
}

.comparison-table .icon-check {
    width: 28px;
    height: 28px;
    color: var(--color-gold);
    display: inline-block;
    vertical-align: middle;
    filter: drop-shadow(0 0 8px rgba(226, 169, 58, 0.6));
    animation: checkPulse 2.5s ease-in-out infinite;
    stroke-width: 3;
}

.comparison-table .icon-cross {
    width: 24px;
    height: 24px;
    color: rgba(150, 150, 150, 0.4);
    display: inline-block;
    vertical-align: middle;
    opacity: 0.6;
    stroke-width: 2;
}

@keyframes checkPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 8px rgba(226, 169, 58, 0.6));
    }
    50% {
        transform: scale(1.15);
        filter: drop-shadow(0 0 15px rgba(226, 169, 58, 0.9));
    }
}

/* Conversation Examples */
.conversation-showcase {
    position: relative;
    padding: var(--spacing-xl) 0;
}

.examples-tabs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto var(--spacing-lg);
    position: relative;
    z-index: 10;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-cream);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    font-family: var(--font-body);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(226, 169, 58, 0.2), transparent);
    transition: left 0.5s ease;
}

.tab-btn:hover::before {
    left: 100%;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(226, 169, 58, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.tab-btn.active {
    background: linear-gradient(135deg, rgba(226, 169, 58, 0.2), rgba(226, 169, 58, 0.1));
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
    box-shadow:
        0 0 30px rgba(226, 169, 58, 0.3),
        0 8px 25px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-4px) scale(1.02);
}

.tab-content-container {
    position: relative;
    min-height: 650px;
    perspective: 2000px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Spotlight effect */
.tab-content-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(226, 169, 58, 0.15) 0%, transparent 70%);
    pointer-events: none;
    animation: pulseGlow 4s ease-in-out infinite;
}

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

.tab-content {
    display: none;
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.tab-content.active {
    display: block;
    animation: phoneSlideIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes phoneSlideIn {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8) rotateY(-15deg);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) rotateY(0deg);
    }
}

/* Phone mockup wrapper */
.phone-mockup {
    max-width: 450px;
    margin: 0 auto;
    position: relative;
    filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.5));
}

/* Decorative gradient rings */
.phone-mockup::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 60px);
    height: calc(100% + 60px);
    border-radius: 30px;
    background: linear-gradient(135deg,
        rgba(226, 169, 58, 0.3) 0%,
        rgba(108, 200, 161, 0.2) 50%,
        rgba(226, 169, 58, 0.3) 100%);
    filter: blur(30px);
    opacity: 0.4;
    animation: rotateGradient 8s linear infinite;
    z-index: -1;
}

@keyframes rotateGradient {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Accent dots */
.phone-mockup::after {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, var(--color-gold) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
    z-index: 10;
}

@keyframes pulseDot {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.2); }
}

.chat-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
    background: #E5DDD5;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="260" height="260" viewBox="0 0 260 260"><g fill="none" fill-rule="evenodd"><g fill="%23D9D0C7" fill-opacity="0.4"><path d="M24.37 16c.2.65.39 1.32.54 2H21.17l1.17-2h2.03zm-3.21-2h1.73c.17.64.33 1.31.46 2H19.1l1.06-2zm-2.13-2h1.35c.15.66.29 1.32.4 2H17.5l.53-2zm-1.06-2h1.05c.13.66.25 1.32.35 2H16.1l.27-2zm-.52-2h.86c.1.66.19 1.32.25 2H15.1l.15-2zm-.34-2h.73c.08.66.14 1.32.18 2H14.1l.09-2zm-.18-2h.66c.04.66.08 1.32.1 2H13.1l.03-2zm-.06-2h.6c.03.66.06 1.32.08 2H12.1v-2zm0-2h.59v2H12.1v-2zm.59 2h1.7l-.08-2h-1.62v2zm1.7 0h1.8l-.18-2h-1.62l.08 2zm1.8 0h1.87l-.25-2h-1.62l.18 2zm1.87 0h1.92l-.35-2h-1.62l.25 2zm1.92 0h1.94l-.4-2h-1.62l.35 2zm1.94 0h1.95l-.46-2h-1.62l.4 2zm1.95 0h1.94l-.54-2h-1.62l.46 2z"/></g></g></svg>');
    border-radius: 20px;
    border: 16px solid #1A1A1A;
    box-shadow:
        0 0 0 2px #333,
        0 0 0 6px #111,
        0 50px 100px rgba(0, 0, 0, 0.8),
        0 0 120px rgba(226, 169, 58, 0.15),
        inset 0 1px 2px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Phone notch */
.chat-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 25px;
    background: #1A1A1A;
    border-radius: 0 0 20px 20px;
    z-index: 1000;
}

.chat-container:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow:
        0 0 0 2px #444,
        0 0 0 6px #222,
        0 60px 120px rgba(0, 0, 0, 0.9),
        0 0 150px rgba(226, 169, 58, 0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.15);
}

.whatsapp-header {
    background: #075E54;
    padding: 35px 16px 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: sticky;
    top: 0;
    z-index: 10;
}

.whatsapp-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold), #C6922B);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.whatsapp-info {
    flex: 1;
}

.whatsapp-name {
    color: white;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 2px;
}

.whatsapp-status {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
}

.whatsapp-messages {
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 450px;
    max-height: 550px;
    overflow-y: auto;
}

.chat-bubble {
    padding: 8px 12px;
    border-radius: 8px;
    max-width: 80%;
    position: relative;
    line-height: 1.5;
    font-size: 0.9rem;
    animation: slideIn 0.4s ease;
    word-wrap: break-word;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.chat-bubble.user {
    background: #DCF8C6;
    align-self: flex-end;
    border-radius: 8px;
    border-bottom-right-radius: 2px;
    color: #000;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    margin-left: 50px;
}

.chat-bubble.bot {
    background: #FFFFFF;
    color: #000;
    align-self: flex-start;
    border-radius: 8px;
    border-bottom-left-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    margin-right: 50px;
}

.chat-bubble.bot strong {
    color: #075E54;
    font-weight: 600;
}

.chat-bubble.bot em {
    opacity: 0.7;
    font-size: 0.85rem;
}

.message-time {
    font-size: 0.7rem;
    color: rgba(0, 0, 0, 0.45);
    margin-top: 4px;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 3px;
}

.chat-bubble.user .message-time {
    color: rgba(0, 0, 0, 0.45);
}

.checkmark {
    color: #4FC3F7;
    font-size: 0.85rem;
    font-weight: 400;
    display: inline-block;
    position: relative;
    line-height: 0.5;
    letter-spacing: -0.55em;
}

/* Smart Insights - Bento Box Layout */
.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: floatOrb 20s ease-in-out infinite;
    pointer-events: none;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(226, 169, 58, 0.4), transparent);
    top: -200px;
    left: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(108, 200, 161, 0.3), transparent);
    top: 50%;
    right: -150px;
    animation-delay: 7s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(226, 169, 58, 0.25), transparent);
    bottom: -100px;
    left: 50%;
    animation-delay: 14s;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -50px) scale(1.1); }
    66% { transform: translate(-50px, 50px) scale(0.9); }
}

.insights-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
    gap: 1.5rem;
    margin-top: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.insight-bento-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    border-radius: 24px;
    padding: 1.75rem;
    border: 2px solid rgba(226, 169, 58, 0.15);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.insight-bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(226, 169, 58, 0.03) 0%, rgba(108, 200, 161, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.insight-bento-card:hover::before {
    opacity: 1;
}

.insight-bento-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(226, 169, 58, 0.4);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.15),
        0 0 40px rgba(226, 169, 58, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.insight-bento-card.large {
    grid-column: span 2;
    grid-row: span 2;
}

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

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

.insight-bento-card.square {
    grid-column: span 1;
    grid-row: span 1;
}

.insight-bento-card.medium {
    grid-column: span 2;
    grid-row: span 1;
}

.bento-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.bento-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-navy);
    margin: 0;
    transition: color 0.3s ease;
}

.insight-bento-card:hover .bento-header h3 {
    color: var(--color-gold);
}

.bento-icon-badge {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(226, 169, 58, 0.2), rgba(226, 169, 58, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid rgba(226, 169, 58, 0.3);
    box-shadow: 0 4px 12px rgba(226, 169, 58, 0.15);
}

.bento-icon-badge svg {
    width: 20px;
    height: 20px;
    color: var(--color-gold);
    transition: all 0.3s ease;
}

.insight-bento-card:hover .bento-icon-badge {
    transform: rotate(5deg) scale(1.1);
    background: linear-gradient(135deg, rgba(226, 169, 58, 0.3), rgba(226, 169, 58, 0.15));
    box-shadow: 0 6px 18px rgba(226, 169, 58, 0.25);
}

.bento-icon-badge.mint {
    background: linear-gradient(135deg, rgba(108, 200, 161, 0.2), rgba(108, 200, 161, 0.1));
    border-color: rgba(108, 200, 161, 0.3);
}

.bento-icon-badge.mint svg {
    color: var(--color-mint);
}

.bento-icon-badge.purple {
    background: linear-gradient(135deg, rgba(138, 103, 187, 0.2), rgba(138, 103, 187, 0.1));
    border-color: rgba(138, 103, 187, 0.3);
}

.bento-icon-badge.purple svg {
    color: #8A67BB;
}

.bento-icon-badge.teal {
    background: linear-gradient(135deg, rgba(38, 166, 154, 0.2), rgba(38, 166, 154, 0.1));
    border-color: rgba(38, 166, 154, 0.3);
}

.bento-icon-badge.teal svg {
    color: #26A69A;
}

.bento-icon-badge.orange {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.2), rgba(255, 152, 0, 0.1));
    border-color: rgba(255, 152, 0, 0.3);
}

.bento-icon-badge.orange svg {
    color: #FF9800;
}

.mini-chat-demo {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
}

.mini-chat-demo.horizontal {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.mini-bubble {
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.875rem;
    line-height: 1.5;
    position: relative;
    animation: bubbleSlideIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-width: 100%;
}

@keyframes bubbleSlideIn {
    0% {
        opacity: 0;
        transform: translateY(10px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.mini-bubble.user-mini {
    background: #DCF8C6;
    color: #000;
    border-bottom-right-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    font-weight: 500;
}

.mini-bubble.bot-mini {
    background: #FFFFFF;
    color: #000;
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.mini-bubble.bot-mini.compact {
    padding: 0.65rem 0.85rem;
    font-size: 0.8rem;
}

.mini-bubble.bot-mini.alert {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.1), rgba(255, 193, 7, 0.05));
    border: 1px solid rgba(255, 152, 0, 0.3);
}

.mini-bubble.bot-mini strong {
    color: #075E54;
    font-weight: 700;
}

.mini-arrow {
    color: var(--color-gold);
    font-size: 1.5rem;
    font-weight: 600;
    flex-shrink: 0;
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% { opacity: 0.6; transform: translateX(0); }
    50% { opacity: 1; transform: translateX(5px); }
}

.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 0.75rem 1rem;
    background: #FFFFFF;
    border-radius: 12px;
    border-bottom-left-radius: 4px;
    width: fit-content;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: #90949C;
    border-radius: 50%;
    animation: typingBounce 1.4s infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingBounce {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.7; }
    30% { transform: translateY(-8px); opacity: 1; }
}

.insight-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: linear-gradient(135deg, var(--color-gold), #C6922B);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(226, 169, 58, 0.3);
    z-index: 2;
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 12px rgba(226, 169, 58, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 6px 18px rgba(226, 169, 58, 0.4); }
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.testimonial-card {
    padding: var(--spacing-lg);
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.25rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(226, 169, 58, 0.1);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: rgba(226, 169, 58, 0.2);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: scale(1.03);
    border-color: rgba(226, 169, 58, 0.25);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    padding: var(--spacing-xl);
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.pricing-card.pro {
    border: 1px solid var(--color-gold);
    transform: scale(1.05);
    box-shadow: var(--glow-gold);
    position: relative;
}

.price {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    margin: var(--spacing-sm) 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Billing Toggle */
.billing-toggle {
    position: relative;
    display: inline-flex;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    padding: 0.35rem;
    margin: var(--spacing-md) 0;
    border: 1px solid rgba(226, 169, 58, 0.2);
}

.toggle-option {
    position: relative;
    cursor: pointer;
    z-index: 2;
    margin: 0;
}

.toggle-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.toggle-label {
    display: block;
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-cream);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50px;
    user-select: none;
}

.toggle-option input[type="radio"]:checked + .toggle-label {
    color: #051120;
    font-weight: 600;
}

.toggle-slider {
    position: absolute;
    top: 0.35rem;
    left: 0.35rem;
    width: calc(50% - 0.35rem);
    height: calc(100% - 0.7rem);
    background: linear-gradient(135deg, var(--color-gold), #D4A93A);
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 4px 12px rgba(226, 169, 58, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
    z-index: 1;
}

.btn-gold {
    background: linear-gradient(135deg, var(--color-gold), #D4A93A);
    color: #051120;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(226, 169, 58, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(226, 169, 58, 0.4);
}

/* Footer */
footer {
    background: rgba(5, 17, 32, 0.9);
    color: var(--color-cream);
    padding: var(--spacing-lg) 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

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

    100% {
        transform: translateY(0px);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

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

    .steps-grid,
    .testimonials-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.85rem 1rem;
        font-size: 0.95rem;
    }

    .comparison-table th {
        font-size: 1.05rem;
    }

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

    .insight-bento-card.large {
        grid-column: 1 / 3 !important;
        grid-row: 1 / 3 !important;
    }

    .insight-bento-card.tall {
        grid-column: 2 / 3 !important;
        grid-row: 3 / 5 !important;
    }

    .insight-bento-card.square:nth-of-type(2) {
        grid-column: 1 / 2 !important;
        grid-row: 3 / 4 !important;
    }

    .insight-bento-card.square:nth-of-type(4) {
        grid-column: 1 / 2 !important;
        grid-row: 4 / 5 !important;
    }

    .insight-bento-card.extra-wide {
        grid-column: 1 / 3 !important;
        grid-row: 5 / 6 !important;
    }

    .bento-header h3 {
        font-size: 1rem;
    }

    .mini-chat-demo.horizontal {
        flex-direction: column;
        gap: 0.5rem;
    }

    .mini-arrow {
        transform: rotate(90deg);
        font-size: 1.2rem;
    }

    .examples-tabs {
        grid-template-columns: repeat(2, 1fr);
    }

    .phone-mockup {
        max-width: 380px;
    }

    .tab-content-container {
        min-height: 580px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .comparison-table-wrapper {
        padding: var(--spacing-md);
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.65rem;
        font-size: 0.85rem;
    }

    .comparison-table th {
        font-size: 0.95rem;
    }

    .comparison-table td.feature-name {
        font-size: 0.9rem;
    }

    .comparison-table .icon-check,
    .comparison-table .icon-cross {
        width: 20px;
        height: 20px;
    }

    .insights-bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 0.75rem;
    }

    .insight-bento-card {
        padding: 1.25rem;
    }

    .insight-bento-card.large,
    .insight-bento-card.tall,
    .insight-bento-card.wide,
    .insight-bento-card.extra-wide,
    .insight-bento-card.square {
        grid-column: 1 / 2 !important;
        grid-row: auto !important;
    }

    .bento-header h3 {
        font-size: 0.95rem;
    }

    .bento-icon-badge {
        width: 36px;
        height: 36px;
    }

    .bento-icon-badge svg {
        width: 18px;
        height: 18px;
    }

    .mini-bubble {
        font-size: 0.8rem;
        padding: 0.6rem 0.85rem;
    }

    .mini-chat-demo.horizontal {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .mini-arrow {
        transform: rotate(90deg);
        font-size: 1rem;
        align-self: center;
    }

    .pricing-card.pro {
        transform: none;
    }

    .examples-tabs {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .tab-btn {
        font-size: 0.85rem;
        padding: 0.75rem 1rem;
    }

    .chat-bubble {
        max-width: 85%;
        font-size: 0.85rem;
    }

    .chat-container {
        border-width: 10px;
    }

    .chat-container::before {
        width: 120px;
        height: 22px;
    }

    .phone-mockup {
        max-width: 100%;
        padding: 0 1rem;
    }

    .phone-mockup::before {
        width: calc(100% + 40px);
        height: calc(100% + 40px);
        filter: blur(20px);
    }

    .phone-mockup::after {
        display: none;
    }

    .tab-content-container {
        min-height: 550px;
    }

    .whatsapp-messages {
        min-height: 400px;
        max-height: 500px;
    }

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

    .badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Futuristic Gradient Background Animation */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}