/* =========================================================
   TITAN PRESSURE PRO — CONVERSION-OPTIMIZED STYLESHEET
   v1.1 (emoji-free, SVG icon system)

   USAGE:
   1) Add to <head> of every page:
      <link rel="preconnect" href="https://fonts.googleapis.com">
      <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
      <link href="https://fonts.googleapis.com/css2?family=Archivo:wght@500;600;700;800;900&family=Manrope:wght@400;500;600;700;800&display=swap" rel="stylesheet">
      <link rel="stylesheet" href="/css/titan-style.css">

   2) Include the icon sprite (titan-icons.svg) once per page
      (either inline in the body or via <svg><use href="/img/titan-icons.svg#i-phone"/></svg>)

   3) Use icons with:
      <svg class="icon"><use href="#i-phone"/></svg>
   ========================================================= */

:root {
  /* Brand */
  --navy-deep: #081428;
  --navy: #0F2341;
  --navy-soft: #1A3057;
  --cyan: #29B6F6;
  --cyan-bright: #4FC3F7;

  /* Conversion accent — the ONE color driving clicks */
  --action: #FF6B1A;
  --action-hover: #FF8544;
  --action-dark: #E5551C;

  /* Neutrals */
  --white: #FFFFFF;
  --off-white: #F7F9FC;
  --gray-50: #F3F5F8;
  --gray-100: #E5EAF0;
  --gray-300: #B4BDC9;
  --gray-500: #5A6776;
  --gray-700: #2A3747;
  --ink: #0A1628;

  /* Validation */
  --star: #FFB300;
  --success: #16A34A;

  /* System */
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(8,20,40,.06), 0 2px 4px rgba(8,20,40,.04);
  --shadow: 0 4px 12px rgba(8,20,40,.08), 0 12px 28px rgba(8,20,40,.08);
  --shadow-lg: 0 12px 32px rgba(8,20,40,.15), 0 32px 64px rgba(8,20,40,.12);
  --shadow-cta: 0 8px 20px rgba(255,107,26,.35), 0 2px 6px rgba(255,107,26,.25);

  --container: 1200px;
  --font-display: 'Archivo', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--navy-deep);
}
h1 { font-weight: 900; }
h2 { font-weight: 800; }
h3 { font-weight: 700; letter-spacing: -0.015em; }

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

/* ---------- Icon system ---------- */
.icon {
  width: 1em; height: 1em;
  display: inline-block; vertical-align: middle;
  fill: none; stroke: currentColor;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}
.star-row { display: inline-flex; gap: 2px; color: var(--star); line-height: 0; }
.star-row svg { width: 1em; height: 1em; fill: currentColor; stroke: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 18px 32px;
  font-family: var(--font-display); font-weight: 800; font-size: 16px;
  letter-spacing: 0.02em; text-transform: uppercase;
  border-radius: var(--radius);
  transition: all .2s cubic-bezier(.2,.9,.3,1.4);
  white-space: nowrap; line-height: 1;
}
.btn .icon { font-size: 18px; stroke-width: 2.5; }
.btn-primary {
  background: linear-gradient(180deg, var(--action) 0%, var(--action-dark) 100%);
  color: var(--white); box-shadow: var(--shadow-cta);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255,107,26,.45), 0 4px 10px rgba(255,107,26,.3);
  background: linear-gradient(180deg, var(--action-hover) 0%, var(--action) 100%);
}
.btn-primary:active { transform: translateY(0); }
.btn-secondary {
  background: var(--white); color: var(--navy-deep); border: 2px solid var(--white);
}
.btn-secondary:hover { background: transparent; color: var(--white); }
.btn-ghost {
  background: transparent; color: var(--navy-deep); border: 2px solid var(--gray-100);
}
.btn-ghost:hover { border-color: var(--navy-deep); background: var(--navy-deep); color: var(--white); }
.btn-lg { padding: 22px 40px; font-size: 17px; }
.btn-block { width: 100%; }

/* ---------- Utility bar ---------- */
.utility-bar { background: var(--navy-deep); color: var(--gray-300); font-size: 13px; padding: 10px 0; }
.utility-bar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.utility-left { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.utility-left span { display: inline-flex; align-items: center; gap: 6px; }
.utility-left span .icon { color: var(--cyan); font-size: 14px; }
.utility-phone { color: var(--white); font-weight: 700; font-family: var(--font-display); font-size: 15px; display: inline-flex; align-items: center; gap: 8px; }
.utility-phone:hover { color: var(--cyan-bright); }
.utility-phone .icon { font-size: 14px; color: var(--cyan-bright); }

/* ---------- Header ---------- */
.site-header { background: var(--white); position: sticky; top: 0; z-index: 100; box-shadow: 0 1px 0 var(--gray-100); transition: box-shadow .2s; }
.site-header.scrolled { box-shadow: var(--shadow); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 14px; padding-bottom: 14px; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand img { height: 64px; width: auto; }
.brand-text { font-family: var(--font-display); font-weight: 900; font-size: 20px; color: var(--navy-deep); letter-spacing: -0.02em; line-height: 1; }
.brand-text small { display: block; font-size: 11px; font-weight: 600; color: var(--action); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 4px; }
.main-nav { display: flex; align-items: center; gap: 8px; }
.main-nav a { padding: 10px 16px; font-weight: 600; color: var(--gray-700); border-radius: var(--radius-sm); transition: all .2s; font-size: 15px; }
.main-nav a:hover { background: var(--gray-50); color: var(--navy-deep); }
.main-nav a.active { color: var(--navy-deep); }
.header-cta { display: flex; align-items: center; gap: 12px; }
.header-phone { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; color: var(--navy-deep); font-size: 17px; }
.header-phone .icon-circle { background: var(--action); color: var(--white); width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; }
.header-phone .icon-circle .icon { font-size: 16px; }
.hamburger { display: none; width: 44px; height: 44px; border-radius: 10px; background: var(--gray-50); }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy-deep); margin: 5px auto; transition: .25s; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    linear-gradient(135deg, rgba(8,20,40,.88) 0%, rgba(15,35,65,.82) 60%, rgba(26,48,87,.80) 100%),
    url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?auto=format&fit=crop&w=1920&q=80') center/cover;
  color: var(--white); padding: 80px 0 120px; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(41,182,246,.15), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255,107,26,.08), transparent 50%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(41,182,246,.12); border: 1px solid rgba(41,182,246,.3);
  color: var(--cyan-bright); padding: 8px 16px; border-radius: 999px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.04em;
  margin-bottom: 24px; backdrop-filter: blur(8px);
}
.hero-eyebrow .star-row { font-size: 14px; }
.hero h1 {
  color: var(--white); font-size: clamp(40px, 6vw, 72px);
  line-height: 0.98; margin-bottom: 24px; font-weight: 900; text-wrap: balance;
}
.hero h1 .accent {
  background: linear-gradient(180deg, var(--cyan-bright) 0%, var(--cyan) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-sub { font-size: 19px; color: rgba(255,255,255,0.85); max-width: 560px; margin-bottom: 32px; line-height: 1.55; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.12); }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,.14); display: grid; place-items: center; color: var(--cyan-bright); flex-shrink: 0; font-size: 22px; }
.trust-label { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.9); line-height: 1.3; }

.hero-card {
  background: var(--white); color: var(--ink); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow-lg); transform: rotate(1.5deg); position: relative;
}
.hero-card-img {
  border-radius: var(--radius); overflow: hidden; margin-bottom: 20px;
  aspect-ratio: 16/10; background: var(--gray-50); position: relative;
}
.hero-card-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-card-badge { position: absolute; top: 12px; left: 12px; background: var(--action); color: var(--white); padding: 6px 12px; border-radius: 999px; font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.hero-card-stats { display: flex; justify-content: space-between; align-items: center; }
.hero-card-stats .num { font-family: var(--font-display); font-weight: 900; font-size: 42px; color: var(--navy-deep); line-height: 1; display: block; }
.hero-card-stats .label { font-size: 13px; font-weight: 600; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.08em; }
.hero-card-stats .stars-big { font-size: 20px; margin-bottom: 4px; }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--navy-deep); color: var(--white); padding: 24px 0; border-top: 3px solid var(--action); }
.trust-strip .container { display: flex; justify-content: space-around; align-items: center; gap: 24px; flex-wrap: wrap; }
.trust-strip-item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; }
.trust-strip-item .icon { font-size: 20px; color: var(--cyan-bright); }

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section-eyebrow {
  display: inline-block; font-size: 13px; font-weight: 800; color: var(--action);
  letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 16px;
  position: relative; padding: 0 32px;
}
.section-eyebrow::before, .section-eyebrow::after { content: ''; position: absolute; top: 50%; width: 20px; height: 2px; background: var(--action); }
.section-eyebrow::before { left: 0; }
.section-eyebrow::after { right: 0; }
.section-title { font-size: clamp(32px, 4vw, 48px); margin-bottom: 16px; text-wrap: balance; }
.section-subtitle { font-size: 18px; color: var(--gray-500); line-height: 1.6; }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg); padding: 32px 28px;
  transition: all .3s cubic-bezier(.2,.9,.3,1);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--cyan), var(--action));
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.service-card:hover { transform: translateY(-8px); border-color: transparent; box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  border-radius: 16px; display: grid; place-items: center;
  color: var(--cyan-bright); font-size: 28px; margin-bottom: 20px;
  transition: all .3s;
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--action) 140%);
  color: var(--white);
}
.service-card h3 { font-size: 22px; margin-bottom: 12px; }
.service-card p { color: var(--gray-500); margin: 0 0 20px; font-size: 15px; line-height: 1.6; }
.service-link { display: inline-flex; align-items: center; gap: 6px; color: var(--action); font-weight: 800; font-size: 14px; text-transform: uppercase; letter-spacing: 0.08em; transition: gap .2s; }
.service-link:hover { gap: 12px; }
.service-link .icon { font-size: 16px; }
.services-cta { text-align: center; margin-top: 48px; }

/* ---------- Coverage ---------- */
.coverage { background: var(--off-white); }
.coverage-cities { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 40px; }
.city-chip { background: var(--white); border: 1px solid var(--gray-100); padding: 14px 22px; border-radius: 999px; font-weight: 700; font-size: 15px; color: var(--navy-deep); transition: all .2s; box-shadow: var(--shadow-sm); }
.city-chip:hover { border-color: var(--action); color: var(--action); transform: translateY(-2px); }
.coverage-cta { text-align: center; }

/* ---------- Testimonials ---------- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 28px; box-shadow: var(--shadow); position: relative;
  border: 1px solid var(--gray-100); transition: transform .2s;
  overflow: hidden;
}
.testimonial:hover { transform: translateY(-4px); }
.testimonial .quote-mark { position: absolute; top: 18px; right: 22px; color: var(--cyan); opacity: 0.15; font-size: 72px; }
.testimonial .star-row { font-size: 18px; margin-bottom: 16px; }
.testimonial p { color: var(--gray-700); font-size: 16px; line-height: 1.7; margin: 0 0 24px; font-weight: 500; position: relative; z-index: 1; }
.testimonial-author { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid var(--gray-100); }
.avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--cyan) 100%);
  color: var(--white); display: grid; place-items: center;
  font-weight: 800; font-family: var(--font-display); font-size: 15px;
}
.author-name { font-weight: 700; font-size: 15px; color: var(--navy-deep); }
.author-location { font-size: 13px; color: var(--gray-500); }
.testimonials-cta { text-align: center; margin-top: 48px; }

/* ---------- Estimate / Form ---------- */
.estimate {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--white); position: relative; overflow: hidden;
}
.estimate::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 0% 100%, rgba(41,182,246,.15), transparent 50%),
    radial-gradient(circle at 100% 0%, rgba(255,107,26,.1), transparent 50%);
  pointer-events: none;
}
.estimate .container { position: relative; z-index: 2; }
.estimate-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
.estimate .section-eyebrow { color: var(--cyan-bright); }
.estimate .section-eyebrow::before, .estimate .section-eyebrow::after { background: var(--cyan-bright); }
.estimate h2 { color: var(--white); font-size: clamp(32px, 4vw, 44px); margin-bottom: 20px; }
.estimate-left p { color: rgba(255,255,255,.85); font-size: 17px; margin-bottom: 32px; }
.estimate-benefits { list-style: none; padding: 0; margin: 0 0 36px; display: grid; gap: 14px; }
.estimate-benefits li { display: flex; align-items: center; gap: 14px; font-size: 16px; color: rgba(255,255,255,.95); font-weight: 500; }
.estimate-benefits .check { width: 28px; height: 28px; background: var(--success); border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; color: var(--white); font-size: 14px; }
.estimate-benefits .check .icon { stroke-width: 3; }
.guarantee-badge { display: inline-flex; align-items: center; gap: 14px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); padding: 18px 22px; border-radius: var(--radius); max-width: 360px; }
.guarantee-badge .shield { width: 48px; height: 48px; background: var(--action); border-radius: 12px; display: grid; place-items: center; color: var(--white); font-size: 24px; flex-shrink: 0; }
.guarantee-badge-text { font-size: 14px; color: rgba(255,255,255,.9); }
.guarantee-badge-text strong { display: block; font-family: var(--font-display); font-size: 17px; margin-bottom: 2px; color: var(--white); }

.form-card { background: var(--white); color: var(--ink); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-lg); }
.form-card h3 { font-size: 24px; margin-bottom: 8px; }
.form-card > p { color: var(--gray-500); margin: 0 0 28px; font-size: 15px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-weight: 700; font-size: 13px; color: var(--navy-deep); margin-bottom: 6px; letter-spacing: 0.02em; }
.form-group label .req { color: var(--action); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 16px;
  border: 2px solid var(--gray-100); border-radius: var(--radius-sm);
  font: inherit; font-size: 15px; color: var(--ink); background: var(--off-white); transition: all .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--action); background: var(--white);
  box-shadow: 0 0 0 4px rgba(255,107,26,.1);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.contact-pref { display: flex; gap: 10px; flex-wrap: wrap; }
.contact-pref label { flex: 1; min-width: 90px; padding: 12px; border: 2px solid var(--gray-100); border-radius: var(--radius-sm); text-align: center; cursor: pointer; font-size: 14px; font-weight: 600; background: var(--off-white); transition: all .2s; margin: 0; display: inline-flex; align-items: center; justify-content: center; gap: 6px; }
.contact-pref input { display: none; }
.contact-pref label:has(input:checked) { border-color: var(--action); background: rgba(255,107,26,.05); color: var(--action); }
.contact-pref .icon { font-size: 15px; }
.form-footnote { text-align: center; font-size: 13px; color: var(--gray-500); margin-top: 16px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.form-footnote .icon { font-size: 14px; }

/* ---------- FAQ ---------- */
.faq-grid { max-width: 860px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius); overflow: hidden; transition: box-shadow .2s; }
.faq-item[open] { box-shadow: var(--shadow); border-color: var(--action); }
.faq-item summary {
  padding: 22px 28px; font-family: var(--font-display); font-weight: 700;
  font-size: 18px; color: var(--navy-deep); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 20px; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ''; width: 16px; height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF6B1A' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
  transition: transform .2s; flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 28px 24px; color: var(--gray-500); font-size: 15px; line-height: 1.7; }

/* ---------- Final CTA ---------- */
.final-cta { background: var(--navy-deep); color: var(--white); padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(255,107,26,.15), transparent 60%); }
.final-cta .container { position: relative; z-index: 2; }
.final-cta h2 { color: var(--white); font-size: clamp(32px, 5vw, 48px); margin-bottom: 16px; }
.final-cta p { color: rgba(255,255,255,.8); font-size: 18px; margin-bottom: 32px; }
.final-cta-ctas { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* ---------- Footer ---------- */
.footer { background: #020810; color: var(--gray-300); padding: 80px 0 24px; font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 48px; }
.footer-col h4 { color: var(--white); font-size: 15px; margin-bottom: 20px; letter-spacing: 0.04em; text-transform: uppercase; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a:hover { color: var(--cyan-bright); }
.footer-brand p { color: var(--gray-300); line-height: 1.6; margin: 0 0 20px; max-width: 320px; }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 12px; align-items: flex-start; }
.footer-contact-item .icon { color: var(--action); flex-shrink: 0; margin-top: 3px; font-size: 16px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 13px; }
.footer-bottom-links { display: flex; gap: 20px; }

/* ---------- Sticky mobile CTA ---------- */
.mobile-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--white); box-shadow: 0 -4px 24px rgba(8,20,40,.15);
  padding: 12px 16px; gap: 10px; border-top: 1px solid var(--gray-100);
}
.mobile-cta .btn { flex: 1; padding: 16px 20px; font-size: 14px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { transform: none; max-width: 480px; }
  .services-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .estimate-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  body { padding-bottom: 76px; }
  .utility-bar { display: none; }
  .main-nav { display: none; }
  .hamburger { display: block; }
  .header-phone span:not(.icon-circle) { display: none; }
  .brand img { height: 48px; }
  .brand-text { font-size: 16px; }
  .hero { padding: 48px 0 64px; }
  .section { padding: 64px 0; }
  .section-header { margin-bottom: 40px; }
  .hero-ctas .btn { flex: 1; padding: 16px 20px; font-size: 14px; }
  .hero-trust { grid-template-columns: 1fr; gap: 16px; }
  .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 28px 24px; }
  .trust-strip .container { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .mobile-cta { display: flex; }
}

/* ---------- Entrance animations ---------- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.hero-eyebrow { animation: fadeUp .6s .1s backwards; }
.hero h1 { animation: fadeUp .6s .2s backwards; }
.hero-sub { animation: fadeUp .6s .3s backwards; }
.hero-ctas { animation: fadeUp .6s .4s backwards; }
.hero-trust { animation: fadeUp .6s .5s backwards; }
.hero-card { animation: fadeUp .8s .6s backwards; }