/* 
   Simply Chat Marketing - Visual Identity Stylesheet
   Theme: High-End Slate & Charcoal Tech Aesthetic with Crisp Green Accents (Light Theme)
*/

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* --- Root & Design Tokens --- */
:root {
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Balanced Tech Colors (Light Theme) */
    --color-bg: #f8fafc;            /* Clean light slate background */
    --color-bg-darker: #f1f5f9;     /* Soft slate background for alternates */
    --color-card: #ffffff;          /* Pure white cards */
    --color-card-border: rgba(15, 23, 42, 0.08); /* Crisp slate border tint */
    --color-card-hover-border: #0f172a;             /* Deep charcoal border on hover */
    
    --color-primary: #0f172a;       /* Deep Charcoal Black (Primary Tech color) */
    --color-primary-rgb: 15, 23, 42;
    --color-secondary: #475569;     /* Slate-600 secondary details */
    --color-text-main: #0f172a;      /* High contrast slate text */
    --color-text-muted: #64748b;     /* Slate-500 muted text */
    
    /* Green Accents (Used Sparingly) */
    --color-accent: #10b981;         /* Emerald Green for success state and CTA accents */
    --color-accent-dark: #059669;    /* Forest green */
    
    /* Gradients */
    --gradient-brand: linear-gradient(135deg, #1e293b 0%, #0f172a 100%); /* Elegant charcoal gradient */
    --gradient-dark: linear-gradient(180deg, #ffffff 0%, var(--color-bg-darker) 100%);
    --gradient-glow: radial-gradient(circle, rgba(15, 23, 42, 0.04) 0%, rgba(255, 255, 255, 0) 70%);

    /* Transitions & Shadows */
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-quick: all 0.25s ease;
    --shadow-neon: 0 10px 30px rgba(15, 23, 42, 0.12); /* Subtle charcoal shadow */
    --shadow-neon-glow: 0 15px 40px rgba(15, 23, 42, 0.04);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg);
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-darker);
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border: 2px solid var(--color-bg-darker);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-secondary);
}

/* Selection Color */
::selection {
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-accent-dark);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--color-text-main);
}

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

/* --- Layout Utility --- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.grid {
    display: grid;
    gap: 2rem;
}

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

/* --- Glowing Visuals --- */
.bg-glow-spot {
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--gradient-glow);
    pointer-events: none;
    border-radius: 50%;
    z-index: 1;
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-text-main) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Navigation Bar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 100;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(15, 23, 42, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-text-main);
    letter-spacing: -0.03em;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
    height: 100%;
}

.nav-item-products {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    height: 100%;
    cursor: pointer;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-primary);
}

.nav-btn {
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    background: rgba(15, 23, 42, 0.04);
    color: var(--color-primary);
    border: 1px solid rgba(15, 23, 42, 0.12);
    transition: var(--transition-smooth);
}

.nav-btn:hover {
    background: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
}

/* --- PREMIUM MEGA MENU --- */
.mega-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: #0f172a; /* Sleek Charcoal Black */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    padding: 2.5rem 0;
    opacity: 0;
    transform: translateY(15px);
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 99;
}

.navbar.scrolled .mega-menu {
    top: 70px;
}

/* Show Mega Menu on Navigation Hover */
.nav-item-products:hover .mega-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.25rem;
}

.mega-col {
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    padding-right: 0.75rem;
}

.mega-col:last-child {
    border-right: none;
    padding-right: 0;
}

.mega-col-title {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #ffffff; /* White title on dark bg */
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mega-col-title i {
    width: 16px;
    height: 16px;
    color: #10b981; /* Pulsing green icon */
}

.mega-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mega-item-link {
    display: flex;
    flex-direction: column;
    padding: 0.6rem 0.8rem;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: var(--transition-quick);
}

.mega-item-link:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
    transform: translateX(4px);
}

.mega-item-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: #f8fafc; /* Crisp light white */
    margin-bottom: 0.15rem;
}

.mega-item-link:hover .mega-item-name {
    color: #10b981; /* High impact green hover text */
}

.mega-item-desc {
    font-size: 0.72rem;
    color: #94a3b8; /* Muted light slate */
    line-height: 1.3;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    padding-top: 180px;
    padding-bottom: 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 50% 30%, #f1f5f9 0%, var(--color-bg) 70%); /* Slate gray radial background instead of green */
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    background: rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(15, 23, 42, 0.08);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    color: var(--color-text-main);
}

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

.hero-desc {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

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

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

.btn-primary {
    padding: 1.1rem 2.2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    background: var(--gradient-brand);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    box-shadow: var(--shadow-neon);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.25);
}

.btn-secondary {
    padding: 1.1rem 2.2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    background: rgba(15, 23, 42, 0.03);
    color: var(--color-text-main);
    border: 1px solid rgba(15, 23, 42, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    background: rgba(15, 23, 42, 0.06);
    border-color: rgba(15, 23, 42, 0.15);
    transform: translateY(-3px);
}

/* --- Features Section --- */
.features-section {
    padding: 100px 0;
    position: relative;
}

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

.section-tag {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-secondary);
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
}

.features-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.feature-card {
    background: var(--color-card);
    border: 1px solid var(--color-card-border);
    border-radius: 24px;
    padding: 2.5rem;
    transition: var(--transition-smooth);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.02);
}

.feature-card:hover {
    border-color: var(--color-card-hover-border);
    transform: translateY(-8px);
    box-shadow: var(--shadow-neon-glow);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.03);
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: var(--color-primary);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* --- Catalog Section (Product filtering & Search) --- */
.catalog-section {
    padding: 100px 0;
    background: var(--color-bg-darker);
    border-top: 1px solid rgba(15, 23, 42, 0.04);
    border-bottom: 1px solid rgba(15, 23, 42, 0.04);
}

.search-container {
    max-width: 600px;
    margin: 0 auto 3rem auto;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 1.1rem 1.5rem 1.1rem 3.5rem;
    border-radius: 50px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.12);
    color: var(--color-text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.01);
}

.search-input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.search-icon {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-secondary);
    width: 20px;
    height: 20px;
}

.catalog-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: var(--color-text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.15);
}

.catalog-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    opacity: 1;
    transition: opacity 0.3s ease;
}

.product-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.product-card:hover {
    border-color: var(--color-card-hover-border);
    background: rgba(15, 23, 42, 0.01);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.04);
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.product-tag {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    background: var(--color-bg-darker);
    color: var(--color-text-muted);
}

.product-card:hover .product-tag {
    background: rgba(15, 23, 42, 0.05);
    color: var(--color-primary);
}

.product-icon {
    font-size: 1.2rem;
    color: var(--color-secondary);
}

.product-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.product-desc {
    color: var(--color-text-muted);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.product-action {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-primary);
    cursor: pointer;
}

.product-action i {
    transition: transform 0.3s ease;
}

.product-card:hover .product-action i {
    transform: translateX(4px);
}

/* --- ABOUT PAGE STYLES --- */
.about-hero {
    position: relative;
    padding-top: 180px;
    padding-bottom: 80px;
    background: radial-gradient(circle at 50% 30%, #f1f5f9 0%, var(--color-bg) 60%);
}

.about-intro-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 80px 0;
}

@media (max-width: 992px) {
    .about-intro-grid { grid-template-columns: 1fr; }
}

.about-img-box {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.03) 0%, transparent 100%);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 30px;
    padding: 1.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.01);
}

.about-img-inner {
    border-radius: 20px;
    background: #ffffff;
    border: 2px dashed rgba(15, 23, 42, 0.12);
    padding: 4rem 2rem;
    text-align: center;
}

.about-img-icon {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.03);
    color: var(--color-primary);
    margin: 0 auto 1.5rem auto;
    font-size: 2.2rem;
}

/* Stats Panel Grid */
.stats-section {
    padding: 80px 0;
    background: var(--color-bg-darker);
    border-y: 1px solid rgba(15, 23, 42, 0.04);
}

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

@media (max-width: 992px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.stat-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
    transition: var(--transition-smooth);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-neon-glow);
    border-color: var(--color-primary);
}

.stat-number {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--color-primary); /* Slate Gray Stats numbers instead of green */
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- ROI/Lead Calculator Section --- */
.calculator-section {
    padding: 100px 0;
    position: relative;
}

.calc-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
}

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

.calc-box {
    background: var(--color-card);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.02);
}

.calc-sliders {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 2rem;
}

.slider-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    font-weight: 600;
}

.slider-label {
    color: var(--color-text-muted);
}

.slider-val {
    color: var(--color-primary);
}

/* Range Input Customization */
.calc-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 5px;
    background: var(--color-bg-darker);
    outline: none;
    transition: var(--transition-quick);
}

.calc-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-primary);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(15, 23, 42, 0.2);
    transition: var(--transition-quick);
}

.calc-range::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.calc-result-card {
    background: radial-gradient(circle at 100% 0%, rgba(15, 23, 42, 0.03) 0%, #ffffff 60%);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 30px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.calc-result-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: var(--gradient-glow);
    border-radius: 50%;
    filter: blur(50px);
}

.result-heading {
    color: var(--color-text-muted);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.result-value {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--color-primary);
    margin-bottom: 2rem;
}

.result-breakdown {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    padding-top: 2rem;
    margin-bottom: 2rem;
}

.breakdown-item {
    text-align: left;
}

.breakdown-label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 0.3rem;
}

.breakdown-val {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text-main);
}

/* --- Contact & Enquiry Form --- */
.contact-section {
    padding: 100px 0;
    background: var(--color-bg-darker);
}

.contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
}

@media (max-width: 992px) {
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-details-list {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.03);
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: var(--color-primary);
    font-size: 1.15rem;
}

.contact-item-content h4 {
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.contact-item-content p {
    color: var(--color-text-muted);
    font-size: 0.92rem;
}

.contact-form-box {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.02);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-text-muted);
    margin-bottom: 0.6rem;
}

.form-control {
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: var(--color-text-main);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-quick);
}

.form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 15px rgba(15, 23, 42, 0.08);
}

textarea.form-control {
    resize: vertical;
}

.form-submit-btn {
    width: 100%;
    margin-top: 1rem;
}

.form-alert {
    padding: 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: none;
}

.form-alert.success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #059669;
}

.form-alert.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #dc2626;
}

/* --- Footer --- */
.footer {
    background: #f1f5f9;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    padding: 5rem 0 2rem 0;
}

.footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    margin-bottom: 4rem;
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
}

.footer-brand p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-top: 1rem;
    max-width: 300px;
}

.footer-links-col h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--color-text-main);
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-link {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.footer-link:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* --- Floating WhatsApp Widget --- */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    z-index: 99;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    font-size: 1.75rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.floating-whatsapp:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}

/* --- Animations --- */
@keyframes pulse {
    0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.3); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

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

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

/* --- REDSCRAPER-INSPIRED LAYOUT ADDITIONS --- */

/* Hero Grid Overlay */
.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to right, rgba(15, 23, 42, 0.04) 1px, transparent 1px),
                      linear-gradient(to bottom, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
    background-size: 14px 24px;
    mask-image: radial-gradient(ellipse 60% 50% at 50% 0%, #000 70%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 0%, #000 70%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

#rotating-text {
    transition: opacity 0.3s ease-in-out;
    display: inline-block;
}

/* Social Proof Glass Dock */
.glass-dock-wrapper {
    margin-top: 5rem;
    position: relative;
    z-index: 20;
    width: 100%;
}

.glass-dock {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 2.5rem;
    padding: 1.5rem 2.5rem;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.04),
                inset 0 1px 0 rgba(255, 255, 255, 0.6);
    max-width: 960px;
    margin: 0 auto;
    transition: var(--transition-smooth);
}

.glass-dock:hover {
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.07);
}

.glass-dock-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 16px;
    transition: var(--transition-quick);
}

.glass-dock-item:hover {
    background: #ffffff;
    transform: translateY(-2px);
}

.glass-dock-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    transition: var(--transition-quick);
}

.glass-dock-item:hover .glass-dock-icon {
    transform: scale(1.1);
}

/* Icon specific color themes */
.dock-teal { background: #f0fdfa; color: #0d9488; }
.dock-purple { background: #faf5ff; color: #7c3aed; }
.dock-blue { background: #eff6ff; color: #2563eb; }
.dock-rose { background: #fff1f2; color: #e11d48; }

/* Redscraper-style Product Toolkit Grid */
.red-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.red-product-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03), 0 10px 30px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    border: 1px solid rgba(15, 23, 42, 0.04);
}

.red-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.red-product-header {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.red-product-header svg {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.red-product-card:hover .red-product-header svg {
    transform: scale(1.1) rotate(6deg);
}

/* Card headers category colors */
.header-blue { background: #eff6ff; color: #2563eb; }
.header-purple { background: #faf5ff; color: #7c3aed; }
.header-green { background: #ecfdf5; color: #10b981; }
.header-amber { background: #fffbeb; color: #f59e0b; }
.header-pink { background: #fdf2f8; color: #db2777; }

.red-product-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-grow: 1;
}

.red-product-body h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-text-main);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.red-product-body p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.red-product-btn {
    padding: 0.6rem 1.4rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition-quick);
}

/* Buttons hover states mapping header themes */
.btn-blue { border: 1px solid #93c5fd; color: #2563eb; }
.btn-blue:hover { background: #2563eb; border-color: #2563eb; color: #fff; }

.btn-purple { border: 1px solid #c084fc; color: #7c3aed; }
.btn-purple:hover { background: #7c3aed; border-color: #7c3aed; color: #fff; }

.btn-green { border: 1px solid #6ee7b7; color: #10b981; }
.btn-green:hover { background: #10b981; border-color: #10b981; color: #fff; }

.btn-amber { border: 1px solid #fcd34d; color: #f59e0b; }
.btn-amber:hover { background: #f59e0b; border-color: #f59e0b; color: #fff; }

.btn-pink { border: 1px solid #fbcfe8; color: #db2777; }
.btn-pink:hover { background: #db2777; border-color: #db2777; color: #fff; }

/* Target User Personas Grid */
.personas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.persona-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
    transition: var(--transition-quick);
}

.persona-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
    border-color: rgba(15, 23, 42, 0.1);
}

.persona-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.persona-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 0.5rem;
}

.persona-content p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.icon-blue { background: #eff6ff; color: #2563eb; }
.icon-purple { background: #faf5ff; color: #7c3aed; }
.icon-orange { background: #fff7ed; color: #ea580c; }
.icon-green { background: #ecfdf5; color: #10b981; }
.icon-rose { background: #fff1f2; color: #e11d48; }
.icon-cyan { background: #ecfeff; color: #0891b2; }

/* Visual Story Timeline */
.timeline-container {
    position: relative;
    padding-left: 2.5rem;
}

.timeline-line {
    position: absolute;
    left: 17px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(to bottom, #10b981 30%, #475569 70%, transparent);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -32px;
    top: 6px;
    width: 16px;
    height: 16px;
    background: #ffffff;
    border: 4px solid #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
    transition: transform 0.3s ease;
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.25);
}

.timeline-dot-active {
    background: #10b981;
    border: 4px solid #ffffff;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: #10b981;
    margin-bottom: 0.5rem;
    display: block;
}

.timeline-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
    transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-card {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
    border-color: rgba(15, 23, 42, 0.1);
}

.timeline-card-active {
    background: var(--gradient-brand);
    color: #ffffff;
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.12);
}

.timeline-card-active p {
    color: rgba(255, 255, 255, 0.85);
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.05);
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
    transition: var(--transition-quick);
}

.testimonial-card:hover {
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
    border-color: rgba(15, 23, 42, 0.1);
}

.stars-list {
    display: flex;
    gap: 0.25rem;
    color: #f59e0b;
    margin-bottom: 1.25rem;
}

.stars-list svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.testimonial-text {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--color-bg-darker);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 0.15rem;
}

.author-info p {
    color: var(--color-text-muted);
    font-size: 0.8rem;
}

/* Policy Content Layout */
.policy-container {
    max-width: 880px;
    margin: 0 auto;
    padding: 4rem 2rem 8rem 2rem;
    position: relative;
    z-index: 10;
}

.policy-block {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.02);
}

.policy-block h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    padding-bottom: 0.5rem;
}

.policy-block h2:first-of-type {
    margin-top: 0;
}

.policy-block p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.policy-block ul {
    list-style: disc;
    padding-left: 1.5rem;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.policy-block li {
    margin-bottom: 0.5rem;
}

