/* SELF-HOSTED OR IMPORTED INTER FONT */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* MODERN CSS RESET & VARIABLES - MINIMAL LIGHT THEME */
:root {
    --bg-dark: #ffffff;
    --bg-card: #ffffff;
    --bg-card-hover: #ffffff;
    
    --primary: #25D366; /* WhatsApp Green */
    --primary-glow: rgba(37, 211, 102, 0.15);
    --primary-dark: #128C7E;
    --secondary: #6366f1; /* Indigo */
    
    --text-main: #0f172a; /* Slate 900 */
    --text-muted: #475569; /* Slate 600 */
    --dim: #64748b; /* Slate 500 */
    
    --red-alert: #ef4444;
    --red-bg: rgba(239, 68, 68, 0.05);
    
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --glass-border: 1px solid rgba(15, 23, 42, 0.08);
    --border: rgba(15, 23, 42, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    background-image: radial-gradient(circle at 15% 50%, rgba(37, 211, 102, 0.02), transparent 25%),
                      radial-gradient(circle at 85% 30%, rgba(99, 102, 241, 0.02), transparent 25%);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    line-height: 1.2;
    color: var(--text-main);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }

/* UTILITIES */
.highlight { color: var(--red-alert); font-weight: 800; }
.hindi-text { font-size: 1.5rem; color: var(--red-alert); font-weight: 800; display: block; margin-top: 5px; }
.icon-red { color: var(--red-alert); }
.icon-green { color: var(--primary-dark); }
.bold-text { font-weight: 700; font-size: 1.2rem; }
.lead-text { font-size: 1.2rem; color: var(--text-muted); }

/* GLASSMORPHISM - LIGHT MODE */
.glass-panel {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.02);
}

.highlight-bg {
    display: inline-block;
    padding: 15px 30px;
    background: rgba(37, 211, 102, 0.08);
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: 12px;
    font-size: 1.2rem;
    color: var(--primary-dark);
}

/* BUTTONS */
.cta-button {
    display: inline-block;
    padding: 20px 45px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent);
    transform: rotate(45deg);
    transition: opacity 0.3s;
    opacity: 0;
}

.cta-button:hover::after {
    opacity: 1;
    animation: shine 1.5s 1;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

.cta-button.primary {
    background: linear-gradient(135deg, #25D366, #1ea34d);
    color: #ffffff;
    box-shadow: 0 10px 30px var(--primary-glow);
    border: 2px solid #20b958;
}

.cta-button.primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.cta-button .price {
    font-size: 0.95rem;
    font-weight: 700;
    opacity: 0.9;
}

.full-width { width: 100%; }

.secondary-btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    border: 2px solid var(--primary-dark);
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    background: rgba(37, 211, 102, 0.05);
}

.secondary-btn:hover {
    background: var(--primary-dark);
    color: #ffffff;
    box-shadow: 0 10px 20px var(--primary-glow);
}

/* ANIMATIONS (DISABLED FOR SIMPLE STATIC PAGE) */
.fade-in-up { 
    opacity: 1 !important; 
    transform: none !important;
    animation: none !important;
}
.delay-1, .delay-2, .delay-3, .delay-4 { 
    animation-delay: 0s !important; 
}
.pulse { 
    animation: none !important;
    box-shadow: 0 10px 30px var(--primary-glow); 
}
.scroll-anim {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}
.scroll-anim.visible { 
    opacity: 1 !important; 
    transform: none !important; 
}

/* SECTION STYLES */
section { padding: 80px 0; }
.section-title { font-size: 2.5rem; margin-bottom: 3rem; font-weight: 850; letter-spacing: -0.5px; text-align: center; }
.section-title-sm { font-size: 1.6rem; margin-bottom: 1.5rem; font-weight: 700; display: flex; align-items: center; gap: 10px; color: var(--text-main); }

/* STICKY NAVIGATION */
.sticky-nav {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    padding: 15px 0;
    transition: all 0.3s ease;
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.nav-logo { display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 1.3rem; font-family: var(--font-heading); letter-spacing: -0.5px; }
.nav-links { display: flex; gap: 30px; }
.nav-links a { font-weight: 600; font-size: 1rem; color: var(--text-muted); transition: color 0.3s; position: relative; }
.nav-links a:hover { color: var(--text-main); }
.nav-links a::after {
    content: ''; position: absolute; bottom: -5px; left: 0; width: 0%; height: 2px;
    background: var(--primary); transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
    background: #0f172a;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s;
    border: 1px solid #0f172a;
    text-transform: uppercase;
}
.nav-cta:hover {
    background: #1e293b;
    border-color: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
}

/* HERO SECTION */
.hero {
    position: relative;
    padding: 140px 0 60px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: #ffffff;
    color: var(--text-main);
}

.hero-bg-glow {
    position: absolute;
    top: 10%; right: 5%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(37,211,102,0.04) 0%, rgba(255,255,255,0) 70%);
    z-index: -1;
}

.hero-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.hero .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(15, 23, 42, 0.04);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(15, 23, 42, 0.06);
    color: var(--text-muted);
}

.hero .badge-dot {
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px #22c55e;
}

.stars { letter-spacing: 2px; }

.hero h1 { font-size: 3.5rem; margin-bottom: 1.5rem; line-height: 1.15; font-weight: 900; letter-spacing: -1px; color: var(--text-main); }
.hero .highlight { color: #f97316; } /* Peach/Orange highlight color for hero text */
.hero .subheadline { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 2.5rem; }

.hero-ctas {
    display: flex;
    gap: 15px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }
}

.hero .cta-button.primary {
    background: linear-gradient(135deg, #25D366, #1ea34d);
    color: #ffffff;
    border: 2px solid #20b958;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.2);
}

.hero .cta-button.primary:hover {
    background: linear-gradient(135deg, #20ba5a, #1a8f43);
    border-color: #1a8f43;
    color: #ffffff;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.35);
}

.cta-button.whatsapp {
    background: #0f172a;
    color: #ffffff;
    border: 2px solid #0f172a;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cta-button.whatsapp:hover {
    background: #1e293b;
    border-color: #1e293b;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(30, 41, 59, 0.3);
}

.hero-features-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 500;
}

.hero-features-row span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-features-row span i {
    width: 16px;
    height: 16px;
    color: #0f172a;
}

.hero-features-row .divider {
    color: rgba(15, 23, 42, 0.15);
}

.hero-checklist {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
}

.hero-checklist .checklist-line {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-checklist span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-checklist span {
    color: var(--text-muted);
}

/* Yellow-orange checkmarks */
.hero-checklist span::before {
    content: '✓';
    color: #f97316;
    font-weight: 900;
    font-size: 1.1rem;
    margin-right: 4px;
}

/* FLOATING REPLY TIME BADGE (STATIC) */
.hero-visual {
    position: relative;
}

.reply-time-badge {
    position: absolute;
    top: 100px;
    right: -40px;
    background: #ffffff;
    padding: 12px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 12;
    border: 1px solid rgba(15, 23, 42, 0.06);
    min-width: 120px;
}

.reply-time-badge .badge-value {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
}

.reply-time-badge .badge-label {
    font-size: 0.72rem;
    color: #475569;
    font-weight: 600;
    margin-top: 4px;
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .reply-time-badge {
        right: 10px;
        top: 20px;
        padding: 8px 12px;
        min-width: 90px;
    }
    .reply-time-badge .badge-value {
        font-size: 1.6rem;
    }
    .reply-time-badge .badge-label {
        font-size: 0.65rem;
    }
}

/* REALISTIC CSS PHONE (WHATSAPP LIGHT MOCKUP) (STATIC) */
.css-phone {
    width: 320px;
    height: 620px;
    background: #000;
    border-radius: 45px;
    border: 10px solid #1a1a1a;
    position: relative;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15), 0 0 0 2px #333, inset 0 0 10px rgba(255,255,255,0.1);
    overflow: hidden;
    margin: 0 auto;
}
.css-phone:hover { transform: none; }

.phone-notch {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 140px; height: 30px;
    background: #1a1a1a;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    z-index: 10;
}

.phone-screen {
    background: #efeae2; /* WhatsApp Classic Light chat background */
    height: 100%;
    display: flex;
    flex-direction: column;
}

.wa-header {
    background: #008069; /* WhatsApp Green */
    padding: 40px 15px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 5;
    color: #ffffff;
}

.wa-avatar { width: 42px; height: 42px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #ffffff; }
.wa-info { flex: 1; text-align: left; }
.wa-info strong { color: #ffffff; display: block; font-size: 1rem; font-weight: 600;}
.wa-info span { color: rgba(255, 255, 255, 0.8); font-size: 0.8rem; }

.wa-chat {
    padding: 20px 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background-color: #efeae2;
    background-image: radial-gradient(rgba(0,0,0,0.04) 1px, transparent 1px);
    background-size: 20px 20px;
}

.wa-msg {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 0.9rem;
    position: relative;
    color: #111b21;
    line-height: 1.4;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    text-align: left;
}

.wa-msg.sent {
    background: #d9fdd3; /* WA light mode sent bubble */
    align-self: flex-end;
    border-top-right-radius: 0;
}

.wa-msg.received {
    background: #ffffff; /* WA light mode received bubble */
    align-self: flex-start;
    border-top-left-radius: 0;
}

.wa-time { font-size: 0.65rem; color: #667781; float: right; margin-top: 6px; margin-left: 12px; display: flex; align-items: center; gap: 3px;}
.wa-ticks { width: 14px; height: 14px; color: #53bdeb; }
.wa-ticks.gray { color: #8696a0; }

.wa-attachment {
    background: #f0f2f5;
    padding: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    margin-top: 5px;
    color: #111b21;
}

.wa-pdf-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f0f2f5;
    padding: 8px 12px;
    border-radius: 8px;
    margin-top: 8px;
    border: 1px solid rgba(0,0,0,0.05);
}
.pdf-icon-box { color: #ef4444; display: flex; align-items: center; }
.pdf-details { display: flex; flex-direction: column; }
.pdf-name { font-size: 0.85rem; font-weight: 600; color: #111b21; }
.pdf-meta { font-size: 0.7rem; color: #667781; }

.wa-date {
    text-align: center;
    background: rgba(11,20,26,0.05);
    color: #667781;
    font-size: 0.75rem;
    padding: 5px 12px;
    border-radius: 10px;
    align-self: center;
    margin: 10px 0;
    text-transform: uppercase;
}

/* TRUST BAR */
.trust-bar {
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    padding: 30px 0;
    background: #f8fafc;
}
.trust-bar p { color: var(--text-muted); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px; font-weight: 700;}
.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--text-muted);
    opacity: 0.7;
    filter: grayscale(100%);
    transition: all 0.3s;
}
.trust-item:hover { opacity: 1; filter: grayscale(0%); color: var(--text-main); }

/* WHAT EXACTLY IS THIS SECTION */
.what-is-this {
    padding: 80px 0;
    background: #ffffff;
}
.what-is-this-card {
    padding: 3.5rem;
    background: #f8fafc;
}
.what-is-this-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
    margin: 2rem 0;
}
.what-is-this-intro {
    border-right: 1px solid rgba(15, 23, 42, 0.08);
    padding-right: 2.5rem;
    text-align: left;
}
.lead-intro {
    font-size: 1.3rem;
    line-height: 1.5;
    color: var(--text-main);
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.warning-alert {
    padding: 1.2rem;
    background: rgba(239, 68, 68, 0.05);
    border: 1px dashed rgba(239, 68, 68, 0.25);
    border-radius: 12px;
    color: #c2410c; /* dark orange-red for readability */
    font-size: 1rem;
    line-height: 1.5;
}
.what-is-this-content {
    text-align: left;
}
.what-is-this-content h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}
.what-is-this-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.what-is-this-list li {
    display: flex;
    align-items: start;
    gap: 15px;
    font-size: 1.05rem;
    color: var(--text-muted);
}
.list-icon {
    width: 32px; height: 32px;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-dark);
}
.footnote-highlight {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-top: 2rem;
}

/* CHAT PROOF SECTION */
.chat-proof-section {
    background: #f8fafc;
    padding: 80px 0;
}
.chat-proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.chat-proof-card {
    padding: 0;
    overflow: hidden;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
}
.chat-proof-header {
    background: #f1f5f9;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.proof-tag {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
}
.wa-chat-header {
    display: flex;
    align-items: center;
    gap: 10px;
}
.wa-chat-avatar {
    width: 32px; height: 32px;
    background: var(--primary-dark);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wa-chat-meta { text-align: left; display: flex; flex-direction: column; }
.wa-chat-meta strong { font-size: 0.9rem; color: var(--text-main); }
.wa-chat-meta span { font-size: 0.7rem; color: var(--text-muted); }
.wa-chat-body {
    padding: 20px;
    background: #efeae2;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.wa-chat-msg {
    max-width: 85%;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 0.85rem;
    color: #111b21;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    line-height: 1.4;
    text-align: left;
}
.wa-chat-msg.sent { background: #d9fdd3; align-self: flex-end; border-top-right-radius: 0; }
.wa-chat-msg.received { background: #ffffff; align-self: flex-start; border-top-left-radius: 0; }
.wa-chat-time { font-size: 0.6rem; color: #667781; float: right; margin-top: 4px; margin-left: 8px; display: flex; align-items: center; gap: 2px;}
.wa-system-time {
    align-self: center;
    background: rgba(11,20,26,0.06);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.7rem;
    color: #667781;
    font-weight: 600;
}

/* PAIN SECTION */
.pain-section {
    background: #ffffff;
}
.pain-hook {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}
.pain-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    align-items: center;
}
.nightmare-phone {
    border-color: rgba(239, 68, 68, 0.25);
    box-shadow: 0 30px 60px rgba(239, 68, 68, 0.08);
}
.nightmare-phone .wa-header {
    background: #c0392b;
}
.nightmare-phone .wa-chat-avatar {
    background: rgba(255,255,255,0.2);
}
.nightmare-phone .wa-msg.sent {
    background: #fca5a5;
    color: #7f1d1d;
}
.nightmare-phone .wa-msg.received {
    background: #ffffff;
    color: #111b21;
}

.math-box {
    border-left: 4px solid var(--red-alert);
    padding: 2.5rem;
    margin: 2rem 0;
    background: #fafafa;
    border-radius: 0 12px 12px 0;
    text-align: left;
}
.math-box h4 { color: var(--red-alert); margin-bottom: 1.5rem; font-size: 1.3rem; font-weight: 800; }
.math-box ul li { margin-bottom: 15px; display: flex; align-items: center; gap: 15px; font-size: 1.1rem; color: var(--text-main); }
.icon-circle {
    width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.icon-circle.red { background: rgba(239, 68, 68, 0.1); color: var(--red-alert); }
.icon-circle.green { background: rgba(37, 211, 102, 0.1); color: var(--primary-dark); }
.big-loss {
    font-size: 1.25rem; font-weight: 800; color: var(--red-alert);
    margin-top: 20px !important; padding-top: 20px; border-top: 1px dashed rgba(239, 68, 68, 0.2);
}
.pain-conclusion {
    margin-top: 1.5rem;
    font-weight: 700;
    color: var(--red-alert);
}

/* COMPARISON TABLE SECTION */
.comparison-section {
    padding: 80px 0;
    background: #f8fafc;
}
.comparison-table-wrapper {
    max-width: 900px;
    margin: 3rem auto 0;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}
.comparison-table th, .comparison-table td {
    padding: 1.5rem;
    font-size: 0.95rem;
}
.comparison-table th {
    background: rgba(15, 23, 42, 0.03);
    color: var(--text-main);
    font-weight: 700;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}
.comparison-table td {
    border-bottom: 1px solid rgba(15, 23, 42, 0.04);
    background: #ffffff;
}
.comparison-table tr:hover td {
    background: rgba(15, 23, 42, 0.01);
}
.table-feature {
    font-weight: 700;
    color: var(--text-main);
    width: 25%;
}
.manual-col, .manual-cell {
    color: #b91c1c; /* dark red for readability */
    background: rgba(239, 68, 68, 0.02) !important;
}
.auto-col, .auto-cell {
    color: var(--primary-dark);
    background: rgba(37, 211, 102, 0.02) !important;
    font-weight: 600;
}

/* COMPATIBILITY WORKS WITH SECTION */
.works-with-section {
    padding: 60px 0;
    background: #ffffff;
    border-bottom: 1px solid rgba(15, 23, 42, 0.04);
}
.compatibility-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}
.compatibility-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}
.compatibility-card {
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}
.compatibility-card:hover {
    border-color: rgba(37, 211, 102, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
}
.compatibility-card i,
.compatibility-card svg {
    width: 32px; height: 32px;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}
.compatibility-card strong {
    font-size: 0.95rem;
    color: var(--text-main);
}
.compatibility-card span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* HOW IT WORKS SECTION */
.how-it-works-section {
    padding: 80px 0;
    background: #f8fafc;
}
.how-it-works-visual {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 1rem;
    margin-top: 4rem;
}
.how-step {
    width: 30%;
    padding: 3.5rem 2rem 2.5rem;
    position: relative;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.how-step:hover {
    transform: translateY(-5px);
    border-color: rgba(37, 211, 102, 0.25);
}
.step-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-dark);
    color: #ffffff;
    font-weight: 800;
    font-size: 0.75rem;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.step-icon-wrap {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-dark);
}
.step-icon-wrap i,
.step-icon-wrap svg {
    width: 24px; height: 24px;
}
.how-step h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1rem;
}
.how-step p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    text-align: center;
}
.how-step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(15, 23, 42, 0.15);
    width: 50px;
    flex-shrink: 0;
}
.how-step-connector i,
.how-step-connector svg {
    width: 32px; height: 32px;
}

/* WAKE UP TO HOT LEADS / SOLUTION SHIFT */
.solution-shift {
    background: #ffffff;
}
.contrast-box {
    display: flex; align-items: stretch; justify-content: center; gap: 3rem; margin-bottom: 4rem; position: relative;
}
.before-box, .after-box { width: 45%; padding: 3rem 2rem; text-align: center; }
.vs-circle {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 60px; height: 60px; background: #ffffff; border: 2px solid rgba(15,23,42,0.1);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-weight: 900; font-size: 1.2rem; color: var(--text-muted); z-index: 2;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}
.label-badge {
    display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; border-radius: 20px;
    font-size: 0.9rem; font-weight: 800; margin-bottom: 20px; letter-spacing: 1px;
}
.label-badge.bad { background: rgba(239, 68, 68, 0.1); color: #b91c1c; border: 1px solid rgba(239, 68, 68, 0.2); }
.label-badge.good { background: rgba(37, 211, 102, 0.1); color: var(--primary-dark); border: 1px solid rgba(37, 211, 102, 0.2); }
.contrast-box p { font-size: 1.15rem; color: var(--text-main); }
.features-row { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.glass-pill {
    padding: 12px 25px; border-radius: 50px; background: #f8fafc; border: 1px solid rgba(15, 23, 42, 0.06);
    display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--text-main);
}
.glass-pill i,
.glass-pill svg { color: var(--primary-dark); width: 18px; height: 18px;}

/* VIDEO DEMO SECTION */
.demo-section {
    background: #f8fafc;
}
.video-container { max-width: 800px; margin: 0 auto 4rem; }
.video-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    background: #000;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}
.video-thumbnail-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.75) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
    text-align: center;
    color: #ffffff;
    z-index: 5;
    transition: opacity 0.5s;
}
.play-btn-circle {
    width: 80px; height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
}
.play-btn-circle i,
.play-btn-circle svg {
    width: 32px; height: 32px;
    margin-left: 4px;
}
.video-wrapper:hover .play-btn-circle {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(37, 211, 102, 0.6);
}
.video-thumbnail-overlay h3 { color: #ffffff; font-size: 1.5rem; font-weight: 800; margin-bottom: 0.5rem; }
.video-thumbnail-overlay p { color: #cbd5e1; font-size: 1rem; }

.demo-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 900px; margin: 0 auto; }
.step { text-align: center; padding: 2.5rem 1.5rem; transition: transform 0.3s; background: #ffffff; }
.step:hover { transform: translateY(-5px); }
.step-icon {
    width: 60px; height: 60px; background: rgba(37, 211, 102, 0.1); border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: var(--primary-dark);
}
.step-icon i,
.step-icon svg { width: 24px; height: 24px; }
.step p { font-size: 1.05rem; color: var(--text-main); line-height: 1.5; }

/* BEFORE VS AFTER DETAILED CARDS */
.before-after-section {
    background: #ffffff;
}
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.card { padding: 3.5rem; text-align: left; }
.card-header { display: flex; align-items: center; gap: 15px; margin-bottom: 2.5rem; }
.card h3 { font-size: 1.6rem; color: var(--text-main); font-weight: 850; }
.good-card { border: 1px solid rgba(37, 211, 102, 0.25); background: linear-gradient(180deg, rgba(37, 211, 102, 0.02) 0%, rgba(255, 255, 255, 0.6) 100%); }
.card ul li { margin-bottom: 18px; display: flex; align-items: flex-start; gap: 12px; font-size: 1.05rem; color: var(--text-muted); }
.bad-card ul li i,
.bad-card ul li svg { color: var(--red-alert); min-width: 24px; margin-top: 2px; }
.good-card ul li i,
.good-card ul li svg { color: var(--primary-dark); min-width: 24px; margin-top: 2px; }

/* WHY ₹399? SECTION */
.why-pricing-section {
    padding: 80px 0;
    background: #f8fafc;
}
.pricing-explanation-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 3.5rem;
    background: #ffffff;
    text-align: center;
}
.quote-box {
    margin: 2rem 0;
    padding: 0 2rem;
    border-left: 4px solid var(--primary-dark);
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-main);
    text-align: left;
}
.pricing-badge {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 1rem;
}

/* OFFER SECTION / STACK */
.offer-section {
    background: #ffffff;
}
.glowing-border {
    position: relative; max-width: 650px; margin: 0 auto; padding: 4rem 3.5rem;
    border: 2px solid rgba(37, 211, 102, 0.3); box-shadow: 0 10px 40px rgba(37, 211, 102, 0.06);
    background: #ffffff;
}
.ribbon {
    position: absolute; top: -15px; right: -15px; background: linear-gradient(135deg, #fbbf24, #d97706);
    color: #ffffff; font-weight: 900; font-size: 0.8rem; padding: 10px 30px; transform: rotate(15deg);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15); border-radius: 5px; letter-spacing: 1px;
}
.offer-list { text-align: left; }
.offer-list li { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 25px; font-size: 1.15rem; color: var(--text-main); }
.offer-list li span { font-size: 0.9rem; color: var(--text-muted); font-weight: normal; }

.price-box { text-align: center; margin: 3rem 0; padding: 2rem 0; border-top: 1px dashed rgba(15, 23, 42, 0.1); border-bottom: 1px dashed rgba(15, 23, 42, 0.1); }
.total-value { font-size: 1.1rem; color: var(--text-muted); }
.strikethrough { text-decoration: line-through; opacity: 0.7; margin-left: 10px;}
.final-price { font-size: 1.5rem; font-weight: 800; margin-top: 10px; color: var(--text-main); }
.final-price span { font-size: 3.5rem; color: var(--primary-dark); display: block; line-height: 1.2; text-shadow: 0 2px 10px rgba(18, 140, 126, 0.1);}
.urgency-warning-line { font-weight: 700; color: var(--red-alert); margin-bottom: 1.5rem; font-style: italic; }
.checkout-trust-elements {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 2rem 0 1.5rem;
    text-align: left;
}
.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
}
.trust-badge-item i,
.trust-badge-item svg {
    color: var(--primary-dark);
    width: 18px; height: 18px;
}
.secure-checkout { text-align: center; margin-top: 20px; color: var(--text-muted); font-size: 0.9rem; display: flex; justify-content: center; align-items: center; gap: 8px; }
.secure-checkout i,
.secure-checkout svg { width: 16px; height: 16px; }

/* RESULTS / STATS SECTION */
.results-section {
    background: #f8fafc;
}
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; max-width: 900px; margin: 0 auto; }
.stat-card { padding: 3rem 2rem; border-top: 3px solid var(--primary-dark); transition: transform 0.3s; background: #ffffff; }
.stat-card:hover { transform: translateY(-5px); }
.stat-icon {
    width: 60px; height: 60px; background: rgba(37, 211, 102, 0.1); border-radius: 12px;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: var(--primary-dark);
}
.stat-icon i,
.stat-icon svg { width: 32px; height: 32px; }
.stat-number { font-size: 3.5rem; color: var(--text-main); margin-bottom: 10px; font-weight: 900; }
.stat-card p { font-size: 1.1rem; color: var(--text-muted); font-weight: 600; }

/* TESTIMONIALS SECTION */
.testimonials-section {
    background: #ffffff;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}
.testimonial-card {
    position: relative;
    padding: 1.5rem;
    border-radius: 30px;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
    background: #f8fafc;
}
.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.05);
    border-color: rgba(37, 211, 102, 0.2);
}
.card-glow { display: none; }
.testimonial-info {
    text-align: left;
    margin-bottom: 1.5rem;
    padding: 0 5px;
}
.testimonial-info strong {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 5px;
}
.testimonial-author {
    display: block;
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 600;
}
.testimonial-institute {
    display: block;
    font-size: 0.85rem;
    color: var(--primary-dark);
    font-weight: 700;
}
.testimonial-img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    display: block;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(15, 23, 42, 0.08);
}
.voice-testimonials {
    max-width: 900px;
    margin: 3rem auto 0;
}
.voice-card {
    display: flex;
    align-items: start;
    gap: 20px;
    padding: 2.5rem;
    background: #f8fafc;
    text-align: left;
}
.voice-avatar {
    width: 50px; height: 50px;
    background: var(--primary-dark);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.voice-avatar i,
.voice-avatar svg { width: 24px; height: 24px; }
.voice-content { flex-grow: 1; }
.voice-content strong { display: block; font-size: 1.1rem; color: var(--text-main); margin-bottom: 10px;}
.wa-voice-message {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #ffffff;
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    width: fit-content;
    margin-bottom: 10px;
}
.voice-play-btn {
    border: none;
    background: var(--primary-dark);
    color: #ffffff;
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.voice-play-btn i,
.voice-play-btn svg { width: 14px; height: 14px; margin-left: 2px; }
.voice-waveform {
    display: flex;
    align-items: center;
    gap: 3px;
}
.wave-bar {
    width: 3px;
    height: 15px;
    background: #cbd5e1;
    border-radius: 2px;
}
.wave-bar.active { background: var(--primary-dark); }
.voice-duration { font-size: 0.8rem; color: var(--text-muted); font-weight: 600; }
.voice-translation { font-size: 1rem; color: var(--text-muted); font-style: italic; }

/* WHO IS THIS FOR / AUDIENCE SECTION */
.audience-section {
    background: #f8fafc;
}
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.works-best-for, .for-who, .not-for-who { padding: 3rem; background: #ffffff; text-align: left; }
.works-best-for h2, .for-who h2, .not-for-who h2 { margin-bottom: 2rem; }
.works-best-for ul li, .for-who ul li, .not-for-who ul li { display: flex; align-items: start; gap: 12px; margin-bottom: 18px; font-size: 1.05rem; color: var(--text-muted); }
.works-best-for ul li i, .works-best-for ul li svg { color: #d97706; min-width: 20px; margin-top: 3px; }
.for-who ul li i, .for-who ul li svg { color: var(--primary-dark); min-width: 20px; margin-top: 3px; }
.not-for-who ul li i, .not-for-who ul li svg { color: var(--red-alert); min-width: 20px; margin-top: 3px; }

/* WHAT YOU GET / DELIVERY SECTION */
.delivery-section {
    background: #ffffff;
}
.delivery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 1000px;
    margin: 3rem auto 0;
}
.delivery-card {
    padding: 2.5rem !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #ffffff;
}
.delivery-badge-icon {
    width: 50px; height: 50px;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(37, 211, 102, 0.25);
}
.delivery-badge-icon i,
.delivery-badge-icon svg { width: 24px; height: 24px; }
.delivery-card h3 { font-size: 1.3rem; font-weight: 800; color: var(--text-main); margin-bottom: 1rem; }
.delivery-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1.5rem; flex-grow: 1; text-align: left; }
.delivery-file-info {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
}
.delivery-file-info i,
.delivery-file-info svg { width: 14px; height: 14px; color: var(--primary-dark); }
.delivery-card.full-width-card {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: start;
    gap: 20px;
}
.full-width-content { text-align: left; }

/* CTA PUSH */
.cta-push {
    background: #f8fafc;
}
.cost-content {
    max-width: 700px; margin: 0 auto; padding: 3.5rem;
    border: 1px solid rgba(239, 68, 68, 0.2);
    background: #ffffff;
}
.cost-content p { font-size: 1.25rem; margin-bottom: 10px; color: var(--text-main); }
.highlight-loss { color: var(--red-alert); font-size: 1.4rem !important; font-weight: 800; margin-top: 15px;}
.highlight-win { color: var(--primary-dark); font-size: 1.4rem !important; font-weight: 800; }
.cost-content hr { border: none; border-top: 1px dashed rgba(15, 23, 42, 0.1); margin: 30px 0; }

/* FAQ SECTION */
.faq-section {
    background: #ffffff;
}
.faq-accordion { max-width: 800px; margin: 0 auto; }
.faq-item { margin-bottom: 15px; overflow: hidden; transition: all 0.3s; background: #f8fafc; }
.faq-item:hover { background: rgba(15, 23, 42, 0.02); }
.faq-question { padding: 25px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 700; font-size: 1.15rem; color: var(--text-main); }
.faq-question span { display: flex; align-items: center; gap: 15px; text-align: left; }
.faq-question i.arrow,
.faq-question svg.arrow { transition: transform 0.3s; color: var(--primary-dark); }
.faq-item.active .faq-question i.arrow,
.faq-item.active .faq-question svg.arrow { transform: rotate(180deg); }
.faq-answer { padding: 0 25px; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; color: var(--text-muted); font-size: 1.05rem; line-height: 1.7; text-align: left; }
.faq-item.active .faq-answer { padding: 0 25px 25px; max-height: 350px; }

/* FINAL CLOSE */
.final-close {
    padding: 100px 0;
    background: #e1f5ee; /* WhatsApp soft light green background */
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(37, 211, 102, 0.2);
}
.final-close::before {
    content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 100%; height: 100%;
    background: radial-gradient(circle at top, rgba(37, 211, 102, 0.05) 0%, transparent 60%);
    z-index: 0;
}
.final-close .container { position: relative; z-index: 1; }
.final-close h2 { font-size: 2.5rem; margin-bottom: 1.5rem; font-weight: 850; color: var(--text-main); }
.final-close p { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 10px; }
.glowing-text {
    font-size: 1.8rem !important;
    font-weight: 900;
    color: var(--text-main) !important;
    margin-top: 25px !important;
    text-shadow: 0 2px 10px rgba(18, 140, 126, 0.1);
}

.hero-fomo-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(239, 68, 68, 0.08) !important;
    border: 1px solid rgba(239, 68, 68, 0.15) !important;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--red-alert);
    margin-top: 15px;
}
.status-pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--red-alert);
    border-radius: 50%;
    display: inline-block;
    position: relative;
}
.status-pulse-dot::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: var(--red-alert);
    border-radius: 50%;
    animation: dotPulse 1.5s infinite ease-out;
}
@keyframes dotPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(3); opacity: 0; }
}

/* CHECKOUT MODAL */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.7); backdrop-filter: blur(5px);
    display: flex; align-items: center; justify-content: center;
    z-index: 1000; opacity: 0; visibility: hidden; transition: all 0.3s;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-content {
    width: 90%; max-width: 450px; padding: 2.5rem; position: relative;
    transform: translateY(20px); transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: #ffffff !important;
}
.modal-overlay.active .modal-content { transform: translateY(0); }
.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(15, 23, 42, 0.05) !important;
    border: 1px solid rgba(15, 23, 42, 0.1) !important;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50% !important;
    z-index: 10;
}
.close-modal:hover {
    background: rgba(15, 23, 42, 0.1) !important;
    color: var(--text-main);
}
.close-modal i,
.close-modal svg {
    width: 20px;
    height: 20px;
    display: block;
}
.modal-header h3 { font-size: 1.8rem; margin-bottom: 5px; font-weight: 800; color: var(--text-main); }
.modal-header p { color: var(--text-muted); margin-bottom: 2rem; font-size: 0.95rem; }

.form-group { margin-bottom: 1.2rem; text-align: left; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 0.95rem; color: var(--text-muted); }
.form-group input {
    width: 100%; padding: 12px 15px; border-radius: 8px;
    border: 1px solid rgba(15, 23, 42, 0.15);
    background: #ffffff; color: var(--text-main); font-family: var(--font-body); font-size: 1rem;
    transition: border-color 0.3s;
}
.form-group input:focus { outline: none; border-color: var(--primary-dark); }
.form-group input::placeholder { color: #cbd5e1; }

/* STICKY MOBILE CTA */
.sticky-mobile-cta {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: #ffffff;
    padding: 10px 15px 15px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 -4px 15px rgba(15, 23, 42, 0.04);
    z-index: 200;
    display: none;
    text-align: center;
}
.sticky-mobile-cta.visible {
    display: block;
}
.sticky-mobile-cta .cta-button {
    width: 100%;
    max-width: 450px;
    padding: 15px 30px;
    font-size: 1.1rem;
}
.cta-sub-price {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 5px;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1024px) {
    .hero-split {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }
    .hero-text {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero h1 { font-size: 2.8rem; }
    .hero-checklist {
        align-items: center;
        text-align: center;
    }
    .hero-checklist .checklist-line {
        justify-content: center;
    }
    .pain-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .pain-content {
        text-align: center;
    }
    .math-box {
        border-left: none;
        border-top: 4px solid var(--red-alert);
        border-radius: 0 0 12px 12px;
    }
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .audience-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    section { padding: 60px 0; }
    .section-title { font-size: 2rem; margin-bottom: 2rem; }
    .hero h1 { font-size: 2.2rem; }
    .hero .subheadline { font-size: 1.1rem; margin-bottom: 2rem; }
    .what-is-this-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .what-is-this-intro {
        border-right: none;
        border-bottom: 1px solid rgba(15, 23, 42, 0.08);
        padding-right: 0;
        padding-bottom: 2rem;
    }
    .what-is-this-card {
        padding: 2rem 1.5rem;
    }
    .how-it-works-visual {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    .how-step {
        width: 100%;
        max-width: 320px;
    }
    .how-step-connector {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
    .contrast-box {
        flex-direction: column;
        gap: 2rem;
    }
    .before-box, .after-box {
        width: 100%;
        padding: 2rem 1.5rem;
    }
    .vs-circle {
        position: relative;
        top: 0; left: 0;
        transform: none;
        margin: 1rem auto;
    }
    .demo-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .delivery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .delivery-card.full-width-card {
        flex-direction: column;
        align-items: start;
    }
    .cost-content {
        padding: 2rem 1.5rem;
    }
    .cost-content p { font-size: 1.1rem; }
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .voice-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem;
    }
    .wa-voice-message {
        margin: 10px auto;
    }
    .compatibility-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .nav-links { display: none; }
    .nav-cta { padding: 8px 18px; font-size: 0.85rem; }
    .glowing-border {
        padding: 2.5rem 1.5rem;
    }
    .final-close h2 { font-size: 1.8rem; }
    
    /* Comparison Table mobile scroll override */
    .comparison-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .comparison-table {
        min-width: 600px;
    }
    
    /* Mobilify paddings for all key container cards */
    .card,
    .works-best-for,
    .for-who,
    .not-for-who,
    .pricing-explanation-card {
        padding: 2rem 1.25rem !important;
    }
    .modal-content {
        padding: 1.5rem 1.25rem !important;
        max-width: 385px !important;
        width: 92% !important;
    }
    .modal-header h3 {
        font-size: 1.5rem !important;
    }
    .modal-header p {
        margin-bottom: 1.0rem !important;
        font-size: 0.85rem !important;
    }
    .modal-urgency-note {
        font-size: 0.8rem !important;
        margin-bottom: 1.0rem !important;
        padding: 6px 10px !important;
        line-height: 1.4;
    }
    .form-group {
        margin-bottom: 0.8rem !important;
    }
    .form-group label {
        margin-bottom: 4px !important;
        font-size: 0.85rem !important;
    }
    .form-group input {
        padding: 10px 12px !important;
        font-size: 0.95rem !important;
    }
    .modal-trust {
        margin-top: 1.0rem !important;
        margin-bottom: 1.0rem !important;
        gap: 8px !important;
    }
    .secure-checkout {
        margin-top: 0.8rem !important;
        font-size: 0.8rem !important;
    }
}

@media (max-width: 480px) {
    .compatibility-grid {
        grid-template-columns: 1fr;
    }
    .nav-logo { font-size: 1.1rem; }
    
    /* Phone Mockup responsive dimensions reduction */
    .css-phone {
        width: 280px !important;
        height: 540px !important;
        border-radius: 30px !important;
    }
    
    /* Adjust text size & spacing inside responsive phone chat */
    .wa-chat {
        padding: 15px 10px !important;
    }
    .wa-msg {
        font-size: 0.8rem !important;
        padding: 8px 10px !important;
    }
    .wa-header {
        padding: 30px 10px 10px !important;
    }
    .wa-avatar {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.85rem !important;
    }
    .wa-info strong {
        font-size: 0.85rem !important;
    }
    .wa-info span {
        font-size: 0.7rem !important;
    }
    .wa-pdf-card {
        padding: 6px 10px !important;
        gap: 8px !important;
    }
    .pdf-name {
        font-size: 0.75rem !important;
    }
    .pdf-meta {
        font-size: 0.65rem !important;
    }
    
    /* Prevent floating reply time badge from breaking mobile edges */
    .reply-time-badge {
        right: 5px !important;
        top: 10px !important;
        padding: 6px 10px !important;
        min-width: 75px !important;
    }
    .reply-time-badge .badge-value {
        font-size: 1.3rem !important;
    }
    .reply-time-badge .badge-label {
        font-size: 0.6rem !important;
    }
}

/* ==========================================
   SHARP EDGES & MINIMALIST LAYOUT OVERRIDES 
   ========================================== */
.cta-button,
.secondary-btn,
.nav-cta,
.glass-panel,
.highlight-bg,
.hero .badge,
.comparison-table-wrapper,
.compatibility-card,
.how-step,
.step-badge,
.label-badge,
.glass-pill,
.step,
.card,
.pricing-explanation-card,
.ribbon,
.stat-card,
.testimonial-card,
.testimonial-img,
.voice-card,
.works-best-for,
.for-who,
.not-for-who,
.delivery-card,
.cost-content,
.faq-item,
.modal-content,
.form-group input,
.sticky-mobile-cta .cta-button,
.next-steps-list {
    border-radius: 0 !important;
}

/* AUTHENTIC CURVED MOBILE MOCKUP INTERFACE */
.css-phone {
    border-radius: 40px !important;
}
.reply-time-badge {
    border-radius: 12px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05) !important;
}
.wa-avatar,
.wa-chat-avatar,
.voice-avatar,
.play-btn-circle,
.voice-play-btn,
.icon-circle,
.success-icon,
.close-modal {
    border-radius: 50% !important;
}
.wa-msg,
.wa-chat-msg {
    border-radius: 12px !important;
    border: none !important; /* Authentic borderless bubbles inside chat */
    box-shadow: 0 1px 2px rgba(0,0,0,0.1) !important;
}
.wa-msg.sent,
.wa-chat-msg.sent {
    border-top-right-radius: 0 !important;
}
.wa-msg.received,
.wa-chat-msg.received {
    border-top-left-radius: 0 !important;
}
.wa-attachment,
.wa-pdf-card,
.wa-voice-message,
.wa-date,
.step-icon-wrap,
.step-icon,
.delivery-badge-icon,
.stat-icon {
    border-radius: 8px !important;
}

/* Remove page shadows and enforce clean black borders for sharp minimal editorial look */
.glass-panel,
.how-step,
.card,
.pricing-explanation-card,
.stat-card,
.testimonial-card,
.voice-card,
.works-best-for,
.for-who,
.not-for-who,
.delivery-card,
.cost-content,
.faq-item,
.modal-content,
.compatibility-card,
.next-steps-list {
    box-shadow: none !important;
    border: 1px solid #000000 !important;
}

/* CRO Button optimization - Solid borders and responsive hover states */
.cta-button.primary {
    border: 2px solid #20b958 !important;
    background: linear-gradient(135deg, #25D366, #1ea34d) !important;
}
.cta-button.primary:hover {
    background: #128C7E !important; /* Solid dark WhatsApp green */
    border-color: #128C7E !important;
    color: #ffffff !important;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25) !important;
    transform: translateY(-2px) !important;
    transition: all 0.2s ease !important;
}
.cta-button.whatsapp {
    border: 2px solid #0f172a !important;
    background: #0f172a !important;
}
.cta-button.whatsapp:hover {
    background: #1e293b !important;
    border-color: #1e293b !important;
    color: #ffffff !important;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.15) !important;
    transform: translateY(-2px) !important;
    transition: all 0.2s ease !important;
}
.compatibility-card:hover,
.how-step:hover,
.delivery-card:hover,
.stat-card:hover,
.testimonial-card:hover,
.faq-item:hover {
    transform: none !important;
    border-color: #000000 !important;
    box-shadow: none !important;
}

/* Simplify body background and animations */
body {
    background-image: none !important; /* clean solid white background */
}

/* ==========================================
   NAVIGATION BRAND LOGO & CLIENT MARQUEE
   ========================================== */
.nav-brand-img {
    width: 32px;
    height: 32px;
    border-radius: 50% !important;
    object-fit: cover;
    border: 1px solid #000000;
}

.client-marquee-section {
    padding: 50px 0 30px;
    background: #ffffff;
    border-bottom: 1px solid #000000;
    overflow: hidden;
}

.marquee-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 25px;
}

.marquee-title-wrapper h3 {
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}

.marquee-title-wrapper .marquee-dot {
    width: 8px;
    height: 8px;
    background-color: #25D366;
    border-radius: 50% !important;
    display: inline-block;
    box-shadow: 0 0 8px #25D366;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

/* Linear gradients at the edges for a premium fade out/in look */
.marquee-container::before,
.marquee-container::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, #ffffff, transparent);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, #ffffff, transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 24px;
    animation: scrollMarquee 40s linear infinite !important;
}

.marquee-track:hover {
    animation-play-state: paused !important;
}

.marquee-card {
    width: 260px;
    height: 360px;
    flex-shrink: 0;
    border: 1px solid #000000 !important;
    border-radius: 0 !important;
    overflow: hidden;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none !important;
}

.marquee-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% / 3));
    }
}
/* ==========================================
   OUR AIM SECTION
   ========================================== */
.company-aim-section {
    border-top-right-radius: 0 !important;
}
.wa-msg.received,
.wa-chat-msg.received {
    border-top-left-radius: 0 !important;
}
.wa-attachment,
.wa-pdf-card,
.wa-voice-message,
.wa-date,
.step-icon-wrap,
.step-icon,
.delivery-badge-icon,
.stat-icon {
    border-radius: 8px !important;
}

/* Remove page shadows and enforce clean black borders for sharp minimal editorial look */
.glass-panel,
.how-step,
.card,
.pricing-explanation-card,
.stat-card,
.testimonial-card,
.voice-card,
.works-best-for,
.for-who,
.not-for-who,
.delivery-card,
.cost-content,
.faq-item,
.modal-content,
.compatibility-card,
.next-steps-list {
    box-shadow: none !important;
    border: 1px solid #000000 !important;
}

/* CRO Button optimization - Solid borders and responsive hover states */
.cta-button.primary {
    border: 2px solid #20b958 !important;
    background: linear-gradient(135deg, #25D366, #1ea34d) !important;
}
.cta-button.primary:hover {
    background: #128C7E !important; /* Solid dark WhatsApp green */
    border-color: #128C7E !important;
    color: #ffffff !important;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25) !important;
    transform: translateY(-2px) !important;
    transition: all 0.2s ease !important;
}
.cta-button.whatsapp {
    border: 2px solid #0f172a !important;
    background: #0f172a !important;
}
.cta-button.whatsapp:hover {
    background: #1e293b !important;
    border-color: #1e293b !important;
    color: #ffffff !important;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.15) !important;
    transform: translateY(-2px) !important;
    transition: all 0.2s ease !important;
}
.compatibility-card:hover,
.how-step:hover,
.delivery-card:hover,
.stat-card:hover,
.testimonial-card:hover,
.faq-item:hover {
    transform: none !important;
    border-color: #000000 !important;
    box-shadow: none !important;
}

/* Simplify body background and animations */
body {
    background-image: none !important; /* clean solid white background */
}

/* ==========================================
   NAVIGATION BRAND LOGO & CLIENT MARQUEE
   ========================================== */
.nav-brand-img {
    width: 32px;
    height: 32px;
    border-radius: 50% !important;
    object-fit: cover;
    border: 1px solid #000000;
}

.client-marquee-section {
    padding: 50px 0 30px;
    background: #ffffff;
    border-bottom: 1px solid #000000;
    overflow: hidden;
}

.marquee-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 25px;
}

.marquee-title-wrapper h3 {
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}

.marquee-title-wrapper .marquee-dot {
    width: 8px;
    height: 8px;
    background-color: #25D366;
    border-radius: 50% !important;
    display: inline-block;
    box-shadow: 0 0 8px #25D366;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

/* Linear gradients at the edges for a premium fade out/in look */
.marquee-container::before,
.marquee-container::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, #ffffff, transparent);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, #ffffff, transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 24px;
    animation: scrollMarquee 40s linear infinite !important;
}

.marquee-track:hover {
    animation-play-state: paused !important;
}

.marquee-card {
    width: 260px;
    height: 360px;
    flex-shrink: 0;
    border: 1px solid #000000 !important;
    border-radius: 0 !important;
    overflow: hidden;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none !important;
    padding: 12px;
}

.marquee-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% / 3));
    }
}
/* ==========================================
   OUR AIM SECTION
   ========================================== */
.company-aim-section {
    background: #ffffff;
    padding: 80px 0;
    border-bottom: 1px solid #000000;
}
.company-aim-card {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 4rem;
    padding: 4rem;
    align-items: center;
    background: #ffffff !important;
}
.company-aim-content {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.company-aim-content .quote-icon {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}
.company-aim-content .quote-icon i,
.company-aim-content .quote-icon svg {
    width: 48px;
    height: 48px;
}
.aim-quote {
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--text-main);
    margin-bottom: 2rem;
    font-style: italic;
}
.aim-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 2rem;
}
.aim-details strong {
    font-size: 1.05rem;
    color: var(--text-main);
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.aim-details span {
    font-size: 0.9rem;
    color: var(--primary-dark);
    font-weight: 700;
}
.company-aim-visual {
    position: relative;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    border: 1px solid #000000 !important;
    overflow: hidden;
}
.aim-portrait {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}
.aim-badge {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: #0f172a;
    color: #ffffff;
    font-weight: 800;
    font-size: 0.72rem;
    padding: 6px 14px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .company-aim-card {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2rem 1.25rem !important;
    }
    .aim-quote {
        font-size: 1.15rem;
    }
}
