:root {
    --primary: #10b981; /* Emerald Green from Logo */
    --primary-dark: #059669;
    --primary-light: #34d399;
    --secondary: #000000;
    --accent: #10b981;
    --dark: #0a0a0a;
    --darker: #000000;
    --light: #ffffff;
    --gray: #a3a3a3;
    --border: rgba(255, 255, 255, 0.1);
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    --sora: 'Sora', sans-serif;
    --inter: 'Inter', sans-serif;
    --shadow-md: 0 4px 20px -2px rgba(0, 0, 0, 0.5);
    --gradient-primary: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--inter);
    background-color: var(--darker);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo {
    font-family: var(--sora);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Button Component */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.9375rem;
    gap: 0.5rem;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(99, 102, 241, 0.5);
}

.btn-secondary {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border-color: var(--glass-border);
    color: white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-ghost {
    color: var(--gray);
}

.btn-ghost:hover {
    color: var(--light);
    background: var(--glass);
}

.btn.full-width {
    width: 100%;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 1.5rem;
    left: 2rem;
    right: 2rem;
    z-index: 1000;
    background: rgba(2, 6, 23, 0.7);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 9999px;
    padding: 0.75rem 0.75rem 0.75rem 2rem;
    transition: var(--transition);
}

.navbar.scrolled {
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    border-top: none;
    border-left: none;
    border-right: none;
    padding: 1rem 2rem;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
}

.logo-icon-custom {
    background: #000;
    padding: 0.3rem 0.6rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-right: 0.2rem;
}

.logo-icon-custom .dot {
    width: 14px;
    height: 14px;
    border: 3px solid #fff;
    border-radius: 50%;
}

.logo-icon-custom .chars {
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    font-family: var(--inter);
}

.logo-text {
    color: var(--primary);
    display: flex;
    align-items: center;
}

.logo-text span {
    color: #fff;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links li a {
    color: var(--gray);
    font-weight: 500;
    font-size: 0.9375rem;
}

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

.nav-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--light);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 10rem 0 8rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 40%),
                      radial-gradient(circle at 20% 80%, rgba(168, 85, 247, 0.1) 0%, transparent 40%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
    pointer-events: none;
    background: radial-gradient(circle at 70% 30%, rgba(16, 185, 129, 0.15) 0%, transparent 60%);
}

.container.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-text .badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-light);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.8125rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-text h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-text h1 span {
    color: var(--primary);
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--sora);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--light);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray);
}

.hero-visual {
    position: relative;
}

.floating-card {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: float 6s ease-in-out infinite;
}

.chat-card {
    width: 320px;
    margin-bottom: 2rem;
}

.chat-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
}

.name {
    font-weight: 600;
    font-size: 0.9375rem;
}

.bubble {
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    max-width: 80%;
}

.recipient {
    background: #1e293b;
    align-self: flex-start;
}

.sender {
    background: var(--primary);
    align-self: flex-end;
    margin-left: auto;
}

.code-card {
    width: 400px;
    margin-left: -4rem;
    background: #020617;
    padding: 1.25rem;
    animation-delay: -3s;
}

.code-card pre {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.8125rem;
    line-height: 1.5;
}

.keyword { color: #c678dd; }
.function { color: #61afef; }
.string { color: #98c379; }
.property { color: #e06c75; }
.method { color: #61afef; }

/* Connectivity Section */
.connectivity {
    padding: 2rem 0 4rem;
    background: transparent;
    border-bottom: 1px solid var(--glass-border);
}

.connectivity-title {
    text-align: center;
    font-size: 1rem;
    color: var(--gray);
    font-weight: 500;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.connectivity-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    opacity: 0.6;
    transition: var(--transition);
}

.connectivity:hover .connectivity-logos {
    opacity: 1;
}

.operator-brand {
    font-family: var(--inter);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray);
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    cursor: default;
}

.operator-brand i {
    width: 24px;
    height: 24px;
}

.operator-brand:hover {
    color: var(--light);
    transform: translateY(-2px);
}

.jio-brand span {
    background: var(--light);
    color: var(--darker);
    padding: 0.1rem 0.6rem;
    border-radius: 50px;
    font-size: 1.25rem;
    transition: var(--transition);
}

.operator-brand.jio-brand:hover span {
    background: var(--primary);
    color: white;
}

.vi-brand {
    font-size: 1.75rem;
}

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

/* Sections Common */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.75rem;
    line-height: 1.2;
    margin: 1rem 0 1.5rem;
}

.section-header h2 span {
    color: var(--primary);
}

.badge-alt {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(34, 197, 94, 0.1);
    color: var(--accent);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
}

/* WhatsApp Automation Section */
.wa-automation {
    padding: 8rem 0;
    background: transparent;
}

.wa-automation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.wa-mockup-wrapper {
    perspective: 1000px;
    z-index: 10;
    display: flex;
    justify-content: center;
}

.iphone-frame {
    width: 100%;
    max-width: 380px;
    height: 760px;
    background: #111;
    border-radius: 3rem;
    padding: 12px;
    box-shadow: 
        0 50px 100px -20px rgba(0,0,0,0.5),
        inset 0 0 0 4px #222,
        inset 0 0 0 6px #444;
    position: relative;
    transition: var(--transition);
}

.iphone-frame:hover {
    transform: rotateY(-5deg) rotateX(2deg);
}

.iphone-screen {
    width: 100%;
    height: 100%;
    background: #0b141a; /* WhatsApp Dark Mode BG */
    border-radius: 2.2rem;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Status Bar */
.status-bar {
    padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-icons {
    display: flex;
    gap: 0.5rem;
}

.s-icon {
    width: 14px !important;
    height: 14px !important;
}

/* WA Header */
.wa-chat-header {
    background: rgba(32, 44, 51, 0.98);
    backdrop-filter: blur(10px);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.wa-contact-info {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.wa-avatar {
    width: 38px;
    height: 38px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
}

.wa-contact-details h4 {
    font-size: 0.875rem;
    margin: 0;
}

.wa-last-seen {
    font-size: 0.6875rem;
    color: var(--primary);
}

.h-icon, .h-back {
    width: 18px !important;
    height: 18px !important;
    color: var(--primary);
    opacity: 0.8;
}

.wa-header-actions {
    display: flex;
    gap: 1.25rem;
}

/* Chat Body */
.wa-chat-body {
    flex: 1;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow-y: auto;
    background-image: url("https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png");
    background-size: 400px;
    background-blend-mode: overlay;
    background-color: #0b141a;
}

.wa-date-divider {
    align-self: center;
    background: rgba(22, 30, 36, 0.9);
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 0.625rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.wa-msg-row {
    display: flex;
    width: 100%;
}

.wa-msg-received { justify-content: flex-start; }
.wa-msg-sent { justify-content: flex-end; }

.wa-bubble {
    max-width: 85%;
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 0.8125rem;
    line-height: 1.4;
    position: relative;
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.wa-msg-received .wa-bubble {
    background: #202c33;
    color: #e9edef;
    border-top-left-radius: 2px;
}

.wa-msg-sent .wa-bubble {
    background: #005c4b;
    color: #e9edef;
    border-top-right-radius: 2px;
}

.wa-time {
    display: block;
    font-size: 0.625rem;
    color: rgba(255,255,255,0.5);
    text-align: right;
    margin-top: 4px;
}

.wa-meta {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 4px;
}

.wa-checks i {
    width: 14px !important;
    height: 14px !important;
    color: #53bdeb;
}

/* WA Buttons */
.wa-btn-group {
    margin-top: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.wa-inline-btn {
    width: 100%;
    padding: 8px;
    background: rgba(0,0,0,0.15);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    color: var(--primary-light);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
}

/* Input Bar */
.wa-input-bar {
    background: #202c33;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.i-field {
    flex: 1;
    background: #2a3942;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 0.875rem;
    color: #888;
}

.i-icon {
    width: 20px !important;
    height: 20px !important;
    color: #888;
}

.wa-automation-content h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.wa-automation-content h2 span {
    color: var(--primary);
}

.wa-desc {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.wa-feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.wa-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.wa-feature-list li i {
    color: var(--light);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.wa-feature-list li div {
    font-size: 0.9375rem;
    color: var(--gray);
}

.wa-feature-list li strong {
    color: var(--light);
    font-weight: 600;
}

.wa-cta {
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
}

/* Bento Grid Features */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(300px, auto);
    gap: 1.5rem;
}

.bento-item {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 2rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bento-item:hover {
    border-color: var(--primary-light);
}

.bento-large {
    grid-column: span 2;
    flex-direction: row;
    justify-content: space-between;
}

.bento-content {
    max-width: 60%;
}

.bento-item i {
    width: 40px;
    height: 40px;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.bento-item h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.bento-item p {
    color: var(--gray);
    font-size: 0.9375rem;
}

.bento-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary);
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.bento-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-light);
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: var(--transition);
}

.bento-link i {
    width: 16px !important;
    height: 16px !important;
    margin: 0 !important;
}

.bento-item:hover .bento-link {
    gap: 0.75rem;
}

/* SMS Visuals */
.sms-visual {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.75rem;
    padding-left: 2rem;
}

.sms-bubble {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.8125rem;
    max-width: 80%;
    transform: rotate(-2deg);
    animation: floating 3s ease-in-out infinite;
}

.sms-bubble:nth-child(2) {
    transform: rotate(2deg);
    margin-left: 20%;
    background: rgba(16, 185, 129, 0.05);
    animation-delay: 1.5s;
}

/* WA Clouds */
.bento-mini-visual {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cloud-dot {
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.3;
}

.wa-clouds span:nth-child(2) { opacity: 0.6; transform: scale(1.2); }
.wa-clouds span:nth-child(3) { opacity: 1; transform: scale(1.4); }

/* RCS Rich */
.rcs-btn {
    padding: 0.5rem 1rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.rcs-rich {
    margin-top: 1rem;
    padding-bottom: 0.5rem;
}

/* Analytics Visual */
.analytics-visual {
    width: 45%;
    display: flex;
    align-items: flex-end;
    margin-bottom: -1rem; /* push bars to bottom edge */
    opacity: 0.8;
}

.bar-chart {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    height: 100px;
    width: 100%;
}

.bar {
    flex: 1;
    background: linear-gradient(to top, var(--primary), var(--primary-light));
    border-radius: 4px 4px 0 0;
    opacity: 0.5;
    transition: var(--transition);
}

.bento-item:hover .bar {
    opacity: 1;
}

@keyframes floating {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-5px) rotate(-1deg); }
}

/* Developers Section */
.developers {
    background: #020617;
}

/* API Playground - Dark Theme Overhaul */
.api-playground-card {
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 2rem;
    overflow: hidden;
    margin-top: 3rem;
    box-shadow: 0 40px 100px -20px rgba(0,0,0,0.6);
}

.playground-header {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem 2.5rem;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-indicator {
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--primary);
}

.playground-header h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.playground-header h3 i {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.playground-body {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    padding: 3rem;
    gap: 4rem;
    min-height: auto;
    background: transparent;
}

.playground-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.playground-form label {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-select {
    appearance: none;
    padding: 0.875rem 3rem 0.875rem 1.25rem;
    background-color: rgba(255, 255, 255, 0.05);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--light);
    font-size: 0.9375rem;
    font-weight: 500;
    outline: none;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(8px);
    width: 100%;
}

.form-select:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(16, 185, 129, 0.3);
}

.form-select [value] {
    background: #0f172a; /* Deep blue-black for native dropdown list */
    color: white;
}

.form-select:focus {
    border-color: var(--primary);
    background-color: rgba(16, 185, 129, 0.05);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

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

.note-text {
    font-size: 0.6875rem;
    color: var(--primary-light);
    text-transform: none;
    letter-spacing: normal;
    font-weight: 500;
}

.form-textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--light);
    font-size: 0.9375rem;
    font-family: inherit;
    outline: none;
    resize: vertical;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.form-textarea:focus,
.form-input:focus {
    border-color: var(--primary);
    background-color: rgba(16, 185, 129, 0.05);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.form-input {
    width: 100%;
    padding: 0.875rem 1.25rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--light);
    font-size: 0.9375rem;
    font-family: inherit;
    outline: none;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.form-check-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
}

.btn-small {
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-coral {
    background: #ff6b6b;
    color: white;
}

.btn-coral:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.form-check {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.form-check label {
    color: var(--gray);
    font-weight: 500;
    margin: 0;
    text-transform: none;
    letter-spacing: normal;
}

.form-check input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
    cursor: pointer;
}

.playground-code {
    background: #000000;
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: inset 0 2px 20px rgba(0,0,0,0.5);
}

.code-header {
    background: #050505;
    padding: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
    font-family: var(--inter);
    font-size: 0.8125rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.status-dot-active {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
}

.code-header strong {
    color: var(--primary-light);
    margin-right: 0.5rem;
}

.code-content {
    padding: 2rem;
    font-family: 'Fira Code', 'Courier New', Courier, monospace;
    font-size: 0.875rem;
    line-height: 1.8;
}

.code-comment { color: #4b5563; }
.code-key { color: var(--primary-light); font-weight: 500; }
.code-label { color: #facc15; font-weight: 700; margin-top: 2rem; display: block; }
.code-url { color: #94a3b8; font-size: 0.75rem; word-break: break-all; opacity: 0.8; }

.playground-footer {
    padding: 0 3rem 3rem;
    display: flex;
    justify-content: flex-end;
}

.btn-outline.full-width-mobile i {
    width: 16px;
    height: 16px;
}

@media (max-width: 1024px) {
    .playground-body {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2rem;
    }
    .playground-footer {
        padding: 0 2rem 2rem;
    }
    .full-width-mobile {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .playground-header {
        padding: 1.25rem 2rem;
    }
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: center;
}

.pricing-card {
    background: var(--glass);
    border: 1px solid var(--border);
    padding: 3rem 2rem;
    border-radius: 2.5rem;
    transition: var(--transition);
    position: relative;
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    background: rgba(99, 102, 241, 0.05);
}

.p-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.price:last-of-type {
    margin-bottom: 2rem;
}

.price span {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--light);
}

.p-features {
    margin-bottom: 2.5rem;
}

.p-features li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.p-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
}

.p-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
}

.pricing-footer {
    text-align: center;
    margin-top: 4rem;
    color: var(--gray);
}

.pricing-footer a {
    color: var(--primary-light);
    text-decoration: underline;
}

/* CTA Section */
.cta {
    padding-bottom: 8rem;
}

.cta-card {
    background: #0a0a0a;
    border: 1px solid var(--glass-border);
    padding: 5rem;
    border-radius: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: 0;
}

.cta-card * {
    position: relative;
    z-index: 1;
}

.cta-card h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-card p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.cta-bonus {
    font-weight: 600;
}

/* Footer */
.footer {
    background: #020617;
    padding: 6rem 0 3rem;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 5rem;
    margin-bottom: 6rem;
}

.column-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-desc {
    color: var(--gray);
    font-size: 0.9375rem;
    line-height: 1.6;
    max-width: 320px;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    width: fit-content;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
    100% { opacity: 1; transform: scale(1); }
}

.status-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.social-links-minimal {
    display: flex;
    gap: 1.5rem;
}

.social-links-minimal a {
    color: var(--gray);
    transition: var(--transition);
}

.social-links-minimal a:hover {
    color: var(--primary-light);
    transform: translateY(-2px);
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links h4 {
    margin-bottom: 2rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--light);
}

.footer-links ul li {
    margin-bottom: 1rem;
}

.footer-links ul li a {
    color: var(--gray);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 3rem;
    border-top: 1px solid var(--glass-border);
    color: var(--gray);
    font-size: 0.8125rem;
    font-weight: 500;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* How It Works Section */
.how-it-works {
    background: radial-gradient(ellipse at bottom, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 200px;
    position: relative;
    z-index: 2;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 1.5rem;
    transition: var(--transition);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.step-card:hover .step-icon {
    border-color: var(--primary);
    background: rgba(16, 185, 129, 0.1);
    transform: translateY(-5px);
}

.step-icon i {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8125rem;
    font-weight: 700;
    font-family: var(--inter);
    border: 3px solid var(--darker);
}

.step-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--light);
}

.step-card p {
    font-size: 0.875rem;
    color: var(--gray);
    line-height: 1.5;
}

.step-connector {
    flex-grow: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--glass-border) 0%, var(--primary-light) 50%, var(--glass-border) 100%);
    margin-top: 40px;
    position: relative;
    z-index: 1;
    opacity: 0.5;
}

/* Responsive */
/* Use Case Cards */
.use-case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.use-case-card {
    background: #0a0a0a;
    border: 1px solid var(--glass-border);
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
    transition: var(--transition);
}

.use-case-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.use-case-card i {
    width: 32px;
    height: 32px;
    color: var(--primary);
    margin-bottom: 1.25rem;
}

.use-case-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.use-case-card p {
    color: var(--gray);
    font-size: 0.875rem;
    line-height: 1.5;
}

/* FAQ & Info Section */
.faq-info {
    background: #020617;
    border-top: 1px solid var(--glass-border);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 5rem;
    align-items: start;
}

.faq-item {
    margin-bottom: 3rem;
}

.faq-item h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: var(--primary-light);
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--light);
}

.faq-item p {
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.faq-item a {
    color: var(--primary-light);
    text-decoration: underline;
}

.steps-list, .features-list {
    margin-top: 1.5rem;
}

.steps-list li {
    margin-bottom: 0.75rem;
    color: var(--gray);
    display: flex;
    gap: 0.75rem;
}

.steps-list li span {
    color: var(--primary);
    font-weight: 700;
}

.features-list li {
    margin-bottom: 1rem;
    color: var(--gray);
    padding-left: 1.5rem;
    position: relative;
}

.features-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
}

.features-list li strong {
    color: var(--light);
    display: block;
    margin-bottom: 0.25rem;
}

/* Pricing Table */
.pricing-table-container {
    background: var(--glass);
    border: 1px solid var(--border);
    padding: 2.5rem;
    border-radius: 2rem;
    position: sticky;
    top: 6rem;
    overflow-x: auto;
    width: 100%;
}

.pricing-table-container h3 {
    margin-bottom: 1rem;
}

.pricing-table-container p {
    font-size: 0.875rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table th, .pricing-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--glass-border);
}

.pricing-table th {
    font-size: 0.8125rem;
    text-transform: uppercase;
    color: var(--gray);
    letter-spacing: 0.05em;
}

.pricing-table td {
    font-size: 0.9375rem;
    font-weight: 500;
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table td:nth-child(2) {
    color: var(--primary-light);
    font-weight: 700;
}

/* Value Proposition Section */
.value-prop {
    background: #020617;
    position: relative;
    padding: 100px 0;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 2.5rem;
    padding: 4rem;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--primary);
}

.card-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.card-header i {
    width: 48px;
    height: 48px;
    color: var(--primary);
}

.card-header h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--light);
}

.card-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--light);
}

.card-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray);
}

.value-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-features li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--gray);
    font-size: 1.0625rem;
    font-weight: 500;
}

.value-features li i {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.icon-red {
    color: #ef4444 !important;
}

/* Support & Contact */
.support-contact {
    padding: 8rem 0;
    background: #020617;
}

.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.support-content h2 {
    font-size: 3rem;
    margin: 1.5rem 0;
    line-height: 1.1;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--glass);
    border: 1px solid var(--border);
    padding: 2.5rem;
    border-radius: 2rem;
    transition: var(--transition);
}

.contact-card:hover { border-color: var(--primary); transform: translateY(-5px); }

.contact-icon {
    width: 64px;
    height: 64px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i { width: 28px; height: 28px; color: var(--primary); }
.contact-info h4 { color: var(--light); font-size: 1.25rem; margin-bottom: 0.5rem; }
.contact-info p { color: var(--gray); font-size: 1rem; margin-bottom: 1rem; }

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9375rem;
    transition: var(--transition);
}

.contact-link:hover { gap: 0.75rem; }

@media (max-width: 1440px) {
    .container {
        padding: 0 3rem;
    }
}

@media (max-width: 1024px) {
    /* 2 Columns on Tablet */
    .pricing-grid, 
    .bento-grid, 
    .footer-grid, 
    .value-grid, 
    .use-case-grid,
    .faq-grid,
    .support-grid,
    .playground-body {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .container.hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .hero-visual {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .bento-large { grid-column: 1 / -1; flex-direction: column; gap: 2rem; }
    .analytics-visual { width: 100%; order: 2; margin-top: auto; }
    .wa-automation-grid { grid-template-columns: 1fr; text-align: left; gap: 3rem; }
    .wa-automation-content { order: -1; }
    
    .support-contact { padding: 6rem 0; }
    .support-grid { text-align: center; }
    .contact-methods { max-width: 600px; margin: 0 auto; }
    
    .steps-container { flex-direction: column; align-items: center; gap: 2rem; }
    .step-card { width: 100%; max-width: 600px; flex-direction: row; text-align: left; align-items: flex-start; gap: 1.5rem; padding: 1.5rem; background: rgba(255,255,255,0.02); border-radius: 1.5rem; }
    .step-content { flex: 1; }
    .step-content h3 { margin-top: 0; margin-bottom: 0.5rem; }
    .step-content p { margin: 0; font-size: 0.9rem; }
    .step-icon { margin-bottom: 0; flex-shrink: 0; }
    .step-connector { display: none; }
    .pricing-table-container { position: static; overflow-x: auto; width: 100%; display: block; }

    /* Navbar Hamburger at Tablet */
    .nav-links { display: none; }
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 23, 42, 0.98);
        padding: 2rem;
        border-radius: 1rem;
        margin-top: 0.5rem;
        border: 1px solid var(--glass-border);
        box-shadow: var(--shadow-md);
        gap: 1.5rem;
        text-align: center;
    }
    .nav-cta { display: none; }
    .mobile-menu-btn { display: block; }
}

@media (max-width: 768px) {
    /* 1 Column on Mobile */
    .pricing-grid, 
    .bento-grid, 
    .footer-grid, 
    .value-grid, 
    .use-case-grid,
    .faq-grid,
    .support-grid,
    .playground-body,
    .dev-flex {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .bento-content { max-width: 100%; margin-bottom: 1.5rem; }
    .bento-item { padding: 1.5rem; width: 100%; box-sizing: border-box; }

    /* Vertical stacking & padding reduction */
    section { padding: 4rem 0; }
    .hero { padding: 6rem 0 3rem; min-height: auto; }
    .section-header { margin-bottom: 2.5rem; }
    .section-header h2 { font-size: 2rem; line-height: 1.25; }
    .wa-automation-content h2, .dev-text h2, .cta-card h2, .support-content h2 { font-size: 2rem; line-height: 1.25; }
    .hero-text h1 { font-size: 2rem; line-height: 1.2; }
    
    .support-contact { padding: 4rem 0; }
    .contact-card { padding: 1.5rem; gap: 1.25rem; border-radius: 1.5rem; }
    .contact-icon { width: 56px; height: 56px; }
    .contact-icon i { width: 24px; height: 24px; }
    
    .hero-actions { flex-direction: column; width: 100%; gap: 1rem; margin-bottom: 2.5rem; }
    .btn, .btn-outline, .btn-ghost { width: 100%; justify-content: center; text-align: center; margin-bottom: 0.5rem; }
    
    .hero-stats { flex-wrap: wrap; justify-content: center; gap: 1.5rem; }
    .stat-number { font-size: 1.5rem; }
    
    /* Remove Fixed Layouts From Cards causing Horizontal Scroll */
    .chat-card, .code-card {
        width: 100%;
        max-width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box;
    }
    
    .cta-actions { flex-direction: column; width: 100%; gap: 1rem; }
    .cta-actions input, .cta-input { width: 100%; text-align: center; }
    
    .footer-bottom-flex { flex-direction: column; text-align: center; gap: 1rem; }
    .connectivity { padding: 2rem 0; }
    .connectivity-logos { gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
    .cta-card { padding: 2.5rem 1.5rem; }
    
    /* Media/Images/Frames max 100% */
    .iphone-frame {
        width: 100%;
        max-width: 320px;
        height: auto;
        aspect-ratio: 1 / 2;
        border-radius: 2rem;
    }
    .img-fluid, img { max-width: 100%; height: auto; }
    
    .api-playground-card { margin: 1rem 0 0; }
    .playground-body { padding: 1.5rem; gap: 1.5rem; }
    .code-content pre { white-space: pre-wrap; word-wrap: break-word; word-break: break-all; font-size: 0.75rem; overflow-x: auto; }
}

@media (max-width: 480px) {
    /* Tight Mobile Layouts */
    section { padding: 3rem 0; }
    .hero { padding: 5rem 0 2rem; }
    .container { padding: 0 1rem; }
    .navbar { padding: 0.5rem 1rem; top: 1rem; left: 1rem; right: 1rem; border-radius: 1rem; }
    .hero-text h1 { font-size: 1.875rem; }
    .section-header h2, .cta-card h2, .support-content h2 { font-size: 1.75rem; }
    .card-header h3 { font-size: 1.25rem; }
    .card-price { font-size: 1.75rem; }
    .value-card { padding: 2rem 1rem; }
    .playground-header { padding: 1rem; flex-direction: column; align-items: flex-start; }
    .step-icon { width: 56px; height: 56px; }
    .step-icon i { width: 24px; height: 24px; }
    .step-number { width: 24px; height: 24px; font-size: 0.7rem; top: -5px; right: -5px; }
    .step-card { padding: 1rem; gap: 1rem; }
}

@media (max-width: 360px) {
    /* Tiny Displays */
    .hero-text h1 { font-size: 1.6rem; }
    .section-header h2 { font-size: 1.5rem; }
    .btn { font-size: 0.875rem; padding: 0.5rem 1rem; }
    .value-card { padding: 1.5rem 1rem; }
    .code-content pre { font-size: 0.65rem; }
}
