
:root {
    --primary: #111;
    --secondary: #555;
    --accent: #6B8E23;
    --accent-light: #8FBC8F;
    --bg: #ffffff;
    --surface: #f8f9fa;
    --border: #e5e7eb;
    --radius: 12px;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --max-width: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== NAV ===== */
nav {
    position: fixed; top: 0; left: 0; right: 0;
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 5vw;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

.logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none;
}

.logo-mark {
    width: 40px; height: 40px;
    background: var(--accent);
    color: #fff;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 16px;
}

.logo-text {
    font-weight: 700; font-size: 18px;
    color: var(--accent);
    letter-spacing: 1px;
}

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

.nav-links a {
    text-decoration: none; color: var(--secondary);
    font-weight: 500; font-size: 14px;
    transition: color 0.2s;
    position: relative;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--accent);
}

.nav-links a.active::after {
    content: ''; position: absolute; bottom: -6px; left: 0; right: 0;
    height: 2px; background: var(--accent); border-radius: 2px;
}

.nav-cta {
    background: var(--accent); color: #fff;
    padding: 10px 22px; border-radius: 8px;
    text-decoration: none; font-weight: 600; font-size: 13px;
    transition: all 0.2s;
}

.nav-cta:hover { background: #5a7a1e; transform: translateY(-1px); }

.menu-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer;
}

.menu-toggle span {
    width: 24px; height: 2px; background: var(--primary);
    border-radius: 2px; transition: 0.3s;
}

.mobile-menu {
    display: none; position: fixed; top: 70px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--border);
    padding: 16px; flex-direction: column; gap: 12px;
    z-index: 999;
}

.mobile-menu a {
    text-decoration: none; color: var(--primary);
    font-weight: 500; padding: 10px 16px; border-radius: 8px;
}

.mobile-menu a.active { background: var(--surface); color: var(--accent); }

/* ===== CONTENT ===== */
.content { padding-top: 80px; }

/* ===== HERO ===== */
.hero {
    max-width: var(--max-width); margin: 0 auto;
    padding: 80px 5vw 60px;
    text-align: center;
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--surface); border: 1px solid var(--border);
    padding: 8px 18px; border-radius: 100px;
    font-size: 13px; color: var(--secondary); margin-bottom: 28px;
}

.hero-badge-dot {
    width: 8px; height: 8px; background: var(--accent);
    border-radius: 50%; animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800; line-height: 1.1;
    margin-bottom: 20px;
}

.hero-title span { color: var(--accent); }

.hero-subtitle {
    font-size: 18px; color: var(--secondary);
    max-width: 640px; margin: 0 auto 36px;
    line-height: 1.7;
}

.hero-cta {
    display: flex; gap: 16px; justify-content: center;
    flex-wrap: wrap; margin-bottom: 60px;
}

.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--accent); color: #fff;
    padding: 14px 28px; border-radius: 10px;
    text-decoration: none; font-weight: 600;
    border: none; cursor: pointer; font-size: 15px;
    transition: all 0.2s;
}

.btn-primary:hover { background: #5a7a1e; transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff; color: var(--primary);
    padding: 14px 28px; border-radius: 10px;
    text-decoration: none; font-weight: 600;
    border: 1px solid var(--border); font-size: 15px;
    transition: all 0.2s;
}

.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

/* ===== STATS ===== */
.stats-bar {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 24px; max-width: 900px; margin: 0 auto;
}

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

.stat-number {
    font-size: 32px; font-weight: 800; color: var(--accent);
}

.stat-label {
    font-size: 13px; color: var(--secondary); margin-top: 4px;
}

/* ===== TRUST BAR ===== */
.trust-bar {
    background: var(--surface); border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 24px 5vw; overflow: hidden;
}

.trust-label {
    text-align: center; font-size: 13px; color: var(--secondary);
    margin-bottom: 16px; font-weight: 500;
}

.marquee-wrap { overflow: hidden; }

.marquee-track {
    display: flex; gap: 48px;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.trust-logo {
    font-size: 18px; font-weight: 700; color: #bbb;
    white-space: nowrap;
}

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

/* ===== SECTIONS ===== */
.section {
    max-width: var(--max-width); margin: 0 auto;
    padding: 80px 5vw;
}

.section-alt { background: var(--surface); }

.section-header { text-align: center; margin-bottom: 56px; }

.section-label {
    display: inline-block;
    background: rgba(107,142,35,0.1); color: var(--accent);
    padding: 6px 16px; border-radius: 100px;
    font-size: 12px; font-weight: 600; text-transform: uppercase;
    letter-spacing: 1px; margin-bottom: 16px;
}

.section-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700; margin-bottom: 12px;
}

.section-desc {
    font-size: 16px; color: var(--secondary); max-width: 560px; margin: 0 auto;
}

/* ===== ABOUT ===== */
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.about-section-title {
    font-size: 12px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1.5px; color: var(--accent); margin-bottom: 20px;
}

.about-founder, .about-company {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 36px;
}

.founder-profile {
    display: flex; align-items: center; gap: 16px; margin-bottom: 20px;
}

.founder-avatar {
    width: 56px; height: 56px; background: var(--accent);
    color: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 18px;
}

.founder-info h3 { font-size: 20px; font-weight: 700; }

.founder-info p { font-size: 13px; color: var(--secondary); }

.founder-linkedin, .company-linkedin {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--accent); text-decoration: none; font-size: 13px;
    margin-top: 8px;
}

.founder-tags {
    display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px;
}

.founder-tag {
    background: #fff; border: 1px solid var(--border);
    padding: 6px 14px; border-radius: 100px;
    font-size: 12px; color: var(--secondary);
}

.about-company p {
    font-size: 15px; color: var(--secondary); line-height: 1.7;
    margin-bottom: 16px;
}

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

.social-link {
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    background: #fff; border: 1px solid var(--border);
    border-radius: 10px; color: var(--secondary);
    transition: all 0.2s; text-decoration: none;
}

.social-link:hover {
    background: var(--accent); color: #fff; border-color: var(--accent);
}

/* ===== STRATEGY COMPARISON ===== */
.strategy-comparison {
    max-width: var(--max-width); margin: 0 auto;
    padding: 0 5vw 80px;
}

.strategy-comparison .section-header { margin-bottom: 48px; }

.comparison-wrapper {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.comparison-box {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 36px;
    position: relative;
    overflow: hidden;
}

.comparison-box.our-box {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(107,142,35,0.05) 0%, var(--surface) 100%);
}

.comparison-badge {
    position: absolute; top: 16px; right: 16px;
    background: #e74c3c; color: #fff;
    padding: 4px 12px; border-radius: 100px;
    font-size: 11px; font-weight: 700;
}

.comparison-box.our-box .comparison-badge {
    background: var(--accent);
}

.comparison-title {
    font-size: 18px; font-weight: 700; margin-bottom: 28px;
    display: flex; align-items: center; gap: 10px;
}

.comparison-steps {
    display: flex; flex-direction: column; gap: 0;
}

.comparison-step {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 0;
    border-bottom: 1px dashed var(--border);
}

.comparison-step:last-child { border-bottom: none; }

.step-num {
    width: 32px; height: 32px;
    background: #ddd; color: #666;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 700; flex-shrink: 0;
}

.our-box .step-num {
    background: var(--accent); color: #fff;
}

.step-text { font-size: 14px; font-weight: 500; }

.comparison-arrow {
    display: flex; align-items: center; justify-content: center;
    padding: 20px 0;
}

.comparison-arrow svg {
    width: 40px; height: 40px; color: var(--accent);
}

.strategy-bottom-text {
    text-align: center; margin-top: 48px;
    font-size: 20px; font-weight: 600;
    color: var(--primary);
    padding: 24px; background: var(--surface);
    border-radius: var(--radius); border: 1px solid var(--border);
}

.strategy-bottom-text span {
    color: var(--accent);
}

/* ===== TRUSTPILOT ===== */
.trustpilot-card {
    max-width: 600px; margin: 0 auto;
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius); padding: 40px;
    text-align: center;
}

.trustpilot-header {
    display: flex; align-items: center; justify-content: center;
    gap: 10px; margin-bottom: 16px;
}

.trustpilot-logo { font-weight: 700; font-size: 18px; }

.trustpilot-stars {
    display: flex; justify-content: center; gap: 4px;
    margin-bottom: 16px;
}

.trustpilot-star { color: #00b67a; font-size: 24px; }

.trustpilot-text { color: var(--secondary); font-size: 15px; margin-bottom: 24px; }

.trustpilot-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: #00b67a; color: #fff;
    padding: 12px 24px; border-radius: 8px;
    text-decoration: none; font-weight: 600; font-size: 14px;
}

/* ===== FEATURES ===== */
.about-features {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.about-feature {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 32px;
    transition: all 0.3s;
}

.about-feature:hover {
    border-color: var(--accent); transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.about-feature-num {
    font-size: 32px; font-weight: 800; color: var(--accent);
    opacity: 0.3; margin-bottom: 12px;
}

.about-feature-title {
    font-size: 16px; font-weight: 700; margin-bottom: 10px;
}

.about-feature-desc {
    font-size: 14px; color: var(--secondary); line-height: 1.6;
}

/* ===== CTA ===== */
.cta-section {
    max-width: var(--max-width); margin: 0 auto;
    padding: 100px 5vw; text-align: center;
}

.cta-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700; margin-bottom: 16px;
}

.cta-desc {
    font-size: 17px; color: var(--secondary);
    max-width: 560px; margin: 0 auto 32px;
}

/* ===== PAGE HEADER ===== */
.page-header {
    max-width: var(--max-width); margin: 0 auto;
    padding: 100px 5vw 40px; text-align: center;
}

.page-header h1 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700; margin-bottom: 12px;
}

.page-header p {
    font-size: 17px; color: var(--secondary); max-width: 600px; margin: 0 auto;
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 32px;
    cursor: pointer; transition: all 0.3s;
}

.service-card:hover {
    border-color: var(--accent); transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.service-icon { font-size: 32px; margin-bottom: 16px; }

.service-title { font-size: 18px; font-weight: 700; margin-bottom: 10px; }

.service-desc { font-size: 14px; color: var(--secondary); line-height: 1.6; margin-bottom: 16px; }

.service-tags {
    display: flex; flex-wrap: wrap; gap: 6px;
}

.service-tag {
    background: #fff; border: 1px solid var(--border);
    padding: 4px 10px; border-radius: 100px;
    font-size: 11px; color: var(--secondary);
}

/* ===== INDUSTRIES ===== */
.industries-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.industry-card {
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius); padding: 40px;
}

.industry-icon { font-size: 36px; margin-bottom: 16px; }

.industry-title { font-size: 20px; font-weight: 700; margin-bottom: 4px; }

.industry-subtitle { font-size: 13px; color: var(--secondary); margin-bottom: 20px; }

.industry-features { list-style: none; }

.industry-features li {
    padding: 8px 0; font-size: 14px; color: var(--secondary);
    display: flex; align-items: flex-start; gap: 10px;
}

.industry-features li::before {
    content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0;
}

/* ===== PRODUCTS ===== */
.products-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 32px;
    cursor: pointer; transition: all 0.3s;
}

.product-card:hover {
    border-color: var(--accent); transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.product-icon { font-size: 32px; margin-bottom: 16px; }

.product-title { font-size: 18px; font-weight: 700; margin-bottom: 10px; }

.product-desc { font-size: 14px; color: var(--secondary); line-height: 1.6; margin-bottom: 16px; }

.product-features { list-style: none; }

.product-features li {
    padding: 6px 0; font-size: 13px; color: var(--secondary);
    display: flex; align-items: center; gap: 8px;
}

.product-features li::before {
    content: '•'; color: var(--accent); font-weight: 700;
}

.ai-agent-banner {
    background: linear-gradient(135deg, rgba(107,142,35,0.08) 0%, var(--surface) 100%);
    border: 2px solid var(--accent); border-radius: var(--radius);
    padding: 40px; margin-bottom: 40px; text-align: center;
    cursor: pointer; transition: all 0.3s;
}

.ai-agent-banner:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

.ai-agent-banner h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; }

.ai-agent-banner p { color: var(--secondary); margin-bottom: 20px; max-width: 700px; margin-left: auto; margin-right: auto; }

.ai-agent-features {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
}

.ai-agent-features span {
    background: #fff; border: 1px solid var(--border);
    padding: 6px 14px; border-radius: 100px;
    font-size: 12px; font-weight: 500;
}

/* ===== PROCESS ===== */
.process-grid {
    display: grid; grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.process-step {
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--radius); padding: 28px;
    text-align: center;
}

.process-step-num {
    width: 40px; height: 40px;
    background: var(--accent); color: #fff;
    border-radius: 50%; display: flex;
    align-items: center; justify-content: center;
    font-weight: 700; font-size: 14px;
    margin: 0 auto 16px;
}

.process-step-title { font-size: 15px; font-weight: 700; margin-bottom: 8px; }

.process-step-desc { font-size: 13px; color: var(--secondary); line-height: 1.5; }

/* ===== CONTACT ===== */
.contact-grid {
    display: grid; grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    max-width: var(--max-width); margin: 0 auto;
    padding: 40px 5vw 80px;
}

.contact-form-wrapper {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 40px;
}

.contact-form-wrapper h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }

.contact-form-wrapper > p { color: var(--secondary); font-size: 14px; margin-bottom: 24px; }

.form-group { margin-bottom: 18px; }

.form-group label {
    display: block; font-size: 13px; font-weight: 600;
    margin-bottom: 6px; color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; padding: 12px 14px;
    border: 1px solid var(--border); border-radius: 8px;
    font-family: inherit; font-size: 14px;
    background: #fff; color: var(--primary);
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none; border-color: var(--accent);
}

.form-group textarea { min-height: 100px; resize: vertical; }

.contact-info {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 40px;
}

.contact-info h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }

.contact-info > p { color: var(--secondary); font-size: 14px; margin-bottom: 28px; }

.contact-item {
    display: flex; align-items: flex-start; gap: 14px;
    margin-bottom: 20px;
}

.contact-item-icon {
    width: 40px; height: 40px;
    background: #fff; border: 1px solid var(--border);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.contact-item-text h4 { font-size: 14px; font-weight: 600; margin-bottom: 2px; }

.contact-item-text a {
    color: var(--accent); text-decoration: none; font-size: 14px;
}

.contact-item-text a:hover { text-decoration: underline; }

/* ===== POPUP MODAL ===== */
.popup-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.5);
    display: none; align-items: center; justify-content: center;
    z-index: 2000; padding: 20px;
    backdrop-filter: blur(4px);
}

.popup-overlay.active { display: flex; }

.popup-modal {
    background: #fff; border-radius: var(--radius);
    max-width: 520px; width: 100%;
    max-height: 90vh; overflow-y: auto;
    box-shadow: var(--shadow-lg);
    animation: popupIn 0.3s ease;
}

@keyframes popupIn {
    from { opacity: 0; transform: scale(0.95) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.popup-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 24px 28px 0;
}

.popup-header h3 { font-size: 20px; font-weight: 700; }

.popup-close {
    width: 32px; height: 32px;
    border: 1px solid var(--border); border-radius: 8px;
    background: none; cursor: pointer; font-size: 18px;
    display: flex; align-items: center; justify-content: center;
    color: var(--secondary);
}

.popup-close:hover { background: var(--surface); }

.popup-body { padding: 20px 28px 28px; }

.popup-body .form-group { margin-bottom: 14px; }

.popup-body .form-group:last-child { margin-bottom: 0; }

/* ===== WHATSAPP WIDGET ===== */
.whatsapp-widget {
    position: fixed; bottom: 24px; right: 24px;
    z-index: 1500;
}

.whatsapp-toggle {
    width: 56px; height: 56px;
    background: #25D366; color: #fff;
    border: none; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    position: relative;
}

.whatsapp-toggle svg { width: 28px; height: 28px; }

.whatsapp-pulse {
    position: absolute; inset: -4px;
    border-radius: 50%; border: 2px solid #25D366;
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.4); opacity: 0; }
}

.chat-popup {
    position: absolute; bottom: 72px; right: 0;
    width: 320px; background: #fff;
    border-radius: var(--radius); box-shadow: var(--shadow-lg);
    display: none; flex-direction: column;
    overflow: hidden; border: 1px solid var(--border);
}

.chat-popup.active { display: flex; }

.chat-header {
    background: #075E54; color: #fff;
    padding: 16px; display: flex;
    align-items: center; justify-content: space-between;
}

.chat-header h4 { font-size: 14px; font-weight: 600; }

.chat-header p { font-size: 11px; opacity: 0.8; }

.chat-close {
    background: none; border: none; color: #fff;
    font-size: 20px; cursor: pointer;
}

.chat-messages {
    height: 240px; padding: 16px;
    overflow-y: auto; background: #e5ddd5;
}

.chat-input-area {
    display: flex; padding: 10px; gap: 8px;
    background: #f0f0f0; border-top: 1px solid var(--border);
}

.chat-input-area input {
    flex: 1; padding: 10px 14px; border: none;
    border-radius: 20px; font-size: 14px;
}

.chat-send {
    width: 40px; height: 40px;
    background: #25D366; color: #fff;
    border: none; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
}

/* ===== FOOTER ===== */
.site-footer {
    background: #f5f5f5;
    padding: 60px 5vw 0;
}

.footer-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-brand-name {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.footer-brand-name span {
    color: var(--accent);
}

.footer-desc {
    font-size: 14px;
    color: var(--secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 280px;
}

.footer-address {
    font-size: 13px;
    color: var(--secondary);
    line-height: 1.8;
    margin-bottom: 8px;
}

.footer-gst {
    font-size: 12px;
    color: #aaa;
}

.footer-col-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    font-size: 14px;
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom-left {
    font-size: 13px;
    color: var(--secondary);
}

.footer-bottom-right {
    font-size: 13px;
    color: var(--secondary);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .footer-brand-col {
        grid-column: 1 / -1;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-grid, .comparison-wrapper, .industries-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    .about-features { grid-template-columns: repeat(2, 1fr); }
    .services-grid, .products-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(3, 1fr); }
    .stats-bar { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .menu-toggle { display: flex; }
    .mobile-menu.active { display: flex; }
    .about-features, .services-grid, .products-grid, .process-grid {
        grid-template-columns: 1fr;
    }
    .stats-bar { grid-template-columns: 1fr 1fr; }
    .hero { padding-top: 60px; }
    .comparison-wrapper { grid-template-columns: 1fr; }
}

/* ===== ANIMATIONS ===== */
.reveal, .reveal-left, .reveal-right {
    opacity: 0; transform: translateY(30px);
    transition: all 0.7s ease;
}

.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

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