:root {
  --bg: #f5f5f7;
  --bg-dark: #050505;
  --text: #111114;
  --muted: #6e6e73;
  --line: rgba(0, 0, 0, 0.1);
  --card: rgba(255, 255, 255, 0.78);
  --card-solid: #ffffff;
  --accent: #0071e3;
  --accent-dark: #005bb8;
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
  --header-height: 72px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}
.narrow { width: min(820px, calc(100% - 40px)); }
.section { padding: 110px 0; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-height);
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(20px, calc((100vw - 1120px) / 2));
  background: rgba(245, 245, 247, 0.74);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: background 220ms ease, box-shadow 220ms ease;
}
.site-header.is-scrolled { box-shadow: 0 10px 34px rgba(0,0,0,0.08); }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 700; letter-spacing: -0.02em; }
.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  object-fit: contain;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
  padding: 4px;
}
.brand-text { font-size: 15px; }
.nav { display: flex; align-items: center; gap: 30px; color: #1d1d1f; font-size: 14px; font-weight: 600; }
.nav a { opacity: .84; transition: opacity 180ms ease, color 180ms ease; }
.nav a:hover { opacity: 1; color: var(--accent); }
.nav-cta {
  padding: 10px 18px; border-radius: 999px;
  background: #111114; color: #fff !important; opacity: 1 !important;
}
.menu-button { display: none; }

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--header-height) + 70px);
  background: radial-gradient(circle at 65% 30%, rgba(0,113,227,.20), transparent 32%), #f5f5f7;
}
.hero-bg {
  position: absolute;
  inset: auto -15% -30% -15%;
  height: 55%;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.85));
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, .95fr);
  gap: 64px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
}
h1, h2, h3 { margin: 0; line-height: 1.04; letter-spacing: -0.055em; }
h1 { font-size: clamp(52px, 7vw, 94px); max-width: 850px; }
h2 { font-size: clamp(38px, 5vw, 70px); }
h3 { font-size: 24px; letter-spacing: -0.035em; }
p { color: var(--muted); font-size: 19px; margin: 20px 0 0; }
.hero-subtitle { max-width: 680px; font-size: clamp(20px, 2.4vw, 27px); letter-spacing: -0.025em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 50px; padding: 0 24px; border-radius: 999px;
  font-weight: 700; font-size: 16px; transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--accent); color: #fff; box-shadow: 0 14px 34px rgba(0, 113, 227, .24); }
.button-primary:hover { background: var(--accent-dark); }
.button-secondary { background: rgba(255,255,255,.85); border: 1px solid rgba(0,0,0,.08); }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.trust-row span {
  padding: 9px 12px; border-radius: 999px;
  background: rgba(255,255,255,.66); border: 1px solid rgba(0,0,0,.06);
  color: #454548; font-size: 13px; font-weight: 700;
}

.hero-visual { position: relative; min-height: 560px; display: grid; place-items: center; }
.glass-card {
  width: min(430px, 100%); min-height: 520px; border-radius: 44px;
  background: linear-gradient(145deg, rgba(255,255,255,.86), rgba(255,255,255,.32));
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  padding: 30px;
  position: relative;
}
.glass-pane {
  height: 390px; border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.7), rgba(0,113,227,.08)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.35), rgba(255,255,255,.35) 1px, transparent 1px, transparent 54px);
  border: 1px solid rgba(0,0,0,.09);
  position: relative;
  overflow: hidden;
}
.glass-pane::after {
  content:""; position:absolute; inset:-20%;
  background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,.75) 47%, transparent 58%);
  transform: translateX(-20%);
}
.crack { position: absolute; height: 2px; background: rgba(17,17,20,.38); transform-origin: left center; border-radius: 999px; }
.crack-one { width: 180px; left: 145px; top: 145px; transform: rotate(28deg); }
.crack-two { width: 108px; left: 174px; top: 176px; transform: rotate(-48deg); }
.crack-three { width: 72px; left: 242px; top: 202px; transform: rotate(62deg); }
.status-card {
  position: absolute; left: 38px; right: 38px; bottom: 30px;
  min-height: 70px; border-radius: 22px;
  display:flex; align-items:center; gap:12px; padding:0 18px;
  background: rgba(255,255,255,.82); border: 1px solid rgba(0,0,0,.07);
  font-weight: 800; letter-spacing: -0.02em;
}
.status-dot { width: 12px; height: 12px; background: #34c759; border-radius: 999px; box-shadow: 0 0 0 8px rgba(52,199,89,.12); }
.floating-card {
  position: absolute; padding: 15px 18px; border-radius: 18px;
  background: rgba(255,255,255,.8); border: 1px solid rgba(0,0,0,.07);
  box-shadow: 0 14px 44px rgba(0,0,0,.1);
  font-weight: 800; letter-spacing: -0.03em;
}
.card-top { right: 0; top: 92px; }
.card-bottom { left: 0; bottom: 92px; }

.intro { background: #fff; text-align: center; }
.intro p { font-size: 24px; letter-spacing: -0.025em; }
.section-heading { margin-bottom: 46px; max-width: 820px; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card {
  min-height: 330px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--card-solid);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 20px 60px rgba(0,0,0,.07);
  display: flex;
  flex-direction: column;
}
.service-card p { font-size: 17px; }
.icon {
  width: 50px; height: 50px; border-radius: 17px;
  display: grid; place-items: center;
  background: #f1f6ff; color: var(--accent);
  font-weight: 900; margin-bottom: auto;
}

.split-section { background: #050505; color: #fff; }
.split-section p, .site-footer p { color: rgba(255,255,255,.64); }
.split-grid { display: grid; grid-template-columns: 1fr .78fr; gap: 60px; align-items: center; }
.check-list { list-style: none; padding: 0; margin: 32px 0 0; display: grid; gap: 16px; }
.check-list li { position: relative; padding-left: 34px; color: rgba(255,255,255,.84); font-size: 18px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: -2px; color: #34c759; font-weight: 900; }
.comparison {
  border-radius: 36px;
  background: linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.14);
  padding: 20px;
}
.comparison-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 18px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.68);
  font-size: 17px;
}
.comparison-row:last-child { border-bottom: 0; }
.comparison-row strong { color: #fff; font-size: 28px; letter-spacing: -0.05em; }

.areas { background: #fff; }
.area-text { max-width: 740px; }
.area-tags { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.area-tags span { padding: 14px 18px; border-radius: 999px; background: #f5f5f7; border: 1px solid rgba(0,0,0,.06); font-weight: 800; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step { padding: 32px; border-radius: var(--radius-lg); background: #fff; border: 1px solid rgba(0,0,0,.06); min-height: 270px; }
.step span { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--text); color: #fff; font-weight: 900; margin-bottom: 50px; }
.step p { font-size: 17px; }
.quote-section { padding-top: 0; }
.quote-card {
  border-radius: var(--radius-xl);
  background: #111114;
  color: #fff;
  padding: clamp(34px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  box-shadow: var(--shadow);
}
.quote-card p { color: rgba(255,255,255,.66); max-width: 620px; }
.quote-actions { display: flex; flex-direction: column; gap: 14px; }
.quote-card .button-secondary { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.14); }
.faq { background: #fff; }
.faq-item { border-top: 1px solid rgba(0,0,0,.1); padding: 24px 0; }
.faq-item:last-child { border-bottom: 1px solid rgba(0,0,0,.1); }
.faq-item summary { cursor: pointer; font-size: 22px; font-weight: 800; letter-spacing: -0.035em; }
.faq-item p { font-size: 17px; max-width: 720px; }

.site-footer { background: #050505; color: #fff; padding: 70px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .7fr .7fr; gap: 40px; }
.footer-brand .brand-logo { box-shadow: none; }
.site-footer h3 { font-size: 18px; margin-bottom: 16px; }
.site-footer a { display: block; color: rgba(255,255,255,.72); margin-top: 10px; }
.footer-bottom { margin-top: 60px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.44); font-size: 14px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .section { padding: 84px 0; }
  .hero-grid, .split-grid, .quote-card { grid-template-columns: 1fr; }
  .hero-visual { min-height: 470px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .quote-actions { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 760px) {
  :root { --header-height: 64px; }
  .container, .narrow { width: min(100% - 28px, 1120px); }
  .brand-logo { width: 42px; height: 42px; border-radius: 12px; }
  .brand-text { max-width: 210px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .menu-button {
    display: inline-flex; flex-direction: column; gap: 6px; justify-content: center;
    width: 42px; height: 42px; border: 0; background: transparent; padding: 0;
  }
  .menu-button span { display: block; width: 22px; height: 2px; background: #111; margin-left: auto; transition: transform 180ms ease; }
  .menu-button.is-open span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-button.is-open span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .nav {
    position: fixed; top: var(--header-height); left: 0; right: 0;
    display: grid; gap: 0;
    background: rgba(245,245,247,.96); backdrop-filter: blur(22px);
    padding: 12px 20px 22px;
    border-bottom: 1px solid rgba(0,0,0,.08);
    transform: translateY(-130%); transition: transform 220ms ease;
  }
  .nav.is-open { transform: translateY(0); }
  .nav a { padding: 14px 0; font-size: 18px; }
  .nav-cta { padding: 13px 18px !important; text-align: center; }
  .hero { min-height: auto; padding-bottom: 60px; }
  h1 { font-size: clamp(44px, 13vw, 64px); }
  h2 { font-size: clamp(34px, 10vw, 48px); }
  p, .hero-subtitle, .intro p { font-size: 19px; }
  .hero-grid { gap: 36px; }
  .hero-visual { min-height: 390px; }
  .glass-card { min-height: 380px; padding: 22px; border-radius: 34px; }
  .glass-pane { height: 280px; border-radius: 26px; }
  .status-card { left: 26px; right: 26px; bottom: 22px; }
  .floating-card { display: none; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 260px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

/* Logo size fix v5: keep only the top header logo visible */
.brand {
  min-width: 0;
  flex-shrink: 0;
}
.brand-logo {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  max-width: 44px !important;
  max-height: 44px !important;
  object-fit: contain !important;
  border-radius: 12px;
  background: transparent !important;
  padding: 0 !important;
  box-shadow: none !important;
}
.brand-text {
  white-space: nowrap;
  font-size: 14px;
  line-height: 1.05;
}
.footer-brand .brand-logo {
  width: 44px !important;
  height: 44px !important;
}
@media (max-width: 980px) {
  }
@media (max-width: 760px) {
  .site-header {
    padding-left: 14px;
    padding-right: 14px;
  }
  .brand-logo {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    max-width: 38px !important;
    max-height: 38px !important;
  }
  .brand-text {
    max-width: none !important;
    font-size: 13px;
  }
  .hero {
    padding-top: calc(var(--header-height) + 42px) !important;
  }
  }
@media (max-width: 420px) {
  .brand-text {
    display: none;
  }
  }


/* Hero real broken glass image v6 */
.hero-photo-visual {
  min-height: 560px;
  display: grid;
  place-items: center;
}
.hero-photo-frame {
  margin: 0;
  width: min(430px, 100%);
  aspect-ratio: 4 / 5;
  border-radius: 44px;
  overflow: hidden;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.78);
  box-shadow: var(--shadow);
  position: relative;
}
.hero-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.42);
  pointer-events: none;
}
.hero-photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 980px) {
  .hero-photo-visual { min-height: 470px; }
  .hero-photo-frame { width: min(390px, 100%); border-radius: 36px; }
}
@media (max-width: 760px) {
  .hero-photo-visual { min-height: auto; }
  .hero-photo-frame { width: min(360px, 100%); border-radius: 32px; }
}
