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

:root {
    --orange: #F05A28;
    --blue: #2563EB;
    --dark: #0F172A;
    --mid: #1E293B;
    --gray: #64748B;
    --light-gray: #F1F5F9;
    --border: #E2E8F0;
    --white: #ffffff;
    --green: #10B981;
    --purple: #8B5CF6;
    --text: #1E293B;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

/* ── NAV ── */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--orange);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--dark);
}

.nav-links {
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray);
}

.nav-links a:hover {
    color: var(--orange);
}

.nav-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.btn-outline {
    padding: 0.5rem 1.25rem;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark);
    background: transparent;
    cursor: pointer;
    transition: border-color 0.2s;
}

.btn-outline:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.btn-primary {
    padding: 0.5rem 1.25rem;
    background: var(--orange);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
    background: #d94e1f;
    transform: translateY(-1px);
}

/* ── HERO ── */
.hero {
    background: linear-gradient(135deg, #f8f9ff 0%, #eff2ff 50%, #f0f8ff 100%);
    min-height: 90vh;
    padding: 5rem 5% 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240, 90, 40, 0.07) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 0.35rem 0.9rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.hero-badge .flag {
    font-size: 1rem;
}

.hero h1 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1.12;
    color: var(--dark);
    letter-spacing: -1px;
    margin-bottom: 1.25rem;
}

.hero h1 em {
    font-style: normal;
    color: var(--orange);
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 420px;
}

.hero-sub a {
    color: var(--blue);
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--orange);
    color: white;
    padding: 0.85rem 1.75rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(240, 90, 40, 0.3);
}

.btn-hero-primary:hover {
    background: #d94e1f;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(240, 90, 40, 0.4);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: var(--dark);
    padding: 0.85rem 1.75rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1.5px solid var(--border);
    cursor: pointer;
    transition: border-color 0.2s, transform 0.15s;
}

.btn-hero-outline:hover {
    border-color: var(--dark);
    transform: translateY(-2px);
}

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

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.stat-val {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
}

.stat-lbl {
    font-size: 0.8rem;
    color: var(--gray);
    font-weight: 500;
}

.stat-icon {
    font-size: 1.5rem;
    margin-bottom: 0.35rem;
}

/* Phone mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.phone-wrap {
    position: relative;
    z-index: 2;
}

.phone {
    width: 240px;
    background: #0F172A;
    border-radius: 38px;
    padding: 12px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
}

.phone-screen {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    padding: 1.5rem 1rem 1rem;
}

.phone-status {
    display: flex;
    justify-content: space-between;
    font-size: 0.6rem;
    color: #333;
    font-weight: 700;
    margin-bottom: 1rem;
}

.profile-pic {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 0.5rem;
    display: block;
    object-fit: cover;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.profile-name {
    text-align: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--dark);
}

.profile-title {
    text-align: center;
    font-size: 0.65rem;
    color: var(--gray);
    margin-bottom: 0.75rem;
}

.profile-socials {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.phone-btn {
    display: block;
    width: 100%;
    padding: 0.55rem;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.4rem;
    color: white;
    cursor: pointer;
}

.phone-btn.whatsapp {
    background: #25D366;
}

.phone-btn.catalogue {
    background: #2563EB;
}

.phone-btn.instagram {
    background: white;
    color: var(--dark);
    border: 1px solid var(--border);
}

.phone-btn.tiktok {
    background: white;
    color: var(--dark);
    border: 1px solid var(--border);
}

.phone-btn.contact {
    background: white;
    color: var(--dark);
    border: 1px solid var(--border);
}

/* Analytics card */
.analytics-card {
    position: absolute;
    right: -80px;
    top: 20px;
    background: white;
    border-radius: 14px;
    padding: 1rem 1.25rem;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
    width: 190px;
    z-index: 3;
}

.analytics-card h4 {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.analytics-stat {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
}

.a-val {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark);
}

.a-badge {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--green);
    background: #d1fae5;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
}

.mini-chart {
    width: 100%;
    height: 40px;
    margin-top: 0.5rem;
}

.analytics-row {
    display: flex;
    justify-content: space-between;
    margin-top: 0.75rem;
    gap: 0.5rem;
}

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

.ar-val {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--dark);
    display: block;
}

.ar-lbl {
    font-size: 0.6rem;
    color: var(--gray);
}

.ar-up {
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--green);
}

.realtime-tag {
    position: absolute;
    bottom: -10px;
    right: 10px;
    background: var(--dark);
    color: white;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.rt-dot {
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.4
    }
}

/* ── FEATURES BAR ── */
.features-bar {
    padding: 2.5rem 5%;
    background: white;
    border-bottom: 1px solid var(--border);
}

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

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 1rem;
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.feature-item h3 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark);
}

.feature-item p {
    font-size: 0.75rem;
    color: var(--gray);
    line-height: 1.5;
}

/* ── SECTION COMMON ── */
section {
    padding: 5rem 5%;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--orange);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 0.75rem;
}

.section-sub {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
    max-width: 480px;
}

/* ── TEMPLATES ── */
.templates-section {
    background: white;
}

.templates-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
}

.see-all {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--blue);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.see-all:hover {
    color: var(--orange);
}

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

.template-card {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    background: white;
}

.template-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.template-preview {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.template-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

/* Themed template previews */
.tpl-medical {
    background: linear-gradient(180deg, #e0f2fe 0%, #bae6fd 100%);
}

.tpl-restaurant {
    background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 100%);
}

.tpl-agency {
    background: linear-gradient(180deg, #1e1b4b 0%, #312e81 100%);
}

.tpl-freelance {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
}

.tpl-immobilier {
    background: linear-gradient(180deg, #f0fdf4 0%, #dcfce7 100%);
}

.tpl-photo {
    background: linear-gradient(180deg, #0f172a 0%, #334155 100%);
}

.tpl-inner {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.tpl-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    margin-bottom: 0.5rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.tpl-name {
    font-size: 0.7rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.2rem;
}

.tpl-role {
    font-size: 0.6rem;
    text-align: center;
    margin-bottom: 0.6rem;
    opacity: 0.7;
}

.tpl-btn {
    display: block;
    width: 100%;
    padding: 0.35rem;
    border-radius: 6px;
    font-size: 0.6rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.3rem;
    cursor: pointer;
}

.template-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0.75rem;
    border-top: 1px solid var(--border);
    background: white;
}

.tpl-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--dark);
}

.tpl-preview-btn {
    font-size: 0.7rem;
    color: var(--gray);
    background: var(--light-gray);
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
}

/* ── ANALYTICS SECTION ── */
.analytics-section {
    background: var(--dark);
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: center;
    padding: 5rem 5%;
}

.analytics-section .section-title {
    color: white;
}

.analytics-section .section-sub {
    color: #94a3b8;
}

.btn-analytics {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--orange);
    color: white;
    padding: 0.85rem 1.75rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    margin-top: 1.75rem;
    transition: background 0.2s, transform 0.15s;
}

.btn-analytics:hover {
    background: #d94e1f;
    transform: translateY(-2px);
}

.analytics-dashboard {
    background: #1E293B;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.dash-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dash-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
}

.dash-period {
    font-size: 0.7rem;
    color: #64748b;
    background: rgba(255, 255, 255, 0.06);
    padding: 0.3rem 0.75rem;
    border-radius: 6px;
    cursor: pointer;
}

.dash-sidebar-layout {
    display: grid;
    grid-template-columns: 160px 1fr;
    height: 280px;
}

.dash-sidebar {
    padding: 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.dash-nav-item {
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.72rem;
    color: #94a3b8;
    cursor: pointer;
    margin-bottom: 0.25rem;
    transition: background 0.2s;
}

.dash-nav-item.active {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    font-weight: 600;
}

.dash-nav-item:hover:not(.active) {
    background: rgba(255, 255, 255, 0.04);
}

.dash-main {
    padding: 1.25rem;
}

.dash-kpis {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.kpi-item {}

.kpi-val {
    font-size: 1.15rem;
    font-weight: 800;
    color: white;
}

.kpi-delta {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--green);
}

.kpi-lbl {
    font-size: 0.65rem;
    color: #64748b;
}

.dash-chart-area {
    display: grid;
    grid-template-columns: 1fr 120px;
    gap: 1rem;
    align-items: start;
}

.mini-chart-large {
    height: 90px;
    width: 100%;
}

.sources-legend {}

.sl-title {
    font-size: 0.65rem;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.sl-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.65rem;
    color: #94a3b8;
    margin-bottom: 0.3rem;
}

.sl-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 0.35rem;
}

/* ── PRICING ── */
.pricing-section {
    background: white;
}

.pricing-header {
    margin-bottom: 3rem;
}

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

.pricing-card {
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 2rem 1.75rem;
    position: relative;
    transition: box-shadow 0.2s;
}

.pricing-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.pricing-card.popular {
    border-color: var(--orange);
    box-shadow: 0 8px 40px rgba(240, 90, 40, 0.15);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.3rem 0.9rem;
    border-radius: 20px;
    white-space: nowrap;
}

.plan-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.plan-price span {
    font-size: 1rem;
    font-weight: 600;
}

.plan-price .currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.plan-desc {
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.plan-features {
    margin-bottom: 2rem;
}

.plan-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 0.6rem;
}

.pf-check {
    color: var(--orange);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.btn-plan {
    display: block;
    width: 100%;
    padding: 0.75rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.875rem;
    text-align: center;
    cursor: pointer;
    border: 1.5px solid var(--border);
    background: white;
    color: var(--dark);
    transition: all 0.2s;
}

.btn-plan:hover {
    border-color: var(--dark);
}

.btn-plan.orange {
    background: var(--orange);
    color: white;
    border-color: var(--orange);
}

.btn-plan.orange:hover {
    background: #d94e1f;
}

.pricing-promo {
    background: linear-gradient(135deg, #f8faff, #eff2ff);
    border-radius: 16px;
    padding: 2rem 1.75rem;
    border: 1.5px solid #dde5ff;
}

.promo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #2563eb20, #2563eb10);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.promo-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.promo-sub {
    font-size: 0.75rem;
    color: var(--gray);
    margin-bottom: 1rem;
}

.promo-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.pf-green {
    color: var(--green);
}

/* ── CTA BANNER ── */
.cta-banner {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 4rem 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cta-rocket {
    width: 80px;
    height: 80px;
    background: rgba(240, 90, 40, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    flex-shrink: 0;
    border: 1px solid rgba(240, 90, 40, 0.2);
}

.cta-text h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.cta-text p {
    font-size: 0.9rem;
    color: #94a3b8;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--orange);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 4px 20px rgba(240, 90, 40, 0.4);
}

.btn-cta:hover {
    background: #d94e1f;
    transform: translateY(-2px);
}

/* ── FOOTER ── */
footer {
    background: var(--dark);
    padding: 4rem 5% 2rem;
    color: #94a3b8;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 3rem;
}

.footer-brand .logo {
    margin-bottom: 0.75rem;
    display: block;
}

.footer-brand p {
    font-size: 0.8rem;
    line-height: 1.7;
    max-width: 220px;
}

.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.footer-col li {
    margin-bottom: 0.6rem;
}

.footer-col a {
    font-size: 0.8rem;
    color: #64748b;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: background 0.2s;
    color: #94a3b8;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: #475569;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom a {
    color: #475569;
}

.footer-bottom a:hover {
    color: white;
}

/* ── SCROLL ANIMATIONS ── */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .templates-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .analytics-section {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    nav {
        padding: 0 1rem;
    }

    .nav-links {
        display: none;
    }

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

    .hero-sub,
    .section-sub {
        max-width: 100%;
    }

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

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

    .hero-visual {
        margin-top: 2rem;
    }

    .analytics-card {
        display: none;
    }

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

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

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .cta-banner {
        text-align: center;
        justify-content: center;
    }

    .cta-left {
        flex-direction: column;
        text-align: center;
    }
}

/* SVG chart */
.chart-line {
    fill: none;
    stroke: #6366f1;
    stroke-width: 2;
}

.chart-area {
    fill: url(#areaGrad);
}

.chart-area-dark {
    fill: url(#areaGradDark);
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: white;
    padding: 20px;
    border-top: 1px solid #eee;
}

.mobile-menu a {
    padding: 12px 0;
    border-bottom: 1px solid #f1f1f1;
}
@media (max-width: 768px) {
    .nav-links,
    .btn-outline {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    nav img {
        width: 140px;
    }

    .btn-primary {
        font-size: 13px;
        padding: 8px 14px;
    }

    .mobile-menu.active {
        display: flex;
    }
}
/* CONTACT PAGE */
.contact-section {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #f8f9ff 0%, #eff2ff 50%, #f0f8ff 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1400px;
    margin: auto;
}

.contact-info img {
    width: 100%;
    border-radius: 24px;
    margin-top: 2rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.contact-form-box {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border: 1px solid var(--border);
}

.contact-form-box h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--dark);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.2s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(240, 90, 40, 0.12);
}

.contact-btn {
    width: 100%;
    padding: 1rem;
    background: var(--orange);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.2s;
}

.contact-btn:hover {
    background: #d94e1f;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-box {
        padding: 1.5rem;
    }
}
