/* ============================================================
   GAMSERV SOLAR — Landing Page CSS
   Theme: White + Eco Green + Solar Gold (Mobile-First)
   ============================================================ */

/* ===== VARIABLES ===== */
:root {
    --green:       #16a34a;
    --green-dark:  #15803d;
    --green-light: #dcfce7;
    --gold:        #f5a623;
    --gold-dark:   #d97706;
    --white:       #ffffff;
    --bg:          #f8fdf9;
    --bg2:         #f0fdf4;
    --text:        #0f172a;
    --text-muted:  #475569;
    --border:      #e2e8f0;
    --radius:      14px;
    --shadow:      0 4px 24px rgba(22,163,74,0.10);
    --shadow-lg:   0 16px 48px rgba(22,163,74,0.15);
    --grad-green:  linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
    --grad-gold:   linear-gradient(135deg, #f5a623 0%, #e8460a 100%);
    --font:        'Inter', system-ui, sans-serif;
    --transition:  all .28s cubic-bezier(.4,0,.2,1);
}

/* ===== RESET ===== */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; scroll-padding-top:72px; }
body { font-family:var(--font); background:var(--bg); color:var(--text); line-height:1.65; overflow-x:hidden; }
img { max-width:100%; display:block; }
a  { text-decoration:none; color:inherit; transition:var(--transition); }
ul, ol { list-style:none; }
input, textarea, select, button { font-family:inherit; }

/* ===== UTILITY ===== */
.container { max-width:1180px; margin:0 auto; padding:0 20px; }
.section    { padding:80px 0; }
.section-label {
    display:inline-block;
    font-size:.8rem; font-weight:700; letter-spacing:1.2px; text-transform:uppercase;
    color:var(--green);
    background:var(--green-light);
    padding:5px 14px; border-radius:50px;
    margin-bottom:14px;
}
.section-label.light { background:rgba(255,255,255,.18); color:#fff; }
.section-title {
    font-size:clamp(1.8rem,4vw,2.6rem);
    font-weight:800; line-height:1.15;
    color:var(--text);
    margin-bottom:16px;
}
.section-title.left { text-align:left; }
.section-sub { color:var(--text-muted); font-size:1.05rem; max-width:640px; margin:0 auto 40px; text-align:center; }

/* ===== BUTTONS ===== */
.btn-primary {
    display:inline-block;
    padding:15px 30px; border-radius:50px;
    background:var(--grad-green);
    color:#fff; font-weight:800; font-size:1rem;
    cursor:pointer; border:none;
    box-shadow:0 8px 24px rgba(22,163,74,.45);
    transition:var(--transition);
    letter-spacing:.2px;
}
.btn-primary:hover { transform:translateY(-3px); box-shadow:0 14px 36px rgba(22,163,74,.55); }

/* Pulsing CTA */
@keyframes pulse-cta {
    0%, 100% { box-shadow: 0 8px 24px rgba(22,163,74,.45); }
    50%       { box-shadow: 0 8px 40px rgba(22,163,74,.75), 0 0 0 8px rgba(22,163,74,.14); }
}
.pulse { animation: pulse-cta 2.4s ease-in-out infinite; }

.btn-outline {
    display:inline-block;
    padding:13px 26px; border-radius:50px;
    border:2px solid var(--green);
    color:var(--green); font-weight:700; font-size:1rem;
    cursor:pointer; background:transparent;
    transition:var(--transition);
}
.btn-outline:hover { background:var(--green); color:#fff; transform:translateY(-2px); }

.btn-ghost {
    display:inline-block;
    padding:13px 26px; border-radius:50px;
    border:2px solid rgba(255,255,255,.45);
    color:#fff; font-weight:600; font-size:1rem;
    cursor:pointer; background:rgba(255,255,255,.08);
    transition:var(--transition);
    backdrop-filter:blur(6px);
}
.btn-ghost:hover { background:rgba(255,255,255,.18); border-color:#fff; }

.btn-ghost-white {
    display:inline-block;
    padding:14px 28px; border-radius:50px;
    border:2px solid #fff; color:#fff;
    font-weight:700; font-size:1rem;
    cursor:pointer; background:transparent;
    transition:var(--transition);
}
.btn-ghost-white:hover { background:#fff; color:var(--green); }

.big-btn { font-size:1.1rem; padding:17px 36px; }

/* ===== NAVBAR ===== */
#navbar {
    position:fixed; top:0; left:0; width:100%; z-index:1000;
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);
    border-bottom:1px solid var(--border);
    transition:var(--transition);
}
#navbar.scrolled { box-shadow:0 4px 20px rgba(0,0,0,.08); }

.nav-inner {
    max-width:1180px; margin:0 auto;
    padding:14px 20px;
    display:flex; align-items:center; gap:20px;
}

.nav-logo {
    display:flex; align-items:center; gap:8px;
    font-size:1.45rem; font-weight:800; color:var(--text);
    margin-right:auto;
}
.nav-logo span { color:var(--green); }

.nav-links {
    display:flex; gap:24px;
}
.nav-links a { font-size:.93rem; font-weight:500; color:var(--text-muted); }
.nav-links a:hover { color:var(--green); }

.nav-cta {
    padding:10px 22px; font-size:.93rem;
    white-space:nowrap;
}

.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; background:none; border:none; }
.hamburger span { display:block; width:24px; height:2px; background:var(--text); border-radius:2px; transition:var(--transition); }
.hamburger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity:0; }
.hamburger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
    position:relative; min-height:100vh;
    display:flex; align-items:center;
    padding:120px 20px 60px;
    overflow:hidden;
}

.hero-bg { position:absolute; inset:0; z-index:0; }
.hero-bg img { width:100%; height:100%; object-fit:cover; object-position:center; }
.hero-overlay {
    position:absolute; inset:0;
    background:linear-gradient(135deg, rgba(4,20,10,.88) 0%, rgba(4,20,10,.70) 60%, rgba(4,20,10,.50) 100%);
}

.hero-body {
    position:relative; z-index:1;
    max-width:760px; margin:0 auto;
    text-align:center; color:#fff;
}

.hero-social-proof {
    display:inline-flex; align-items:center; gap:8px;
    background:rgba(34,197,94,.18);
    border:1px solid rgba(34,197,94,.45);
    padding:8px 20px; border-radius:50px;
    font-size:.9rem; font-weight:700; margin-bottom:24px;
    backdrop-filter:blur(8px);
}

.hero h1 {
    font-size:clamp(2.2rem,5.5vw,3.8rem);
    font-weight:900; line-height:1.1;
    margin-bottom:18px;
}

.highlight-text {
    background:var(--grad-gold);
    -webkit-background-clip:text; background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero-sub { font-size:1.15rem; color:rgba(255,255,255,.85); margin-bottom:24px; }

.hero-bullets {
    display:flex; flex-direction:column; align-items:center; gap:10px;
    margin-bottom:36px;
}
.hero-bullets li {
    display:flex; align-items:center; gap:10px;
    font-size:1rem; font-weight:500; color:#fff;
}
.hero-bullets li svg { width:20px; height:20px; flex-shrink:0; }

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

.hero-urgency {
    font-size:.82rem; color:rgba(255,255,255,.65);
    margin-top:4px;
    letter-spacing:.3px;
}
.hero-btn { min-width:200px; }

/* ===== TRUST BAR ===== */
.trust-bar {
    background:var(--white);
    border-bottom:1px solid var(--border);
    padding:24px 0;
}
.trust-inner {
    max-width:1180px; margin:0 auto; padding:0 20px;
    display:flex; align-items:center; justify-content:center;
    gap:20px; flex-wrap:wrap;
}
.trust-item { display:flex; flex-direction:column; align-items:center; gap:2px; padding:0 10px; }
.trust-num { font-size:1.5rem; font-weight:800; color:var(--green); }
.trust-item span { font-size:.8rem; color:var(--text-muted); font-weight:500; }
.trust-sep { width:1px; height:40px; background:var(--border); }

/* ===== CALCULATOR ===== */
.calculator-section { background:var(--bg2); }
.calculator-section .section-title { text-align:center; }

.calc-card {
    max-width:820px; margin:0 auto;
    background:var(--white);
    border-radius:20px;
    box-shadow:var(--shadow-lg);
    overflow:hidden;
}

.calc-inputs {
    padding:36px;
    display:flex; flex-direction:column; gap:20px;
}

.calc-group { display:flex; flex-direction:column; gap:8px; }
.calc-group label { font-weight:600; font-size:.95rem; }

.calc-input-wrap {
    display:flex; align-items:center;
    border:2px solid var(--border); border-radius:12px;
    overflow:hidden; transition:var(--transition);
}
.calc-input-wrap:focus-within { border-color:var(--green); box-shadow:0 0 0 3px rgba(22,163,74,.12); }
.calc-input-wrap input {
    flex:1; padding:14px 16px;
    border:none; outline:none;
    font-size:1.1rem; font-weight:600;
    background:transparent; color:var(--text);
}
.input-unit {
    padding:0 18px;
    font-size:.88rem; font-weight:600;
    color:var(--text-muted);
    background:var(--bg2);
    border-left:1px solid var(--border);
    height:100%; display:flex; align-items:center;
    white-space:nowrap;
}

.calc-group select {
    padding:14px 16px;
    border:2px solid var(--border); border-radius:12px;
    font-size:1rem; outline:none; background:var(--white); color:var(--text);
    transition:var(--transition);
}
.calc-group select:focus { border-color:var(--green); box-shadow:0 0 0 3px rgba(22,163,74,.12); }

.calc-btn { align-self:stretch; padding:16px; font-size:1.05rem; border-radius:12px; }

/* Results */
.calc-results { border-top:1px solid var(--border); }
.calc-results.hidden { display:none; }

.calc-result-grid {
    display:grid; grid-template-columns:repeat(2,1fr);
    gap:0;
}

.result-card {
    padding:28px 24px;
    text-align:center;
    border-right:1px solid var(--border);
    border-bottom:1px solid var(--border);
    transition:var(--transition);
}
.result-card:nth-child(2n) { border-right:none; }
.result-card:nth-child(3), .result-card:nth-child(4) { border-bottom:none; }

.result-icon { font-size:1.8rem; margin-bottom:8px; }
.result-label { font-size:.82rem; color:var(--text-muted); margin-bottom:6px; font-weight:500; }
.result-value { font-size:1.6rem; font-weight:800; color:var(--green); }

.calc-cta-box {
    background:linear-gradient(135deg,#f0fdf4,#dcfce7);
    padding:28px 36px;
    display:flex; align-items:center; justify-content:space-between;
    gap:20px; flex-wrap:wrap;
}
.calc-cta-box p { font-size:1rem; font-weight:600; }

/* ===== BENEFITS ===== */
.benefits-section { background:var(--white); }
.benefits-section .section-title { text-align:center; }

.benefits-grid {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:24px;
}

.benefit-card {
    background:var(--bg);
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:32px 28px;
    transition:var(--transition);
}
.benefit-card:hover {
    transform:translateY(-6px);
    box-shadow:var(--shadow-lg);
    border-color:var(--green);
}

.benefit-icon { font-size:2.4rem; margin-bottom:16px; }
.benefit-stat {
    font-size:2.4rem; font-weight:900;
    background: var(--grad-green);
    -webkit-background-clip:text; background-clip:text;
    -webkit-text-fill-color:transparent;
    margin-bottom:12px;
    line-height:1;
}
.benefit-card h3 { font-size:1.1rem; font-weight:700; margin-bottom:8px; }
.benefit-card p  { color:var(--text-muted); font-size:.9rem; }

/* ===== PROCESS ===== */
.process-section { background:var(--bg2); }
.process-section .section-title { text-align:center; }

.process-steps {
    display:flex; align-items:flex-start;
    gap:8px; flex-wrap:wrap;
    justify-content:center;
}

.process-step {
    flex:1; min-width:180px; max-width:220px;
    text-align:center; padding:28px 20px;
    background:var(--white);
    border:1px solid var(--border);
    border-radius:var(--radius);
    transition:var(--transition);
}
.process-step:hover { border-color:var(--green); transform:translateY(-4px); box-shadow:var(--shadow); }

.step-num {
    font-size:.68rem; font-weight:800; letter-spacing:1px;
    color:var(--green);
    background: var(--green-light);
    border: 2px solid var(--green);
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    font-size: 1rem;
}
.step-svg-icon {
    width: 56px; height: 56px;
    background: var(--grad-green);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    box-shadow: 0 6px 18px rgba(22,163,74,.3);
}
.step-svg-icon svg {
    width: 28px; height: 28px;
    stroke: #fff;
}
.step-icon { font-size:2rem; margin-bottom:12px; }
.process-step h3 { font-size:1rem; font-weight:700; margin-bottom:8px; }
.process-step p  { font-size:.87rem; color:var(--text-muted); }

.process-arrow {
    font-size:1.5rem; color:var(--green);
    align-self:center; margin-top:-20px;
    display: flex; align-items: center; justify-content: center;
}
.process-arrow svg {
    width: 28px; height: 28px;
    stroke: var(--green);
}

.process-cta { text-align:center; margin-top:40px; }

/* ===== WHY US ===== */
.why-us-section { background:var(--white); }
.why-us-inner {
    display:grid; grid-template-columns:1fr 1fr;
    gap:64px; align-items:center;
}
.why-us-text p { color:var(--text-muted); margin-bottom:28px; }
.why-us-text .section-title { margin-bottom:16px; }

.why-list { display:flex; flex-direction:column; gap:12px; margin-bottom:32px; }
.why-list li {
    display:flex; align-items:center; gap:12px;
    font-size:.98rem; font-weight:500;
}
.check {
    width:24px; height:24px;
    background:var(--green-light);
    color:var(--green);
    border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    font-size:.85rem; font-weight:800;
    flex-shrink:0;
}

.why-us-image {
    position:relative; border-radius:20px;
    overflow:visible;
}
.why-us-image img {
    border-radius:20px;
    box-shadow:var(--shadow-lg);
    height:480px; object-fit:cover; width:100%;
}
.why-us-badge {
    position:absolute; bottom:-16px; left:-16px;
    background:var(--grad-green);
    color:#fff; border-radius:16px;
    padding:16px 20px;
    display:flex; flex-direction:column; align-items:center;
    box-shadow:0 8px 24px rgba(22,163,74,.4);
}
.badge-num { font-size:2rem; font-weight:900; line-height:1; }
.why-us-badge span:last-child { font-size:.75rem; opacity:.85; text-align:center; }

/* ===== GALLERY ===== */
.gallery-section { background:var(--bg2); }
.gallery-section .section-title { text-align:center; }

.gallery-grid {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:20px;
}

.gallery-item {
    position:relative; border-radius:var(--radius);
    overflow:hidden; height:280px; cursor:pointer;
}
.gallery-item img { width:100%; height:100%; object-fit:cover; transition:transform .6s ease; }
.gallery-item:hover img { transform:scale(1.06); }

.gallery-overlay {
    position:absolute; inset:0;
    background:linear-gradient(to top,rgba(4,20,10,.92) 0%,rgba(4,20,10,.3) 55%,transparent 100%);
    display:flex; flex-direction:column; justify-content:flex-end;
    padding:24px; opacity:0; transition:var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity:1; }

.gallery-tag {
    display:inline-block;
    background:var(--green); color:#fff;
    font-size:.72rem; font-weight:700;
    padding:3px 10px; border-radius:50px;
    margin-bottom:8px; letter-spacing:.6px; text-transform:uppercase;
    width:fit-content;
}
.gallery-overlay h4 { color:#fff; font-size:1.1rem; margin-bottom:4px; }
.gallery-overlay p  { color:rgba(255,255,255,.8); font-size:.88rem; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background:var(--white); }
.testimonials-section .section-title { text-align:center; }

.testimonials-grid {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:24px;
}

.testimonial-card {
    background:var(--bg);
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:32px 28px;
    transition:var(--transition);
}
.testimonial-card.featured-t {
    background:var(--white);
    border:2px solid var(--green);
    box-shadow:var(--shadow-lg);
}
.testimonial-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); }

.testi-stars { font-size:1.15rem; color:#f59e0b; margin-bottom:16px; letter-spacing:2px; }

blockquote {
    font-size:.97rem; color:var(--text-muted);
    font-style:italic; line-height:1.75;
    margin-bottom:24px;
}
blockquote strong { color:var(--text); font-style:normal; }

.testi-author {
    display:flex; align-items:center; gap:12px;
    border-top:1px solid var(--border); padding-top:18px;
}
.testi-avatar {
    width:40px; height:40px; border-radius:50%;
    background:var(--grad-green);
    color:#fff; font-weight:800; font-size:.9rem;
    display:flex; align-items:center; justify-content:center;
    flex-shrink:0;
}
.testi-author strong { display:block; font-size:.95rem; }
.testi-author span   { font-size:.82rem; color:var(--text-muted); }

/* ===== PRICING ===== */
.pricing-section { background:var(--bg2); }
.pricing-section .section-title { text-align:center; }

.pricing-grid {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:24px; align-items:start;
}

.pricing-card {
    background:var(--white);
    border:1px solid var(--border);
    border-radius:20px;
    padding:36px 28px;
    text-align:center;
    transition:var(--transition);
    position:relative;
}
.pricing-card:hover { transform:translateY(-8px); box-shadow:var(--shadow-lg); border-color:var(--green); }
.pricing-card.featured {
    border:2px solid var(--green);
    box-shadow:var(--shadow-lg);
    transform:scale(1.03);
}
.pricing-card.featured:hover { transform:scale(1.03) translateY(-8px); }

.popular-badge {
    position:absolute; top:-14px; left:50%; transform:translateX(-50%);
    background:var(--grad-green); color:#fff;
    font-size:.78rem; font-weight:800;
    padding:5px 18px; border-radius:50px;
    white-space:nowrap; letter-spacing:.5px;
}

.pkg-name { font-size:1.3rem; font-weight:800; color:var(--text); margin-bottom:4px; }
.pkg-ideal { font-size:.82rem; color:var(--text-muted); margin-bottom:20px; }
.pkg-price {
    font-size:1.8rem; font-weight:900;
    color:var(--green); margin-bottom:28px;
}
.pkg-price span { font-size:1rem; font-weight:600; color:var(--text-muted); }

.pkg-features { display:flex; flex-direction:column; gap:10px; margin-bottom:28px; text-align:left; }
.pkg-features li { font-size:.9rem; color:var(--text-muted); display:flex; align-items:center; gap:8px; }
.pkg-features li.muted { color:#94a3b8; }

.pricing-note { text-align:center; font-size:.82rem; color:var(--text-muted); margin-top:28px; }

/* ===== TRUST BADGES ===== */
.trust-badges-section { background:var(--white); }
.trust-badges-section .section-title { text-align:center; }

.badges-grid {
    display:flex; flex-wrap:wrap; justify-content:center;
    gap:20px; margin-bottom:48px;
}

.badge-item {
    background:var(--bg2);
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:24px 28px;
    display:flex; flex-direction:column; align-items:center; gap:8px;
    text-align:center; min-width:140px;
    transition:var(--transition);
}
.badge-item:hover { border-color:var(--green); transform:translateY(-4px); box-shadow:var(--shadow); }
.badge-icon { font-size:2rem; }
.badge-svg {
    width: 64px; height: 64px;
    background: var(--green-light);
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
    border: 2px solid rgba(22,163,74,.2);
    transition: var(--transition);
}
.badge-item:hover .badge-svg {
    background: var(--grad-green);
    border-color: var(--green);
}
.badge-item:hover .badge-svg svg { stroke: #fff; }
.badge-svg svg {
    width: 30px; height: 30px;
    stroke: var(--green);
    transition: var(--transition);
}
.badge-text { font-size:1rem; color:var(--text-muted); line-height:1.6; }
.badge-text strong { color:var(--text); display:block; font-size:1.05rem; }

.partners-strip {
    display:flex; flex-wrap:wrap; justify-content:center;
    gap:40px; padding-top:40px;
    border-top:1px solid var(--border);
}
.partners-strip span {
    font-size:1.2rem; font-weight:900; letter-spacing:3px;
    color:#64748b; transition:var(--transition);
    cursor: default;
}
.partners-strip span:hover { color:var(--green); transform:scale(1.08); }

/* ===== FINAL CTA ===== */
.final-cta-section { background:var(--bg2); }

.final-cta-card {
    background:var(--grad-green);
    border-radius:24px;
    padding:72px 40px;
    text-align:center;
    position:relative; overflow:hidden;
}
.final-cta-glow {
    position:absolute; top:-60px; right:-60px;
    width:300px; height:300px; border-radius:50%;
    background:rgba(255,255,255,.1);
    pointer-events:none;
}
.final-cta-card h2 { color:#fff; font-size:clamp(1.8rem,4vw,2.5rem); margin-bottom:14px; }
.final-cta-card h2 u { text-decoration-color:var(--gold); text-decoration-thickness:3px; }
.final-cta-card p  { color:rgba(255,255,255,.85); font-size:1.05rem; margin-bottom:36px; }
.final-cta-btns { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; margin-bottom:28px; }

.final-trust {
    display:flex; gap:28px; justify-content:center; flex-wrap:wrap;
}
.final-trust span {
    font-size:.88rem; color:rgba(255,255,255,.85);
    font-weight:600;
}

/* Urgency bar */
.urgency-bar {
    background:#fef3c7;
    border-bottom:1px solid #fde68a;
    padding:10px 20px;
    text-align:center;
    font-size:.9rem; color:#92400e;
    position:relative; z-index:1001;
}
.urgency-bar a {
    color:var(--green-dark); font-weight:800;
    text-decoration:underline;
    margin-left:10px;
}
.urgency-bar a:hover { color:var(--green); }

/* ===== CONTACT ===== */
.contact-section { background:var(--white); }

.contact-grid {
    display:grid; grid-template-columns:1fr 1.3fr;
    gap:60px; align-items:flex-start;
}

.contact-info .section-title { margin-bottom:14px; }
.contact-info > p { color:var(--text-muted); margin-bottom:32px; }

.contact-details { display:flex; flex-direction:column; gap:16px; }

.contact-detail-item {
    display:flex; align-items:center; gap:16px;
    padding:16px 20px;
    background:var(--bg); border:1px solid var(--border);
    border-radius:var(--radius); transition:var(--transition);
    cursor:default;
}
a.contact-detail-item:hover { border-color:var(--green); transform:translateX(4px); background:var(--green-light); }

.cd-icon {
    width:44px; height:44px; border-radius:12px;
    background:var(--green-light);
    display:flex; align-items:center; justify-content:center;
    font-size:1.2rem; flex-shrink:0;
}
.contact-detail-item strong { display:block; font-size:.88rem; color:var(--text-muted); margin-bottom:2px; }
.contact-detail-item span  { font-size:1rem; font-weight:600; color:var(--text); }

/* Form */
.contact-form-wrap {
    background:var(--bg);
    border:1px solid var(--border);
    border-radius:20px;
    padding:36px;
}

.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-field { display:flex; flex-direction:column; gap:7px; }
.form-field label { font-size:.88rem; font-weight:600; color:var(--text-muted); }

.form-field input, .form-field textarea, .form-field select {
    padding:13px 16px;
    border:2px solid var(--border);
    border-radius:10px;
    font-size:.97rem; background:var(--white);
    color:var(--text); outline:none;
    transition:var(--transition);
}
.form-field input:focus, .form-field textarea:focus {
    border-color:var(--green);
    box-shadow:0 0 0 3px rgba(22,163,74,.12);
}

.form-field { margin-bottom:16px; }

.file-field { margin-bottom:20px; }
.file-label-btn {
    display:flex; align-items:center; gap:10px;
    padding:13px 16px;
    border:2px dashed var(--border);
    border-radius:10px; cursor:pointer;
    font-size:.9rem; color:var(--text-muted); font-weight:500;
    transition:var(--transition);
}
.file-label-btn:hover { border-color:var(--green); color:var(--green); background:var(--green-light); }
input[type="file"] { display:none; }

.submit-btn {
    width:100%; padding:16px;
    border-radius:12px; font-size:1.05rem;
    margin-bottom:12px;
}

.form-privacy { font-size:.78rem; color:var(--text-muted); text-align:center; }
.form-success {
    background:var(--green-light); color:var(--green-dark);
    border:1px solid var(--green);
    border-radius:10px; padding:14px; text-align:center;
    font-weight:600; margin-top:14px;
}

/* ===== FOOTER ===== */
.footer {
    background:#0f172a;
    color:#cbd5e1;
    padding:60px 0 0;
}
.footer-inner {
    display:grid; grid-template-columns:1.4fr 1fr 1fr;
    gap:40px; padding-bottom:40px;
}
.footer-brand .nav-logo { color:#fff; margin-bottom:12px; }
.footer-brand p { font-size:.88rem; line-height:1.7; margin-bottom:16px; color:#94a3b8; }
.footer-social { color:var(--gold); font-weight:700; font-size:.9rem; }
.footer-social:hover { text-decoration:underline; }
.footer-links { display:flex; flex-direction:column; gap:10px; }
.footer-links h4 { color:#fff; font-size:.95rem; margin-bottom:6px; }
.footer-links a, .footer-links span { font-size:.88rem; color:#94a3b8; transition:var(--transition); }
.footer-links a:hover { color:var(--gold); }
.footer-bottom {
    border-top:1px solid rgba(255,255,255,.07);
    padding:20px;
    text-align:center; font-size:.8rem; color:#64748b;
}

/* ===== STICKY MOBILE CTA ===== */
.sticky-cta {
    position:fixed; bottom:0; left:0; right:0; z-index:999;
    display:flex;
    transform:translateY(100%);
    transition:transform .3s ease;
}
.sticky-cta.visible { transform:translateY(0); }

.sticky-btn {
    flex:1; padding:17px;
    font-size:1rem; font-weight:700;
    text-align:center; cursor:pointer;
    border:none; transition:var(--transition);
}
.sticky-call { background:#0f172a; color:#fff; }
.sticky-call:hover { background:#1e293b; }
.sticky-offer { background:var(--grad-green); color:#fff; }
.sticky-offer:hover { filter:brightness(1.08); }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity:0; transform:translateY(28px); transition:opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
    .nav-links, .nav-cta { display:none; }
    .hamburger { display:flex; }
    .nav-links.open {
        display:flex; flex-direction:column;
        position:fixed; top:70px; left:0; right:0;
        background:var(--white);
        padding:24px 20px; gap:16px;
        border-bottom:1px solid var(--border);
        box-shadow:0 8px 24px rgba(0,0,0,.08);
    }
    .nav-links.open ~ .nav-cta { display:none; }

    .why-us-inner { grid-template-columns:1fr; }
    .why-us-image { display:none; }
    .contact-grid { grid-template-columns:1fr; }
    .footer-inner { grid-template-columns:1fr; gap:28px; }
    .process-arrow { display:none; }
    .process-steps { gap:16px; }
    .why-us-text .section-title { text-align:center; }
    .section-title.left { text-align:center; }
    .contact-info .section-label { display:block; text-align:center; }
}

@media (max-width: 600px) {
    .section { padding:60px 0; }
    .hero { padding:100px 20px 60px; }
    .hero-bullets { align-items:flex-start; padding-left:10%; }
    .hero-ctas { flex-direction:column; align-items:center; }
    .hero-btn { width:100%; max-width:340px; text-align:center; }

    .trust-sep { display:none; }
    .trust-inner { gap:24px; }

    .calc-result-grid { grid-template-columns:1fr; }
    .result-card { border-right:none; border-bottom:1px solid var(--border); }
    .result-card:last-child { border-bottom:none; }

    .form-row { grid-template-columns:1fr; }
    .calc-cta-box { flex-direction:column; text-align:center; }

    .pricing-card.featured { transform:none; }
    .pricing-card.featured:hover { transform:translateY(-8px); }

    .final-cta-btns { flex-direction:column; align-items:center; }
    .final-cta-card { padding:48px 24px; }
    .big-btn { width:100%; max-width:320px; text-align:center; }
}
