/* ========================================
   GALINDO FOUNDATION REPAIR — SHARED CSS
   ======================================== */

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

:root {
  --navy: #1a2744;
  --navy-dark: #0f1a2e;
  --navy-mid: #243352;
  --orange: #f97316;
  --orange-hover: #ea680c;
  --orange-light: #fff7ed;
  --green: #16a34a;
  --green-light: #f0fdf4;
  --red: #ef4444;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--gray-800); line-height: 1.6; background: var(--white); -webkit-font-smoothing: antialiased; }

/* ===== NAV ===== */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: var(--navy-dark); border-bottom: 3px solid var(--orange); }
.nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 0 24px; height: 72px; }
.nav-logo { font-family: var(--font-display); font-size: 1.6rem; letter-spacing: 1px; color: var(--white); text-decoration: none; }
.nav-logo span { color: var(--orange); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: var(--gray-200); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--orange); }
.nav-links a.active { color: var(--orange); }
.nav-cta { background: var(--orange) !important; color: var(--white) !important; padding: 10px 22px !important; border-radius: 6px; font-weight: 700 !important; font-size: 0.85rem !important; letter-spacing: 0.5px; text-transform: uppercase; transition: background 0.2s !important; }
.nav-cta:hover { background: var(--orange-hover) !important; }
.nav-phone { color: var(--orange) !important; font-weight: 700 !important; font-size: 0.95rem !important; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; transition: 0.3s; }
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links { display: none; position: absolute; top: 72px; left: 0; right: 0; background: var(--navy-dark); flex-direction: column; padding: 20px 24px; gap: 16px; border-top: 1px solid rgba(255,255,255,0.1); }
  .nav-links.active { display: flex; }
}

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 16px 32px; border-radius: 8px; font-family: var(--font-body); font-weight: 700; font-size: 1rem; text-decoration: none; transition: all 0.25s; cursor: pointer; border: none; }
.btn-primary { background: var(--orange); color: var(--white); box-shadow: 0 4px 20px rgba(249,115,22,0.4); }
.btn-primary:hover { background: var(--orange-hover); transform: translateY(-2px); box-shadow: 0 6px 28px rgba(249,115,22,0.5); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.25); }
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }
.btn-outline-dark { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline-dark:hover { border-color: var(--orange); color: var(--orange); }
.btn-sm { padding: 12px 24px; font-size: 0.9rem; }
.btn-lg { padding: 20px 40px; font-size: 1.1rem; }
.btn-green { background: var(--green); color: var(--white); box-shadow: 0 4px 20px rgba(22,163,74,0.3); }
.btn-green:hover { background: #15803d; transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { background: var(--gray-100); transform: translateY(-2px); }
.btn-block { width: 100%; justify-content: center; }

/* ===== SECTIONS ===== */
.section { padding: 100px 24px; }
.section-sm { padding: 60px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-narrow { max-width: 800px; margin: 0 auto; }
.section-label { font-family: var(--font-display); font-size: 0.95rem; color: var(--orange); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 8px; }
.section-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); color: var(--navy); letter-spacing: 1px; margin-bottom: 16px; line-height: 1; }
.section-title-white { color: var(--white); }
.section-subtitle { font-size: 1.05rem; color: var(--gray-600); max-width: 650px; margin-bottom: 48px; }
.section-subtitle-light { color: var(--gray-400); }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.bg-gray { background: var(--gray-50); }
.bg-navy { background: var(--navy); }
.bg-navy-dark { background: var(--navy-dark); }

/* ===== HERO (reused on subpages) ===== */
.hero { position: relative; padding: 160px 24px 100px; background: var(--navy-dark); overflow: hidden; min-height: 85vh; display: flex; align-items: center; }
.hero-sub { position: relative; padding: 140px 24px 80px; background: var(--navy-dark); overflow: hidden; }
.hero-sub::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 80%, rgba(249,115,22,0.1) 0%, transparent 60%); }
.hero-sub .hero-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; }
.hero-sub h1 { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem); color: var(--white); letter-spacing: 1px; margin-bottom: 16px; line-height: 0.95; }
.hero-sub h1 em { font-style: normal; color: var(--orange); }
.hero-sub p { color: var(--gray-400); font-size: 1.1rem; max-width: 600px; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 80%, rgba(249,115,22,0.12) 0%, transparent 60%), radial-gradient(ellipse at 80% 20%, rgba(249,115,22,0.06) 0%, transparent 50%); }
.hero::after { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255,255,255,0.015) 60px, rgba(255,255,255,0.015) 61px); }
.hero-inner { max-width: 1200px; margin: 0 auto; width: 100%; position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(249,115,22,0.15); border: 1px solid rgba(249,115,22,0.3); padding: 6px 16px; border-radius: 100px; color: var(--orange); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px; animation: fadeInUp 0.6s ease both; }
.hero-badge::before { content: '💰'; }
.hero h1 { font-family: var(--font-display); font-size: clamp(3rem, 6vw, 5rem); line-height: 0.95; color: var(--white); letter-spacing: 1px; margin-bottom: 20px; animation: fadeInUp 0.6s ease 0.1s both; }
.hero h1 em { font-style: normal; color: var(--orange); position: relative; }
.hero h1 em::after { content: ''; position: absolute; bottom: 2px; left: 0; right: 0; height: 6px; background: var(--orange); opacity: 0.3; transform: skewX(-12deg); }
.hero-promises { display: flex; flex-direction: column; gap: 8px; margin-bottom: 32px; animation: fadeInUp 0.6s ease 0.25s both; }
.hero-promises li { list-style: none; display: flex; align-items: center; gap: 10px; color: var(--gray-300); font-size: 0.95rem; font-weight: 500; }
.hero-promises li::before { content: '✓'; display: flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 50%; background: rgba(22,163,74,0.2); color: #4ade80; font-size: 0.7rem; font-weight: 700; flex-shrink: 0; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeInUp 0.6s ease 0.3s both; }
.hero-no-pressure { font-size: 0.8rem; color: var(--gray-400); margin-top: 12px; animation: fadeInUp 0.6s ease 0.35s both; }
.hero-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 40px; backdrop-filter: blur(10px); animation: fadeInUp 0.6s ease 0.4s both; }
.hero-card h3 { font-family: var(--font-display); font-size: 1.4rem; color: var(--white); letter-spacing: 1px; margin-bottom: 24px; }
.stat-row { display: flex; align-items: center; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.stat-row:last-child { border-bottom: none; }
.stat-num { font-family: var(--font-display); font-size: 2.2rem; color: var(--orange); line-height: 1; min-width: 80px; }
.stat-label { color: var(--gray-400); font-size: 0.9rem; }
@media (max-width: 768px) { .hero-inner { grid-template-columns: 1fr; gap: 40px; } .hero { padding: 140px 24px 80px; min-height: auto; } }

/* ===== TRUST BAR ===== */
.trust-bar { background: var(--orange); padding: 0 24px; }
.trust-bar-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(5, 1fr); }
.trust-item { display: flex; align-items: center; gap: 10px; padding: 18px 12px; color: var(--white); font-size: 0.82rem; font-weight: 600; border-right: 1px solid rgba(255,255,255,0.2); }
.trust-item:last-child { border-right: none; }
.trust-icon { font-size: 1.3rem; }
@media (max-width: 768px) { .trust-bar-inner { grid-template-columns: 1fr 1fr; } .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); } }

/* ===== CARDS ===== */
.card { background: var(--white); border: 1px solid var(--gray-200); border-radius: 12px; padding: 32px; transition: all 0.3s; }
.card:hover { box-shadow: 0 8px 30px rgba(26,39,68,0.08); transform: translateY(-2px); }

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: 12px; padding: 36px 28px; transition: all 0.3s; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { border-color: var(--orange); box-shadow: 0 8px 30px rgba(26,39,68,0.08); transform: translateY(-4px); }
.service-icon { width: 56px; height: 56px; border-radius: 12px; background: var(--orange-light); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 20px; }
.service-card h3 { font-family: var(--font-display); font-size: 1.4rem; color: var(--navy); letter-spacing: 0.5px; margin-bottom: 10px; }
.service-card p { color: var(--gray-600); font-size: 0.9rem; line-height: 1.7; }
.service-card .learn-more { display: inline-flex; align-items: center; gap: 6px; color: var(--orange); font-weight: 600; font-size: 0.85rem; text-decoration: none; margin-top: 16px; transition: gap 0.2s; }
.service-card:hover .learn-more { gap: 10px; }
@media (max-width: 768px) { .services-grid { grid-template-columns: 1fr; } }

/* ===== SIGNS ===== */
.signs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.sign-card { display: flex; gap: 16px; align-items: flex-start; padding: 24px; background: var(--white); border-radius: 10px; border: 1px solid var(--gray-200); border-left: 4px solid var(--orange); transition: transform 0.2s, box-shadow 0.2s; }
.sign-card:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.sign-icon { font-size: 1.8rem; flex-shrink: 0; line-height: 1; }
.sign-card h4 { font-size: 0.95rem; color: var(--navy); margin-bottom: 4px; font-weight: 700; }
.sign-card p { font-size: 0.83rem; color: var(--gray-600); line-height: 1.6; }
@media (max-width: 768px) { .signs-grid { grid-template-columns: 1fr; } }

/* ===== EDUCATION ===== */
.edu-section { background: var(--navy); color: var(--white); position: relative; overflow: hidden; }
.edu-section::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(249,115,22,0.03) 40px, rgba(249,115,22,0.03) 80px); }
.edu-inner { position: relative; z-index: 2; }
.edu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.edu-points { display: flex; flex-direction: column; gap: 28px; }
.edu-point { display: flex; gap: 16px; }
.edu-num { font-family: var(--font-display); font-size: 2rem; color: var(--orange); line-height: 1; min-width: 36px; }
.edu-point h4 { font-size: 1.05rem; margin-bottom: 6px; }
.edu-point p { font-size: 0.88rem; color: var(--gray-400); line-height: 1.7; }
.edu-highlight { background: var(--navy-mid); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 40px; }
.edu-highlight h3 { font-family: var(--font-display); font-size: 1.6rem; letter-spacing: 1px; margin-bottom: 16px; color: var(--orange); }
.edu-highlight p { color: var(--gray-400); font-size: 0.92rem; line-height: 1.8; margin-bottom: 12px; }
.edu-highlight .money { font-family: var(--font-display); font-size: 2.8rem; color: var(--orange); line-height: 1; margin: 20px 0 8px; }
.edu-highlight .money-label { color: var(--gray-300); font-size: 0.85rem; margin-bottom: 24px; }
@media (max-width: 768px) { .edu-grid { grid-template-columns: 1fr; } }

/* ===== GUARANTEES ===== */
.guarantee-section { background: var(--green-light); border-top: 4px solid var(--green); border-bottom: 4px solid var(--green); }
.guarantee-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.guarantee-card { background: var(--white); border-radius: 14px; padding: 36px 28px; text-align: center; box-shadow: 0 2px 12px rgba(0,0,0,0.04); border: 2px solid transparent; transition: border-color 0.2s; }
.guarantee-card:hover { border-color: var(--green); }
.guarantee-icon { font-size: 2.8rem; margin-bottom: 16px; display: block; }
.guarantee-card h3 { font-family: var(--font-display); font-size: 1.35rem; color: var(--navy); letter-spacing: 0.5px; margin-bottom: 10px; }
.guarantee-card p { font-size: 0.88rem; color: var(--gray-600); line-height: 1.7; }
.guarantee-badge { display: inline-block; margin-top: 14px; background: var(--green-light); border: 1px solid var(--green); color: var(--green); padding: 4px 14px; border-radius: 100px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
@media (max-width: 768px) { .guarantee-grid { grid-template-columns: 1fr; } }

/* ===== PROCESS STEPS ===== */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 40px; left: 12.5%; right: 12.5%; height: 3px; background: var(--gray-200); z-index: 0; }
.process-step { text-align: center; position: relative; z-index: 1; padding: 0 16px; }
.step-num { width: 80px; height: 80px; border-radius: 50%; background: var(--orange); color: var(--white); font-family: var(--font-display); font-size: 2rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; box-shadow: 0 4px 16px rgba(249,115,22,0.3); }
.process-step h4 { font-family: var(--font-display); font-size: 1.15rem; color: var(--navy); letter-spacing: 0.5px; margin-bottom: 8px; }
.process-step p { font-size: 0.83rem; color: var(--gray-600); line-height: 1.6; }
.process-step .step-time { font-size: 0.75rem; color: var(--orange); font-weight: 700; text-transform: uppercase; margin-top: 8px; }
@media (max-width: 768px) { .process-steps { grid-template-columns: 1fr 1fr; gap: 32px; } .process-steps::before { display: none; } }

/* ===== COMPARE TABLE ===== */
.compare-table { width: 100%; border-collapse: separate; border-spacing: 0; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,0.06); }
.compare-table th, .compare-table td { padding: 18px 24px; text-align: left; font-size: 0.9rem; }
.compare-table thead th { background: var(--navy); color: var(--white); font-family: var(--font-display); font-size: 1.05rem; letter-spacing: 0.5px; }
.compare-table tbody tr { border-bottom: 1px solid var(--gray-200); }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody td { background: var(--white); color: var(--gray-600); }
.compare-table .col-us { background: var(--orange-light) !important; color: var(--navy) !important; font-weight: 700; }
.compare-table .col-them { color: var(--gray-400); }
.compare-check { color: var(--green); font-weight: 700; }
.compare-x { color: var(--red); }
@media (max-width: 768px) { .compare-table { font-size: 0.8rem; } .compare-table th, .compare-table td { padding: 12px 10px; } }

/* ===== WHY US ===== */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-list { display: flex; flex-direction: column; gap: 20px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; padding: 20px; background: var(--white); border-radius: 10px; border: 1px solid var(--gray-200); transition: border-color 0.2s; }
.why-item:hover { border-color: var(--orange); }
.why-check { width: 36px; height: 36px; border-radius: 8px; background: var(--orange); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }
.why-item h4 { font-size: 1rem; color: var(--navy); margin-bottom: 4px; }
.why-item p { font-size: 0.85rem; color: var(--gray-600); }
.why-highlight { background: var(--navy); border-radius: 16px; padding: 48px; color: var(--white); text-align: center; }
.why-highlight .big-price { font-family: var(--font-display); font-size: 4rem; color: var(--orange); line-height: 1; margin-bottom: 8px; }
.why-highlight h3 { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 1px; margin-bottom: 12px; }
.why-highlight p { color: var(--gray-400); font-size: 0.95rem; margin-bottom: 28px; }
@media (max-width: 768px) { .why-grid { grid-template-columns: 1fr; } }

/* ===== REVIEWS ===== */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: 12px; padding: 32px; }
.review-stars { color: var(--orange); font-size: 1.1rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: 0.9rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.review-author { font-weight: 700; color: var(--navy); font-size: 0.9rem; }
.review-location { font-size: 0.8rem; color: var(--gray-400); }
@media (max-width: 768px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ===== FAQ ===== */
.faq-grid { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item { background: var(--white); border: 1px solid var(--gray-200); border-radius: 10px; overflow: hidden; }
.faq-question { width: 100%; padding: 22px 28px; display: flex; justify-content: space-between; align-items: center; background: none; border: none; cursor: pointer; font-family: var(--font-body); font-size: 1rem; font-weight: 700; color: var(--navy); text-align: left; transition: background 0.2s; }
.faq-question:hover { background: var(--gray-50); }
.faq-arrow { font-size: 1.2rem; color: var(--orange); transition: transform 0.3s; flex-shrink: 0; margin-left: 16px; }
.faq-item.active .faq-arrow { transform: rotate(180deg); }
.faq-answer { padding: 0 28px; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-item.active .faq-answer { padding: 0 28px 24px; max-height: 500px; }
.faq-answer p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.8; }

/* ===== CTA STRIP ===== */
.cta-strip { background: var(--navy); padding: 80px 24px; text-align: center; position: relative; overflow: hidden; }
.cta-strip::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(249,115,22,0.04) 40px, rgba(249,115,22,0.04) 80px); }
.cta-strip h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem); color: var(--white); letter-spacing: 1px; margin-bottom: 12px; position: relative; }
.cta-strip p { color: var(--gray-400); font-size: 1.05rem; margin-bottom: 8px; position: relative; }
.cta-strip .btn { position: relative; margin-top: 24px; }
.cta-phone { display: block; margin-top: 16px; font-family: var(--font-display); font-size: 2rem; color: var(--orange); text-decoration: none; letter-spacing: 2px; position: relative; }
.cta-strip .reassurance { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-top: 24px; position: relative; }
.cta-strip .reassurance span { color: var(--gray-400); font-size: 0.8rem; display: flex; align-items: center; gap: 6px; }
.cta-strip .reassurance span::before { content: '✓'; color: #4ade80; font-weight: 700; }

/* ===== INLINE CTA ===== */
.inline-cta { background: var(--orange-light); border: 2px solid var(--orange); border-radius: 12px; padding: 28px 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 48px; flex-wrap: wrap; }
.inline-cta p { font-size: 1rem; color: var(--navy); font-weight: 600; }
.inline-cta .small { font-size: 0.82rem; color: var(--gray-600); font-weight: 400; }

/* ===== FORMS ===== */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 14px 16px; border: 2px solid var(--gray-200); border-radius: 8px;
  font-family: var(--font-body); font-size: 0.95rem; color: var(--gray-800);
  transition: border-color 0.2s; background: var(--white);
}
.form-input:focus, .form-textarea:focus, .form-select:focus { outline: none; border-color: var(--orange); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 768px) { .form-row { grid-template-columns: 1fr; } }

/* ===== BLOG ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: 12px; overflow: hidden; transition: all 0.3s; text-decoration: none; color: inherit; display: block; }
.blog-card:hover { box-shadow: 0 8px 30px rgba(26,39,68,0.08); transform: translateY(-4px); }
.blog-thumb { height: 180px; background: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.blog-body { padding: 24px; }
.blog-tag { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--orange); margin-bottom: 8px; }
.blog-card h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 8px; line-height: 1.4; }
.blog-card p { font-size: 0.83rem; color: var(--gray-600); line-height: 1.6; }
.blog-meta { font-size: 0.75rem; color: var(--gray-400); margin-top: 12px; }
@media (max-width: 768px) { .blog-grid { grid-template-columns: 1fr; } }

/* ===== TEAM ===== */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card { text-align: center; }
.team-avatar { width: 120px; height: 120px; border-radius: 50%; background: var(--navy); margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; border: 4px solid var(--orange); }
.team-card h4 { font-family: var(--font-display); font-size: 1.2rem; color: var(--navy); letter-spacing: 0.5px; }
.team-card .role { font-size: 0.82rem; color: var(--orange); font-weight: 600; margin-bottom: 8px; }
.team-card p { font-size: 0.83rem; color: var(--gray-600); max-width: 280px; margin: 0 auto; }
@media (max-width: 768px) { .team-grid { grid-template-columns: 1fr; } }

/* ===== FOOTER ===== */
.footer { background: var(--navy-dark); padding: 60px 24px 30px; border-top: 3px solid var(--orange); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand { font-family: var(--font-display); font-size: 1.4rem; color: var(--white); margin-bottom: 12px; }
.footer-brand span { color: var(--orange); }
.footer-desc { color: var(--gray-400); font-size: 0.85rem; line-height: 1.7; max-width: 300px; }
.footer h4 { font-family: var(--font-display); font-size: 1rem; color: var(--white); letter-spacing: 1px; margin-bottom: 16px; }
.footer a { display: block; color: var(--gray-400); text-decoration: none; font-size: 0.85rem; padding: 4px 0; transition: color 0.2s; }
.footer a:hover { color: var(--orange); }
.footer-bottom { max-width: 1200px; margin: 40px auto 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.06); display: flex; justify-content: space-between; color: var(--gray-400); font-size: 0.8rem; flex-wrap: wrap; gap: 8px; }
@media (max-width: 768px) { .footer-inner { grid-template-columns: 1fr 1fr; } }

/* ===== POPUPS ===== */
.popup-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 9998; display: none; align-items: center; justify-content: center; padding: 24px; backdrop-filter: blur(4px); }
.popup-overlay.active { display: flex; }
.popup { background: var(--white); border-radius: 16px; max-width: 520px; width: 100%; position: relative; overflow: hidden; animation: popIn 0.3s ease; }
.popup-close { position: absolute; top: 12px; right: 16px; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--gray-400); z-index: 2; padding: 4px; }
.popup-close:hover { color: var(--gray-800); }
.popup-header { background: var(--navy); padding: 32px 36px 24px; text-align: center; }
.popup-header h2 { font-family: var(--font-display); font-size: 2rem; color: var(--white); letter-spacing: 1px; }
.popup-header .popup-highlight { font-family: var(--font-display); font-size: 3.5rem; color: var(--orange); line-height: 1; margin: 8px 0; }
.popup-header p { color: var(--gray-400); font-size: 0.9rem; }
.popup-body { padding: 28px 36px 36px; }
.popup-body .form-input { margin-bottom: 12px; }
.popup-body .btn { width: 100%; justify-content: center; }
.popup-fine { font-size: 0.75rem; color: var(--gray-400); text-align: center; margin-top: 12px; }

/* Timed popup (discount) */
.popup-discount .popup-header { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); }
.popup-discount .popup-header::after { content: '🎉'; font-size: 3rem; position: absolute; top: 12px; left: 20px; opacity: 0.3; }

/* Exit intent popup */
.popup-exit .popup-header { background: linear-gradient(135deg, var(--orange), var(--orange-hover)); }
.popup-exit .popup-header h2 { color: var(--white); }
.popup-exit .popup-header p { color: rgba(255,255,255,0.8); }

@keyframes popIn { from { opacity: 0; transform: scale(0.9) translateY(20px); } to { opacity: 1; transform: scale(1) translateY(0); } }

/* ===== FLOATING CTA (PHONE) ===== */
.float-phone { position: fixed; bottom: 100px; right: 24px; z-index: 90; width: 60px; height: 60px; border-radius: 50%; background: var(--orange); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; text-decoration: none; box-shadow: 0 4px 20px rgba(249,115,22,0.4); transition: transform 0.2s, box-shadow 0.2s; animation: pulse-ring 2s ease infinite; }
.float-phone:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(249,115,22,0.5); }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(249,115,22,0.4); } 70% { box-shadow: 0 0 0 15px rgba(249,115,22,0); } 100% { box-shadow: 0 0 0 0 rgba(249,115,22,0); } }

/* ===== STICKY MOBILE BAR ===== */
.sticky-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 95; background: var(--navy-dark); border-top: 3px solid var(--orange); padding: 10px 16px; }
.sticky-bar-inner { display: flex; gap: 10px; max-width: 500px; margin: 0 auto; }
.sticky-bar a { flex: 1; padding: 14px; border-radius: 8px; text-align: center; font-weight: 700; font-size: 0.85rem; text-decoration: none; }
.sticky-bar .sticky-call { background: var(--white); color: var(--navy); }
.sticky-bar .sticky-estimate { background: var(--orange); color: var(--white); }
@media (max-width: 768px) {
  .sticky-bar { display: block; }
  .float-phone { display: none; }
  body { padding-bottom: 80px; }
}

/* ===== LANDING PAGE SPECIFICS ===== */
.landing-hero { position: relative; padding: 100px 24px 60px; background: var(--navy-dark); overflow: hidden; text-align: center; }
.landing-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 80%, rgba(249,115,22,0.15) 0%, transparent 60%); }
.landing-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.landing-urgency { background: var(--red); color: var(--white); font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 10px 24px; display: inline-flex; align-items: center; gap: 8px; border-radius: 6px; margin-bottom: 24px; animation: pulse-bg 2s ease infinite; }
@keyframes pulse-bg { 0%,100% { opacity: 1; } 50% { opacity: 0.85; } }
.landing-form { background: var(--white); border-radius: 16px; padding: 40px; max-width: 500px; margin: 40px auto 0; box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.landing-form h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--navy); letter-spacing: 0.5px; margin-bottom: 20px; }
.countdown { display: flex; justify-content: center; gap: 16px; margin: 24px 0; }
.countdown-item { text-align: center; }
.countdown-num { font-family: var(--font-display); font-size: 2.5rem; color: var(--orange); line-height: 1; display: block; }
.countdown-label { font-size: 0.7rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: 1px; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
