:root {
  --bg: #06152f;
  --bg-deep: #030b1c;
  --surface: #0b2148;
  --surface-2: #102c5b;
  --surface-light: #f5f8fc;
  --text: #eef7ff;
  --text-dark: #0a1b38;
  --muted: #9fb4cd;
  --muted-dark: #5e7188;
  --blue: #167cff;
  --blue-2: #2da8ff;
  --cyan: #29d7ea;
  --green: #28bf8e;
  --border: rgba(147, 187, 230, .18);
  --shadow: 0 24px 70px rgba(3, 12, 30, .22);
  --max: 1180px;
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: #fff;
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: #fff; color: #000; padding: .65rem 1rem; z-index: 9999;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-dark { background: var(--bg); color: var(--text); }
.section-deep { background: var(--bg-deep); color: var(--text); }
.section-soft { background: var(--surface-light); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 14px;
}
.section-dark .eyebrow, .hero .eyebrow { color: #73dff0; }
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; border-radius: 2px; }
h1, h2, h3 { line-height: 1.12; margin-top: 0; letter-spacing: -.025em; }
h1 { font-size: clamp(2.7rem, 5vw, 5rem); }
h2 { font-size: clamp(2rem, 3.4vw, 3.4rem); }
h3 { font-size: 1.24rem; }
p { margin-top: 0; }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--muted-dark); max-width: 760px; }
.section-dark .lead, .section-deep .lead, .hero .lead { color: #bfd0e5; }
.gradient-text { background: linear-gradient(90deg, #39dcef, #45a9ff); -webkit-background-clip: text; background-clip: text; color: transparent; }

.site-header {
  position: sticky; top: 0; z-index: 1200;
  background: rgba(4, 15, 35, .88); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(119, 169, 229, .12);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: #fff; min-width: 245px; }
.brand-mark {
  width: 52px; height: 40px; display: grid; place-items: center;
  color: #65dff3; font-size: 1.3rem; font-weight: 900; letter-spacing: -.08em;
  border: 1px solid rgba(82, 204, 255, .45); border-radius: 11px;
  background: linear-gradient(145deg, rgba(28, 130, 255, .22), rgba(26, 217, 235, .09));
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-size: .94rem; letter-spacing: .025em; }
.brand-text small { font-size: .67rem; color: #9db5d1; margin-top: 4px; }
.primary-nav { display: flex; align-items: center; gap: 25px; }
.primary-nav a { text-decoration: none; color: #c6d6e9; font-size: .92rem; font-weight: 650; }
.primary-nav a:hover, .primary-nav a[aria-current="page"] { color: #fff; }
.nav-cta { padding: 11px 18px; border-radius: 12px; background: linear-gradient(90deg, var(--blue), #19b7f4); color: #fff !important; box-shadow: 0 12px 30px rgba(18, 126, 255, .24); }
.mobile-toggle { display: none; border: 0; background: transparent; color: #fff; font-size: 1.5rem; padding: 8px; }

.hero {
  position: relative; overflow: hidden; min-height: 760px;
  background:
    radial-gradient(circle at 84% 20%, rgba(19, 114, 255, .32), transparent 36%),
    radial-gradient(circle at 5% 93%, rgba(36, 190, 142, .18), transparent 28%),
    linear-gradient(135deg, #06162f 0%, #061a3d 55%, #061128 100%);
  color: #fff;
}
.hero::after { content: ""; position: absolute; inset: auto -15% -45% 45%; height: 600px; border-radius: 50%; background: rgba(17, 116, 255, .08); filter: blur(30px); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 60px; padding: 92px 0 82px; }
.hero-copy h1 { margin-bottom: 24px; }
.hero-copy .lead { max-width: 680px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 48px; padding: 12px 20px; border-radius: 12px; text-decoration: none;
  font-weight: 800; border: 1px solid transparent; transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(90deg, var(--blue), #1ab8ee); color: #fff; box-shadow: 0 15px 35px rgba(9, 112, 255, .27); }
.btn-secondary { color: #fff; border-color: rgba(212, 231, 255, .5); background: rgba(255, 255, 255, .045); }
.btn-light { background: #fff; color: #0a2a55; }
.btn-outline-dark { color: #10305c; border-color: #b8c9dc; background: #fff; }
.hero-visual { position: relative; }
.hero-visual img { border-radius: 24px; box-shadow: 0 30px 70px rgba(0, 0, 0, .32); border: 1px solid rgba(101, 188, 255, .24); }
.hero-badge {
  position: absolute; right: -18px; bottom: -22px; width: 220px; padding: 18px;
  border-radius: 18px; background: rgba(7, 28, 62, .94); border: 1px solid rgba(64, 198, 239, .35); box-shadow: var(--shadow);
}
.hero-badge strong { display: block; font-size: 1.25rem; }
.hero-badge span { font-size: .82rem; color: #bdd1e7; }
.proof-strip { border-top: 1px solid rgba(121, 171, 228, .14); background: rgba(2, 10, 25, .3); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 28px 0; }
.proof-item strong { display: block; font-size: 1.12rem; color: #fff; }
.proof-item span { color: #9fb6d3; font-size: .87rem; }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.cards { margin-top: 46px; }
.card { background: #fff; border: 1px solid #dfe8f3; border-radius: var(--radius); padding: 28px; box-shadow: 0 14px 38px rgba(7, 34, 74, .06); }
.card-dark { background: rgba(10, 33, 72, .88); border: 1px solid rgba(119, 171, 230, .16); color: #fff; }
.card p { color: #667a91; font-size: .95rem; }
.card-dark p { color: #b5c8df; }
.icon-box { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 20px; background: #eaf4ff; color: #0f70e8; font-weight: 900; }
.card-dark .icon-box { background: rgba(28, 125, 255, .16); color: #62d9ee; }
.card-link { display: inline-flex; align-items: center; gap: 7px; text-decoration: none; font-weight: 800; color: var(--blue); margin-top: 10px; }

.logo-cloud { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px; margin-top: 28px; }
.tool-chip { border: 1px solid #dbe5f0; background: #fff; border-radius: 999px; padding: 10px 15px; font-size: .86rem; color: #3f5369; font-weight: 700; }
.section-dark .tool-chip { background: rgba(255,255,255,.045); border-color: rgba(138,180,224,.18); color: #c6d7e9; }

.process { margin-top: 48px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-step { position: relative; padding: 24px; border-radius: 18px; border: 1px solid #dce7f2; background: #fff; }
.process-step .num { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: #0f77ef; color: #fff; font-weight: 900; margin-bottom: 14px; }
.process-step p { color: #64788f; font-size: .9rem; }

.image-card img { border-radius: 22px; box-shadow: var(--shadow); border: 1px solid #dbe6f2; }
.section-dark .image-card img { border-color: rgba(113, 169, 229, .2); }
.bullet-list { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 13px; }
.bullet-list li { position: relative; padding-left: 28px; }
.bullet-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--green); font-weight: 900; }

.case-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; margin-top: 44px; }
.case-card { color: var(--text-dark); padding: 28px; border: 1px solid #dce6f0; border-radius: 20px; background: #fff; box-shadow: 0 12px 36px rgba(7, 31, 67, .055); }
.case-card .tag { display: inline-block; color: #0e68d7; font-size: .75rem; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; }
.case-card p { color: #667a91; }
.case-card ul { margin: 16px 0 0; padding-left: 18px; color: #4e6379; font-size: .92rem; }
.case-card li + li { margin-top: 7px; }
.note { font-size: .86rem; color: #657a91; padding: 14px 16px; background: #f2f6fb; border-left: 3px solid #4a9cf8; border-radius: 10px; }

.faq { max-width: 900px; margin: 44px auto 0; }
.faq details { border: 1px solid #dce6f0; border-radius: 15px; background: #fff; padding: 0 19px; margin-bottom: 12px; }
.faq summary { cursor: pointer; font-weight: 800; padding: 18px 0; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq details p { color: #60758d; padding-bottom: 18px; margin-bottom: 0; }

.cta-band { background: linear-gradient(110deg, #071b40, #0b3a79 56%, #075b7d); color: #fff; border-radius: 28px; padding: 46px; display: flex; align-items: center; justify-content: space-between; gap: 28px; box-shadow: var(--shadow); }
.cta-band h2 { margin-bottom: 8px; font-size: clamp(1.9rem, 3vw, 2.8rem); }
.cta-band p { color: #c4d7e9; margin-bottom: 0; }

.page-hero { background: linear-gradient(130deg, #06152f, #0b3370); color: #fff; padding: 86px 0 70px; }
.page-hero .lead { color: #c0d2e6; }
.breadcrumbs { font-size: .84rem; color: #9eb6d3; margin-bottom: 18px; }
.breadcrumbs a { color: #c9dcf2; text-decoration: none; }

.kpi-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 34px; }
.kpi { border: 1px solid #dfe8f2; border-radius: 18px; padding: 22px; background: #fff; }
.kpi strong { display: block; font-size: 1.5rem; color: #0f6bdc; }
.kpi span { color: #667a90; font-size: .9rem; }

.contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 34px; align-items: start; }
.form-card, .booking-card { border: 1px solid #dce6f0; background: #fff; border-radius: 22px; padding: 30px; box-shadow: 0 15px 45px rgba(5, 30, 66, .07); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.field.full { grid-column: 1 / -1; }
label { display: block; font-size: .86rem; font-weight: 800; margin-bottom: 7px; color: #334a63; }
input, textarea, select { width: 100%; border: 1px solid #cfdae6; border-radius: 11px; padding: 12px 13px; color: #132c4b; background: #fff; outline: none; }
input:focus, textarea:focus, select:focus { border-color: #3e94f5; box-shadow: 0 0 0 3px rgba(39, 132, 240, .11); }
textarea { min-height: 145px; resize: vertical; }
.form-status { margin-top: 13px; font-size: .9rem; min-height: 24px; }
.form-status.success { color: #137b59; }
.form-status.error { color: #b52c3b; }
.honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.booking-card { background: var(--bg); color: #fff; }
.booking-card p { color: #b8cce2; }
.contact-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.contact-list a { color: #fff; text-decoration: none; }

.resource-card { border: 1px solid #dce6f0; background: #fff; border-radius: 20px; padding: 26px; }
.resource-card .meta { color: #798ca0; font-size: .82rem; margin-bottom: 12px; }
.article-section { padding: 28px 0; border-bottom: 1px solid #e1e9f2; }
.article-section:last-child { border-bottom: 0; }
.article-section h2 { font-size: 2rem; }

.site-footer { background: #030b1c; color: #c4d4e7; padding: 70px 0 25px; }
.footer-grid { display: grid; grid-template-columns: 1.55fr .85fr .85fr 1.1fr; gap: 38px; }
.footer-brand p { max-width: 410px; color: #90a8c4; }
.footer-title { color: #fff; font-size: .88rem; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { text-decoration: none; color: #9fb4cc; font-size: .9rem; }
.footer-links a:hover { color: #fff; }
.footer-bottom { margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(135, 173, 215, .13); display: flex; justify-content: space-between; gap: 20px; color: #7890aa; font-size: .82rem; }
.footer-bottom a { color: #98afc9; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1020px) {
  .primary-nav { position: absolute; top: 78px; left: 0; right: 0; background: #06152f; padding: 20px; display: none; flex-direction: column; align-items: stretch; border-top: 1px solid rgba(129, 171, 220, .12); }
  .primary-nav.open { display: flex; }
  .mobile-toggle { display: block; }
  .hero-grid, .grid-2, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 34px; padding-top: 70px; }
  .hero-visual { max-width: 760px; }
  .proof-grid, .grid-4, .process { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .case-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--max)); }
  .section { padding: 72px 0; }
  .nav-wrap { min-height: 70px; }
  .primary-nav { top: 70px; }
  .brand { min-width: 0; }
  .brand-text small { display: none; }
  .hero { min-height: auto; }
  .hero-grid { padding: 58px 0; }
  .hero-actions .btn { width: 100%; }
  .hero-badge { position: relative; right: auto; bottom: auto; margin: 14px 0 0; width: 100%; }
  .proof-grid, .grid-3, .grid-4, .case-grid, .process, .kpi-row, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:last-child { grid-column: auto; }
  .field.full { grid-column: auto; }
  .cta-band { padding: 30px; align-items: flex-start; flex-direction: column; }
  .page-hero { padding: 65px 0 56px; }
  .footer-bottom { flex-direction: column; }
}

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