:root {
  --navy: #071525;
  --navy-2: #0b2038;
  --blue: #1664d8;
  --cyan: #57ddf3;
  --sky: #dff7ff;
  --ink: #0e1c2e;
  --muted: #607188;
  --line: rgba(17, 58, 101, .12);
  --white: #fff;
  --soft: #f4f9fc;
  --lime: #b8efc4;
  --shadow: 0 24px 70px rgba(5, 31, 58, .13);
  --radius: 26px;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: 'Trebuchet MS', 'Segoe UI', sans-serif;
  --ease: cubic-bezier(.22, .61, .36, 1);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--soft); color: var(--ink); font-family: var(--sans); line-height: 1.6; overflow-x: hidden; }
body[data-page="home"] main { display: flex; flex-direction: column; }
body[data-page="home"] main > .hero { order: -1; }
body.is-loading { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.image-fallback { display: grid !important; place-items: center; min-height: 180px; background: radial-gradient(circle at 30% 20%, rgba(87,221,243,.35), transparent 32%), linear-gradient(135deg, #0b2743, #0d628a); }
.image-fallback::after { content: attr(data-image-label); max-width: 80%; color: rgba(255,255,255,.8); font: 400 1.25rem var(--serif); text-align: center; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.site-loader { position: fixed; inset: 0; z-index: 9999; display: grid; place-items: center; background: var(--navy); transition: opacity .6s ease, visibility .6s ease; }
.site-loader.is-done { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; color: var(--white); letter-spacing: .18em; text-transform: uppercase; font-size: .72rem; }
.loader-mark { width: 70px; height: 70px; margin: 0 auto 22px; border: 1px solid rgba(87,221,243,.4); border-radius: 50%; display: grid; place-items: center; animation: pulse 1.8s infinite; }
.loader-mark::before { content: 'D'; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; color: var(--navy); background: var(--cyan); font: 700 1.4rem var(--serif); }
.progress-line { position: fixed; top: 0; left: 0; z-index: 1000; width: 0; height: 3px; background: linear-gradient(90deg, var(--cyan), var(--blue)); box-shadow: 0 0 16px var(--cyan); }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.narrow { width: min(800px, calc(100% - 48px)); margin-inline: auto; }
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 900; padding: 20px 0; transition: .4s var(--ease); }
.site-header.scrolled { padding: 10px 0; background: rgba(7,21,37,.84); backdrop-filter: blur(18px); box-shadow: 0 12px 35px rgba(0,0,0,.12); }
.navbar { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: inline-flex; align-items: center; gap: 10px; color: var(--white); font-weight: 700; letter-spacing: .16em; font-size: .9rem; }
.logo-dot { width: 31px; height: 31px; border-radius: 50%; display: grid; place-items: center; color: var(--navy); background: var(--cyan); font: 700 1rem var(--serif); box-shadow: 0 0 26px rgba(87,221,243,.45); }
.brand-lockup { display: grid; gap: 1px; line-height: 1.05; }
.brand-lockup small { color: rgba(255,255,255,.58); font-size: .55rem; letter-spacing: .12em; font-weight: 400; }
.nav-links { display: flex; align-items: center; gap: 25px; color: rgba(255,255,255,.73); font-size: .78rem; }
.nav-links a { position: relative; padding: 6px 0; transition: color .3s; }
.nav-links a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px; background: var(--cyan); transition: right .3s; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: inline-flex; align-items: center; gap: 6px; }
.nav-dropdown > a::before { content: ''; order: 2; width: 6px; height: 6px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: rotate(45deg) translateY(-2px); }
.dropdown-menu { position: absolute; top: calc(100% + 15px); left: -18px; min-width: 220px; padding: 12px; border: 1px solid rgba(255,255,255,.14); border-radius: 16px; background: rgba(7,21,37,.97); box-shadow: 0 18px 38px rgba(0,0,0,.2); opacity: 0; visibility: hidden; transform: translateY(8px); transition: .3s var(--ease); }
.nav-dropdown:hover .dropdown-menu, .nav-dropdown:focus-within .dropdown-menu { opacity: 1; visibility: visible; transform: none; }
.dropdown-menu a { display: block; padding: 10px 8px; border-radius: 9px; color: rgba(255,255,255,.7); }
.dropdown-menu a:hover { color: var(--white); background: rgba(87,221,243,.1); }
.dropdown-menu a::after { display: none; }
.nav-toggle { display: none; border: 0; background: transparent; color: var(--white); font-size: 1.6rem; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 0 22px; border-radius: 999px; border: 1px solid transparent; font-weight: 700; font-size: .8rem; letter-spacing: .03em; transition: transform .3s var(--ease), box-shadow .3s, background .3s; }
.btn:hover { transform: translateY(-3px); }
.btn-primary { background: var(--cyan); color: var(--navy); box-shadow: 0 10px 30px rgba(87,221,243,.26); }
.btn-primary:hover { box-shadow: 0 15px 35px rgba(87,221,243,.42); }
.btn-ghost { color: var(--white); border-color: rgba(255,255,255,.26); background: rgba(255,255,255,.05); }
.btn-light { color: var(--navy); background: var(--white); }
.btn-small { min-height: 42px; padding: 0 17px; font-size: .74rem; }
.hero { position: relative; min-height: 760px; padding: 180px 0 100px; overflow: hidden; color: var(--white); background: var(--navy); }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 74% 25%, rgba(22,100,216,.42), transparent 28%), linear-gradient(115deg, #071525 10%, #0b2743 60%, #0a3b60); }
.hero::after { content: ''; position: absolute; width: 500px; height: 500px; right: -180px; top: -160px; border: 1px solid rgba(87,221,243,.16); border-radius: 50%; box-shadow: 0 0 0 80px rgba(87,221,243,.025), 0 0 0 160px rgba(87,221,243,.02); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr .88fr; align-items: center; gap: 72px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px; color: var(--cyan); font-size: .72rem; letter-spacing: .19em; font-weight: 700; text-transform: uppercase; }
.eyebrow::before { content: ''; width: 28px; height: 1px; background: currentColor; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 400; line-height: 1.04; letter-spacing: -.02em; }
h1 { max-width: 720px; margin-bottom: 25px; font-size: clamp(3.4rem, 7vw, 6.4rem); }
h2 { font-size: clamp(2.4rem, 4.5vw, 4.5rem); margin-bottom: 18px; }
h3 { line-height: 1.2; }
.hero-copy > p { max-width: 570px; color: rgba(255,255,255,.72); font-size: 1.1rem; }
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-visual { position: relative; min-height: 480px; }
.hero-image { position: absolute; inset: 10px 20px 0 30px; overflow: hidden; border-radius: 190px 190px 30px 30px; border: 1px solid rgba(255,255,255,.22); box-shadow: 0 35px 75px rgba(0,0,0,.3); }
.hero-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.86); }
.hero-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(7,21,37,.5)); }
.orbit { position: absolute; width: 110px; height: 110px; border: 1px solid rgba(87,221,243,.4); border-radius: 50%; right: -6px; top: 10px; animation: spin 16s linear infinite; }
.orbit::after { content: ''; position: absolute; width: 11px; height: 11px; border-radius: 50%; background: var(--cyan); top: 12px; left: 50%; box-shadow: 0 0 20px var(--cyan); }
.float-card { position: absolute; z-index: 2; display: flex; align-items: center; gap: 12px; padding: 15px 18px; border: 1px solid rgba(255,255,255,.16); border-radius: 18px; background: rgba(255,255,255,.12); backdrop-filter: blur(15px); box-shadow: 0 15px 35px rgba(0,0,0,.2); animation: float 5s ease-in-out infinite; }
.float-card strong { display: block; color: var(--white); font-size: 1.05rem; }
.float-card small { color: rgba(255,255,255,.7); font-size: .68rem; }
.float-card.one { left: -4px; top: 65px; }
.float-card.two { right: -23px; bottom: 80px; animation-delay: -2s; }
.mini-icon { display: grid; place-items: center; width: 35px; height: 35px; border-radius: 12px; background: var(--cyan); color: var(--navy); font-weight: 700; }
.section { position: relative; padding: 112px 0; }
.section-dark { color: var(--white); background: var(--navy); }
.section-blue { color: var(--white); background: linear-gradient(125deg, #0a2340, #0e5a91); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 48px; }
.section-head p { max-width: 440px; margin-bottom: 7px; color: var(--muted); }
.section-dark .section-head p, .section-blue .section-head p { color: rgba(255,255,255,.66); }
.kicker { color: var(--blue); font-size: .73rem; letter-spacing: .15em; font-weight: 700; text-transform: uppercase; }
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 8px 30px rgba(8,39,69,.05); }
.card-pad { padding: 30px; }
.service-card { overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s; }
.service-card:hover { transform: translateY(-9px) rotateX(2deg); box-shadow: var(--shadow); }
.service-card figure { position: relative; height: 190px; margin: 0; overflow: hidden; }
.service-card figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.service-card:hover figure img { transform: scale(1.08); }
.service-card figure span { position: absolute; left: 18px; bottom: 16px; display: grid; place-items: center; width: 43px; height: 43px; border-radius: 14px; color: var(--navy); background: var(--cyan); font-weight: 700; }
.service-card h3 { margin: 0 0 8px; font-size: 1.13rem; }
.service-card p, .info-card p { color: var(--muted); font-size: .9rem; }
.text-link { color: var(--blue); font-size: .78rem; font-weight: 700; }
.split { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 80px; }
.image-stack { position: relative; min-height: 490px; }
.image-stack img { position: absolute; width: 70%; height: 390px; object-fit: cover; border-radius: 28px; box-shadow: var(--shadow); }
.image-stack img:first-child { left: 0; top: 0; }
.image-stack img:last-of-type { right: 0; bottom: 0; border: 10px solid var(--soft); }
.badge { position: absolute; z-index: 2; left: 45%; bottom: 22px; padding: 16px 18px; border-radius: 18px; color: var(--white); background: var(--navy); box-shadow: var(--shadow); font-size: .75rem; }
.badge strong { display: block; color: var(--cyan); font-size: 1.5rem; font-family: var(--serif); }
.check-list { padding: 0; margin: 26px 0 0; list-style: none; }
.check-list li { display: flex; gap: 11px; margin: 13px 0; color: var(--muted); }
.check-list li::before { content: '✓'; color: var(--blue); font-weight: 700; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 72px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat { padding: 24px 16px; text-align: center; }
.stat strong { display: block; color: var(--blue); font: 400 2.8rem var(--serif); }
.stat span { color: var(--muted); font-size: .76rem; }
.quote-card { padding: 32px; border-radius: 24px; color: var(--white); background: #102d4a; }
.quote-card p { color: rgba(255,255,255,.8); font-family: var(--serif); font-size: 1.35rem; }
.stars { color: #ffd273; letter-spacing: .15em; }
.person { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.person img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.person small { display: block; color: var(--muted); }
.page-hero { position: relative; padding: 180px 0 95px; overflow: hidden; color: var(--white); background: linear-gradient(120deg, var(--navy), #0b4775); }
.page-hero::after { content: ''; position: absolute; width: 420px; height: 420px; right: 5%; top: 30px; border: 1px solid rgba(87,221,243,.18); border-radius: 50%; box-shadow: 0 0 0 65px rgba(87,221,243,.04), 0 0 0 130px rgba(87,221,243,.025); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 780px; font-size: clamp(3rem, 7vw, 6rem); }
.page-hero p { max-width: 600px; color: rgba(255,255,255,.72); font-size: 1.05rem; }
.feature-band { margin-top: -48px; position: relative; z-index: 3; }
.feature-band-inner { display: grid; grid-template-columns: repeat(3, 1fr); overflow: hidden; border-radius: 22px; background: var(--white); box-shadow: var(--shadow); }
.feature-band .info-card { border-right: 1px solid var(--line); }
.info-card h3 { margin-bottom: 8px; }
.timeline { position: relative; display: grid; gap: 25px; }
.timeline::before { content: ''; position: absolute; left: 21px; top: 12px; bottom: 12px; width: 1px; background: var(--line); }
.timeline-item { position: relative; display: grid; grid-template-columns: 44px 1fr; gap: 20px; }
.timeline-item > span { position: relative; z-index: 1; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; color: var(--navy); background: var(--cyan); font-weight: 700; }
.timeline-item h3 { margin: 4px 0 7px; }
.timeline-item p { color: var(--muted); margin: 0; }
.tech-card { min-height: 265px; padding: 28px; color: var(--white); background: linear-gradient(145deg, #0d2e4e, #0b4c72); overflow: hidden; transition: transform .35s; }
.tech-card:hover { transform: translateY(-7px); }
.tech-card .tech-icon { font-size: 2rem; color: var(--cyan); }
.tech-card p { color: rgba(255,255,255,.68); font-size: .88rem; }
.pricing-card { padding: 28px; transition: transform .35s, box-shadow .35s; }
.pricing-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.pricing-card.featured { color: var(--white); background: var(--navy); }
.price { margin: 22px 0; color: var(--blue); font: 400 2.8rem var(--serif); }
.featured .price { color: var(--cyan); }
.price small { color: var(--muted); font: .8rem var(--sans); }
.form-card { padding: 38px; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.form-group { display: grid; gap: 7px; }
.form-group.full { grid-column: 1/-1; }
.form-group label { color: var(--muted); font-size: .76rem; font-weight: 700; }
.form-group input, .form-group select, .form-group textarea { width: 100%; border: 1px solid var(--line); border-radius: 12px; padding: 14px 15px; color: var(--ink); outline: none; background: var(--soft); transition: border .25s, box-shadow .25s; }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(22,100,216,.1); }
.faq-list { display: grid; gap: 11px; }
.faq-item { border-bottom: 1px solid var(--line); background: var(--white); }
.faq-question { width: 100%; display: flex; justify-content: space-between; gap: 20px; padding: 22px 4px; border: 0; color: var(--ink); background: transparent; text-align: left; font-weight: 700; }
.faq-question span { transition: transform .3s; color: var(--blue); font-size: 1.3rem; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.faq-answer p { padding: 0 40px 22px 4px; color: var(--muted); margin: 0; }
.faq-item.open .faq-question span { transform: rotate(45deg); }
.review-shell { overflow: hidden; }
.review-track { display: flex; transition: transform .6s var(--ease); }
.review-slide { min-width: 100%; }
.slider-controls { display: flex; gap: 10px; margin-top: 22px; }
.slider-controls button { width: 43px; height: 43px; border: 1px solid var(--line); border-radius: 50%; background: var(--white); color: var(--blue); }
.before-after { position: relative; overflow: hidden; aspect-ratio: 4/3; border-radius: 22px; }
.before-after img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.before-after .after-image { width: 50%; border-right: 3px solid var(--white); overflow: hidden; }
.before-after .after-image img { width: 200%; max-width: none; }
.before-after input[type=range] { position: absolute; z-index: 2; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; }
.slider-handle { position: absolute; z-index: 1; top: 0; bottom: 0; left: 50%; width: 3px; background: var(--white); pointer-events: none; }
.slider-handle::after { content: '↔'; position: absolute; left: 50%; top: 50%; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; color: var(--navy); background: var(--white); transform: translate(-50%, -50%); box-shadow: var(--shadow); }
.cta { position: relative; overflow: hidden; color: var(--white); background: linear-gradient(120deg, #0b2d4e, #0b74a2); }
.cta::before { content: ''; position: absolute; width: 500px; height: 500px; right: -140px; top: -240px; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; box-shadow: 0 0 0 60px rgba(255,255,255,.035), 0 0 0 120px rgba(255,255,255,.025); }
.cta .container { position: relative; z-index: 1; }
.journey-card { position: relative; padding: 28px; overflow: hidden; min-height: 240px; color: var(--white); background: linear-gradient(145deg, #0c2d4c, #0c628a); }
.journey-card::after { content: attr(data-number); position: absolute; right: 18px; bottom: -15px; color: rgba(255,255,255,.08); font: 7rem var(--serif); line-height: 1; }
.journey-card h3, .journey-card p { position: relative; z-index: 1; }
.journey-card p { max-width: 250px; color: rgba(255,255,255,.7); font-size: .88rem; }
.emergency-panel { display: grid; grid-template-columns: 1.15fr .85fr; gap: 35px; align-items: center; padding: 45px; border-radius: 28px; background: linear-gradient(120deg, #e0faff, #b6e9f5); }
.emergency-panel h2 { max-width: 600px; }
.emergency-panel p { max-width: 540px; color: var(--muted); }
.journal-card { overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s; }
.journal-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.journal-card img { width: 100%; height: 190px; object-fit: cover; }
.journal-card .card-pad { padding: 24px; }
.journal-meta { color: var(--blue); font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.automation-panel { position: relative; overflow: hidden; padding: 45px; border: 1px solid rgba(87,221,243,.2); border-radius: 28px; color: var(--white); background: linear-gradient(135deg, #071525, #0d4771); box-shadow: var(--shadow); }
.automation-panel::after { content: 'AI'; position: absolute; right: 22px; bottom: -45px; color: rgba(87,221,243,.08); font: 12rem var(--serif); line-height: 1; }
.automation-panel > * { position: relative; z-index: 1; }
.automation-panel p { max-width: 620px; color: rgba(255,255,255,.72); }
.agent-card { min-height: 220px; padding: 26px; border: 1px solid rgba(17,58,101,.12); border-radius: 22px; background: var(--white); transition: transform .35s var(--ease), box-shadow .35s; }
.agent-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.agent-icon { display: grid; place-items: center; width: 44px; height: 44px; margin-bottom: 20px; border-radius: 14px; color: var(--navy); background: var(--cyan); font-weight: 700; }
.agent-card p { color: var(--muted); font-size: .86rem; }
.dual-choice { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.choice-card { padding: 30px; border-radius: 22px; color: var(--white); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); }
.choice-card h3 { color: var(--cyan); }
.choice-card p { font-size: .88rem; }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 55px; }
.article-content { font-size: 1.06rem; }
.article-content p { color: var(--muted); }
.article-content h2 { margin-top: 48px; font-size: 2.4rem; }
.article-content img { width: 100%; max-height: 470px; margin: 25px 0; border-radius: 24px; object-fit: cover; }
.article-aside { align-self: start; position: sticky; top: 110px; padding: 24px; border-radius: 20px; background: var(--navy); color: var(--white); }
.article-aside h3 { color: var(--cyan); }
.article-aside a { display: block; padding: 8px 0; color: rgba(255,255,255,.72); font-size: .82rem; }
.site-footer { padding: 70px 0 25px; color: rgba(255,255,255,.72); background: var(--navy); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 45px; }
.site-footer h3 { margin-bottom: 18px; color: var(--white); font: 400 1.2rem var(--serif); }
.site-footer p, .site-footer li, .site-footer input { font-size: .8rem; }
.site-footer ul { padding: 0; margin: 0; list-style: none; }
.site-footer li { margin: 9px 0; }
.site-footer a:hover { color: var(--cyan); }
.footer-brand p { max-width: 250px; }
.newsletter { display: flex; margin-top: 18px; }
.newsletter input { min-width: 0; width: 100%; border: 1px solid rgba(255,255,255,.18); border-radius: 999px 0 0 999px; padding: 12px 15px; color: var(--white); background: rgba(255,255,255,.08); outline: none; }
.newsletter button { width: 50px; border: 0; border-radius: 0 999px 999px 0; color: var(--navy); background: var(--cyan); }
.footer-bottom { display: flex; justify-content: space-between; gap: 15px; margin-top: 55px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); font-size: .72rem; }
.floating-appointment, .back-top { position: fixed; z-index: 800; display: grid; place-items: center; border: 0; border-radius: 50%; color: var(--navy); background: var(--cyan); box-shadow: 0 12px 30px rgba(87,221,243,.35); }
.floating-appointment { right: 22px; bottom: 22px; width: 58px; height: 58px; animation: pulse 2.2s infinite; }
.back-top { right: 23px; bottom: 92px; width: 43px; height: 43px; opacity: 0; visibility: hidden; transition: .3s; }
.back-top.visible { opacity: 1; visibility: visible; }
.toast { position: fixed; z-index: 2000; right: 22px; top: 90px; max-width: 340px; padding: 16px 19px; color: var(--white); border-left: 3px solid var(--cyan); border-radius: 12px; background: var(--navy); box-shadow: var(--shadow); transform: translateX(120%); transition: transform .5s var(--ease); }
.toast.show { transform: translateX(0); }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-left { opacity: 0; transform: translateX(-35px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-right { opacity: 0; transform: translateX(35px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .1s; } .delay-2 { transition-delay: .2s; } .delay-3 { transition-delay: .3s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(87,221,243,.28); } 50% { box-shadow: 0 0 0 14px rgba(87,221,243,0); } }
@media (max-width: 960px) { .nav-toggle { display: block; } .nav-links { position: absolute; top: 75px; left: 24px; right: 24px; display: grid; gap: 0; padding: 14px 20px; border: 1px solid rgba(255,255,255,.13); border-radius: 18px; background: rgba(7,21,37,.96); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .3s; } .nav-links.open { opacity: 1; visibility: visible; transform: none; } .nav-links a { padding: 12px 0; } .navbar > .btn { display: none; } .hero-grid, .split { grid-template-columns: 1fr; gap: 45px; } .hero { min-height: auto; } .hero-visual { max-width: 600px; width: 100%; margin: auto; } .grid-4 { grid-template-columns: repeat(2, 1fr); } .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } .feature-band-inner { grid-template-columns: repeat(2, 1fr); } .feature-band .info-card:nth-child(2) { border-right: 0; } .stats { grid-template-columns: repeat(2, 1fr); } .article-layout { grid-template-columns: 1fr; gap: 35px; } .article-aside { position: static; } .split, .image-stack + .split, .row-reverse .split { gap: 45px; } }
@media (max-width: 640px) { .container, .narrow { width: min(100% - 30px, 1180px); } .section { padding: 75px 0; } .hero, .page-hero { padding-top: 140px; } h1 { font-size: clamp(3rem, 16vw, 4.6rem); } .hero-visual { min-height: 390px; } .hero-image { inset: 10px 10px 0 15px; } .float-card { padding: 10px 12px; } .float-card.two { right: -7px; bottom: 25px; } .float-card.one { left: -8px; top: 25px; } .section-head { display: block; margin-bottom: 30px; } .section-head .btn { margin-top: 12px; } .grid-2, .grid-3, .grid-4, .form-grid, .feature-band-inner, .dual-choice { grid-template-columns: 1fr; } .feature-band .info-card { border-right: 0; border-bottom: 1px solid var(--line); } .stats { grid-template-columns: repeat(2, 1fr); margin-top: 45px; } .image-stack { min-height: 410px; } .image-stack img { height: 300px; } .form-card { padding: 23px; } .footer-grid { grid-template-columns: 1fr; gap: 30px; } .footer-bottom { display: block; } .footer-bottom span { display: block; margin-top: 6px; } .emergency-panel, .automation-panel { grid-template-columns: 1fr; padding: 28px; } .article-layout { grid-template-columns: 1fr; } .article-aside { position: static; } .dropdown-menu { position: static; display: none; margin: 3px 0 8px; padding: 4px 12px; box-shadow: none; } .nav-dropdown.open .dropdown-menu { display: block; opacity: 1; visibility: visible; transform: none; } .article-content img { max-height: 260px; } table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; white-space: nowrap; }
}
@media (max-width: 420px) { .container, .narrow { width: min(100% - 22px, 1180px); } .btn { padding: 0 16px; font-size: .74rem; } .actions { gap: 10px; } .card-pad { padding: 20px; } .float-card { display: none; } .badge { left: 50%; transform: translateX(-50%); } .quote-card { padding: 22px; } .quote-card p { font-size: 1.12rem; } .form-card { padding: 16px; } .journey-card, .tech-card, .agent-card { min-height: auto; padding: 20px; } }
@media (hover: none) and (pointer: coarse) { .service-card:hover, .journal-card:hover, .agent-card:hover, .pricing-card:hover, .tech-card:hover { transform: none; } }
