/* ============================================
   IRGC SOLUTIONS — V2 Design
   Less template. More personality.
   ============================================ */

:root {
    --navy: #0D2B4E;
    --navy-deep: #081C35;
    --navy-light: #143D6B;
    --blue: #2EA3F2;
    --blue-light: #56B5F5;
    --blue-dark: #1A8AD8;
    --blue-glow: rgba(46, 163, 242, 0.12);
    --orange: #F7941D;
    --orange-dark: #E07A0C;
    --orange-light: #FBAB40;
    --gold: #D4A553;
    --red: #E74C3C;
    --green: #2ECC71;
    --white: #FFFFFF;
    --g50: #F9FAFB;
    --g100: #F3F4F6;
    --g200: #E5E7EB;
    --g300: #D1D5DB;
    --g400: #9CA3AF;
    --g500: #6B7280;
    --g600: #4B5563;
    --g700: #374151;
    --g800: #1F2937;
    --g900: #111827;

    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;
    --radius: 8px;
    --radius-lg: 14px;
    --container: 1180px;
    --nav-h: 102px;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; -webkit-font-smoothing:antialiased; }
body { font-family:var(--font); font-size:16px; line-height:1.6; color:var(--g800); background:var(--white); overflow-x:hidden; }
img { max-width:100%; display:block; }
a { text-decoration:none; color:inherit; }
ul { list-style:none; }

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

/* === BUTTONS === */
.btn { display:inline-flex; align-items:center; justify-content:center; gap:8px; font-family:var(--font); font-weight:600; font-size:14px; padding:10px 24px; border-radius:var(--radius); border:2px solid transparent; cursor:pointer; transition:all .2s ease; white-space:nowrap; }
.btn-primary { background:var(--orange); color:var(--white); border-color:var(--orange); }
.btn-primary:hover { background:var(--orange-dark); border-color:var(--orange-dark); transform:translateY(-1px); box-shadow:0 8px 24px rgba(247,148,29,.3); }
.btn-lg { padding:14px 32px; font-size:15px; }
.btn-full { width:100%; }
.btn-nav { padding:8px 20px; font-size:13px; }

/* === NAV === */
.navbar { position:sticky; top:0; z-index:1000; background:rgba(255,255,255,.97); backdrop-filter:blur(20px); border-bottom:1px solid var(--g200); transition:box-shadow .2s; }
.navbar.scrolled { box-shadow:0 1px 12px rgba(0,0,0,.06); }
.nav-inner { display:flex; align-items:center; justify-content:space-between; height:var(--nav-h); }
.logo { display:flex; align-items:center; gap:10px; }
.logo-img { height:90px; width:auto; }
.logo-text { display:flex; flex-direction:column; line-height:1.15; }
.logo-name { font-family:var(--font-display); font-weight:700; font-size:15px; color:var(--navy); letter-spacing:-.02em; }
.logo-sub { font-size:11px; color:var(--g400); font-weight:400; }
.nav-links { display:flex; gap:4px; }
.nav-link { font-size:14px; font-weight:500; color:var(--g600); padding:6px 12px; border-radius:6px; transition:all .15s; }
.nav-link:hover { color:var(--navy); background:var(--g50); }
.nav-actions { display:flex; align-items:center; gap:16px; }
.nav-phone { font-size:13px; font-weight:600; color:var(--navy); }
.mobile-toggle { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:8px; }
.mobile-toggle span { display:block; width:20px; height:2px; background:var(--navy); border-radius:2px; }

/* === HERO === */
.hero { position:relative; background:var(--navy); color:var(--white); overflow:hidden; }
.hero-bg { position:absolute; inset:0; }
.hero-bg-img { width:100%; height:100%; object-fit:cover; opacity:.35; filter:saturate(.3); }
.hero-bg::after { content:''; position:absolute; inset:0; background:linear-gradient(135deg, rgba(13,43,78,.75) 0%, rgba(8,28,53,.55) 100%); }
.hero-inner { position:relative; display:grid; grid-template-columns:1fr 420px; gap:64px; align-items:center; padding:116px 24px 60px; min-height:85vh; }
.hero-eyebrow { font-size:13px; font-weight:500; color:var(--orange-light); letter-spacing:.04em; text-transform:uppercase; margin-bottom:20px; }
.hero-title { font-family:var(--font-display); font-size:52px; font-weight:700; line-height:1.08; letter-spacing:-.03em; margin-bottom:24px; }
.hero-highlight { color:var(--orange); font-size:1.35em; display:block; margin-top:4px; }
.hero-subtitle { font-size:17px; color:rgba(255,255,255,.6); line-height:1.75; margin-bottom:36px; max-width:520px; }
.hero-ctas { display:flex; align-items:center; gap:24px; flex-wrap:wrap; }
.hero-phone-link { font-size:14px; color:rgba(255,255,255,.5); transition:color .2s; }
.hero-phone-link:hover { color:var(--white); }
.hero-phone-link strong { color:rgba(255,255,255,.8); }

/* Hero Ticker — the unique element */
.hero-ticker { background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08); border-radius:var(--radius-lg); padding:20px; backdrop-filter:blur(12px); }
.ticker-label { font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:.1em; color:var(--blue-light); margin-bottom:14px; display:flex; align-items:center; gap:8px; }
.ticker-label::before { content:''; width:6px; height:6px; background:var(--green); border-radius:50%; animation:pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }
.ticker-row { display:flex; align-items:center; gap:10px; padding:10px 0; border-bottom:1px solid rgba(255,255,255,.05); font-size:13px; }
.ticker-row:last-child { border-bottom:none; }
.ticker-dot { width:8px; height:8px; border-radius:50%; flex-shrink:0; }
.ticker-dot.green { background:var(--green); }
.ticker-dot.blue { background:var(--blue); }
.ticker-dot.yellow { background:var(--gold); }
.ticker-text { flex:1; color:rgba(255,255,255,.7); }
.ticker-text strong { color:var(--white); }
.ticker-time { font-size:11px; color:rgba(255,255,255,.35); white-space:nowrap; }

/* Hero Bottom Strip */
.hero-bottom-strip { position:relative; background:rgba(0,0,0,.25); border-top:1px solid rgba(255,255,255,.06); padding:20px 0; }
.hero-strip-inner { display:flex; align-items:center; justify-content:center; gap:40px; }
.strip-stat { display:flex; align-items:baseline; gap:6px; }
.strip-num { font-family:var(--font-display); font-size:28px; font-weight:700; color:var(--white); letter-spacing:-.02em; }
.strip-pct { font-family:var(--font-display); font-size:20px; font-weight:700; color:var(--blue-light); }
.strip-label { font-size:12px; color:rgba(255,255,255,.4); }
.strip-divider { width:1px; height:28px; background:rgba(255,255,255,.1); }

/* === URGENCY SECTION === */
.urgency { padding:100px 0; background:var(--white); }
.urgency-grid { display:grid; grid-template-columns:1fr 1.3fr; gap:80px; align-items:start; }
.urgency-title { font-family:var(--font-display); font-size:36px; font-weight:700; color:var(--navy); line-height:1.15; letter-spacing:-.02em; margin-bottom:16px; }
.urgency-big-num { font-family:var(--font-display); font-size:120px; font-weight:700; color:var(--red); line-height:1; letter-spacing:-.04em; margin-bottom:8px; opacity:.9; }
.urgency-caption { font-size:16px; color:var(--g500); line-height:1.7; }

/* Urgency Timeline */
.urgency-timeline { background:var(--g50); border:1px solid var(--g200); border-radius:var(--radius-lg); padding:32px; }
.urgency-tl-label { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.1em; color:var(--g400); margin-bottom:20px; }
.urgency-tl-bar { position:relative; height:6px; background:var(--g200); border-radius:99px; margin-bottom:50px; }
.urgency-tl-fill { position:absolute; left:0; top:0; height:100%; width:0; background:linear-gradient(90deg, var(--blue), var(--red)); border-radius:99px; transition:width 2s cubic-bezier(.25,.46,.45,.94); }
.urgency-tl-markers { position:absolute; top:14px; left:0; right:0; }
.urgency-tl-mark { position:absolute; font-size:11px; color:var(--g500); line-height:1.4; transform:translateX(-50%); }
.urgency-tl-mark span { display:block; font-family:var(--font-display); font-weight:700; font-size:13px; color:var(--navy); }
.urgency-tl-mark.danger span { color:var(--red); }
.urgency-tl-note { font-size:14px; color:var(--g500); line-height:1.6; }
.urgency-tl-note strong { color:var(--orange); }

/* === THE FIFTH PIECE === */
.fifth-piece { padding:100px 0; background:var(--navy); color:var(--white); position:relative; overflow:hidden; }
.fifth-piece::before { content:''; position:absolute; top:-100px; left:50%; transform:translateX(-50%); width:800px; height:800px; background:radial-gradient(circle, rgba(46,163,242,.05) 0%, transparent 60%); border-radius:50%; }
.fifth-layout { display:grid; grid-template-columns:400px 1fr; gap:64px; align-items:center; position:relative; }
.fifth-visual { overflow:visible; }
/* Pie Chart */
.pie-wrap { position:relative; width:100%; max-width:380px; aspect-ratio:1; margin:0 auto; }
.pie-chart {
    width:65%; aspect-ratio:1; border-radius:50%; position:absolute; top:50%; left:50%;
    transform:translate(-50%,-50%) scale(0.85); opacity:0;
    background:conic-gradient(
        from 0deg,
        rgba(255,255,255,.1) 0deg 70.5deg, var(--navy) 70.5deg 72deg,
        rgba(255,255,255,.06) 72deg 142.5deg, var(--navy) 142.5deg 144deg,
        rgba(255,255,255,.1) 144deg 214.5deg, var(--navy) 214.5deg 216deg,
        rgba(255,255,255,.06) 216deg 286.5deg, var(--navy) 286.5deg 360deg
    );
    transition:opacity .8s ease, transform .8s cubic-bezier(.25,.46,.45,.94);
}
.pie-wrap.active .pie-chart {
    opacity:1; transform:translate(-50%,-50%) scale(1);
    animation:pieGlow 3s ease-in-out 1.5s infinite;
}
.pie-chart::after {
    content:''; position:absolute; inset:0; border-radius:50%; z-index:1;
    background:conic-gradient(from 288deg, var(--orange) 0deg 70.5deg, transparent 70.5deg 360deg);
    opacity:0; transform:scale(0.9); transition:opacity .6s ease .5s, transform .6s ease .5s;
}
.pie-wrap.active .pie-chart::after { opacity:1; transform:scale(1); }
@keyframes pieGlow { 0%,100%{box-shadow:0 0 40px rgba(247,148,29,.1)} 50%{box-shadow:0 0 70px rgba(247,148,29,.22)} }
.pie-hole {
    position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
    width:55%; aspect-ratio:1; border-radius:50%; background:var(--navy);
    display:flex; align-items:center; justify-content:center; text-align:center; z-index:3;
    box-shadow:0 0 30px rgba(13,43,78,.5);
}
.pie-hole-label {
    font-family:var(--font-display); font-size:11px; font-weight:600;
    color:var(--orange-light); letter-spacing:.08em; text-transform:uppercase; padding:0 12px;
}
.pie-label {
    position:absolute; display:flex; align-items:center; gap:8px; white-space:nowrap;
    opacity:0; transition:opacity .5s ease;
}
.pie-wrap.active .pie-label { opacity:1; }
.pie-wrap.active .pie-label-1 { transition-delay:.7s; }
.pie-wrap.active .pie-label-2 { transition-delay:.85s; }
.pie-wrap.active .pie-label-3 { transition-delay:1s; }
.pie-wrap.active .pie-label-4 { transition-delay:1.15s; }
.pie-wrap.active .pie-label-5 { transition-delay:1.4s; }
.pie-label-num {
    font-family:var(--font-display); font-size:18px; font-weight:700;
    color:rgba(255,255,255,.12); min-width:24px; text-align:center;
}
.pie-label-role {
    font-family:var(--font-display); font-size:11px; font-weight:600;
    color:rgba(255,255,255,.35); line-height:1.3;
}
.pie-label-1 { top:12%; left:66%; }
.pie-label-2 { top:56%; left:74%; }
.pie-label-3 { bottom:6%; left:50%; transform:translateX(-50%); }
.pie-label-4 { top:56%; right:68%; flex-direction:row-reverse; text-align:right; }
.pie-label-5 { top:8%; right:54%; flex-direction:row-reverse; text-align:right; }
.pie-label-5 .pie-label-num { color:var(--orange); font-size:22px; }
.pie-label-5 .pie-label-role { color:var(--white); font-size:14px; font-weight:700; }
.fifth-title { font-family:var(--font-display); font-size:32px; font-weight:700; line-height:1.2; letter-spacing:-.02em; margin-bottom:24px; }
.fifth-body { font-size:15px; color:rgba(255,255,255,.55); line-height:1.8; margin-bottom:16px; }
.fifth-body strong { color:var(--orange-light); }

/* === SERVICES MOSAIC === */
.services { padding:100px 0; background:var(--g50); }
.services-header { margin-bottom:48px; }
.services-title { font-family:var(--font-display); font-size:42px; font-weight:700; color:var(--navy); line-height:1.1; letter-spacing:-.03em; margin-bottom:16px; }
.services-sub { font-size:17px; color:var(--g500); line-height:1.7; max-width:600px; }
.services-mosaic { display:grid; grid-template-columns:1fr 1fr; grid-template-rows:auto auto; gap:16px; }
.mosaic-item { position:relative; border-radius:var(--radius-lg); overflow:hidden; min-height:260px; cursor:pointer; }
.mosaic-item.mosaic-large { grid-row:1/3; min-height:540px; }
.mosaic-item img { width:100%; height:100%; object-fit:cover; transition:transform .6s ease; }
.mosaic-item:hover img { transform:scale(1.04); }
.mosaic-overlay { position:absolute; inset:0; background:linear-gradient(to top, rgba(8,28,53,.9) 0%, rgba(8,28,53,.2) 50%, transparent 100%); display:flex; flex-direction:column; justify-content:flex-end; padding:28px; transition:background .3s; }
.mosaic-item:hover .mosaic-overlay { background:linear-gradient(to top, rgba(8,28,53,.95) 0%, rgba(8,28,53,.4) 60%, rgba(8,28,53,.1) 100%); }
.mosaic-overlay h3 { font-family:var(--font-display); font-size:22px; font-weight:700; color:var(--white); margin-bottom:6px; }
.mosaic-overlay p { font-size:13px; color:rgba(255,255,255,.6); line-height:1.6; max-width:340px; opacity:0; transform:translateY(8px); transition:all .3s ease; }
.mosaic-item:hover .mosaic-overlay p { opacity:1; transform:translateY(0); }

/* === PROCESS === */
.process { padding:100px 0; background:var(--white); }
.process-title { font-family:var(--font-display); font-size:36px; font-weight:700; color:var(--navy); letter-spacing:-.02em; margin-bottom:48px; text-align:center; }
.process-steps { display:flex; align-items:flex-start; gap:0; justify-content:center; }
.process-card { flex:1; max-width:240px; text-align:center; padding:0 16px; }
.process-num { font-family:var(--font-display); font-size:48px; font-weight:700; color:var(--blue); line-height:1; margin-bottom:12px; opacity:.25; }
.process-icon-wrap { width:56px; height:56px; background:var(--blue-glow); border-radius:50%; display:flex; align-items:center; justify-content:center; color:var(--blue); margin:0 auto 16px; }
.process-card h3 { font-family:var(--font-display); font-size:17px; font-weight:700; color:var(--navy); margin-bottom:8px; }
.process-card p { font-size:13px; color:var(--g500); line-height:1.6; }
.process-arrow { display:flex; align-items:center; color:var(--g300); margin-top:56px; flex-shrink:0; }

/* === FOR AGENTS === */
.agents { padding:100px 0; background:var(--navy); color:var(--white); position:relative; overflow:hidden; }
.agents::before { content:''; position:absolute; top:-200px; right:-200px; width:600px; height:600px; background:radial-gradient(circle, rgba(46,163,242,.06) 0%, transparent 70%); border-radius:50%; }
.agents-layout { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; position:relative; }
.agents-left { position:relative; border-radius:var(--radius-lg); overflow:hidden; }
.agents-photo { width:100%; height:500px; object-fit:cover; border-radius:var(--radius-lg); }
.agents-photo-overlay { position:absolute; bottom:0; left:0; right:0; background:linear-gradient(to top, rgba(8,28,53,.95), transparent); padding:32px; border-radius:0 0 var(--radius-lg) var(--radius-lg); }
.agents-overlay-stat { display:flex; align-items:baseline; gap:2px; margin-bottom:6px; }
.agents-overlay-num { font-family:var(--font-display); font-size:48px; font-weight:700; color:var(--blue); }
.agents-overlay-of { font-size:20px; color:rgba(255,255,255,.4); }
.agents-photo-overlay p { font-size:13px; color:rgba(255,255,255,.6); }
.agents-title { font-family:var(--font-display); font-size:34px; font-weight:700; line-height:1.15; letter-spacing:-.02em; margin-bottom:20px; }
.agents-sub { font-size:15px; color:rgba(255,255,255,.55); line-height:1.8; margin-bottom:16px; }
.agents-perks { margin:32px 0; display:flex; flex-direction:column; gap:14px; }
.perk { }
.perk-title { font-size:13px; font-weight:600; margin-bottom:5px; }
.perk-bar { height:3px; background:rgba(255,255,255,.08); border-radius:99px; overflow:hidden; }
.perk-fill { height:100%; background:var(--blue); border-radius:99px; transition:width 1.5s cubic-bezier(.25,.46,.45,.94); }

/* === GALLERY / WORK === */
.work { padding:100px 0; background:var(--g50); }
.work-header { display:flex; align-items:baseline; justify-content:space-between; margin-bottom:40px; flex-wrap:wrap; gap:16px; }
.work-title { font-family:var(--font-display); font-size:36px; font-weight:700; color:var(--navy); letter-spacing:-.02em; }
.gallery-filters { display:flex; gap:6px; }
.gallery-filter { background:none; border:1px solid var(--g200); padding:6px 16px; border-radius:99px; font-family:var(--font); font-size:13px; font-weight:500; color:var(--g500); cursor:pointer; transition:all .15s; }
.gallery-filter:hover { border-color:var(--g400); color:var(--navy); }
.gallery-filter.active { background:var(--navy); border-color:var(--navy); color:var(--white); }
.gallery-grid { display:grid; grid-template-columns:repeat(3, 1fr); gap:20px; }
.gallery-item { border-radius:var(--radius-lg); overflow:hidden; background:var(--white); transition:all .25s ease; }
.gallery-item:hover { transform:translateY(-4px); box-shadow:0 16px 40px rgba(0,0,0,.1); }
.gallery-img { position:relative; aspect-ratio:4/3; overflow:hidden; }
.gallery-img img { width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.gallery-item:hover .gallery-img img { transform:scale(1.05); }
.gallery-badge { position:absolute; top:12px; right:12px; background:var(--navy); color:var(--white); font-size:11px; font-weight:700; padding:4px 10px; border-radius:99px; letter-spacing:.02em; }
.gallery-info { padding:16px 20px; }
.gallery-info h4 { font-family:var(--font-display); font-size:15px; font-weight:700; color:var(--navy); margin-bottom:2px; }
.gallery-info p { font-size:13px; color:var(--g500); }

/* === QUOTES === */
.quotes { padding:80px 0; background:var(--white); border-top:1px solid var(--g100); border-bottom:1px solid var(--g100); }
.quotes-marquee { display:flex; gap:40px; align-items:flex-start; }
.quote-block { flex:1; }
.quote-block blockquote { font-family:var(--font-display); font-size:20px; font-weight:500; color:var(--navy); line-height:1.5; letter-spacing:-.01em; margin-bottom:12px; }
.quote-block cite { font-style:normal; font-size:13px; color:var(--g400); }
.quote-divider { width:1px; background:var(--g200); flex-shrink:0; align-self:stretch; }

/* === ESTIMATE === */
.estimate { padding:100px 0; background:var(--navy-deep); color:var(--white); }
.estimate-layout { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:start; }
.estimate-title { font-family:var(--font-display); font-size:38px; font-weight:700; line-height:1.1; letter-spacing:-.02em; margin-bottom:16px; }
.estimate-sub { font-size:16px; color:rgba(255,255,255,.55); line-height:1.7; margin-bottom:32px; }
.estimate-phone-big { display:block; font-family:var(--font-display); font-size:32px; font-weight:700; color:var(--orange); margin-bottom:32px; transition:color .2s; }
.estimate-phone-big:hover { color:var(--orange-light); }
.estimate-extras { display:flex; flex-direction:column; gap:16px; }
.estimate-extra { border-left:2px solid var(--orange); padding-left:16px; }
.estimate-extra strong { display:block; font-size:13px; color:var(--white); }
.estimate-extra span { font-size:12px; color:rgba(255,255,255,.4); }

/* Form */
.estimate-form { background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.08); border-radius:var(--radius-lg); padding:32px; backdrop-filter:blur(8px); }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.form-group { margin-bottom:12px; }
.form-group input, .form-group select, .form-group textarea { width:100%; padding:12px 16px; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1); border-radius:var(--radius); font-family:var(--font); font-size:14px; color:var(--white); outline:none; transition:all .2s; }
.form-group input::placeholder, .form-group textarea::placeholder { color:rgba(255,255,255,.3); }
.form-group select { color:rgba(255,255,255,.5); }
.form-group select option { color:var(--g800); background:var(--white); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color:var(--blue); box-shadow:0 0 0 3px rgba(46,163,242,.15); background:rgba(255,255,255,.08); }
.form-group textarea { resize:vertical; min-height:80px; }
.file-label { display:flex; align-items:center; gap:8px; font-size:13px; font-weight:500; color:var(--blue-light); cursor:pointer; padding:10px 0; }
.form-group input[type="file"] { display:none; }
.form-note { text-align:center; font-size:12px; color:rgba(255,255,255,.3); margin-top:12px; }

/* === CRM STRIP === */
.crm-strip { background:var(--navy); border-top:1px solid rgba(255,255,255,.05); padding:14px 0; }
.crm-strip-inner { text-align:center; font-size:13px; color:rgba(255,255,255,.4); }
.crm-strip-inner strong { color:rgba(255,255,255,.7); }

/* === FOOTER === */
.footer { background:var(--navy-deep); color:rgba(255,255,255,.5); padding:60px 0 0; }
.footer-top { display:flex; justify-content:space-between; align-items:flex-start; gap:48px; padding-bottom:40px; border-bottom:1px solid rgba(255,255,255,.06); flex-wrap:wrap; }
.footer-brand { max-width:280px; }
.footer-brand .logo { margin-bottom:16px; }
.footer-brand .logo-name { color:var(--white); }
.footer-brand .logo-sub { color:rgba(255,255,255,.4); }
.footer-brand .logo-img { height:40px; }
.footer-tagline { font-size:13px; line-height:1.7; }
.footer-nav { display:flex; gap:24px; }
.footer-nav a { font-size:13px; color:rgba(255,255,255,.4); transition:color .15s; }
.footer-nav a:hover { color:var(--blue-light); }
.footer-contact-block { display:flex; flex-direction:column; gap:6px; font-size:13px; }
.footer-phone { font-family:var(--font-display); font-size:18px; font-weight:700; color:var(--white); margin-bottom:4px; }
.footer-social { display:flex; gap:10px; margin-top:8px; }
.footer-social a { width:32px; height:32px; background:rgba(255,255,255,.06); border-radius:6px; display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,.4); transition:all .15s; }
.footer-social a:hover { background:var(--blue); color:var(--white); }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; padding:20px 0; font-size:12px; color:rgba(255,255,255,.25); }
.footer-bottom-links { display:flex; gap:20px; }
.footer-bottom-links a { color:rgba(255,255,255,.25); transition:color .15s; }
.footer-bottom-links a:hover { color:rgba(255,255,255,.5); }

/* === MOBILE CTA === */
.mobile-cta { display:none; position:fixed; bottom:0; left:0; right:0; z-index:999; background:var(--white); border-top:1px solid var(--g200); padding:10px; gap:10px; box-shadow:0 -4px 16px rgba(0,0,0,.08); }
.mobile-cta-call { display:flex; align-items:center; justify-content:center; gap:6px; padding:12px; border:1px solid var(--g200); border-radius:var(--radius); font-weight:600; font-size:14px; color:var(--navy); flex:1; }
.mobile-cta-estimate { display:flex; align-items:center; justify-content:center; padding:12px; background:var(--orange); border-radius:var(--radius); font-weight:600; font-size:14px; color:var(--white); flex:2; }

/* === SCROLL REVEAL === */
.reveal { opacity:0; transform:translateY(24px); transition:all .6s cubic-bezier(.25,.46,.45,.94); }
.reveal.visible { opacity:1; transform:translateY(0); }

/* === RESPONSIVE === */
@media (max-width:1024px) {
    .hero-inner { grid-template-columns:1fr; gap:40px; min-height:auto; padding:80px 24px 40px; }
    .hero-ticker { max-width:480px; }
    .urgency-grid { grid-template-columns:1fr; gap:48px; }
    .services-mosaic { grid-template-columns:1fr 1fr; }
    .mosaic-item.mosaic-large { grid-row:auto; min-height:300px; }
    .fifth-layout { grid-template-columns:1fr; gap:48px; }
    .pie-wrap { max-width:340px; }
    .agents-layout { grid-template-columns:1fr; gap:40px; }
    .agents-photo { height:360px; }
    .estimate-layout { grid-template-columns:1fr; gap:40px; }
    .footer-top { flex-direction:column; gap:32px; }
}

@media (max-width:768px) {
    .nav-links { display:none; position:fixed; top:var(--nav-h); left:0; right:0; background:var(--white); flex-direction:column; padding:20px; border-bottom:1px solid var(--g200); box-shadow:0 8px 24px rgba(0,0,0,.08); }
    .nav-links.open { display:flex; }
    .nav-phone { display:none; }
    .mobile-toggle { display:flex; }
    .hero-title { font-size:36px; }
    .hero-inner { padding:76px 24px 32px; }
    .hero-strip-inner { flex-wrap:wrap; gap:20px; justify-content:space-around; }
    .strip-divider { display:none; }
    .urgency-big-num { font-size:80px; }
    .urgency-title { font-size:28px; }
    .services-title { font-size:32px; }
    .services-mosaic { grid-template-columns:1fr; }
    .mosaic-item { min-height:220px; }
    .mosaic-overlay p { opacity:1; transform:none; }
    .process-steps { flex-direction:column; align-items:center; gap:8px; }
    .process-arrow { transform:rotate(90deg); margin:0; }
    .fifth-layout { grid-template-columns:1fr; }
    .pie-wrap { max-width:280px; }
    .pie-label-num { font-size:14px; }
    .pie-label-role { font-size:10px; }
    .pie-label-5 .pie-label-num { font-size:18px; }
    .pie-label-5 .pie-label-role { font-size:12px; }
    .fifth-title { font-size:24px; }
    .agents-title { font-size:26px; }
    .gallery-grid { grid-template-columns:1fr 1fr; gap:12px; }
    .quotes-marquee { flex-direction:column; gap:32px; }
    .quote-divider { width:100%; height:1px; }
    .quote-block blockquote { font-size:18px; }
    .estimate-title { font-size:28px; }
    .estimate-phone-big { font-size:24px; }
    .form-row { grid-template-columns:1fr; }
    .work-header { flex-direction:column; }
    .footer-bottom { flex-direction:column; gap:8px; text-align:center; }
    .mobile-cta { display:flex; }
    .footer { padding-bottom:72px; }
}

@media (max-width:480px) {
    .hero-title { font-size:30px; }
    .hero-ctas { flex-direction:column; align-items:stretch; }
    .hero-phone-link { text-align:center; }
    .gallery-grid { grid-template-columns:1fr; }
    .strip-stat { flex-direction:column; align-items:center; gap:2px; text-align:center; }
}
