/* === HomeAdvisor Locksmith — Light Cream + Navy + Crimson === */

:root{
  --bg: #faf7f2;             /* warm cream / off-white */
  --bg-2: #ffffff;           /* card surface */
  --bg-3: #f3ede2;           /* deeper cream surface */
  --navy: #0b1d3a;           /* primary deep navy */
  --navy-2: #122b54;
  --navy-3: #1e3a6e;
  --line: #e6dfd1;
  --line-2: #d6cdb9;
  --ink: #0b1d3a;            /* primary text */
  --ink-2: #3b4a64;          /* secondary text */
  --muted: #7a8497;
  --red: #c8102e;            /* crimson accent */
  --red-2: #a30c25;
  --red-soft: #fce5ea;
  --gold: #b8862f;
  --maxw: 1240px;
  --ease: cubic-bezier(.2,.65,.25,1);
  --radius: 14px;
  --shadow-sm: 0 4px 14px -8px rgba(11,29,58,.18);
  --shadow-md: 0 16px 38px -16px rgba(11,29,58,.25);
  --shadow-lg: 0 30px 80px -20px rgba(11,29,58,.35);
}

*,*::before,*::after{ box-sizing:border-box }
html,body{ margin:0; padding:0 }
html{ scroll-behavior:smooth }
body{
  background: var(--bg);
  color: var(--ink-2);
  font: 16px/1.65 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  min-height: 100vh;
}
img,svg{ max-width:100%; display:block }
a{ color: var(--navy); text-decoration:none }
a:hover{ color: var(--red) }
button{ font:inherit; cursor:pointer }
h1,h2,h3,h4{ font-family:'Sora', 'Inter', sans-serif; color: var(--ink); margin:0; letter-spacing:-.015em }
.g{ color: var(--red) }

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

.kicker{
  display:inline-block;
  font-family:'Sora', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.kicker.on-navy{ color: #ffb6c1 }
.on-navy{ color: #fff }
.on-navy-muted{ color: #c8d0de }

/* === Buttons === */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap: 10px;
  padding: 15px 28px; border-radius: 10px;
  font-family:'Sora', sans-serif;
  font-weight: 700; font-size: 15px;
  border: 0;
  cursor: pointer;
  transition: all .25s var(--ease);
  white-space: nowrap;
  letter-spacing:.01em;
}
.btn.block{ width:100%; padding: 17px 22px }
.btn-primary{
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(200,16,46,.55);
}
.btn-primary:hover{ background: var(--red-2); transform: translateY(-1px); box-shadow: 0 14px 32px -10px rgba(200,16,46,.65) }
.btn-outline{
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.7);
}
.btn-outline:hover{ background: #fff; color: var(--navy); border-color: #fff }

/* === Top utility bar === */
.utility{
  background: var(--navy);
  color: #c8d0de;
  font-size: 13px;
}
.utility-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding: 10px 24px;
}
.util-left b{ color: #fff; font-weight: 600 }
.util-right{ color: #c8d0de }

/* === Header === */
.nav{
  position: sticky; top: 0; z-index: 60;
  background: rgba(250,247,242,.92);
  backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  border-bottom: 1px solid var(--line);
}
.nav-inner{
  display:flex; align-items:center; gap: 24px;
  padding: 14px 24px;
}
.brand{ display:inline-flex; align-items:center; gap: 12px; color: var(--ink) }
.brand-logo{
  height: 56px; width: auto; display: block;
  transition: transform .2s var(--ease);
}
.brand-logo:hover{ transform: scale(1.02) }
.brand-logo-footer{
  height: 64px; width: auto; display: block;
  background: #fff; padding: 8px 14px; border-radius: 10px;
  margin-bottom: 4px;
}
.brand-mark{ width: 46px; height: 46px; display:grid; place-items:center }
.brand-mark svg{ width: 100%; height: 100% }
.brand-text{ display:flex; flex-direction:column; line-height: 1; font-family:'Sora', sans-serif }
.brand-name{ font-size: 20px; font-weight: 800; color: var(--navy); letter-spacing: -.01em }
.brand-text em{ font-style: normal; font-size: 10.5px; color: var(--muted); letter-spacing:.14em; text-transform: uppercase; margin-top: 5px; font-weight: 600 }
.brand.light .brand-name{ color:#fff }
.brand.light em{ color: #c8d0de }

.nav-links{
  margin-left:auto;
  display:flex; gap: 28px;
  align-items:center;
}
.nav-links a{
  font-size: 14px; font-weight: 600; color: var(--ink-2);
  display:inline-flex; align-items:center; gap: 6px;
  transition: color .2s var(--ease);
}
.nav-links a:hover{ color: var(--red) }
.nav-links .nav-cta{
  background: var(--red); color: #fff;
  padding: 10px 18px; border-radius: 8px;
  box-shadow: 0 8px 20px -10px rgba(200,16,46,.55);
}
.nav-links .nav-cta:hover{ background: var(--red-2); color:#fff }
.caret{ color: var(--muted); font-size: 14px }

/* === HERO === */
.hero{
  position: relative;
  min-height: 620px;
  display:flex; align-items:center;
  padding: 90px 0 100px;
  overflow: hidden;
}
.hero-photo{
  position:absolute; inset:0;
  background:
    radial-gradient(circle at 80% 20%, rgba(200,16,46,.10), transparent 55%),
    radial-gradient(circle at 15% 85%, rgba(11,29,58,.08), transparent 50%),
    linear-gradient(160deg, #fdfaf3 0%, #f4ecdc 70%, #ebe0c8 100%);
}
.hero-photo::before{
  content:""; position:absolute; inset:0;
  background-image:
    /* subtle grid texture */
    linear-gradient(rgba(11,29,58,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,29,58,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 30%, transparent 80%);
}
.hero-photo::after{
  /* faint key silhouette accent */
  content:""; position:absolute;
  right: -80px; top: 50%; transform: translateY(-50%);
  width: 600px; height: 600px;
  background:
    radial-gradient(circle at center, rgba(200,16,46,.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-overlay{ display:none }
.hero-inner{
  position:relative; z-index: 2;
  text-align: center;
  padding: 0 24px;
}
.eyebrow{
  display:inline-block;
  font-family:'Sora', sans-serif; font-weight: 700;
  font-size: 12px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--red);
  background: var(--red-soft);
  padding: 8px 18px; border-radius: 999px;
  border: 1px solid rgba(200,16,46,.2);
  margin-bottom: 24px;
}
.hero h1{
  font-size: clamp(38px, 5.4vw, 62px);
  font-weight: 800; line-height: 1.05; letter-spacing:-.025em;
  color: var(--navy);
  margin: 0 auto 22px;
  max-width: 18ch;
}
.hero-lede{
  font-size: clamp(15.5px, 1.4vw, 18px);
  color: var(--ink-2);
  line-height: 1.7;
  max-width: 62ch;
  margin: 0 auto 32px;
}
.hero-ctas{
  display:flex; gap: 14px; justify-content:center; flex-wrap:wrap;
  margin-bottom: 40px;
}
.hero-ctas .btn-outline{
  color: var(--navy);
  border-color: var(--navy);
}
.hero-ctas .btn-outline:hover{ background: var(--navy); color: #fff }

.trust-pills{
  display:flex; gap: 10px; justify-content:center; flex-wrap:wrap;
  max-width: 920px; margin: 0 auto;
}
.pill{
  display:inline-flex; align-items:center;
  padding: 9px 18px;
  border: 1.5px solid var(--navy);
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-size: 13px; font-weight: 600;
  letter-spacing: .01em;
  white-space: nowrap;
}

/* === Logos strip === */
.logos{
  background: #fff;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.logos-grid{
  display:flex; justify-content: space-around; gap: 24px; flex-wrap: wrap;
  align-items: center;
}
.logo-item{
  display:flex; flex-direction:column; align-items:center; gap: 2px;
  color: #475569; font-size: 14px;
  filter: grayscale(.4); opacity: .85;
  transition: opacity .2s var(--ease), filter .2s var(--ease);
}
.logo-item:hover{ opacity: 1; filter: none }
.logo-mark{
  font-size: 28px; font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px; line-height: 1;
}
.logo-mark.bbb{
  font-size: 18px;
  color: #fff; background: var(--navy);
  width: 36px; height: 30px; border-radius: 4px;
  display:grid; place-items:center;
  font-weight: 800;
}
.logo-item span{ font-weight: 700; color: var(--navy); font-size: 14px }
.logo-item small{ color: #94a3b8; font-size: 11px; letter-spacing:.04em }

/* === Sections === */
.section{ padding: 100px 0 }
.section.light-bg{ background: var(--bg) }
.section.navy{ background: var(--navy); color: #c8d0de }
.section.cream{ background: var(--bg-3); color: var(--ink-2) }

.section-head{ max-width: 760px; margin: 0 0 56px }
.section-head.center{ margin: 0 auto 56px; text-align:center }
.section-head h2{
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 800; line-height: 1.1; letter-spacing:-.02em;
  color: var(--navy);
  margin: 0 0 14px;
}
.section.navy .section-head h2, .h2-light{ color: var(--navy) }
.section.navy .section-head h2{ color: #fff }
.section-head > p{
  color: var(--ink-2); font-size: 16.5px;
  max-width: 62ch; margin: 0 auto;
  line-height: 1.7;
}
.section.navy .section-head > p{ color: #c8d0de }

.excellent{ display:inline-flex; align-items:center; gap: 14px; margin-top: 8px; flex-wrap:wrap; justify-content:center }
.excl-label{ font-weight: 800; color: var(--navy); font-size: 14px; letter-spacing:.18em }
.excl-stars{ color: #fbbf24; letter-spacing: 3px; font-size: 20px }
.excl-meta{ font-size: 13px; color: var(--muted) }

/* === Services === */
.grid{ display:grid; gap: 24px }
.grid.services{ grid-template-columns: repeat(3, 1fr); gap: 26px }

.svc-card{
  background: var(--bg-2);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
  display:flex; flex-direction:column;
  box-shadow: var(--shadow-sm);
}
.svc-card:hover{
  transform: translateY(-5px);
  border-color: var(--red);
  box-shadow: 0 24px 50px -20px rgba(200,16,46,.25);
}

.svc-icon{
  height: 150px;
  position: relative;
  background: linear-gradient(135deg, #f3ede2 0%, #e9dfc8 100%);
  display:grid; place-items:center;
  color: var(--navy);
}
.svc-icon svg{ width: 64px; height: 64px }

/* Service-specific accent backgrounds */
.p-residential{ background: linear-gradient(135deg, #fdf1f3 0%, #f5d8dd 100%); color: var(--red) }
.p-auto{       background: linear-gradient(135deg, #e8edf6 0%, #c9d4e8 100%); color: var(--navy) }
.p-rekey{      background: linear-gradient(135deg, #f5ecd8 0%, #e5d2a3 100%); color: var(--gold) }
.p-smart{      background: linear-gradient(135deg, #e2eef0 0%, #b8d3d8 100%); color: #14524d }
.p-commercial{ background: linear-gradient(135deg, #e6e4ee 0%, #c2bfd6 100%); color: #3a2d6e }
.p-safe{       background: linear-gradient(135deg, #f0e8de 0%, #d6c4ad 100%); color: #5c3d1e }

/* "Photo" cards for project tiles */
.p-proj1{ background: linear-gradient(135deg, #1e3a6e 0%, #0b1d3a 100%) }
.p-proj2{ background: linear-gradient(135deg, #c8102e 0%, #5c0816 100%) }
.p-proj3{ background: linear-gradient(135deg, #14524d 0%, #062925 100%) }
.p-proj4{ background: linear-gradient(135deg, #b8862f 0%, #5c3d0e 100%) }
.p-step1{ background: linear-gradient(135deg, #1e3a6e 0%, #0b1d3a 100%) }
.p-step2{ background: linear-gradient(135deg, #c8102e 0%, #6c0719 100%) }
.p-step3{ background: linear-gradient(135deg, #1a4a8a 0%, #0b1d3a 100%) }
.p-step4{ background: linear-gradient(135deg, #b8862f 0%, #4a3414 100%) }
.p-step5{ background: linear-gradient(135deg, #14524d 0%, #062925 100%) }
.p-blog1{ background: linear-gradient(135deg, #1e3a6e 0%, #0b1d3a 100%) }
.p-blog2{ background: linear-gradient(135deg, #c8102e 0%, #5c0816 100%) }
.p-blog3{ background: linear-gradient(135deg, #14524d 0%, #062925 100%) }

.badge{
  position: absolute; top: 14px; right: 14px; z-index: 2;
  padding: 6px 12px; border-radius: 6px;
  font-family:'Sora', sans-serif;
  font-size: 10.5px; font-weight: 800; color:#fff;
  letter-spacing:.08em; text-transform: uppercase;
}
.badge-popular{ background: var(--red) }
.badge-service{ background: var(--navy) }
.badge-completed{ background: var(--gold); color: #fff }

.svc-body{ padding: 26px 26px 28px; flex:1; display:flex; flex-direction:column }
.svc-body h3{
  font-size: 20px; font-weight: 700; color: var(--navy); line-height: 1.3;
  margin: 0 0 10px;
}
.svc-body > p{
  font-size: 14.5px; color: var(--ink-2); line-height: 1.65;
  margin: 0 0 20px;
}
.svc-cta{
  margin-top:auto;
  display:inline-flex; align-items:center;
  color: var(--red);
  font-family:'Sora', sans-serif;
  font-size: 13.5px; font-weight: 700; letter-spacing:.02em;
  align-self: flex-start;
  transition: gap .2s var(--ease), color .2s var(--ease);
  gap: 4px;
}
.svc-cta:hover{ color: var(--red-2); gap: 10px }

/* === Projects === */
.grid.projects{ grid-template-columns: repeat(4, 1fr); gap: 22px }
.project{
  margin:0; background: var(--bg-2);
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
  box-shadow: var(--shadow-sm);
}
.project:hover{ transform: translateY(-4px); border-color: var(--red); box-shadow: var(--shadow-md) }
.project-photo{
  height: 170px;
  position: relative;
  background-size: cover; background-position: center;
}
.project-photo::after{
  content:""; position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,.55) 100%),
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.12), transparent 60%);
}
.project figcaption{ padding: 18px 20px 22px }
.proj-tag{
  display:inline-block;
  font-family:'Sora', sans-serif;
  font-size: 10.5px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.project h4{ font-size: 15.5px; color: var(--navy); font-weight: 700; margin: 0 0 6px; line-height: 1.35 }
.project p{ font-size: 13px; color: var(--muted); margin: 0; line-height: 1.55 }

/* === Process row === */
.process-row{
  list-style:none; padding: 0; margin: 0 0 48px;
  display:grid; grid-template-columns: repeat(5, 1fr); gap: 20px;
}
.process-row li{
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  display:flex; flex-direction:column;
}
.proc-photo{
  position: relative;
  height: 130px;
  background-size: cover; background-position: center;
  display:grid; place-items:center;
}
.proc-photo::after{
  content:""; position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.2), rgba(0,0,0,.55)),
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.1), transparent 60%);
}
.proc-num{
  position: relative; z-index: 2;
  width: 56px; height: 56px; border-radius: 50%;
  display:grid; place-items:center;
  background: var(--red); color: #fff;
  font-family:'Sora', sans-serif; font-weight: 800; font-size: 16px;
  box-shadow: 0 10px 22px -8px rgba(200,16,46,.7);
}
.process-row h4{
  font-size: 15px; font-weight: 700; color: #fff;
  text-align:center; margin: 18px 16px 6px;
}
.process-row p{
  font-size: 13px; color: #c8d0de; text-align:center;
  margin: 0 16px 22px; line-height: 1.55;
}
.process-cta{ display:flex; justify-content:center; margin-top: 36px }

/* === Why three === */
.grid.why-three{
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 56px;
}
.why-tile{
  background: rgba(255,255,255,.04);
  padding: 34px 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.08);
  text-align: center;
  transition: border-color .3s var(--ease), transform .3s var(--ease), background .3s var(--ease);
}
.why-tile:hover{ border-color: var(--red); transform: translateY(-4px); background: rgba(200,16,46,.06) }
.why-ico{
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  display:grid; place-items:center;
  background: rgba(200,16,46,.12);
  border-radius: 16px;
  border: 1px solid rgba(200,16,46,.3);
}
.why-ico svg{ width: 34px; height: 34px }
.why-tile h3{ font-size: 19px; font-weight: 700; color:#fff; margin: 0 0 10px }
.why-tile p{ font-size: 14.5px; color: #c8d0de; line-height: 1.65; margin: 0 }

/* === Stats row === */
.stats-row{
  display:grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  text-align: center;
  padding: 36px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.stats-row > div{ padding: 8px }
.stats-row b{
  display:block;
  font-family:'Sora', sans-serif; font-weight: 800;
  font-size: clamp(30px, 3.6vw, 46px);
  color: var(--red);
  line-height: 1; margin-bottom: 8px;
  letter-spacing: -.02em;
}
.stats-row span{
  font-size: 13px; color: #c8d0de; font-weight: 500;
  letter-spacing: .02em;
}

/* === Reviews === */
.grid.reviews{
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.review{
  background: #fff;
  margin: 0;
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display:flex; flex-direction:column;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.rev-head{ display:flex; align-items:center; gap: 12px; margin-bottom: 12px }
.rev-av{
  width: 38px; height: 38px; border-radius: 50%;
  display:grid; place-items:center;
  color: #fff; font-weight: 700; font-size: 16px;
  flex: 0 0 38px;
}
.av-1{ background: #c8102e } .av-2{ background: #b8862f }
.av-3{ background: #14524d } .av-4{ background: #1e3a6e }
.av-5{ background: #6b3f8c }
.rev-meta{ flex: 1; display:flex; flex-direction:column; gap: 2px; min-width: 0 }
.rev-name{
  font-size: 14px; font-weight: 700; color: var(--navy);
  display:inline-flex; align-items:center; gap: 4px;
}
.rev-date{ font-size: 11.5px; color: var(--muted) }
.rev-google{
  width: 22px; height: 22px; border-radius: 50%;
  background: #fff; border: 1px solid var(--line);
  display:grid; place-items:center;
  font-weight: 700; font-size: 13px;
  color: #4285f4; font-family:'Sora', sans-serif;
}
.review .q-stars{
  color: #fbbf24; font-size: 14px; letter-spacing: 2px;
  margin-bottom: 10px;
}
.review p{ font-size: 13.5px; color: var(--ink-2); line-height: 1.6; margin: 0 }

.reviews-note{
  text-align:center; margin-top: 40px;
  font-size: 15px; color: var(--ink-2);
}
.reviews-note a{ color: var(--red); font-weight: 700; margin-left: 6px }
.reviews-note a:hover{ color: var(--red-2) }

/* === Insights / Blog === */
.grid.insights{ grid-template-columns: repeat(3, 1fr); gap: 26px }
.post{
  background: var(--bg-2);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  display:flex; flex-direction:column;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
  box-shadow: var(--shadow-sm);
}
.post:hover{ transform: translateY(-4px); border-color: var(--red); box-shadow: var(--shadow-md) }
.post-photo{ height: 180px; position: relative; background-size: cover; background-position: center }
.post-photo::after{
  content:""; position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.1) 50%, rgba(0,0,0,.5) 100%),
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.08), transparent 60%);
}
.post-body{ padding: 22px 24px 26px; flex:1; display:flex; flex-direction:column }
.post-tag{
  display:inline-block;
  padding: 4px 10px; border-radius: 6px;
  background: var(--red-soft); color: var(--red);
  font-family:'Sora', sans-serif;
  font-size: 10.5px; font-weight: 800; letter-spacing:.08em;
  text-transform: uppercase;
  margin-right: 8px;
}
.post-date{ font-size: 12px; color: var(--muted) }
.post h4{
  font-size: 17px; font-weight: 700; color: var(--navy);
  line-height: 1.4; margin: 14px 0 18px;
}
.post-link{
  margin-top:auto; align-self:flex-start;
  font-family:'Sora', sans-serif;
  font-size: 13.5px; font-weight: 700; color: var(--red);
  letter-spacing: .02em;
}
.post-link:hover{ color: var(--red-2) }

/* === Contact === */
.contact-grid{
  display:grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: start;
}
.contact-copy h2{
  font-size: clamp(30px, 3.6vw, 46px); font-weight: 800; line-height: 1.1;
  margin: 0 0 18px;
}
.contact-copy > p{ font-size: 16px; line-height: 1.7; margin: 0 0 28px; max-width: 50ch }
.contact-points{ list-style:none; padding: 0; margin: 0 0 28px; display:flex; flex-direction:column; gap: 12px }
.contact-points li{
  font-size: 15px; color: #d4dce8;
  padding-left: 30px; position: relative;
}
.contact-points li::before{
  content:""; position: absolute; left: 0; top: 9px;
  width: 18px; height: 9px;
  border-left: 2.5px solid var(--red);
  border-bottom: 2.5px solid var(--red);
  transform: rotate(-45deg);
}
.contact-call{
  display:flex; flex-direction:column; gap: 6px;
  padding: 20px 24px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08); border-radius: 12px;
  border-left: 4px solid var(--red);
}
.contact-call span{ font-size: 13px; color: #c8d0de }
.contact-call a{ font-family:'Sora', sans-serif; font-weight: 800; font-size: 26px; color:#fff }
.contact-call a:hover{ color: var(--red) }

.contact-form{
  background: #fff;
  padding: 34px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display:flex; flex-direction:column; gap: 14px;
  box-shadow: var(--shadow-md);
  color: var(--ink-2);
}
.row.two{ display:grid; grid-template-columns: 1fr 1fr; gap: 14px }
.field{ display:flex; flex-direction:column; gap: 6px }
.field label{
  font-family:'Sora', sans-serif;
  font-size: 12px; font-weight: 700; color: var(--navy);
  letter-spacing: .04em;
}
.field input, .field select, .field textarea{
  width: 100%; padding: 13px 14px;
  background: var(--bg);
  border: 1.5px solid var(--line-2);
  border-radius: 10px;
  font: 500 15px/1.4 'Inter', sans-serif;
  color: var(--navy); outline: none;
  resize: vertical;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field select{
  appearance:none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 5px 5px; background-repeat: no-repeat;
  padding-right: 36px;
}
.field input:focus, .field select:focus, .field textarea:focus{
  border-color: var(--red); box-shadow: 0 0 0 3px rgba(200,16,46,.15);
}
.legal{ font-size: 11.5px; color: var(--muted); margin: 6px 0 0; line-height: 1.5 }

/* === Areas === */
.areas-cols{
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
  max-width: 1000px; margin: 0 auto;
}
.areas-cols h4{
  font-family:'Sora', sans-serif;
  font-size: 14px; font-weight: 800; color: var(--red);
  letter-spacing: .18em; text-transform: uppercase;
  margin-bottom: 18px; padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.areas-cols ul{ list-style:none; padding: 0; margin: 0; display:flex; flex-direction:column; gap: 10px }
.areas-cols li{ font-size: 15px; color: var(--ink-2) }
.areas-note{
  text-align:center; margin-top: 40px;
  font-size: 15px; color: var(--ink-2);
}
.areas-note a{ color: var(--red); font-weight: 700 }
.areas-note a:hover{ color: var(--red-2) }

/* === Footer === */
.footer{ background: #060f22; color: #a8b3c4; padding: 70px 0 28px; border-top: 1px solid rgba(255,255,255,.05) }
.foot-grid{
  display:grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px;
}
.footer h4{
  font-family:'Sora', sans-serif;
  color: #fff; font-size: 14px; font-weight: 700;
  letter-spacing: .08em; margin: 8px 0 18px;
  text-transform: uppercase;
}
.footer ul{ list-style:none; padding: 0; margin: 0; display:flex; flex-direction:column; gap: 9px }
.footer li, .footer a{ font-size: 14px; color: #a8b3c4 }
.footer a:hover{ color: var(--red) }
.muted{ color: #8a95a9; font-size: 13.5px; line-height: 1.65; margin: 12px 0 0; max-width: 38ch }
.muted b{ color: #fff }
.muted a{ color: #a8b3c4 }
.muted a:hover{ color: var(--red) }
.muted-strong{ color: #fff; font-size: 15.5px; margin: 16px 0 14px }
.muted-strong a{ color: #fff; font-weight: 700 }
.muted-strong a:hover{ color: var(--red) }
.ph-ico{ margin-right: 6px }
.foot-base{
  padding-top: 26px; border-top: 1px solid rgba(255,255,255,.08);
  display:flex; justify-content:space-between; gap: 14px; flex-wrap: wrap;
  color: #6a7587; font-size: 12.5px;
}

/* === Floating Call Us button === */
.call-fab{
  position: fixed; right: 22px; bottom: 22px; z-index: 100;
  display:inline-flex; align-items:center; gap: 10px;
  padding: 15px 24px;
  background: var(--red); color: #fff;
  border-radius: 999px;
  font-family:'Sora', sans-serif;
  font-weight: 800; font-size: 14.5px;
  box-shadow: 0 14px 32px -10px rgba(200,16,46,.65), 0 4px 14px -4px rgba(0,0,0,.25);
  transition: all .25s var(--ease);
}
.call-fab:hover{ background: var(--red-2); color: #fff; transform: translateY(-2px); box-shadow: 0 20px 42px -12px rgba(200,16,46,.75) }
.call-fab svg{ width: 18px; height: 18px }

/* === Toast === */
.toast{
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--navy); color: #fff;
  font-weight: 600; padding: 12px 20px; border-radius: 999px;
  box-shadow: var(--shadow-lg);
  opacity: 0; pointer-events:none;
  transition: all .35s var(--ease);
  z-index: 110; font-size: 14px;
}
.toast.show{ opacity:1; transform: translateX(-50%) translateY(0) }

/* === Reveal anim === */
.reveal{ opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease) }
.reveal.in{ opacity: 1; transform: none }

@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{ animation:none !important; transition:none !important }
  .reveal{ opacity:1; transform:none }
}

/* === Responsive === */
@media (max-width: 1100px){
  .grid.services{ grid-template-columns: repeat(2, 1fr) }
  .grid.projects{ grid-template-columns: repeat(2, 1fr) }
  .process-row{ grid-template-columns: repeat(3, 1fr) }
  .grid.reviews{ grid-template-columns: repeat(2, 1fr) }
  .grid.insights{ grid-template-columns: repeat(2, 1fr) }
  .grid.why-three{ grid-template-columns: 1fr }
  .contact-grid{ grid-template-columns: 1fr; gap: 36px }
  .nav-links{ display:none }
  .foot-grid{ grid-template-columns: 1fr 1fr; gap: 32px }
  .stats-row{ grid-template-columns: repeat(2, 1fr); gap: 24px 18px }
}

@media (max-width: 720px){
  .container{ padding: 0 18px }
  .utility-inner{ flex-direction: column; gap: 4px; padding: 8px 18px; text-align:center; font-size: 12px }
  .nav-inner{ padding: 12px 18px; gap: 14px }
  .brand-name{ font-size: 17px }
  .brand-text em{ display: none }
  .brand-logo{ height: 44px }
  .brand-logo-footer{ height: 56px; padding: 6px 12px }
  .hero{ padding: 56px 0 64px; min-height: auto }
  .hero h1{ font-size: 34px }
  .hero-ctas{ flex-direction: column; align-items: stretch; gap: 10px }
  .btn{ width: 100%; max-width: 340px; margin: 0 auto }
  .trust-pills{ gap: 8px }
  .pill{ font-size: 11.5px; padding: 8px 14px }
  .section{ padding: 64px 0 }
  .section-head{ margin-bottom: 36px }
  .grid.services, .grid.projects, .grid.reviews, .grid.insights{ grid-template-columns: 1fr }
  .process-row{ grid-template-columns: 1fr; gap: 14px }
  .areas-cols{ grid-template-columns: 1fr; gap: 28px }
  .contact-form{ padding: 24px }
  .row.two{ grid-template-columns: 1fr }
  .foot-grid{ grid-template-columns: 1fr; gap: 32px }
  .stats-row{ grid-template-columns: 1fr 1fr }
  .call-fab{ right: 12px; bottom: 12px; padding: 13px 20px; font-size: 13.5px }
  .logos-grid{ gap: 16px }
  .logo-item small{ display:none }
  .nav{ position: static }
}
