/* AnnaFurniture — Warm Natural Design System */
/* Fonts: Georgia/serif (headings) + system-ui/sans-serif (body) — NO CDN */
/* Palette: Warm Cream #FBF7F0, Wood Brown #6B4226, Forest Green #2D5A3D, Soft Gold #C9A96E, Charcoal #333333 */
/* ZERO external dependencies — fully self-contained */

:root {
    --cream: #FBF7F0;
    --cream-dark: #F3EDE3;
    --wood: #6B4226;
    --wood-light: #8B5E3C;
    --wood-dark: #4A2E1A;
    --forest: #2D5A3D;
    --forest-light: #3D7A52;
    --gold: #C9A96E;
    --gold-light: #DFC28E;
    --charcoal: #333333;
    --text: #444444;
    --text-light: #777777;
    --white: #FFFFFF;
    --shadow: 0 4px 20px rgba(107, 66, 38, 0.08);
    --shadow-hover: 0 8px 32px rgba(107, 66, 38, 0.15);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: Georgia, 'Times New Roman', serif;
    color: var(--charcoal);
    line-height: 1.2;
    font-weight: 700;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid rgba(107, 66, 38, 0.1);
    transition: var(--transition);
}
.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: 1400px;
    margin: 0 auto;
}
.logo {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--wood);
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo span { color: var(--forest); }
.logo-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.footer-logo-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 8px;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    position: relative;
    padding: 4px 0;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--forest);
    transition: var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--forest); }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-phone {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--wood);
}
.nav-phone i { margin-right: 4px; }
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--forest);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.btn-primary:hover { background: var(--forest-light); transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: transparent;
    color: var(--forest);
    border: 2px solid var(--forest);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}
.btn-secondary:hover { background: var(--forest); color: var(--white); }
.btn-wood {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--wood);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.btn-wood:hover { background: var(--wood-light); transform: translateY(-2px); }
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(135deg, var(--cream) 50%, var(--cream-dark) 50%);
    overflow: hidden;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-text { padding: 40px 0; }
.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(45, 90, 61, 0.1);
    color: var(--forest);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--charcoal);
}
.hero-text h1 em {
    color: var(--wood);
    font-style: italic;
}
.hero-text p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 500px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}
.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border: 3px solid var(--gold);
    border-radius: var(--radius);
    z-index: -1;
}

/* ===== STATS BAR ===== */
.stats-bar {
    background: var(--wood);
    padding: 40px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}
.stat-item {}
.stat-number {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
}
.stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    margin-top: 4px;
}

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }
.section-wood { background: var(--wood); color: var(--white); }
.section-wood h2, .section-wood h3, .section-wood h4 { color: var(--white); }

.sec-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(45, 90, 61, 0.1);
    color: var(--forest);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}
.sec-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}
.sec-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
}
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header.center .sec-desc { margin: 0 auto; }

/* ===== SERVICE CARDS ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.service-card-img {
    height: 200px;
    overflow: hidden;
}
.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-body { padding: 24px; }
.service-card-body h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}
.service-card-body p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 16px;
}
.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--forest);
    font-size: 0.9rem;
}
.service-card-link:hover { gap: 10px; }

/* ===== FEATURES ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.feature-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow-hover); }
.feature-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(45, 90, 61, 0.1);
    color: var(--forest);
    border-radius: var(--radius-sm);
    font-size: 1.3rem;
}
.feature-text h4 {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--charcoal);
}
.feature-text p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===== PORTFOLIO GALLERY ===== */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.portfolio-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}
.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.portfolio-item:hover img { transform: scale(1.08); }
.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(51, 51, 51, 0.9));
    color: var(--white);
    transform: translateY(100%);
    transition: var(--transition);
}
.portfolio-item:hover .portfolio-overlay { transform: translateY(0); }
.portfolio-overlay h4 { font-size: 1rem; margin-bottom: 4px; color: var(--white); }
.portfolio-overlay span { font-size: 0.8rem; color: var(--gold-light); }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-top: 4px solid var(--gold);
}
.testimonial-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 16px; }
.testimonial-card blockquote {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--forest);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}
.testimonial-name { font-weight: 700; font-size: 0.9rem; color: var(--charcoal); }
.testimonial-role { font-size: 0.8rem; color: var(--text-light); }

/* ===== SERVICE AREAS ===== */
.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.area-tag {
    padding: 8px 18px;
    background: var(--white);
    border: 1px solid rgba(107, 66, 38, 0.2);
    border-radius: 24px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    transition: var(--transition);
}
.area-tag:hover {
    background: var(--forest);
    color: var(--white);
    border-color: var(--forest);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--forest);
    padding: 80px 0;
    text-align: center;
}
.cta-section h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 16px;
}
.cta-section p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--gold);
    color: var(--charcoal);
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-white-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}
.btn-white-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* ===== PAGE HERO ===== */
.page-hero {
    padding: 120px 0 60px;
    background: var(--cream-dark);
    border-bottom: 1px solid rgba(107, 66, 38, 0.1);
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 16px;
}
.breadcrumb a { color: var(--forest); font-weight: 600; }
.breadcrumb i { font-size: 0.6rem; }
.page-hero h1 { font-size: 2.8rem; margin-bottom: 12px; }
.page-hero p { font-size: 1.1rem; color: var(--text-light); max-width: 600px; }

/* ===== ABOUT SPLIT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-img {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}
.about-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.about-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 8px 16px;
    background: var(--wood);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
}

/* ===== PROCESS / HOW IT WORKS ===== */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.process-step {
    text-align: center;
    padding: 32px 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
}
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--forest);
    color: var(--white);
    border-radius: 50%;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px;
}
.process-step h4 {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.process-step p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ===== CONTACT FORM ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--charcoal);
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid rgba(107, 66, 38, 0.2);
    border-radius: var(--radius-sm);
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.95rem;
    background: var(--white);
    transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--forest);
    box-shadow: 0 0 0 3px rgba(45, 90, 61, 0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-info-card {
    background: var(--wood);
    color: var(--white);
    padding: 40px;
    border-radius: var(--radius);
}
.contact-info-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 24px;
}
.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}
.contact-info-item i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    color: var(--gold);
}
.contact-info-item div {}
.contact-info-item h4 {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 4px;
}
.contact-info-item p, .contact-info-item a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
}
.contact-info-item a:hover { color: var(--white); }

/* ===== COMPANY INFO (ABOUT) ===== */
.company-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.company-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
}
.company-item i {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(45, 90, 61, 0.1);
    color: var(--forest);
    border-radius: var(--radius-sm);
    font-size: 1rem;
}
.company-item h4 {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.company-item p {
    font-size: 0.9rem;
    color: var(--charcoal);
    font-weight: 500;
}
.company-item a { color: var(--forest); font-weight: 600; }

/* ===== FOOTER ===== */
.footer {
    background: var(--charcoal);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo span { color: var(--gold); }
.footer-brand p { font-size: 0.9rem; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}
.footer-social a:hover { background: var(--forest); color: var(--white); }
.footer-col h4 {
    color: var(--white);
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.85rem;
}
.footer-contact-item i { color: var(--gold); margin-top: 3px; }
.footer-contact-item a { color: rgba(255,255,255,0.7); }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-top: 0;
}
.footer-bottom p { font-size: 0.8rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
}
.wa-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}
.wa-float a:hover { transform: scale(1.1); }

/* ===== BACK TO TOP ===== */
.btt {
    position: fixed;
    bottom: 90px;
    right: 28px;
    width: 40px;
    height: 40px;
    background: var(--wood);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 0.9rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
}
.btt.visible { opacity: 1; visibility: visible; }
.btt:hover { background: var(--wood-light); }

/* ===== COOKIE BAR ===== */
.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid rgba(107, 66, 38, 0.1);
    padding: 16px 0;
    z-index: 1001;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.05);
}
.cookie-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.cookie-inner p { font-size: 0.85rem; color: var(--text); }
.cookie-inner a { color: var(--forest); font-weight: 600; }
.cookie-btns { display: flex; gap: 8px; }
.c-accept {
    padding: 8px 20px;
    background: var(--forest);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
}
.c-decline {
    padding: 8px 20px;
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(107, 66, 38, 0.2);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
}

/* ===== POLICY PAGES ===== */
.policy-content {
    padding: 60px 0;
}
.policy-content .container { max-width: 800px; }
.policy-meta {
    background: var(--cream-dark);
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 40px;
    border-left: 4px solid var(--forest);
}
.policy-content h2 {
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--wood);
}
.policy-content h3 {
    font-size: 1.2rem;
    margin-top: 24px;
    margin-bottom: 12px;
}
.policy-content p { margin-bottom: 16px; }
.policy-content ul { margin-bottom: 16px; padding-left: 20px; }
.policy-content ul li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 8px;
    font-size: 0.95rem;
}
.policy-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--forest);
    border-radius: 50%;
}

/* ===== LEAD FORM (HOMEPAGE) ===== */
.lead-form-section {
    background: var(--cream-dark);
    padding: 60px 0;
}
.lead-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.lead-form-wrapper h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    text-align: center;
}
.lead-form-wrapper > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 24px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-text h1 { font-size: 2.8rem; }
    .hero-image { max-height: 400px; }
    .hero-image img { height: 400px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .company-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-phone { display: none; }
    .hamburger { display: flex; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 24px;
        gap: 16px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }
    .hero { min-height: auto; padding: 100px 0 60px; }
    .hero-text h1 { font-size: 2.2rem; }
    .hero-image { display: none; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .stat-number { font-size: 2rem; }
    .sec-title { font-size: 2rem; }
    .services-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 32px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .page-hero h1 { font-size: 2rem; }
    .cta-section h2 { font-size: 2rem; }
    .form-row { grid-template-columns: 1fr; }
    .company-grid { grid-template-columns: 1fr; }
    .cookie-inner { flex-direction: column; text-align: center; }
}

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.active,
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
