:root {
  --bg: #ffffff;
  --bg-soft: #f5f8fb;
  --ink: #0b1220;
  --muted: #607083;
  --line: #dfe7ef;
  --brand: #0ea66b;
  --brand-dark: #087a50;
  --navy: #0b1727;
  --navy-2: #10233b;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(13, 34, 58, .10);
  --shadow-lg: 0 28px 90px rgba(8, 31, 56, .20);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input { font: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; top: -50px; left: 16px; z-index: 999; padding: 10px 14px; background: var(--brand); color: #fff; border-radius: 8px; }
.skip-link:focus { top: 12px; }

.topbar { background: #07111e; color: #aebbd0; font-size: 13px; }
.topbar-inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar-links { display: flex; gap: 18px; }
.topbar a:hover { color: #fff; }

.site-header { position: sticky; top: 0; z-index: 90; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(223,231,239,.8); backdrop-filter: blur(16px); transition: box-shadow .2s ease; }
.site-header.scrolled { box-shadow: 0 8px 30px rgba(15, 32, 52, .08); }
.header-inner { min-height: 78px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 850; letter-spacing: -.04em; }
.brand-mark { width: 34px; height: 34px; border-radius: 11px; background: var(--brand); color: #fff; display: grid; place-items: center; font-size: 21px; box-shadow: 0 8px 24px rgba(14,166,107,.24); }
.brand-text { font-size: 22px; color: #0b1727; }
.brand-text span { color: var(--brand); }
.main-nav { display: flex; align-items: center; justify-content: center; gap: 28px; font-weight: 650; font-size: 14px; }
.main-nav a { color: #314154; transition: color .2s ease; }
.main-nav a:hover { color: var(--brand); }
.header-actions { display: flex; gap: 10px; }
.btn { border: 1px solid transparent; min-height: 44px; padding: 0 18px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 750; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease; }
.btn:hover { transform: translateY(-1px); }
.btn-sm { min-height: 40px; padding-inline: 15px; font-size: 13px; }
.btn-lg { min-height: 52px; padding-inline: 24px; }
.btn-primary { color: #fff; background: linear-gradient(135deg, #12b879, #0b935f); box-shadow: 0 12px 28px rgba(14,166,107,.22); }
.btn-primary:hover { box-shadow: 0 15px 34px rgba(14,166,107,.30); }
.btn-ghost { border-color: var(--line); background: #fff; color: #25384d; }
.btn-light { background: #fff; color: #0b1727; box-shadow: 0 10px 28px rgba(6,20,37,.12); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-outline-light { border-color: rgba(255,255,255,.45); color: #fff; background: transparent; }
.btn-card { width: 100%; background: #eff5f7; color: #163345; margin-top: auto; }
.menu-toggle { display: none; border: 0; background: transparent; width: 44px; height: 44px; padding: 9px; border-radius: 10px; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--ink); border-radius: 2px; }
.mobile-menu { border-top: 1px solid var(--line); padding: 10px 20px 20px; background: #fff; }
.mobile-menu > a { display: block; padding: 13px 0; border-bottom: 1px solid #edf1f4; font-weight: 700; }
.mobile-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 16px; }

.hero { position: relative; overflow: hidden; background: radial-gradient(circle at 74% 25%, #1c4d55 0, #102b3e 30%, #0b1727 62%, #08111e 100%); color: #fff; padding: 88px 0 96px; }
.hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px); background-size: 38px 38px; mask-image: linear-gradient(to bottom, rgba(0,0,0,.85), transparent); pointer-events: none; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(4px); opacity: .36; }
.hero-glow-one { width: 420px; height: 420px; right: -90px; top: -90px; background: radial-gradient(circle, rgba(16,185,129,.38), transparent 68%); }
.hero-glow-two { width: 380px; height: 380px; left: 24%; bottom: -230px; background: radial-gradient(circle, rgba(52,211,153,.18), transparent 70%); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.06fr .94fr; gap: 70px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: #72e7b7; font-size: 13px; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; border-radius: 2px; }
.eyebrow-dark { color: var(--brand-dark); }
.hero h1 { font-size: clamp(42px, 5vw, 68px); line-height: 1.02; letter-spacing: -.055em; margin: 18px 0 22px; max-width: 770px; }
.hero h1 span { color: #7ce4bb; }
.hero-copy > p { font-size: 18px; color: #c7d4e2; max-width: 650px; margin: 0 0 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 28px; color: #aebed0; font-size: 13px; }
.trust-row span { display: inline-flex; align-items: center; gap: 7px; }
.trust-row i { width: 19px; height: 19px; border-radius: 50%; background: rgba(16,185,129,.15); color: #74e4b7; display: grid; place-items: center; font-style: normal; font-size: 11px; }
.hero-panel { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); border-radius: 28px; padding: 24px; backdrop-filter: blur(16px); box-shadow: var(--shadow-lg); }
.hero-panel-top { display: flex; align-items: center; gap: 10px; color: #dfe9f2; font-weight: 700; font-size: 14px; margin-bottom: 16px; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: #53e6a9; box-shadow: 0 0 0 5px rgba(83,230,169,.10); }
.domain-input-wrap { display: grid; grid-template-columns: auto 1fr auto; gap: 0; align-items: center; background: #fff; border-radius: 16px; padding: 7px; color: #8b9bad; }
.domain-input-wrap > span { padding-left: 12px; font-weight: 750; }
.domain-input-wrap input { min-width: 0; width: 100%; height: 50px; border: 0; outline: 0; padding: 0 10px; color: var(--ink); background: transparent; font-size: 16px; }
.domain-input-wrap .btn { min-height: 48px; }
.tld-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 12px; }
.tld-strip span { padding: 10px 12px; border: 1px solid rgba(255,255,255,.11); background: rgba(255,255,255,.04); border-radius: 12px; font-size: 11px; color: #9fb2c6; }
.tld-strip strong { display: block; color: #fff; font-size: 14px; }
.mini-dashboard { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 24px; }
.mini-card { min-height: 92px; padding: 15px; border-radius: 15px; background: linear-gradient(160deg, rgba(255,255,255,.10), rgba(255,255,255,.035)); border: 1px solid rgba(255,255,255,.08); }
.mini-card span { display: block; color: #9fb2c6; font-size: 12px; margin-bottom: 9px; }
.mini-card strong { font-size: 14px; }

.quick-services { position: relative; z-index: 4; margin-top: -34px; }
.quick-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.quick-card { min-height: 110px; background: #fff; border: 1px solid #e3ebf1; border-radius: 18px; padding: 18px; box-shadow: 0 15px 42px rgba(15, 36, 58, .08); display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.quick-card:hover { transform: translateY(-3px); box-shadow: 0 18px 52px rgba(15,36,58,.12); border-color: #c9ddd5; }
.quick-icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 14px; background: #eaf8f2; color: var(--brand-dark); font-size: 23px; font-weight: 800; }
.quick-card strong { display: block; font-size: 15px; }
.quick-card span { display: block; color: var(--muted); font-size: 12px; margin-top: 2px; }
.quick-card b { color: var(--brand); }

.section { padding: 100px 0; }
.section-soft { background: var(--bg-soft); }
.section-heading { margin-bottom: 38px; }
.section-heading h2, .feature-copy h2, .faq-grid h2 { margin: 10px 0 12px; font-size: clamp(32px, 4vw, 48px); line-height: 1.1; letter-spacing: -.04em; }
.section-heading p, .feature-copy > p, .faq-grid > div > p { max-width: 720px; color: var(--muted); margin: 0; font-size: 16px; }
.split-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.centered { text-align: center; max-width: 770px; margin-left: auto; margin-right: auto; }
.centered .eyebrow { justify-content: center; }
.centered p { margin-inline: auto; }
.text-link { color: var(--brand-dark); font-weight: 800; white-space: nowrap; padding-bottom: 8px; }
.demo-note { padding: 12px 15px; border-radius: 12px; background: #fff8dc; border: 1px solid #f1df98; color: #755d0e; margin-bottom: 22px; font-size: 13px; }
.demo-note code { font-weight: 800; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.product-card { position: relative; display: flex; flex-direction: column; min-height: 350px; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #cfe0da; }
.product-card.featured { border-color: rgba(14,166,107,.44); box-shadow: 0 18px 55px rgba(14,166,107,.10); }
.product-badge { position: absolute; right: 18px; top: 18px; background: #e8f8f1; color: var(--brand-dark); border: 1px solid #c4ead9; padding: 5px 9px; border-radius: 999px; font-size: 10px; font-weight: 850; text-transform: uppercase; letter-spacing: .06em; }
.product-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 15px; background: #f1f6f8; color: #17384a; font-size: 23px; margin-bottom: 18px; }
.product-group { color: var(--brand-dark); text-transform: uppercase; font-size: 10px; letter-spacing: .08em; font-weight: 850; }
.product-card h3 { margin: 5px 0 8px; font-size: 20px; letter-spacing: -.02em; }
.product-card p { margin: 0 0 20px; color: var(--muted); font-size: 13px; }
.product-price { margin-top: auto; margin-bottom: 16px; display: flex; align-items: baseline; gap: 6px; }
.product-price strong { font-size: 26px; letter-spacing: -.03em; }
.product-price span { color: var(--muted); font-size: 12px; }

.feature-split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.feature-split.reverse .feature-visual { order: -1; }
.feature-copy h2 { max-width: 650px; }
.check-list { list-style: none; padding: 0; margin: 24px 0 28px; display: grid; gap: 11px; }
.check-list li { position: relative; padding-left: 30px; color: #3c4d60; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 21px; height: 21px; border-radius: 7px; display: grid; place-items: center; background: #e7f7f0; color: var(--brand-dark); font-size: 12px; font-weight: 900; }
.feature-visual { min-height: 430px; border-radius: 30px; position: relative; overflow: hidden; display: grid; place-items: center; }
.hosting-visual { background: radial-gradient(circle at 70% 20%, #40d9a0 0, #155a59 30%, #0b2638 68%, #081824 100%); }
.hosting-visual::before { content:""; position:absolute; inset:0; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 32px 32px; }
.browser-card { position: relative; z-index: 1; width: min(78%, 430px); background: rgba(255,255,255,.95); border-radius: 20px; box-shadow: 0 30px 80px rgba(0,0,0,.27); overflow: hidden; transform: rotate(-2deg); }
.browser-top { height: 46px; background: #f0f4f7; display: flex; align-items: center; gap: 7px; padding: 0 15px; }
.browser-top i { width: 9px; height: 9px; border-radius: 50%; background: #b9c5cf; }
.browser-content { padding: 24px; display: grid; gap: 12px; }
.metric { display: flex; justify-content: space-between; gap: 12px; padding: 15px; background: #f6f9fb; border-radius: 12px; color: #53677a; font-size: 13px; }
.metric strong { color: #0b1727; }
.server-visual { background: linear-gradient(145deg, #eef5f7, #dfecee); border: 1px solid #d8e4e8; }
.server-visual::after { content:""; position:absolute; width: 280px; height: 280px; border-radius:50%; background: rgba(14,166,107,.12); filter: blur(4px); right:-50px; top:-60px; }
.server-stack { width: min(78%, 440px); display: grid; gap: 14px; transform: perspective(800px) rotateY(-7deg) rotateX(2deg); }
.server-stack > div { height: 82px; border-radius: 14px; background: linear-gradient(180deg, #17283b, #0b1727); box-shadow: 0 14px 28px rgba(10,28,44,.20); display: flex; align-items: center; gap: 9px; padding: 0 22px; border: 1px solid rgba(255,255,255,.08); }
.server-stack span { width: 9px; height: 9px; border-radius: 50%; background: #36d99b; box-shadow: 0 0 13px rgba(54,217,155,.6); }
.server-stack span + span { background: #7a8da0; box-shadow: none; }
.server-stack b { margin-left: auto; color: #dce7f0; letter-spacing: .14em; }
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 26px 0 28px; }
.stat-grid div { border: 1px solid var(--line); padding: 15px; border-radius: 14px; background: #fff; }
.stat-grid strong, .stat-grid span { display: block; }
.stat-grid strong { font-size: 15px; }
.stat-grid span { color: var(--muted); font-size: 11px; margin-top: 2px; }
.software-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.software-card { border-radius: var(--radius); padding: 28px; background: #fff; border: 1px solid var(--line); }
.software-card > span { width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center; background: #eaf8f2; color: var(--brand-dark); font-size: 12px; font-weight: 850; }
.software-card h3 { margin: 22px 0 8px; font-size: 20px; }
.software-card p { margin: 0; color: var(--muted); font-size: 14px; }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.benefit-grid article { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.benefit-grid article > div { width: 44px; height: 44px; border-radius: 14px; background: #0f2738; color: #77e2b9; display: grid; place-items: center; font-weight: 900; }
.benefit-grid h3 { margin: 20px 0 7px; }
.benefit-grid p { color: var(--muted); font-size: 13px; margin: 0; }
.section-faq { background: #f7f9fb; }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.faq-list { display: grid; gap: 12px; }
details { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 0 20px; }
summary { cursor: pointer; font-weight: 800; padding: 18px 34px 18px 0; list-style: none; position: relative; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 0; top: 14px; font-size: 24px; color: var(--brand-dark); }
details[open] summary::after { content: "−"; }
details p { color: var(--muted); font-size: 14px; margin: 0; padding: 0 0 18px; }
.cta-section { padding: 0 0 92px; background: #f7f9fb; }
.cta-box { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 46px; border-radius: 28px; background: linear-gradient(135deg, #0b1727, #12354b 66%, #0f6b58); color: #fff; box-shadow: var(--shadow-lg); }
.cta-box h2 { font-size: clamp(30px, 3vw, 42px); line-height: 1.1; margin: 10px 0 8px; letter-spacing: -.03em; }
.cta-box p { color: #c5d4e1; margin: 0; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 10px; flex: 0 0 auto; }

.page-hero { background: linear-gradient(135deg, #0b1727, #12354b 62%, #0d644f); color: #fff; padding: 78px 0 70px; }
.page-hero h1 { font-size: clamp(40px, 5vw, 62px); line-height: 1.05; letter-spacing: -.05em; margin: 14px 0 12px; }
.page-hero p { margin: 0; max-width: 720px; color: #c7d4e2; font-size: 17px; }
.breadcrumb { display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: 13px; margin-bottom: 28px; }
.breadcrumb a { color: var(--brand-dark); font-weight: 700; }
.contract-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.contract-card { display: grid; grid-template-columns: auto 1fr auto; gap: 16px; align-items: center; padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: #fff; transition: .2s ease; }
.contract-card:hover { border-color: #b9dccc; box-shadow: var(--shadow); transform: translateY(-2px); }
.contract-index { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: #ecf8f3; color: var(--brand-dark); font-size: 12px; font-weight: 850; }
.contract-card h2 { margin: 0 0 3px; font-size: 17px; }
.contract-card p { margin: 0; color: var(--muted); font-size: 12px; }
.contract-card b { color: var(--brand); font-size: 20px; }
.legal-note { margin-top: 26px; padding: 18px 20px; background: #f7f9fb; border: 1px solid var(--line); border-radius: 14px; color: #596a7b; font-size: 13px; }

.site-footer { background: #091522; color: #aebdca; padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr 1.1fr; gap: 46px; padding-bottom: 48px; }
.brand-footer .brand-text { color: #fff; }
.footer-brand > p { max-width: 320px; color: #8295a7; font-size: 13px; margin: 20px 0; }
.contact-list, .footer-links { list-style: none; padding: 0; margin: 0; }
.contact-list { display: grid; gap: 7px; font-size: 13px; }
.contact-list li:last-child { color: #8194a6; }
.footer-title { color: #fff; font-size: 14px; margin: 5px 0 16px; }
.footer-links { display: grid; gap: 9px; font-size: 13px; }
.footer-links a { color: #99abba; }
.footer-links a:hover, .footer-more:hover { color: #72e7b7; }
.footer-links-compact { gap: 7px; font-size: 12px; }
.footer-more { display: inline-block; margin-top: 14px; color: #72e7b7; font-size: 12px; font-weight: 800; }
.footer-bottom { min-height: 74px; border-top: 1px solid rgba(255,255,255,.09); display: flex; align-items: center; justify-content: space-between; gap: 20px; color: #728597; font-size: 12px; }
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom a:hover { color: #fff; }

@media (max-width: 1080px) {
  .main-nav { gap: 18px; }
  .header-actions .btn-ghost { display: none; }
  .hero-grid { gap: 38px; }
  .quick-grid, .product-grid, .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr .8fr .8fr; }
  .footer-contracts { grid-column: 1 / -1; }
  .footer-contracts .footer-links { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 860px) {
  .topbar { display: none; }
  .header-inner { min-height: 68px; grid-template-columns: 1fr auto; }
  .main-nav, .header-actions { display: none; }
  .menu-toggle { display: block; }
  .hero { padding: 66px 0 76px; }
  .hero-grid, .feature-split, .faq-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 42px; }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow { justify-content: center; }
  .hero-copy > p { margin-inline: auto; }
  .hero-actions, .trust-row { justify-content: center; }
  .feature-split.reverse .feature-visual { order: 0; }
  .feature-visual { min-height: 350px; }
  .software-grid { grid-template-columns: 1fr; }
  .split-heading { align-items: start; flex-direction: column; }
  .cta-box { flex-direction: column; align-items: flex-start; }
  .contract-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .brand-text { font-size: 20px; }
  .hero { padding-top: 54px; }
  .hero h1 { font-size: clamp(38px, 12vw, 50px); }
  .hero-copy > p { font-size: 16px; }
  .hero-actions .btn { width: 100%; }
  .hero-panel { padding: 16px; border-radius: 21px; }
  .domain-input-wrap { grid-template-columns: auto 1fr; }
  .domain-input-wrap .btn { grid-column: 1 / -1; width: 100%; }
  .tld-strip { grid-template-columns: 1fr 1fr 1fr; }
  .mini-dashboard { grid-template-columns: 1fr; }
  .mini-card { min-height: 72px; }
  .quick-services { margin-top: -22px; }
  .quick-grid, .product-grid, .benefit-grid, .stat-grid { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .feature-visual { min-height: 300px; border-radius: 22px; }
  .browser-card { width: 88%; }
  .server-stack { width: 88%; }
  .cta-box { padding: 30px 22px; border-radius: 22px; }
  .cta-actions { width: 100%; }
  .cta-actions .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-contracts { grid-column: auto; }
  .footer-contracts .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; padding: 22px 0; }
  .footer-bottom-links { flex-wrap: wrap; }
  .mobile-actions { grid-template-columns: 1fr; }
}

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


/* Corporate & legal content pages */
.page-hero-compact { padding: 64px 0 58px; }
.content-section { background: #f7f9fb; }
.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 28px; align-items: start; }
.content-card { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: clamp(24px, 4vw, 46px); box-shadow: 0 15px 45px rgba(15,36,58,.055); }
.legal-content { color: #33475a; font-size: 15px; line-height: 1.82; overflow-wrap: anywhere; }
.legal-content > :first-child { margin-top: 0; }
.legal-content > :last-child { margin-bottom: 0; }
.legal-content p { margin: 0 0 18px; }
.legal-content ol, .legal-content ul { margin: 0 0 22px; padding-left: 25px; }
.legal-content li { margin: 0 0 9px; padding-left: 4px; }
.legal-content a { color: var(--brand-dark); text-decoration: underline; text-underline-offset: 3px; }
.legal-content h2, .legal-content h3, .legal-content h4 { color: var(--ink); line-height: 1.25; margin: 32px 0 12px; }
.content-sidebar { display: grid; gap: 14px; position: sticky; top: 104px; }
.sidebar-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 20px; display: grid; gap: 4px; }
.sidebar-card h2 { margin: 0 0 10px; font-size: 15px; }
.sidebar-card > a { color: #53677a; padding: 9px 0; border-bottom: 1px solid #eef2f5; font-size: 13px; font-weight: 700; }
.sidebar-card > a:last-child { border-bottom: 0; }
.sidebar-card > a:hover { color: var(--brand-dark); }
.sidebar-contact { background: linear-gradient(145deg, #0f2738, #0c6c58); color: #fff; border-color: transparent; }
.sidebar-contact span { color: #a9c8c4; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; font-weight: 800; }
.sidebar-contact strong { font-size: 20px; margin-top: 3px; }
.sidebar-contact > a { color: #d9f4ea; border: 0; padding: 5px 0 0; }
.about-layout { display: grid; grid-template-columns: 1.25fr .75fr; gap: 24px; align-items: stretch; }
.about-copy h2 { font-size: clamp(30px, 4vw, 44px); letter-spacing: -.04em; line-height: 1.12; margin: 12px 0 22px; }
.about-copy p { color: #53677a; line-height: 1.85; font-size: 16px; }
.about-timeline { display: grid; gap: 12px; }
.about-timeline > div { background: #0f2738; color: #fff; border-radius: 20px; padding: 24px; min-height: 120px; display: flex; flex-direction: column; justify-content: center; }
.about-timeline strong { color: #72e7b7; font-size: 31px; letter-spacing: -.04em; }
.about-timeline span { color: #c3d2de; font-size: 13px; margin-top: 5px; }
.company-info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.info-card { min-height: 120px; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 22px; display: flex; flex-direction: column; justify-content: center; }
.info-card span { color: var(--brand-dark); font-size: 11px; text-transform: uppercase; letter-spacing: .07em; font-weight: 850; margin-bottom: 7px; }
.info-card strong { color: var(--ink); font-size: 16px; line-height: 1.5; }
.info-card a { color: inherit; }
.document-section { margin-top: 60px; }
.document-section .section-heading h2 { font-size: clamp(28px, 3vw, 38px); }
.document-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; align-items: start; }
.document-card { margin: 0; background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 16px; box-shadow: 0 12px 36px rgba(15,36,58,.05); }
.document-card img { width: 100%; height: auto; display: block; border-radius: 12px; background: #f5f7f8; }
.document-card figcaption { padding: 14px 4px 2px; font-weight: 800; color: #33475a; font-size: 13px; }
@media (max-width: 920px) {
  .content-layout, .about-layout { grid-template-columns: 1fr; }
  .content-sidebar { position: static; grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .page-hero-compact { padding: 52px 0 48px; }
  .content-card { border-radius: 18px; padding: 24px 20px; }
  .legal-content { font-size: 14px; line-height: 1.75; }
  .content-sidebar, .company-info-grid, .document-grid { grid-template-columns: 1fr; }
  .info-card { min-height: 105px; }
}
