:root {
  --night: #061726;
  --night-soft: #0a2438;
  --blue: #0a70d8;
  --orange: #e77722;
  --ice: #9feaff;
  --cyan: #37c9ed;
  --white: #f7fcff;
  --paper: #eef8fc;
  --ink: #0c2030;
  --muted: #60798b;
  --line: rgba(12, 49, 74, .13);
  --shadow: 0 24px 70px rgba(6, 23, 38, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 100; padding: 10px 14px; background: white; color: var(--night); transform: translateY(-160%); transition: transform .2s ease; }
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 10px clamp(20px, 5vw, 76px);
  color: white;
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}
.site-header.scrolled { padding-top: 7px; padding-bottom: 7px; background: rgba(6,23,38,.94); box-shadow: 0 12px 40px rgba(0,0,0,.2); backdrop-filter: blur(12px); }
.brand { display: inline-flex; align-items: center; text-decoration: none; line-height: 1; }
.brand-logo { width: 70px; height: 70px; display: block; object-fit: cover; border-radius: 17px; box-shadow: 0 10px 28px rgba(0,0,0,.2); transition: width .25s ease, height .25s ease; }
.site-header.scrolled .brand-logo { width: 58px; height: 58px; }
.site-nav { display: flex; align-items: center; gap: clamp(18px, 2.3vw, 34px); }
.site-nav a { color: rgba(255,255,255,.82); text-decoration: none; font-size: 14px; font-weight: 750; }
.site-nav a:hover, .site-nav a:focus-visible { color: white; }
.site-nav .nav-cta { padding: 11px 18px; border-radius: 999px; color: var(--night); background: var(--orange); }
.menu-button { display: none; border: 0; background: transparent; padding: 8px; }
.menu-button > span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 5px 0; background: white; }

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, .88fr);
  align-items: center;
  gap: clamp(45px, 7vw, 100px);
  padding: 145px clamp(22px, 7vw, 110px) 90px;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(120deg, rgba(6,23,38,.98), rgba(7,42,67,.94)),
    var(--night);
}
.hero::before { content: ""; position: absolute; inset: 0; opacity: .13; background-image: linear-gradient(rgba(159,234,255,.5) 1px, transparent 1px), linear-gradient(90deg, rgba(159,234,255,.5) 1px, transparent 1px); background-size: 48px 48px; mask-image: linear-gradient(90deg, transparent 30%, black); }
.hero::after { content: ""; position: absolute; width: 900px; height: 900px; right: -420px; top: -430px; border: 100px solid rgba(55,201,237,.07); border-radius: 50%; }
.hero-glow { position: absolute; z-index: 0; width: 620px; height: 620px; right: -40px; top: 120px; border-radius: 50%; background: radial-gradient(circle, rgba(55,201,237,.18), transparent 65%); filter: blur(5px); }
.hero-copy, .hero-status { position: relative; z-index: 2; }
.eyebrow { display: flex; align-items: center; gap: 9px; margin: 0 0 18px; color: var(--ice); font-size: 13px; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow span { width: 21px; height: 3px; border-radius: 999px; background: currentColor; }
.eyebrow.dark { color: var(--blue); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.04; }
h1 { max-width: 790px; margin-bottom: 24px; font-size: clamp(53px, 7vw, 96px); letter-spacing: -.07em; font-weight: 930; }
h1 em { color: var(--orange); font-style: normal; }
.hero-text { max-width: 675px; margin-bottom: 31px; color: rgba(255,255,255,.73); font-size: clamp(17px, 1.6vw, 21px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 13px; min-height: 52px; padding: 13px 21px; border-radius: 999px; text-decoration: none; font-weight: 850; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .site-nav a:focus-visible, .social-button:focus-visible, .social-link:focus-visible, .contact-phone:focus-visible, .mobile-actions a:focus-visible { outline: 3px solid var(--ice); outline-offset: 3px; }
.button-primary { color: var(--night); background: var(--ice); box-shadow: 0 14px 34px rgba(0,0,0,.2); }
.button-primary:hover { background: white; }
.button-secondary { color: white; border: 1px solid rgba(255,255,255,.24); }
.button-secondary:hover { background: rgba(255,255,255,.08); }
.trust-row { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 38px; color: rgba(255,255,255,.66); font-size: 13px; font-weight: 700; }
.trust-row span { display: flex; align-items: center; gap: 7px; }
.trust-row i { width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; color: var(--night); background: var(--orange); font-size: 11px; font-style: normal; }

.hero-visual { position: relative; width: min(100%, 650px); margin: 0; justify-self: center; overflow: hidden; border: 1px solid rgba(255,255,255,.2); border-radius: 30px; background: #dceefa; box-shadow: 0 35px 90px rgba(0,0,0,.35); }
.hero-visual::before { content: ""; position: absolute; z-index: 2; inset: 0 0 auto; height: 5px; background: linear-gradient(90deg, var(--blue), var(--orange)); }
.hero-visual img { width: 100%; height: auto; display: block; }
.penguin-badge { position: absolute; z-index: 3; top: 17px; right: 17px; width: 54px; height: 54px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.45); border-radius: 17px; background: rgba(247,252,255,.92); box-shadow: 0 12px 30px rgba(0,0,0,.22); font-size: 30px; line-height: 1; transform: rotate(4deg); }
.gauge-badge { position: absolute; z-index: 3; top: 18px; left: 18px; display: inline-flex; align-items: center; gap: 8px; padding: 9px 13px; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; color: white; background: rgba(6,23,38,.82); box-shadow: 0 12px 30px rgba(0,0,0,.22); backdrop-filter: blur(10px); font-size: 12px; font-weight: 850; }
.hero-visual figcaption { position: absolute; z-index: 3; right: 18px; bottom: 18px; display: flex; align-items: center; gap: 8px; padding: 10px 14px; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; color: white; background: rgba(6,23,38,.8); box-shadow: 0 12px 30px rgba(0,0,0,.22); backdrop-filter: blur(10px); font-size: 12px; font-weight: 850; }
.hero-visual figcaption span { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 12px rgba(231,119,34,.9); }

.service-strip { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 18px; padding: 18px 24px; color: var(--night); background: var(--ice); font-size: 12px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.service-strip i { width: 5px; height: 5px; border-radius: 50%; background: var(--blue); opacity: .7; }
.section { padding: clamp(78px, 9vw, 130px) clamp(22px, 7vw, 110px); }
.section-heading { max-width: 1180px; margin: 0 auto 54px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(270px, .48fr); gap: 70px; align-items: end; }
.section-heading h2 { max-width: 760px; margin-bottom: 0; font-size: clamp(42px, 5.8vw, 72px); letter-spacing: -.06em; }
.section-heading > p { margin-bottom: 4px; color: var(--muted); font-size: 17px; }
.service-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 17px; }
.service-card { position: relative; min-height: 330px; display: flex; flex-direction: column; padding: clamp(25px, 3vw, 36px); overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: white; box-shadow: 0 13px 36px rgba(6,23,38,.05); }
.service-card::after { content: ""; position: absolute; width: 110px; height: 110px; right: -50px; bottom: -50px; border: 18px solid rgba(10,112,216,.06); border-radius: 50%; }
.service-card.featured { color: white; border-color: transparent; background: var(--blue); box-shadow: 0 25px 65px rgba(10,112,216,.2); }
.service-card.featured::after { border-color: rgba(159,234,255,.2); }
.service-number { font-size: 12px; font-weight: 900; color: var(--blue); }
.featured .service-number { color: var(--ice); }
.service-icon { width: 49px; height: 49px; display: grid; place-items: center; margin-top: auto; border-radius: 15px; color: var(--blue); background: var(--paper); font-size: 24px; font-weight: 900; }
.featured .service-icon { color: var(--night); background: var(--ice); }
.service-card h3 { margin: 22px 0 12px; font-size: clamp(23px, 2.4vw, 31px); letter-spacing: -.04em; }
.service-card p { margin-bottom: 0; color: var(--muted); }
.featured p { color: rgba(255,255,255,.72); }

.results-section { color: white; background: linear-gradient(145deg, #071a2b, #0a2b46); }
.results-section .section-heading > p { color: rgba(255,255,255,.65); }
.results-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)) minmax(260px, .72fr); gap: 18px; align-items: stretch; }
.result-card { margin: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 24px; background: var(--night-soft); box-shadow: 0 22px 55px rgba(0,0,0,.2); }
.result-card img { width: 100%; height: auto; display: block; }
.result-card figcaption { padding: 15px 18px; color: rgba(255,255,255,.77); font-size: 14px; font-weight: 800; }
.work-social-card { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: clamp(25px, 3vw, 38px); border-radius: 24px; color: var(--night); background: var(--orange); box-shadow: 0 22px 55px rgba(0,0,0,.2); }
.work-social-card .availability { margin-bottom: 18px; color: rgba(6,23,38,.65); }
.work-social-card h3 { margin-bottom: 16px; font-size: clamp(30px, 3vw, 42px); letter-spacing: -.05em; }
.work-social-card p { margin-bottom: 26px; color: rgba(6,23,38,.75); }
.social-buttons { width: 100%; display: grid; gap: 10px; }
.social-button { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 51px; padding: 12px 16px; border-radius: 999px; color: white; background: var(--night); text-decoration: none; font-size: 14px; font-weight: 850; transition: transform .2s ease, background .2s ease; }
.social-button:hover { transform: translateY(-2px); background: #0e3554; }
.social-button.google-review { color: var(--night); background: white; }
.social-button.google-review:hover { background: var(--ice); }

.process-section { display: grid; grid-template-columns: minmax(300px, .72fr) minmax(0, 1fr); gap: clamp(55px, 8vw, 120px); color: white; background: var(--night); }
.process-intro { position: sticky; top: 120px; align-self: start; }
.process-intro h2 { margin-bottom: 24px; font-size: clamp(43px, 5.3vw, 68px); letter-spacing: -.06em; }
.process-intro > p:not(.eyebrow) { max-width: 520px; color: rgba(255,255,255,.65); }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.15); }
.process-list li { display: grid; grid-template-columns: 58px 1fr; gap: 18px; padding: 37px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.process-list > li > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; color: var(--night); background: var(--ice); font-weight: 900; }
.process-list h3 { margin-bottom: 9px; font-size: clamp(25px, 3vw, 34px); letter-spacing: -.04em; }
.process-list p { max-width: 630px; margin: 0; color: rgba(255,255,255,.61); }

.area-section { background: var(--paper); }
.area-panel { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: minmax(0, .75fr) minmax(320px, 1fr); gap: clamp(45px, 8vw, 110px); align-items: center; padding: clamp(35px, 5vw, 70px); border-radius: 30px; background: white; box-shadow: var(--shadow); }
.area-panel h2 { margin-bottom: 18px; font-size: clamp(45px, 6vw, 76px); letter-spacing: -.065em; }
.area-panel > div > p:last-child { color: var(--muted); font-size: 17px; }
.area-panel ul { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.area-panel li { display: flex; justify-content: space-between; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--line); font-size: clamp(17px, 2vw, 22px); font-weight: 800; }
.area-panel li span { color: var(--blue); font-size: 12px; }

.contact-section { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(310px, .58fr); gap: clamp(45px, 8vw, 120px); align-items: center; padding: clamp(82px, 10vw, 135px) clamp(22px, 7vw, 110px); overflow: hidden; color: white; background: var(--blue); }
.contact-section::after { content: ""; position: absolute; width: 600px; height: 600px; left: -270px; bottom: -420px; border: 80px solid rgba(159,234,255,.12); border-radius: 50%; }
.contact-copy, .contact-card { position: relative; z-index: 2; }
.contact-copy h2 { margin-bottom: 20px; max-width: 780px; font-size: clamp(50px, 7vw, 88px); letter-spacing: -.07em; }
.contact-copy > p:last-child { max-width: 650px; color: rgba(255,255,255,.72); font-size: 18px; }
.contact-card { display: flex; flex-direction: column; align-items: flex-start; padding: clamp(27px, 4vw, 40px); border: 1px solid rgba(255,255,255,.22); border-radius: 26px; background: rgba(6,23,38,.17); backdrop-filter: blur(12px); }
.availability { margin-bottom: 12px; color: var(--ice); font-size: 12px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.contact-phone { margin-bottom: 24px; color: white; font-size: clamp(29px, 4vw, 44px); line-height: 1; font-weight: 930; letter-spacing: -.05em; text-decoration: none; }
.button-light { width: 100%; color: var(--night); background: white; }
.contact-socials { width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 20px 0 13px; }
.social-link { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 11px 13px; border: 1px solid rgba(255,255,255,.24); border-radius: 14px; color: white; text-decoration: none; font-size: 14px; font-weight: 800; }
.social-link:hover { background: rgba(255,255,255,.1); }
.contact-socials .google-review { grid-column: 1 / -1; color: var(--night); border-color: white; background: white; }
.contact-socials .google-review:hover { background: var(--ice); }
.contact-card small { color: rgba(255,255,255,.58); line-height: 1.5; }

footer { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 40px; padding: 35px clamp(22px, 7vw, 110px); color: rgba(255,255,255,.55); background: #03101c; font-size: 13px; }
.footer-brand { color: white; }
.footer-brand .brand-logo { width: 62px; height: 62px; }
footer p { margin: 0; }
.mobile-actions { display: none; }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1020px) {
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .results-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .work-social-card { grid-column: 1 / -1; }
}

@media (max-width: 940px) {
  .site-header { padding: 14px 20px; }
  .menu-button { display: block; position: relative; z-index: 2; }
  .site-nav { position: fixed; inset: 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 25px; padding: 88px 28px; background: var(--night); transform: translateX(100%); transition: transform .25s ease; }
  .site-nav.open { transform: translateX(0); }
  .site-nav a { font-size: 26px; }
  .site-nav .nav-cta { margin-top: 8px; font-size: 18px; }
  .hero { grid-template-columns: 1fr; padding: 140px 24px 75px; }
  .hero-visual { width: min(100%, 680px); justify-self: start; }
  .section-heading { grid-template-columns: 1fr; gap: 22px; }
  .process-section { grid-template-columns: 1fr; }
  .process-intro { position: static; }
  .area-panel { grid-template-columns: 1fr; }
  .contact-section { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; gap: 17px; }
}

@media (max-width: 650px) {
  body { padding-bottom: 66px; }
  .hero { min-height: auto; }
  h1 { font-size: clamp(50px, 15vw, 72px); }
  .hero-text { font-size: 17px; }
  .hero-actions .button { width: 100%; }
  .trust-row { display: grid; grid-template-columns: 1fr; gap: 10px; }
  .brand-logo { width: 58px; height: 58px; border-radius: 14px; }
  .site-header.scrolled .brand-logo { width: 52px; height: 52px; }
  .hero-visual { margin-top: 10px; border-radius: 22px; }
  .penguin-badge { top: 12px; right: 12px; width: 46px; height: 46px; border-radius: 14px; font-size: 25px; }
  .gauge-badge { top: 12px; left: 12px; padding: 7px 10px; font-size: 11px; }
  .hero-visual figcaption { position: static; border: 0; border-radius: 0; background: var(--night-soft); box-shadow: none; }
  .service-strip { justify-content: flex-start; gap: 11px; }
  .service-strip span { font-size: 10px; }
  .section { padding-left: 19px; padding-right: 19px; }
  .section-heading { margin-bottom: 35px; }
  .service-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .work-social-card { grid-column: auto; }
  .service-card { min-height: 290px; }
  .process-list li { grid-template-columns: 50px 1fr; gap: 8px; }
  .area-panel { padding: 25px; }
  .contact-section { padding-left: 20px; padding-right: 20px; }
  .contact-card { padding: 25px 20px; }
  .mobile-actions { position: fixed; z-index: 45; left: 8px; right: 8px; bottom: 7px; display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; border: 1px solid rgba(255,255,255,.26); border-radius: 999px; background: var(--night); box-shadow: 0 14px 36px rgba(0,0,0,.28); }
  .mobile-actions a { min-height: 52px; display: grid; place-items: center; color: white; text-decoration: none; font-weight: 900; }
  .mobile-actions a:last-child { color: var(--night); background: var(--orange); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
