/*
Theme Name: Zippdon
Theme URI: https://zippdon.com
Author: Zippdon
Author URI: https://zippdon.com
Description: A performance-driven digital marketing agency theme with orange + black aesthetic. Includes service, country, city, and industry page templates designed for SEO and conversion.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: zippdon
Tags: business, marketing, agency, custom-colors, custom-menu, threaded-comments
*/

/* ========================================
   ZIPPDON - Main Stylesheet
   Theme: Orange (#FF6B1A) + Black (#0A0A0A)
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,300;12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --orange: #FF6B1A;
    --orange-dark: #E55A0E;
    --orange-light: #FF8742;
    --orange-glow: rgba(255, 107, 26, 0.15);
    --black: #0A0A0A;
    --black-soft: #161616;
    --black-light: #1F1F1F;
    --gray: #2A2A2A;
    --gray-mid: #555555;
    --gray-light: #A0A0A0;
    --white: #FFFFFF;
    --off-white: #F5F5F0;
    --border: rgba(255, 255, 255, 0.08);
    --font-display: 'Bricolage Grotesque', serif;
    --font-body: 'Outfit', sans-serif;
    --max-width: 1280px;
    --radius: 6px;
    --radius-lg: 16px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
    font-weight: 400;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; transition: color 0.2s ease; }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--white);
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.15rem, 2vw, 1.4rem); }

p { margin-bottom: 1rem; color: var(--gray-light); font-size: 1.05rem; }

.highlight { color: var(--orange); }

.section-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--orange-glow);
    color: var(--orange);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 107, 26, 0.25);
}

/* ===== HEADER / NAV ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
    gap: 6px;
}
.logo .dot { color: var(--orange); }

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-light);
    position: relative;
}
.nav-links a:hover { color: var(--orange); }

.nav-dropdown { position: relative; }
.nav-dropdown > a::after {
    content: ' ▾';
    font-size: 0.7rem;
    color: var(--gray-mid);
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--black-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 10px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.nav-dropdown:hover .dropdown-menu {
    opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
    display: block;
    padding: 9px 14px;
    border-radius: 4px;
    font-size: 0.92rem;
}
.dropdown-menu a:hover { background: var(--orange-glow); color: var(--orange); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 26px;
    background: var(--orange);
    color: var(--black);
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    text-transform: none;
    box-shadow: 0 8px 24px rgba(255, 107, 26, 0.25);
}
.btn:hover {
    background: var(--orange-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 107, 26, 0.4);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--border);
    box-shadow: none;
}
.btn-outline:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
    box-shadow: none;
}
.btn-large { padding: 16px 32px; font-size: 1.05rem; }

/* Mobile menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px; height: 40px;
}

/* ===== HERO ===== */
.hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}
.hero::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, var(--orange-glow) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 26, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 880px;
}
.hero h1 {
    margin-bottom: 24px;
    animation: fadeUp 0.8s ease forwards;
}
.hero h1 .underline {
    position: relative;
    display: inline-block;
}
.hero h1 .underline::after {
    content: '';
    position: absolute;
    left: 0; bottom: -4px;
    width: 100%;
    height: 6px;
    background: var(--orange);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    animation: drawLine 1s ease 0.8s forwards;
}
.hero p.lead {
    font-size: clamp(1.05rem, 1.6vw, 1.3rem);
    max-width: 680px;
    margin-bottom: 36px;
    color: var(--gray-light);
    animation: fadeUp 0.8s ease 0.2s backwards;
}
.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp 0.8s ease 0.4s backwards;
}
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 70px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    animation: fadeUp 0.8s ease 0.6s backwards;
}
.hero-stat .num {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 6px;
}
.hero-stat .label {
    font-size: 0.85rem;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes drawLine {
    to { transform: scaleX(1); }
}

/* ===== SECTIONS ===== */
section { padding: 100px 0; position: relative; }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-header p { font-size: 1.1rem; margin-top: 16px; }

/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.service-card {
    background: var(--black-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 107, 26, 0.3);
    background: var(--black-light);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 56px; height: 56px;
    background: var(--orange-glow);
    border: 1px solid rgba(255, 107, 26, 0.3);
    color: var(--orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
    font-weight: 800;
}
.service-card h3 { margin-bottom: 12px; }
.service-card p { font-size: 0.98rem; margin-bottom: 20px; }
.service-card .learn-more {
    color: var(--orange);
    font-weight: 600;
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.25s ease;
}
.service-card .learn-more:hover { gap: 12px; }

/* ===== TWO-COLUMN ===== */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.feature-list { list-style: none; margin-top: 28px; }
.feature-list li {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: var(--off-white);
}
.feature-list li::before {
    content: '✓';
    color: var(--orange);
    font-weight: 700;
    font-size: 1.05rem;
    flex-shrink: 0;
    width: 24px; height: 24px;
    background: var(--orange-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.image-card {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    color: var(--black);
    position: relative;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.image-card::before {
    content: '';
    position: absolute;
    top: -50%; right: -30%;
    width: 80%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
}
.image-card h3 { color: var(--black); font-size: 2.4rem; }
.image-card p { color: rgba(0,0,0,0.7); font-weight: 500; }

/* ===== PROCESS ===== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    counter-reset: step;
}
.process-step {
    background: var(--black-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px;
    counter-increment: step;
    position: relative;
}
.process-step::before {
    content: counter(step, decimal-leading-zero);
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--orange);
    opacity: 0.25;
    line-height: 1;
    margin-bottom: 18px;
    display: block;
}
.process-step h4 { margin-bottom: 8px; }
.process-step p { font-size: 0.95rem; }

/* ===== FAQ ===== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 14px;
    overflow: hidden;
    background: var(--black-soft);
    transition: border-color 0.25s ease;
}
.faq-item:hover { border-color: rgba(255, 107, 26, 0.25); }
.faq-question {
    width: 100%;
    padding: 22px 26px;
    background: none;
    border: none;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--orange);
    transition: transform 0.25s ease;
    flex-shrink: 0;
    line-height: 1;
}
.faq-item.active .faq-question::after { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.25s ease;
    padding: 0 26px;
}
.faq-item.active .faq-answer {
    max-height: 600px;
    padding-bottom: 22px;
}
.faq-answer p { margin: 0; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.testimonial {
    background: var(--black-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
}
.testimonial .stars { color: var(--orange); margin-bottom: 16px; letter-spacing: 2px; }
.testimonial p {
    font-size: 1.02rem;
    color: var(--off-white);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}
.testimonial .author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}
.testimonial .avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-display);
}
.testimonial .author-name { font-weight: 600; color: var(--white); }
.testimonial .author-role { font-size: 0.85rem; color: var(--gray-light); }

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: var(--black);
    text-align: center;
    border-radius: var(--radius-lg);
    padding: 80px 40px;
    margin: 60px auto;
    max-width: var(--max-width);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(circle at 20% 30%, rgba(0,0,0,0.1) 0%, transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(0,0,0,0.08) 0%, transparent 50%);
}
.cta-section > * { position: relative; }
.cta-section h2 { color: var(--black); margin-bottom: 16px; }
.cta-section p {
    color: rgba(0,0,0,0.75);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 32px;
    font-weight: 500;
}
.cta-section .btn {
    background: var(--black);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.cta-section .btn:hover { background: var(--black-light); }
.cta-section .btn-outline {
    background: transparent;
    color: var(--black);
    border: 2px solid var(--black);
}
.cta-section .btn-outline:hover { background: var(--black); color: var(--white); }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== FORM ===== */
.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    background: var(--black-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 50px;
}
.contact-info h3 { margin-bottom: 16px; }
.contact-info ul { list-style: none; margin-top: 30px; }
.contact-info li {
    padding: 14px 0;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    color: var(--off-white);
    border-bottom: 1px solid var(--border);
}
.contact-info .ico {
    width: 40px; height: 40px;
    background: var(--orange-glow);
    color: var(--orange);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.05rem;
}
.contact-info a:hover { color: var(--orange); }

.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.form-control {
    width: 100%;
    padding: 14px 16px;
    background: var(--black);
    border: 1px solid var(--border);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    border-radius: var(--radius);
    transition: border-color 0.2s ease, background 0.2s ease;
}
.form-control:focus {
    outline: none;
    border-color: var(--orange);
    background: var(--black-light);
}
textarea.form-control { resize: vertical; min-height: 130px; font-family: var(--font-body); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===== FOOTER ===== */
.footer {
    background: var(--black-soft);
    border-top: 1px solid var(--border);
    padding: 80px 0 30px;
    margin-top: 80px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}
.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 22px;
    font-weight: 700;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 11px; }
.footer-col a {
    color: var(--gray-light);
    font-size: 0.95rem;
    transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--orange); }
.footer-brand .logo { margin-bottom: 18px; }
.footer-brand p {
    font-size: 0.95rem;
    margin-bottom: 18px;
    max-width: 320px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 38px; height: 38px;
    background: var(--black);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-light);
    font-size: 0.9rem;
    transition: all 0.2s ease;
}
.footer-social a:hover {
    background: var(--orange);
    color: var(--black);
    border-color: var(--orange);
}
.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    color: var(--gray-light);
    font-size: 0.88rem;
}
.footer-bottom-links { display: flex; gap: 22px; flex-wrap: wrap; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 58px; height: 58px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    transition: transform 0.25s ease;
    animation: pulse 2.2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 30px; height: 30px; }
@keyframes pulse {
    0% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 16px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===== PAGE HEADER (sub-pages) ===== */
.page-header {
    padding: 150px 0 80px;
    background: var(--black);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}
.page-header::before {
    content: '';
    position: absolute;
    top: -150px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, var(--orange-glow) 0%, transparent 65%);
}
.page-header .container { position: relative; }
.breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 22px;
    font-size: 0.88rem;
    color: var(--gray-light);
    flex-wrap: wrap;
}
.breadcrumb a { color: var(--gray-light); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { color: var(--gray-mid); }
.breadcrumb .current { color: var(--orange); }
.page-header h1 { margin-bottom: 16px; max-width: 880px; }
.page-header p.lead { font-size: 1.15rem; max-width: 720px; }

/* ===== CONTENT BLOCKS ===== */
.content-block {
    max-width: 880px;
    margin: 0 auto;
}
.content-block h2 { margin: 50px 0 20px; }
.content-block h3 { margin: 36px 0 14px; }
.content-block p { font-size: 1.06rem; line-height: 1.75; color: var(--off-white); margin-bottom: 16px; }
.content-block ul, .content-block ol {
    padding-left: 22px;
    margin-bottom: 22px;
}
.content-block li {
    color: var(--off-white);
    margin-bottom: 10px;
    line-height: 1.7;
}
.content-block li::marker { color: var(--orange); }

/* ===== CITY/INDUSTRY GRID ===== */
.link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
}
.link-grid a {
    background: var(--black-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 18px;
    color: var(--off-white);
    font-size: 0.95rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}
.link-grid a::before {
    content: '→';
    color: var(--orange);
    font-weight: 700;
    transition: transform 0.2s ease;
}
.link-grid a:hover {
    border-color: var(--orange);
    background: var(--black-light);
    color: var(--white);
    transform: translateX(4px);
}

/* ===== STATS ROW ===== */
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    text-align: center;
    padding: 50px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin: 50px 0;
}
.stat-item .num {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
}
.stat-item .lbl { color: var(--gray-light); font-size: 0.92rem; margin-top: 6px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-wrap { grid-template-columns: 1fr; padding: 36px; }
    .two-col { grid-template-columns: 1fr; gap: 40px; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .container { padding: 0 18px; }
    section { padding: 70px 0; }
    .hero { padding: 130px 0 70px; min-height: auto; }
    .nav-links {
        position: fixed;
        top: 70px; left: 0;
        width: 100%;
        background: var(--black-soft);
        flex-direction: column;
        padding: 24px;
        gap: 14px;
        border-bottom: 1px solid var(--border);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        align-items: stretch;
    }
    .nav-links.active { transform: translateY(0); }
    .nav-links li { width: 100%; }
    .nav-links a { display: block; padding: 8px 0; }
    .menu-toggle { display: flex; align-items: center; justify-content: center; }
    .nav-cta-desktop { display: none; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .cta-section { padding: 50px 24px; margin: 40px 18px; }
    .image-card { padding: 36px 28px; min-height: 280px; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        border: none;
        padding: 8px 0 0 14px;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    .nav-dropdown.open .dropdown-menu { max-height: 400px; }
}

@media (max-width: 480px) {
    .hero-cta, .cta-buttons { flex-direction: column; }
    .hero-cta .btn, .cta-buttons .btn { width: 100%; }
    .hero-stats { grid-template-columns: 1fr 1fr; }
    .contact-wrap { padding: 26px 22px; }
}

/* Print */
@media print {
    .header, .footer, .whatsapp-float, .cta-section { display: none; }
}
