:root {
  --navy: #07182d;
  --navy-2: #0c2747;
  --blue: #15539b;
  --cyan: #21c7df;
  --sky: #e8f8fc;
  --ink: #10243d;
  --muted: #597086;
  --line: #dce8f1;
  --white: #ffffff;
  --radius: 24px;
  --shadow: 0 24px 70px rgba(5, 31, 58, .12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 100; padding: .8rem 1rem; background: var(--white); color: var(--navy); border-radius: 10px; }
.skip-link:focus { top: 1rem; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.92); border-bottom: 1px solid rgba(220,232,241,.8); backdrop-filter: blur(14px); }
.header-inner { height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { flex: 0 0 auto; }
.brand img { width: clamp(190px, 17vw, 240px); height: auto; }
.site-nav { display: flex; align-items: center; justify-content: flex-end; gap: clamp(10px, 1.2vw, 18px); min-width: 0; }
.site-nav a { white-space: nowrap; text-decoration: none; font-weight: 650; font-size: clamp(.82rem, 1vw, .93rem); }
.site-nav a:not(.nav-cta):hover { color: var(--blue); }
.site-nav a.is-active { position: relative; color: var(--blue); }
.site-nav a.is-active::after { content: ''; position: absolute; left: 0; right: 0; bottom: -11px; height: 3px; border-radius: 99px; background: var(--cyan); }
.nav-cta { padding: .72rem 1rem; border-radius: 999px; color: var(--white); background: var(--blue); }
.menu-button { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; background: var(--white); color: var(--navy); font-size: 1.4rem; }
.hero { min-height: 720px; display: grid; align-items: center; color: var(--white); overflow: hidden; background: linear-gradient(90deg, rgba(7,24,45,.98) 0%, rgba(7,24,45,.90) 44%, rgba(7,24,45,.30) 72%), url('hero-office.webp') center/cover no-repeat; }
.hero-content { max-width: 720px; padding: 110px 0 120px; }
.eyebrow { margin: 0 0 14px; color: var(--cyan); font-size: .78rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; color: var(--navy); line-height: 1.08; letter-spacing: -.035em; }
h1 { color: var(--white); font-size: clamp(3rem, 7vw, 6rem); max-width: 760px; margin-bottom: 24px; }
h2 { font-size: clamp(2.1rem, 4.3vw, 4.2rem); margin-bottom: 18px; }
h3 { font-size: 1.35rem; }
.hero-lead { max-width: 650px; margin: 0 0 36px; color: #d7e8f5; font-size: clamp(1.08rem, 2vw, 1.35rem); }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: .85rem 1.25rem; border-radius: 999px; text-decoration: none; font-weight: 800; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--navy); background: var(--cyan); }
.button-ghost { color: var(--white); border: 1px solid rgba(255,255,255,.35); background: rgba(255,255,255,.07); }
.button-dark { color: var(--white); background: var(--navy); }
.button-light { color: var(--navy); background: var(--white); }
.trust-strip { margin-top: -42px; position: relative; z-index: 3; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.trust-item { padding: 24px 28px; }
.trust-item + .trust-item { border-left: 1px solid var(--line); }
.trust-item strong { display: block; color: var(--navy); font-size: 1.05rem; }
.trust-item span { color: var(--muted); font-size: .9rem; }
.section { padding: 112px 0; }
.section-soft { background: #f4f9fc; }
.section-dark { color: var(--white); background: var(--navy); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-heading { max-width: 760px; margin-bottom: 50px; }
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; }
.services-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 22px; }
.service-card { min-height: 320px; padding: 34px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 10px 35px rgba(7,24,45,.05); }
.service-card:nth-child(1), .service-card:nth-child(4) { grid-column: span 7; }
.service-card:nth-child(2), .service-card:nth-child(3) { grid-column: span 5; }
.service-number { color: var(--blue); font-weight: 900; font-size: .8rem; letter-spacing: .12em; }
.service-card h3 { margin: auto 0 14px; font-size: clamp(1.65rem, 3vw, 2.4rem); }
.service-card p { color: var(--muted); margin: 0 0 24px; }
.text-link { color: var(--blue); font-weight: 800; text-decoration: none; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.media-frame { overflow: hidden; border-radius: 28px; box-shadow: var(--shadow); }
.media-frame img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.check-list { list-style: none; padding: 0; margin: 28px 0 34px; }
.check-list li { position: relative; padding: 11px 0 11px 36px; border-bottom: 1px solid var(--line); }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--blue); font-weight: 900; }
.voice-card { display: grid; grid-template-columns: auto 1fr auto; gap: 22px; align-items: center; padding: 32px; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); background: rgba(255,255,255,.06); }
.voice-card + .voice-card { margin-top: 18px; }
.voice-card h3 { margin-bottom: 7px; }
.voice-card p { margin: 0; color: #bdd0df; }
.voice-card .button { min-width: 215px; flex-direction: column; line-height: 1.2; }
.voice-card .button small { margin-top: 4px; color: var(--blue); font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; }
.prose .voice-card { color: var(--white); background: var(--navy); }
.prose .voice-card h3 { color: var(--white); }
.prose .voice-card p { color: #bdd0df; }
.live-dot { width: 12px; height: 12px; border-radius: 50%; background: #3be68a; box-shadow: 0 0 0 7px rgba(59,230,138,.12); }
.brands { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.brand-card { padding: 38px; border-radius: var(--radius); text-decoration: none; border: 1px solid var(--line); background: var(--white); }
.brand-card strong { display: block; margin-bottom: 8px; color: var(--navy); font-size: 1.7rem; }
.brand-card span { color: var(--muted); }
.brand-card:hover { border-color: var(--cyan); box-shadow: var(--shadow); }
.contact-panel { display: grid; grid-template-columns: 1.25fr .75fr; gap: 50px; padding: 54px; border-radius: 30px; background: var(--sky); }
.contact-links { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 12px; }
.contact-links a { color: var(--navy); font-size: clamp(1.05rem, 2vw, 1.3rem); font-weight: 800; text-decoration: none; }
.contact-links .button-dark { color: var(--white); }
.site-footer { padding: 55px 0 28px; color: #bacbd9; background: #04101f; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 44px; }
.footer-logo { width: 225px; filter: brightness(0) invert(1); opacity: .9; }
.site-footer h3 { color: var(--white); font-size: 1rem; letter-spacing: 0; }
.site-footer a { display: block; margin: 7px 0; color: #bacbd9; text-decoration: none; }
.footer-bottom { margin-top: 40px; padding-top: 22px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.1); font-size: .84rem; }
.page-hero { padding: 110px 0 80px; color: var(--white); background: radial-gradient(circle at 80% 20%, rgba(33,199,223,.25), transparent 30%), var(--navy); }
.page-hero h1 { font-size: clamp(2.8rem, 6vw, 5.4rem); }
.page-hero p { max-width: 720px; color: #c8dbea; font-size: 1.2rem; }
.content-grid { display: grid; grid-template-columns: 1fr 340px; gap: 64px; }
.prose h2 { margin-top: 55px; font-size: clamp(1.8rem, 3vw, 2.8rem); }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: #3c556c; font-size: 1.04rem; }
.side-card { position: sticky; top: 110px; padding: 28px; border-radius: 22px; background: var(--sky); }
.side-card a { width: 100%; margin-top: 10px; }
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 42px; }
.plan-card { display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 10px 35px rgba(7,24,45,.05); }
.plan-card.is-featured { border: 2px solid var(--cyan); box-shadow: var(--shadow); }
.plan-tag { margin: 0 0 12px; color: var(--blue); font-size: .76rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.plan-card h3 { margin-bottom: 10px; font-size: 1.75rem; }
.plan-card > p { color: var(--muted); }
.plan-card .check-list { margin: 12px 0 26px; }
.plan-card .button { margin-top: auto; }
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.blog-card, .empty-blog { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 10px 35px rgba(7,24,45,.05); }
.blog-card h2 { font-size: clamp(1.55rem, 3vw, 2.25rem); }
.blog-card h2 a { text-decoration: none; }
.blog-card > p:not(.eyebrow) { color: var(--muted); }
.empty-blog { grid-column: 1 / -1; text-align: center; }
.empty-blog p { color: var(--muted); }
.article-page { padding: 70px 0 100px; }
.article-container { max-width: 820px; }
.article-page h1 { margin: 30px 0 20px; color: var(--navy); font-size: clamp(2.5rem, 6vw, 4.8rem); }
.article-lead { color: var(--muted); font-size: 1.25rem; }
.article-meta, .breadcrumbs { color: var(--muted); font-size: .9rem; }
.article-cover { width: 100%; margin: 34px 0; border-radius: var(--radius); }
.article-content { margin-top: 46px; }
.article-content h2 { margin-top: 52px; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.article-content h3 { margin-top: 36px; font-size: 1.55rem; }
.article-content p, .article-content li { color: #3c556c; font-size: 1.08rem; }
.article-content a { color: var(--blue); }
.article-cta { margin-top: 60px; padding: 34px; border-radius: var(--radius); background: var(--navy); color: var(--white); }
.article-cta h2 { color: var(--white); font-size: 2rem; }
@media (max-width: 1180px) {
  .menu-button { display: inline-grid; place-items: center; }
  .site-nav { display: none; position: absolute; top: 77px; left: 20px; right: 20px; padding: 20px; flex-direction: column; align-items: stretch; background: var(--white); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 8px; }
  .site-nav a.is-active { padding-left: 16px; background: var(--sky); border-radius: 10px; }
  .site-nav a.is-active::after { left: 0; right: auto; top: 8px; bottom: 8px; width: 4px; height: auto; }
  .nav-cta { text-align: center; }
  .hero { min-height: 650px; background-position: 62% center; }
  .hero-content { padding: 90px 0 110px; }
  .service-card:nth-child(n) { grid-column: span 6; }
  .split, .contact-panel, .content-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .split { gap: 42px; }
  .side-card { position: static; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1160px); }
  .header-inner { height: 68px; }
  .brand img { width: 190px; }
  .site-nav { top: 67px; left: 14px; right: 14px; }
  .hero { min-height: 690px; background: linear-gradient(180deg, rgba(7,24,45,.80), rgba(7,24,45,.98)), url('hero-office.webp') 64% center/cover no-repeat; }
  h1 { font-size: clamp(2.65rem, 15vw, 4.3rem); }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item + .trust-item { border-left: 0; border-top: 1px solid var(--line); }
  .section { padding: 80px 0; }
  .service-card:nth-child(n) { grid-column: 1 / -1; min-height: 280px; padding: 28px; }
  .voice-card { grid-template-columns: auto 1fr; }
  .voice-card .button { grid-column: 1 / -1; width: 100%; }
  .brands, .footer-grid { grid-template-columns: 1fr; }
  .contact-panel { padding: 30px; }
  .footer-bottom { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; } }
