:root {
  --ink: #0b2239;
  --ink-soft: #39536b;
  --blue: #0c8ff0;
  --blue-dark: #086bb8;
  --cyan: #35c2f4;
  --pale: #eef8ff;
  --surface: #ffffff;
  --line: #dbe8f2;
  --shadow: 0 18px 55px rgba(11,34,57,.10);
  --radius: 24px;
  --radius-sm: 16px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #f8fbfd;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid rgba(12,143,240,.35); outline-offset: 4px; border-radius: 6px; }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--blue-dark);
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--cyan); }
h1, h2, h3 { line-height: 1.08; letter-spacing: -.035em; margin: 0; }
h1 { font-size: clamp(2.65rem, 6vw, 5.4rem); max-width: 880px; }
h2 { font-size: clamp(2rem, 4vw, 3.55rem); }
h3 { font-size: 1.35rem; }
p { margin: 0; }
.lead { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--ink-soft); max-width: 720px; }
.muted { color: var(--ink-soft); }

.skip-link { position: fixed; z-index: 1000; top: 10px; left: 10px; transform: translateY(-150%); background: var(--ink); color: white; padding: 10px 14px; border-radius: 10px; text-decoration: none; }
.skip-link:focus { transform: translateY(0); }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(248,251,253,.90); backdrop-filter: blur(18px); border-bottom: 1px solid rgba(219,232,242,.78); }
.nav { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 900; letter-spacing: -.03em; }
.brand img { width: 68px; height: 54px; object-fit: contain; object-position: center; mix-blend-mode: multiply; }
.brand span { font-size: 1.15rem; }
.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; margin: 0; padding: 0; }
.nav-links a { text-decoration: none; font-weight: 700; font-size: .95rem; color: var(--ink-soft); }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--blue-dark); }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.menu-toggle { display: none; border: 0; background: transparent; width: 46px; height: 46px; border-radius: 50%; cursor: pointer; }
.menu-toggle svg { width: 24px; height: 24px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 10px 24px rgba(12,143,240,.25); }
.btn-primary:hover { background: var(--blue-dark); }
.btn-secondary { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-ghost { color: var(--blue-dark); background: transparent; padding-inline: 4px; }
.btn svg { width: 18px; height: 18px; }

.hero { position: relative; overflow: hidden; padding: 76px 0 58px; background: linear-gradient(180deg,#fff 0%,#f1f9ff 100%); }
.hero::before { content: ""; position: absolute; width: 550px; height: 550px; border-radius: 50%; background: radial-gradient(circle, rgba(53,194,244,.20), rgba(53,194,244,0) 67%); top: -210px; right: -110px; }
.hero-grid { display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 64px; position: relative; }
.hero-copy .lead { margin-top: 24px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.hero-meta { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 30px; color: var(--ink-soft); font-size: .92rem; }
.hero-meta span { display: flex; align-items: center; gap: 8px; }
.hero-meta svg { color: var(--blue); width: 18px; height: 18px; }
.hero-visual { position: relative; min-height: 550px; }
.hero-photo { width: 100%; height: 550px; object-fit: cover; object-position: center; border-radius: 36px; box-shadow: var(--shadow); background: #e8f3fa; }
.hero-logo-card { position: absolute; left: -48px; bottom: 34px; width: 210px; padding: 18px; border-radius: 24px; background: rgba(255,255,255,.95); box-shadow: var(--shadow); backdrop-filter: blur(8px); }
.hero-logo-card img { width: 100%; aspect-ratio: 1.5/1; object-fit: contain; mix-blend-mode: multiply; }
.floating-badge { position: absolute; right: -30px; top: 34px; background: var(--ink); color: #fff; border-radius: 18px; padding: 16px 18px; box-shadow: var(--shadow); max-width: 190px; }
.floating-badge strong { display: block; font-size: 1.7rem; line-height: 1; margin-bottom: 4px; }

.trust-strip { padding: 24px 0; background: var(--ink); color: white; }
.trust-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.trust-item { display: flex; align-items: center; gap: 12px; font-weight: 700; }
.trust-icon { flex: 0 0 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.12); }
.trust-icon svg { width: 19px; }

.section-head { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 42px; }
.section-head .lead { max-width: 620px; }
.cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: 0 10px 32px rgba(11,34,57,.05); }
.card-media { aspect-ratio: 4/3; object-fit: cover; width: 100%; background: #e7f3fb; }
.card-body { padding: 24px; }
.card-body h3 { margin-bottom: 12px; }
.card-body p { color: var(--ink-soft); }
.card-link { display: inline-flex; margin-top: 18px; text-decoration: none; color: var(--blue-dark); font-weight: 800; }
.card-link:hover { text-decoration: underline; }

.feature-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 74px; align-items: center; }
.feature-photo { width: 100%; min-height: 590px; object-fit: cover; border-radius: 34px; box-shadow: var(--shadow); background: #e7f3fb; }
.steps { margin-top: 34px; display: grid; gap: 24px; }
.step { display: grid; grid-template-columns: 46px 1fr; gap: 16px; }
.step-number { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: var(--pale); color: var(--blue-dark); font-weight: 900; }
.step h3 { font-size: 1.15rem; margin-bottom: 6px; }
.step p { color: var(--ink-soft); }

.callout { background: linear-gradient(130deg,var(--ink),#123f62); color: white; border-radius: 36px; padding: 54px; display: grid; grid-template-columns: 1.2fr .8fr; gap: 48px; align-items: center; overflow: hidden; position: relative; }
.callout::after { content:""; position:absolute; width:360px; height:360px; right:-120px; top:-180px; border-radius:50%; background:rgba(53,194,244,.17); }
.callout p { color: #dbe9f3; margin-top: 16px; max-width: 650px; }
.callout-actions { display: flex; justify-content: flex-end; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }
.callout .btn-secondary { background: transparent; border-color: rgba(255,255,255,.25); color: white; }

.team-preview { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.portrait { border-radius: 34px; overflow: hidden; background: white; border: 1px solid var(--line); box-shadow: var(--shadow); }
.portrait img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.portrait-note { padding: 18px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.tag { display: inline-flex; padding: 7px 10px; border-radius: 999px; background: var(--pale); color: var(--blue-dark); font-size: .76rem; font-weight: 800; }
.check-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; grid-template-columns: repeat(2,1fr); gap: 12px 18px; }
.check-list li { display: flex; gap: 10px; color: var(--ink-soft); }
.check-list svg { width: 18px; flex: 0 0 18px; margin-top: 4px; color: var(--blue); }

.page-hero { padding: 76px 0 56px; background: linear-gradient(180deg,#fff,#f1f9ff); border-bottom: 1px solid var(--line); }
.page-hero .lead { margin-top: 22px; }
.breadcrumb { font-size: .9rem; color: var(--ink-soft); margin-bottom: 18px; }
.breadcrumb a { color: var(--blue-dark); text-decoration: none; font-weight: 700; }

.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.service-box { border-radius: var(--radius); background: white; border: 1px solid var(--line); padding: 30px; }
.service-box .icon-box { width: 52px; height: 52px; border-radius: 16px; background: var(--pale); display: grid; place-items: center; color: var(--blue-dark); margin-bottom: 22px; }
.service-box svg { width: 24px; }
.service-box h3 { margin-bottom: 10px; }
.service-box p, .service-box li { color: var(--ink-soft); }
.service-box ul { padding-left: 20px; margin: 14px 0 0; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.content-card { background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; }
.content-card + .content-card { margin-top: 18px; }
.content-card h2, .content-card h3 { margin-bottom: 16px; }
.content-card p + p { margin-top: 14px; }

.team-grid { display: grid; gap: 28px; }
.team-member { background: white; border: 1px solid var(--line); border-radius: 30px; overflow: hidden; display: grid; grid-template-columns: 380px 1fr; }
.team-member img { width: 100%; height: 100%; min-height: 440px; object-fit: cover; background: #eef5f8; }
.team-member .team-copy { padding: 40px; }
.team-role { display: block; margin: 8px 0 20px; color: var(--blue-dark); font-weight: 800; }
.team-copy p + p { margin-top: 15px; }

.price-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-top: 26px; }
.price-item { display: flex; justify-content: space-between; gap: 20px; padding: 18px 20px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.price-item strong:last-child { white-space: nowrap; color: var(--blue-dark); }
.notice { padding: 20px 22px; border-left: 4px solid var(--blue); background: var(--pale); border-radius: 0 16px 16px 0; color: var(--ink-soft); }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 24px; }
.contact-card { background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; }
.contact-list { display: grid; gap: 18px; margin-top: 24px; }
.contact-row { display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: center; }
.contact-row .ci { width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center; background: var(--pale); color: var(--blue-dark); }
.contact-row svg { width: 20px; }
.contact-row a { color: var(--ink); text-decoration: none; font-weight: 800; }
.contact-row a:hover { color: var(--blue-dark); }
.hours { width: 100%; border-collapse: collapse; margin-top: 20px; }
.hours td { padding: 13px 0; border-bottom: 1px solid var(--line); }
.hours td:last-child { text-align: right; font-weight: 800; }
.map-card { min-height: 100%; background: linear-gradient(135deg,#dff3ff,#f7fbfe); border: 1px solid var(--line); border-radius: var(--radius); padding: 38px; display: grid; align-content: space-between; overflow: hidden; position: relative; }
.map-card::before, .map-card::after { content:""; position:absolute; border: 1px solid rgba(12,143,240,.20); border-radius: 50%; }
.map-card::before { width:420px; height:420px; right:-170px; top:-170px; }
.map-card::after { width:260px; height:260px; right:-90px; top:-90px; }
.map-pin { width: 76px; height: 76px; border-radius: 24px; background: var(--blue); color: white; display: grid; place-items: center; box-shadow: var(--shadow); margin-bottom: 80px; position: relative; z-index: 1; }
.map-pin svg { width: 34px; }

.site-footer { background: #071b2c; color: #d7e5ef; padding: 62px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .75fr .9fr; gap: 54px; }
.footer-brand img { width: 160px; background: white; border-radius: 18px; padding: 9px; mix-blend-mode: normal; }
.footer-brand p { margin-top: 18px; color: #9fb4c4; max-width: 420px; }
.footer-title { color: white; font-size: .9rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; font-weight: 900; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-links a { color: #c8d9e6; text-decoration: none; }
.footer-links a:hover { color: white; }
.footer-meta { border-top: 1px solid rgba(255,255,255,.10); margin-top: 40px; padding-top: 22px; display: flex; justify-content: space-between; gap: 24px; color: #8fa7b7; font-size: .85rem; }

.mobile-bar { display: none; }

@media (max-width: 980px) {
  .nav-links, .nav-actions .btn-secondary { display: none; }
  .menu-toggle { display: grid; place-items: center; }
  .nav.open .nav-links { display: grid; position: absolute; top: 82px; left: 0; right: 0; padding: 20px; background: white; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); gap: 0; }
  .nav.open .nav-links a { display: block; padding: 14px 0; }
  .hero-grid, .feature-grid, .team-preview, .split, .contact-grid { grid-template-columns: 1fr; }
  .hero-copy { order: 1; }
  .hero-visual { order: 2; min-height: 480px; }
  .hero-photo { height: 480px; }
  .hero-logo-card { left: 22px; }
  .floating-badge { right: 20px; }
  .cards { grid-template-columns: repeat(2,1fr); }
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .callout { grid-template-columns: 1fr; }
  .callout-actions { justify-content: flex-start; }
  .team-member { grid-template-columns: 300px 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 72px 0; }
  .site-header .btn-primary { display: none; }
  .brand span { font-size: 1rem; }
  .brand img { width: 56px; }
  .hero { padding-top: 48px; }
  h1 { font-size: clamp(2.5rem, 13vw, 4rem); }
  .hero-grid { gap: 38px; }
  .hero-visual { min-height: 390px; }
  .hero-photo { height: 390px; border-radius: 26px; }
  .hero-logo-card { width: 150px; left: 14px; bottom: 16px; padding: 10px; }
  .floating-badge { top: 18px; right: 12px; max-width: 152px; padding: 13px 14px; font-size: .8rem; }
  .trust-grid { grid-template-columns: 1fr; }
  .section-head { align-items: start; flex-direction: column; margin-bottom: 30px; }
  .cards, .service-grid, .price-grid { grid-template-columns: 1fr; }
  .feature-photo { min-height: 430px; }
  .callout { padding: 34px 26px; border-radius: 26px; }
  .check-list { grid-template-columns: 1fr; }
  .team-member { grid-template-columns: 1fr; }
  .team-member img { min-height: 0; aspect-ratio: 1/1; }
  .team-member .team-copy { padding: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-meta { flex-direction: column; }
  .mobile-bar { display: grid; grid-template-columns: 1fr 1.2fr; gap: 8px; position: fixed; z-index: 110; left: 10px; right: 10px; bottom: 10px; padding: 8px; border-radius: 20px; background: rgba(255,255,255,.96); box-shadow: 0 12px 36px rgba(11,34,57,.20); backdrop-filter: blur(16px); }
  .mobile-bar .btn { min-height: 46px; padding: 0 14px; }
  .site-footer { padding-bottom: 110px; }
}

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