/* =========================================================
   Kuzey Fide — Stylesheet
   - Mobile-first
   - Modern minimalist (yeşil/beyaz)
   - No framework, pure CSS
   ========================================================= */

/* ---------- Reset & Base ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    color: #0F172A;
    background: #FFFFFF;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-size: 16px;
    line-height: 1.5;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1,h2,h3,h4 {
    font-family: "Outfit", system-ui, sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0F172A;
    margin: 0;
}
p { margin: 0; color: #475569; }
ul, ol { margin: 0; padding: 0; list-style: none; }
::selection { background: rgba(15,76,58,0.95); color: #fff; }

/* ---------- Layout ---------- */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}
@media (min-width: 1024px) { .container { padding: 0 32px; } }

section[id] { scroll-margin-top: 84px; }
.section { padding: 72px 0; }
@media (min-width: 768px) { .section { padding: 96px 0; } }
@media (min-width: 1024px) { .section { padding: 128px 0; } }

.section-surface { background: #F4F7F4; }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head h2 { font-size: 30px; line-height: 1.1; margin-top: 16px; }
.section-head .section-lead { margin-top: 20px; font-size: 17px; color: #475569; line-height: 1.65; }
@media (min-width: 768px) { .section-head h2 { font-size: 40px; } }
@media (min-width: 1024px) { .section-head h2 { font-size: 48px; } }

/* ---------- Eyebrows ---------- */
.eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 14px; border-radius: 999px;
    background: #F4F7F4; color: #0F4C3A;
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em;
}
.eyebrow-dot { width: 6px; height: 6px; border-radius: 999px; background: #16A34A; }
.eyebrow-surface { background: #F4F7F4; color: #0F4C3A; }
.eyebrow-white { background: #fff; border: 1px solid rgba(15,76,58,.1); color: #0F4C3A; }

/* ---------- Buttons ---------- */
.btn-primary, .btn-outline, .btn-pill-light, .btn-pill-whatsapp, .btn-pill-dark {
    display: inline-flex; align-items: center; gap: 8px; justify-content: center;
    border-radius: 999px; font-weight: 600; text-decoration: none;
    transition: all .2s ease;
    cursor: pointer; border: 0;
}
.btn-primary {
    background: #0F4C3A; color: #fff;
    padding: 14px 26px; font-size: 15px;
}
.btn-primary:hover { background: #0c3f30; box-shadow: 0 12px 28px -10px rgba(15,76,58,.55); transform: translateY(-1px); }
.btn-outline {
    background: #fff; color: #0F4C3A;
    border: 2px solid rgba(15,76,58,.15);
    padding: 12px 24px; font-size: 15px;
}
.btn-outline:hover { border-color: rgba(15,76,58,.4); background: #F4F7F4; }
.btn-pill-light {
    background: rgba(15,76,58,.06); color: #0F4C3A;
    border: 1px solid rgba(15,76,58,.18);
    padding: 9px 16px; font-size: 14px;
}
.btn-pill-light:hover { background: rgba(15,76,58,.1); }
.btn-pill-whatsapp {
    background: #25D366; color: #fff;
    padding: 10px 20px; font-size: 14px;
}
.btn-pill-whatsapp:hover { background: #1faa53; box-shadow: 0 8px 24px -10px rgba(37,211,102,.7); transform: translateY(-1px); }
.btn-pill-dark {
    background: rgba(255,255,255,.06); color: #fff;
    border: 1px solid rgba(255,255,255,.15);
    padding: 10px 20px; font-size: 14px;
}
.btn-pill-dark:hover { background: rgba(255,255,255,.12); }

.icon-sm { width: 16px; height: 16px; flex: 0 0 16px; }

/* ---------- Header ---------- */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,255,255,.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: all .3s ease;
}
.site-header.is-scrolled {
    background: rgba(255,255,255,.92);
    border-bottom-color: rgba(226,232,240,.6);
    box-shadow: 0 2px 24px -16px rgba(15,76,58,.2);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo-mark {
    display: inline-flex; width: 40px; height: 40px; border-radius: 12px;
    background: #0F4C3A; color: #fff;
    align-items: center; justify-content: center;
}
.logo-mark svg { width: 22px; height: 22px; }
.logo-text { font-family: "Outfit", sans-serif; font-weight: 800; font-size: 20px; color: #0F4C3A; letter-spacing: -0.02em; }

.nav-desktop { display: none; gap: 28px; }
.nav-desktop a { font-size: 15px; font-weight: 500; color: #334155; transition: color .2s; }
.nav-desktop a:hover { color: #0F4C3A; }
.header-cta { display: none; align-items: center; gap: 10px; }

.menu-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: 12px;
    background: #fff; border: 1px solid rgba(226,232,240,.8); color: #0F4C3A;
}
.menu-toggle svg { width: 20px; height: 20px; }

.nav-mobile { padding: 8px 0 20px; }
.nav-mobile a {
    display: block; padding: 12px 14px; border-radius: 12px;
    font-size: 16px; font-weight: 500; color: #334155;
}
.nav-mobile a:hover { background: #F4F7F4; color: #0F4C3A; }
.nav-mobile-cta { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 12px; padding: 0 14px; }

@media (min-width: 1024px) {
    .nav-desktop { display: flex; }
    .header-cta { display: inline-flex; }
    .menu-toggle { display: none; }
}

/* ---------- Hero ---------- */
.hero {
    position: relative; overflow: hidden;
    background: linear-gradient(180deg, rgba(244,247,244,.6) 0%, #fff 60%, #fff 100%);
    padding-top: 48px; padding-bottom: 96px;
}
@media (min-width: 1024px) { .hero { padding-top: 72px; padding-bottom: 128px; } }
.hero-blob { position: absolute; pointer-events: none; border-radius: 50%; filter: blur(80px); }
.hero-blob-1 { top: -120px; left: -120px; width: 460px; height: 460px; background: rgba(15,76,58,.06); }
.hero-blob-2 { bottom: -100px; right: -40px; width: 400px; height: 400px; background: rgba(22,163,74,.1); }

.hero-grid { position: relative; display: grid; grid-template-columns: 1fr; gap: 56px; align-items: center; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }

.hero-text h1 { font-size: 38px; line-height: 1.05; margin-top: 22px; }
@media (min-width: 640px) { .hero-text h1 { font-size: 48px; } }
@media (min-width: 1024px) { .hero-text h1 { font-size: 60px; } }
.hero-text .highlight { position: relative; white-space: nowrap; color: #0F4C3A; }
.hero-text .highlight::after {
    content: ""; position: absolute; left: 0; bottom: 4px;
    width: 100%; height: 10px; background: rgba(22,163,74,.25); border-radius: 6px; z-index: -1;
}
.hero-text .lead { margin-top: 22px; font-size: 17px; line-height: 1.65; color: #475569; max-width: 560px; }

.cta-row { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero-highlights { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 22px; }
.hero-highlights > div { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: #475569; font-weight: 500; }
.hi-ic {
    display: inline-flex; width: 30px; height: 30px; border-radius: 999px;
    background: rgba(22,163,74,.12); color: #0F4C3A; align-items: center; justify-content: center;
    font-size: 14px;
}

.hero-media { position: relative; }
.hero-image-wrap {
    position: relative; height: 420px; border-radius: 28px; overflow: hidden;
    box-shadow: 0 30px 80px -30px rgba(15,76,58,.45);
}
@media (min-width: 640px) { .hero-image-wrap { height: 520px; } }
@media (min-width: 1024px) { .hero-image-wrap { height: 600px; } }
.hero-image-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-image-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(0deg, rgba(15,76,58,.3), transparent 60%);
}
.hero-float-card {
    position: absolute; bottom: -28px; left: -8px;
    max-width: 280px; background: #fff; border-radius: 18px;
    padding: 18px; box-shadow: 0 24px 60px -20px rgba(15,76,58,.35);
    border: 1px solid rgba(226,232,240,.6);
    display: flex; gap: 12px;
}
@media (min-width: 640px) { .hero-float-card { left: 24px; } }
.hero-float-icon { width: 48px; height: 48px; border-radius: 14px; background: #0F4C3A; color: #fff;
    display: inline-flex; align-items: center; justify-content: center; flex: 0 0 48px; }
.hero-float-icon svg { width: 24px; height: 24px; }
.hero-float-eyebrow { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: #0F4C3A; }
.hero-float-value { font-family: "Outfit", sans-serif; font-size: 22px; font-weight: 800; color: #0F172A; margin-top: 2px; }
.hero-float-text { margin-top: 6px; font-size: 13px; color: #64748B; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 5fr 7fr; gap: 64px; align-items: start; } }

.about-media { position: relative; }
.about-image-main { height: 420px; border-radius: 28px; overflow: hidden; box-shadow: 0 20px 60px -28px rgba(15,76,58,.4); }
@media (min-width: 640px) { .about-image-main { height: 520px; } }
.about-image-main img { width: 100%; height: 100%; object-fit: cover; }
.about-image-secondary {
    display: none;
    position: absolute; right: -16px; bottom: -32px;
    width: 200px; height: 200px; border-radius: 24px; overflow: hidden;
    border: 4px solid #fff; box-shadow: 0 20px 50px -20px rgba(15,76,58,.4);
}
@media (min-width: 640px) { .about-image-secondary { display: block; } }
.about-image-secondary img { width: 100%; height: 100%; object-fit: cover; }

.about-text h2 { font-size: 30px; line-height: 1.1; margin-top: 18px; }
@media (min-width: 768px) { .about-text h2 { font-size: 38px; } }
@media (min-width: 1024px) { .about-text h2 { font-size: 46px; } }
.about-text > p { margin-top: 18px; font-size: 16px; line-height: 1.75; color: #475569; }
@media (min-width: 640px) { .about-text > p { font-size: 17px; } }

.vm-grid { margin-top: 36px; display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .vm-grid { grid-template-columns: 1fr 1fr; } }
.vm-card {
    background: rgba(244,247,244,.55); border: 1px solid rgba(226,232,240,.6);
    border-radius: 18px; padding: 22px;
}
.vm-icon { width: 40px; height: 40px; border-radius: 12px; background: #0F4C3A; color: #fff;
    display: inline-flex; align-items: center; justify-content: center; }
.vm-icon svg { width: 20px; height: 20px; }
.vm-card h3 { margin-top: 14px; font-size: 18px; font-weight: 700; color: #0F172A; }
.vm-card p { margin-top: 8px; font-size: 14px; color: #475569; line-height: 1.65; }

.pillars { margin-top: 30px; display: grid; gap: 12px; }
.pillars li { display: flex; align-items: flex-start; gap: 10px; color: #475569; font-size: 15px; line-height: 1.55; }
.pillars-tick { color: #16A34A; font-weight: 800; }
.pillars li strong { color: #0F172A; font-weight: 600; }

/* ---------- Products ---------- */
.products-grid { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .products-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }

.product-card {
    background: #fff; border-radius: 24px; border: 1px solid rgba(226,232,240,.6);
    overflow: hidden; transition: all .3s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -30px rgba(15,76,58,.35); }
.product-image { position: relative; height: 240px; overflow: hidden; background: #F4F7F4; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.product-card:hover .product-image img { transform: scale(1.05); }
.product-tag {
    position: absolute; top: 14px; left: 14px;
    background: rgba(255,255,255,.95); color: #0F4C3A;
    padding: 6px 12px; border-radius: 999px;
    font-size: 11px; font-weight: 700; letter-spacing: .04em;
    box-shadow: 0 4px 12px rgba(15,76,58,.12);
}
.product-body { padding: 26px; }
@media (min-width: 1024px) { .product-body { padding: 32px; } }
.product-body h3 { font-size: 22px; font-weight: 700; color: #0F172A; }
.product-intro { margin-top: 12px; color: #475569; line-height: 1.65; }
.product-bench { margin-top: 20px; }
.bench-label { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: #0F4C3A; margin-bottom: 12px; }
.check-list { display: grid; gap: 8px; }
.check-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 14px; color: #334155; line-height: 1.55; }
.check-list li::before { content: "✓"; color: #16A34A; font-weight: 800; flex: 0 0 14px; }

.product-foot {
    margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(226,232,240,.7);
    display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.foot-mini { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: #64748B; }
.chip-row { margin-top: 8px; display: flex; flex-wrap: wrap; gap: 6px; }
.chip-row span {
    display: inline-flex; padding: 4px 10px; border-radius: 999px;
    background: #F4F7F4; color: #0F4C3A; font-size: 12px; font-weight: 500;
}
.dot-list { margin-top: 8px; display: grid; gap: 4px; }
.dot-list li { font-size: 12px; color: #475569; }
.dot-list li::before { content: "· "; }

.link-cta {
    margin-top: 24px; display: inline-flex; align-items: center; gap: 8px;
    font-size: 14px; font-weight: 600; color: #0F4C3A; transition: all .2s ease;
}
.link-cta:hover { gap: 12px; }

/* ---------- Features (Why us) ---------- */
.features-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; } }
.feature-card {
    background: #fff; border: 1px solid rgba(226,232,240,.6);
    border-radius: 18px; padding: 26px; transition: all .3s ease;
}
.feature-card:hover { background: rgba(244,247,244,.5); border-color: rgba(15,76,58,.2); transform: translateY(-4px); }
.feature-icon {
    width: 48px; height: 48px; border-radius: 14px;
    background: #0F4C3A; color: #fff; display: inline-flex; align-items: center; justify-content: center;
    transition: background .25s ease;
}
.feature-card:hover .feature-icon { background: #16A34A; }
.feature-icon svg { width: 22px; height: 22px; }
.feature-card h3 { margin-top: 20px; font-size: 20px; font-weight: 700; color: #0F172A; }
.feature-card p { margin-top: 8px; font-size: 15px; line-height: 1.65; color: #475569; }

/* ---------- Process ---------- */
.process-grid {
    position: relative;
    display: grid; gap: 32px; grid-template-columns: 1fr; margin-top: 24px;
}
@media (min-width: 640px) { .process-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(6, 1fr); gap: 18px; } }

.process-step { position: relative; }
.step-num {
    display: inline-flex; width: 56px; height: 56px; border-radius: 18px;
    background: #fff; border: 2px solid rgba(15,76,58,.22); color: #0F4C3A;
    font-family: "Outfit", sans-serif; font-weight: 800; font-size: 18px;
    align-items: center; justify-content: center;
    box-shadow: 0 4px 12px -6px rgba(15,76,58,.2);
}
.process-step h3 { margin-top: 20px; font-size: 17px; font-weight: 700; color: #0F172A; }
.process-step p { margin-top: 6px; font-size: 14px; line-height: 1.55; color: #475569; }

/* ---------- Stats ---------- */
.stats { position: relative; padding: 72px 0; background: #0F4C3A; color: #fff; overflow: hidden; }
@media (min-width: 1024px) { .stats { padding: 96px 0; } }
.stats-bg {
    position: absolute; inset: 0; opacity: .08;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.5) 1px, transparent 0);
    background-size: 24px 24px;
}
.stats-grid {
    position: relative; display: grid;
    grid-template-columns: 1fr 1fr; gap: 32px;
}
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 40px; } }
.stat { text-align: center; }
@media (min-width: 1024px) { .stat { text-align: left; } }
.stat-value { font-family: "Outfit", sans-serif; font-weight: 800; font-size: 40px; line-height: 1; }
@media (min-width: 640px) { .stat-value { font-size: 52px; } }
@media (min-width: 1024px) { .stat-value { font-size: 60px; } }
.stat-label { margin-top: 8px; font-size: 14px; font-weight: 500; color: rgba(255,255,255,.75); }
@media (min-width: 640px) { .stat-label { font-size: 16px; } }

/* ---------- Gallery ---------- */
.gallery-head { display: flex; flex-direction: column; gap: 18px; margin-bottom: 56px; }
@media (min-width: 1024px) {
    .gallery-head { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}
.gallery-head h2 { font-size: 30px; line-height: 1.1; margin-top: 16px; }
@media (min-width: 768px) { .gallery-head h2 { font-size: 40px; } }
@media (min-width: 1024px) { .gallery-head h2 { font-size: 48px; max-width: 600px; } }
.gallery-head p { max-width: 420px; color: #475569; }

.gallery-grid {
    display: grid; gap: 12px;
    grid-template-columns: 1fr 1fr;
}
@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 252px;
        gap: 16px;
    }
}
.gallery-grid figure { margin: 0; border-radius: 18px; overflow: hidden; position: relative; height: 240px; }
.gallery-grid figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.gallery-grid figure:hover img { transform: scale(1.08); }
@media (min-width: 1024px) {
    .gallery-grid figure { height: auto; }
    .gallery-grid figure.g-tall { grid-row: span 2; }
}

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 1024px) { .faq-grid { grid-template-columns: 4fr 8fr; gap: 64px; align-items: start; } }
.faq-aside { position: sticky; top: 100px; }
.faq-aside h2 { font-size: 30px; line-height: 1.1; margin-top: 18px; }
@media (min-width: 768px) { .faq-aside h2 { font-size: 38px; } }
@media (min-width: 1024px) { .faq-aside h2 { font-size: 42px; } }
.faq-aside p { margin-top: 18px; color: #475569; line-height: 1.65; }
.faq-aside .btn-pill-whatsapp { margin-top: 26px; padding: 12px 22px; font-size: 14px; }

.faq-list { display: grid; gap: 12px; }
.faq-item {
    background: #fff; border-radius: 18px; border: 1px solid rgba(226,232,240,.6);
    padding: 0 24px; transition: all .2s ease;
}
.faq-item[open] { border-color: rgba(15,76,58,.25); box-shadow: 0 10px 30px -18px rgba(15,76,58,.25); }
.faq-item summary {
    list-style: none; cursor: pointer; padding: 20px 0;
    font-size: 16px; font-weight: 600; color: #0F172A;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    transition: color .2s;
}
@media (min-width: 640px) { .faq-item summary { font-size: 17px; } }
.faq-item summary:hover { color: #0F4C3A; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: ""; flex: 0 0 14px; width: 14px; height: 14px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
    background-size: contain; background-repeat: no-repeat; background-position: center;
    transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-answer { padding-bottom: 20px; }
.faq-answer p { font-size: 15px; line-height: 1.7; color: #475569; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: start; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 5fr 7fr; gap: 64px; } }

.contact-info h2 { font-size: 30px; line-height: 1.1; margin-top: 18px; }
@media (min-width: 768px) { .contact-info h2 { font-size: 38px; } }
@media (min-width: 1024px) { .contact-info h2 { font-size: 44px; } }
.contact-info > p { margin-top: 18px; color: #475569; line-height: 1.65; }

.info-card {
    margin-top: 20px;
    display: flex; align-items: center; gap: 16px;
    background: #fff; border: 1px solid rgba(226,232,240,.6); border-radius: 18px;
    padding: 18px; transition: all .25s;
    color: inherit;
}
a.info-card:hover { border-color: rgba(15,76,58,.3); box-shadow: 0 12px 24px -16px rgba(15,76,58,.25); }
.info-icon {
    width: 48px; height: 48px; border-radius: 14px;
    background: #0F4C3A; color: #fff;
    display: inline-flex; align-items: center; justify-content: center; flex: 0 0 48px;
}
.info-icon svg { width: 22px; height: 22px; }
.info-icon-wa { background: #25D366; }
.info-eyebrow { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: #64748B; }
.info-value { display: block; margin-top: 2px; font-family: "Outfit", sans-serif; font-weight: 700; font-size: 17px; color: #0F172A; }

.hours { margin-top: 18px; display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: #475569; }
.hours .icon-sm { color: #0F4C3A; }

.contact-form {
    background: linear-gradient(160deg, #F4F7F4, #fff);
    border: 1px solid rgba(226,232,240,.6); border-radius: 24px;
    padding: 28px; box-shadow: 0 1px 0 rgba(15,76,58,.02);
}
@media (min-width: 1024px) { .contact-form { padding: 40px; } }
.contact-form h3 { font-size: 22px; font-weight: 700; color: #0F172A; }
.form-lead { margin-top: 8px; font-size: 14px; color: #475569; }
.form-row { margin-top: 24px; display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; }
.field label { font-size: 14px; font-weight: 500; color: #334155; }
.field input, .field textarea {
    margin-top: 8px; width: 100%;
    padding: 12px 14px; border-radius: 12px;
    border: 1px solid rgba(226,232,240,.9); background: #fff;
    font-family: inherit; font-size: 15px; color: #0F172A;
    transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field textarea:focus {
    outline: none; border-color: #0F4C3A;
    box-shadow: 0 0 0 3px rgba(15,76,58,.1);
}
.field textarea { resize: vertical; min-height: 120px; }
.contact-form > .field { margin-top: 16px; }
.contact-form .btn-primary { margin-top: 24px; width: 100%; }
@media (min-width: 640px) { .contact-form .btn-primary { width: auto; } }
.form-disclaimer { margin-top: 14px; font-size: 12px; color: #64748B; }

.map-wrap {
    margin-top: 22px; border-radius: 24px; overflow: hidden;
    border: 1px solid rgba(226,232,240,.6); background: #F4F7F4;
}
.map-wrap iframe { display: block; }

/* ---------- Footer ---------- */
.site-footer { background: #0A2F24; color: #fff; }
.footer-grid {
    padding: 64px 0 40px;
    display: grid; grid-template-columns: 1fr; gap: 40px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; } }
.footer-brand p { color: rgba(255,255,255,.7); margin-top: 18px; font-size: 14px; line-height: 1.65; max-width: 420px; }
.footer-logo { display: inline-flex; align-items: center; gap: 10px; }
.logo-mark-dark { background: rgba(255,255,255,.1); color: #16A34A; }
.footer-cta { margin-top: 22px; display: inline-flex; gap: 10px; flex-wrap: wrap; }

.site-footer h4 {
    font-family: "Outfit", sans-serif; font-size: 13px;
    font-weight: 700; text-transform: uppercase; letter-spacing: .14em;
    color: rgba(255,255,255,.9); margin-bottom: 18px;
}
.footer-links li, .footer-contact li { margin-bottom: 12px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.7); transition: color .2s; }
.footer-links a:hover { color: #16A34A; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: rgba(255,255,255,.7); }
.footer-contact .icon-sm { color: #16A34A; flex: 0 0 16px; margin-top: 2px; }
.footer-contact a:hover { color: #fff; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; }
.footer-bottom-inner { display: flex; flex-direction: column; gap: 10px; }
@media (min-width: 640px) { .footer-bottom-inner { flex-direction: row; align-items: center; justify-content: space-between; } }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.55); margin: 0; }

/* ---------- Sticky CTA ---------- */
.sticky-cta {
    position: fixed; right: 20px; bottom: 20px; z-index: 60;
    display: flex; flex-direction: column; gap: 12px;
}
@media (max-width: 640px) { .sticky-cta { right: auto; left: 16px; bottom: 16px; } }
.sticky-btn {
    position: relative;
    display: inline-flex; align-items: center; justify-content: center;
    width: 56px; height: 56px; border-radius: 999px;
    box-shadow: 0 16px 40px -10px rgba(15,76,58,.45);
    transition: transform .2s ease;
}
.sticky-btn:hover { transform: scale(1.08); }
.sticky-btn svg { width: 24px; height: 24px; position: relative; z-index: 1; }
.sticky-wa { background: #25D366; color: #fff; }
.sticky-call { background: #0F4C3A; color: #fff; }
.sticky-ping {
    position: absolute; inset: 0; border-radius: 999px;
    background: #25D366; opacity: .55;
    animation: ping 1.8s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@keyframes ping {
    0%   { transform: scale(1); opacity: .55; }
    75%, 100% { transform: scale(1.6); opacity: 0; }
}

/* ---------- Reveal on scroll ---------- */
.reveal {
    opacity: 0; transform: translateY(20px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .sticky-ping { animation: none; }
    html { scroll-behavior: auto; }
}
