:root {
  --bg-deep: #071523;
  --bg-mid: #0f243a;
  --bg-soft: #16314a;
  --brand-a: #2ee6a6;
  --brand-b: #2ea8ff;
  --text-main: #eef5ff;
  --text-soft: #b7c9dc;
  --text-dim: #87a0ba;
  --line: rgba(255, 255, 255, 0.15);
  --card: rgba(19, 37, 56, 0.82);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --max: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", "Trebuchet MS", "Gill Sans", sans-serif;
  color: var(--text-main);
  background: radial-gradient(circle at 20% 10%, #11355b 0%, var(--bg-deep) 38%, #040d16 100%);
  line-height: 1.65;
}

a { color: var(--brand-b); text-decoration: none; }
a:hover, a:focus-visible { color: var(--brand-a); }
img { max-width: 100%; display: block; }

/* ── Scroll progress bar ── */
#scroll-progress {
  position: fixed; top: 0; left: 0; width: 0%; height: 3px; z-index: 200;
  background: linear-gradient(90deg, var(--brand-a), var(--brand-b));
  transition: width 0.1s linear;
}

/* ── Layout ── */
.container { width: min(100% - 2.4rem, var(--max)); margin-inline: auto; }
.section { padding: 4.4rem 0; }
.section.alt { background: linear-gradient(180deg, rgba(5,18,31,0.85) 0%, rgba(14,34,55,0.9) 100%); }
.section-dark { background: linear-gradient(160deg, #041320 0%, #0b2640 100%); padding: 4.4rem 0; }
.section-green { background: linear-gradient(160deg, #041f18 0%, #0a3a28 100%); padding: 4.4rem 0; }

.section-header { margin-bottom: 2.4rem; }
.section-header h2 { margin-bottom: 0.5rem; }
.section-header p { color: var(--text-soft); max-width: 60ch; margin: 0; }

/* ── Typography ── */
h1, h2, h3 {
  font-family: "Impact", "Arial Black", "Segoe UI", sans-serif;
  letter-spacing: 0.02em; line-height: 1.15; margin-top: 0;
}
h1 { font-size: clamp(2rem, 3.8vw, 4.3rem); margin: 0.9rem 0 1rem; }
h2 { font-size: clamp(1.6rem, 2.4vw, 2.8rem); margin-bottom: 0.6rem; }
h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.lead { color: var(--text-soft); max-width: 72ch; margin-bottom: 0; }
.pull-quote { border-left: 3px solid var(--brand-a); padding-left: 1.2rem; color: var(--text-soft); font-size: 1.05rem; font-style: italic; margin: 1.2rem 0; }

/* ── Grids ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1.2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1rem; }

/* ── Header ── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(5,18,31,0.82);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 78px; }
.brand { display: inline-flex; align-items: center; gap: 0.8rem; }
.brand img { width: 168px; height: auto; }
.nav-toggle {
  display: none; background: transparent; border: 1px solid var(--line);
  color: var(--text-main); border-radius: 8px; padding: 0.45rem 0.7rem; cursor: pointer;
}
.site-nav ul { list-style: none; display: flex; gap: 1.2rem; padding: 0; margin: 0; }
.site-nav a { font-weight: 600; color: var(--text-main); letter-spacing: 0.02em; transition: color 0.2s; }
.site-nav a.current { color: var(--brand-a); }
.site-nav a:hover { color: var(--brand-a); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: clamp(500px, 82vh, 880px);
  display: grid; align-items: end; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(4,12,22,0.9) 0%, rgba(4,12,22,0.45) 50%, rgba(4,12,22,0.82) 100%);
  z-index: 1;
}
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transform: scale(1.08);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
#hero-canvas { position: absolute; inset: 0; pointer-events: none; opacity: 0.45; z-index: 1; }
@keyframes heroZoom {
  from { transform: scale(1.05) translateY(0); }
  to   { transform: scale(1.12) translateY(-14px); }
}
.hero-content { position: relative; z-index: 2; padding: 2rem 0 5rem; max-width: 820px; }
.hero-scroll-hint {
  position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
  color: var(--text-dim); font-size: 0.76rem; letter-spacing: 0.07em; text-transform: uppercase;
}
.scroll-dot {
  width: 24px; height: 38px; border: 2px solid rgba(255,255,255,0.25); border-radius: 999px;
  display: flex; justify-content: center; padding-top: 5px;
}
.scroll-dot::before {
  content: ""; width: 4px; height: 8px; border-radius: 999px;
  background: var(--brand-a); animation: scrollDot 1.6s ease-in-out infinite;
}
@keyframes scrollDot { 0%,100% { opacity:1; transform: translateY(0); } 60% { opacity:0.2; transform: translateY(12px); } }

/* ── Kicker ── */
.kicker {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1px solid rgba(46,230,166,0.5); border-radius: 999px;
  padding: 0.3rem 0.9rem; font-size: 0.78rem; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--brand-a); margin-bottom: 0.4rem;
}
.kicker-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand-a); animation: pulse 1.8s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity:1; transform: scale(1); } 50% { opacity:0.4; transform: scale(1.6); } }

/* ── Buttons ── */
.actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.6rem; }
.btn {
  border: 1px solid transparent; border-radius: 999px; font-weight: 700;
  padding: 0.75rem 1.6rem; display: inline-flex; align-items: center; gap: 0.5rem;
  cursor: pointer; transition: transform 0.2s, box-shadow 0.3s, color 0.2s; font-size: 0.95rem;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(130deg, var(--brand-a), var(--brand-b));
  color: #031e32; box-shadow: 0 0 22px rgba(46,230,166,0.3);
}
.btn-primary:hover { box-shadow: 0 0 44px rgba(46,230,166,0.6); transform: translateY(-2px); color: #031e32; }
.btn-secondary { border-color: var(--line); color: var(--text-main); background: rgba(255,255,255,0.04); }
.btn-secondary:hover { border-color: rgba(46,230,166,0.5); color: var(--brand-a); transform: translateY(-1px); }

/* ── Badges & Tags ── */
.badge {
  display: inline-flex; align-items: center; gap: 0.3rem;
  background: rgba(46,230,166,0.1); color: var(--brand-a);
  border: 1px solid rgba(46,230,166,0.3); border-radius: 999px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.04em; padding: 0.2rem 0.65rem;
}
.badge-blue { background: rgba(46,168,255,0.1); color: var(--brand-b); border-color: rgba(46,168,255,0.3); }
.tag-strip { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.tag {
  background: rgba(46,168,255,0.1); color: var(--brand-b);
  border: 1px solid rgba(46,168,255,0.2); border-radius: 999px;
  font-size: 0.76rem; font-weight: 600; padding: 0.22rem 0.65rem;
}

/* ── Marquee ── */
.marquee-wrap {
  overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 0.9rem 0; background: rgba(5,18,31,0.6);
}
.marquee-track { display: flex; gap: 2.4rem; animation: marquee 38s linear infinite; white-space: nowrap; width: max-content; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  color: var(--text-soft); font-weight: 600; letter-spacing: 0.04em;
  font-size: 0.9rem; display: flex; align-items: center; gap: 0.5rem;
}
.marquee-sep { color: var(--brand-a); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Cards ── */
.card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 16px; padding: 1.4rem; box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 32px 80px rgba(0,0,0,0.5); border-color: rgba(46,230,166,0.28); }
.card-accent { border-top: 2px solid var(--brand-a); }
.card-accent-blue { border-top: 2px solid var(--brand-b); }

/* ── Icon rings ── */
.icon-ring {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(46,230,166,0.14), rgba(46,168,255,0.14));
  border: 1px solid rgba(46,230,166,0.35);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; flex-shrink: 0;
}
.icon-ring img { width: 30px; height: 30px; }
.icon { width: 48px; height: 48px; margin-bottom: 0.8rem; }

/* ── Stats ── */
.stat { border-top: 2px solid rgba(46,168,255,0.55); }
.stat strong {
  font-size: 2.6rem; font-family: "Impact","Arial Black",sans-serif; display: block;
  background: linear-gradient(90deg, var(--brand-a), var(--brand-b));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── Process Steps ── */
.steps { display: flex; flex-direction: column; }
.step {
  display: grid; grid-template-columns: 60px 1fr; gap: 1.2rem; align-items: start;
  padding: 1.4rem 0; border-bottom: 1px solid var(--line);
}
.step:last-child { border-bottom: none; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--brand-a), var(--brand-b));
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.2rem; color: #031e32;
}
.step h3 { margin-bottom: 0.3rem; }
.step p { color: var(--text-soft); margin: 0; font-size: 0.95rem; }

/* ── Feature list ── */
.feature-list { list-style: none; padding: 0; margin: 0.8rem 0 0; display: flex; flex-direction: column; gap: 0.55rem; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 0.65rem; color: var(--text-soft); font-size: 0.95rem;
}
.feature-list li::before {
  content: ""; display: inline-block; width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='9' fill='rgba(46,230,166,0.15)' stroke='%232ee6a6' stroke-width='1.5'/%3E%3Cpath d='M6 10.2l2.5 2.5L14 7.5' stroke='%232ee6a6' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ── Tabs ── */
.tabs-nav {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
  margin-bottom: 1.8rem; border-bottom: 1px solid var(--line); padding-bottom: 0.8rem;
}
.tab-btn {
  background: transparent; border: 1px solid var(--line); color: var(--text-soft);
  border-radius: 999px; padding: 0.5rem 1.1rem; cursor: pointer;
  font-weight: 600; font-size: 0.9rem; transition: all 0.2s;
}
.tab-btn:hover { border-color: rgba(46,230,166,0.4); color: var(--text-main); }
.tab-btn.active { background: linear-gradient(130deg, var(--brand-a), var(--brand-b)); color: #031e32; border-color: transparent; }
.tab-panel { display: none; animation: fadeIn 0.35s ease; }
.tab-panel.active { display: block; }
@keyframes fadeIn { from { opacity:0; transform: translateY(8px); } to { opacity:1; transform: translateY(0); } }

/* ── FAQ ── */
.faq-list { max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: none; color: var(--text-main);
  padding: 1.1rem 0; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; cursor: pointer; font-size: 1rem; font-weight: 600; text-align: left; transition: color 0.2s;
}
.faq-q:hover { color: var(--brand-a); }
.faq-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  display: block;
  transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; color: var(--text-soft); }
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 1rem; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(120deg, rgba(6,22,38,0.99) 0%, rgba(4,30,22,0.99) 50%, rgba(6,22,38,0.99) 100%);
  border: 1px solid rgba(46,230,166,0.28); border-radius: 20px; padding: 3.2rem 2.4rem; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(46,230,166,0.06) 0%, transparent 68%); pointer-events: none;
}
.cta-banner h2 { margin-bottom: 0.6rem; }
.cta-banner p { color: var(--text-soft); max-width: 55ch; margin: 0 auto 1.6rem; }

/* ── Split layout ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 2.6rem; align-items: center; }
.split img { border-radius: 16px; border: 1px solid var(--line); }
.split-reverse { grid-auto-flow: dense; }
.split-reverse .split-img { grid-column: 1; }
.split-reverse .split-text { grid-column: 2; }

/* ── Progress bars ── */
.prog-list { display: flex; flex-direction: column; gap: 1.2rem; }
.prog-item label { display: flex; justify-content: space-between; font-size: 0.88rem; font-weight: 600; margin-bottom: 0.4rem; }
.prog-item label span { color: var(--brand-a); }
.prog-bar { background: rgba(255,255,255,0.08); border-radius: 999px; height: 7px; overflow: hidden; }
.prog-fill { height: 100%; background: linear-gradient(90deg, var(--brand-a), var(--brand-b)); border-radius: 999px; width: 0; transition: width 1.4s cubic-bezier(0.25,0.46,0.45,0.94); }

/* ── App mockup ── */
.app-mockup { display: flex; gap: 1.1rem; justify-content: center; flex-wrap: wrap; padding: 1.2rem 0; }
.app-screen {
  background: linear-gradient(160deg, #0e2640 0%, #071b30 100%);
  border: 1px solid rgba(46,230,166,0.2); border-radius: 22px;
  width: 150px; min-height: 290px; padding: 1rem 0.75rem; flex-shrink: 0;
  box-shadow: 0 14px 44px rgba(0,0,0,0.55); position: relative;
}
.app-screen-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.9rem; }
.app-screen-dot { width: 30px; height: 5px; background: linear-gradient(90deg,var(--brand-a),var(--brand-b)); border-radius: 3px; }
.app-screen-status { display: flex; gap: 3px; }
.app-screen-status span { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.25); }
.app-screen-status span:first-child { background: var(--brand-a); }
.app-screen-row { height: 9px; background: rgba(255,255,255,0.07); border-radius: 5px; margin-bottom: 0.5rem; }
.app-screen-row.wide { width: 100%; }
.app-screen-row.mid { width: 70%; }
.app-screen-row.short { width: 48%; }
.app-screen-row.accent { background: rgba(46,168,255,0.18); }
.app-screen-chart { margin-top: 0.9rem; height: 54px; display: flex; align-items: flex-end; gap: 5px; }
.chart-bar { flex: 1; border-radius: 3px 3px 0 0; }

/* ── News Cards ── */
.news-card {
  display: flex; flex-direction: column; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line); background: var(--card);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.news-card:hover { transform: translateY(-5px); box-shadow: 0 28px 70px rgba(0,0,0,0.5); border-color: rgba(46,230,166,0.22); }
.news-card-img { width: 100%; aspect-ratio: 16/8; object-fit: cover; }
.news-card-body { padding: 1.2rem 1.3rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.news-date { color: var(--brand-a); font-size: 0.8rem; font-weight: 700; margin-bottom: 0.4rem; letter-spacing: 0.04em; }
.news-card h3 { flex: 1; margin-bottom: 0.5rem; }
.news-card p { color: var(--text-soft); font-size: 0.92rem; margin: 0 0 0.8rem; }

/* ── Timeline ── */
.timeline { border-left: 2px solid rgba(46,230,166,0.35); padding-left: 1.6rem; }
.timeline article { margin-bottom: 1.8rem; position: relative; }
.timeline article::before {
  content: ""; position: absolute; left: -2rem; top: 0.35rem;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--brand-a); border: 2px solid var(--bg-deep);
}
.timeline time { color: var(--brand-a); font-weight: 700; font-size: 0.84rem; letter-spacing: 0.03em; }
.timeline h3 { margin: 0.25rem 0 0.35rem; }
.timeline p { color: var(--text-soft); margin: 0; font-size: 0.95rem; }

/* ── Banners ── */
.banner { border-radius: 18px; overflow: hidden; border: 1px solid var(--line); }
.banner img { width: 100%; min-height: 280px; object-fit: cover; }

/* ── Values blocks ── */
.value-block {
  padding: 1.8rem; border-radius: 16px; border: 1px solid var(--line);
  background: var(--card); position: relative; overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}
.value-block:hover { transform: translateY(-4px); border-color: rgba(46,230,166,0.3); }
.value-block::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(46,230,166,0.04) 0%, transparent 60%); pointer-events: none; }
.value-num {
  font-size: 5rem; font-family: "Impact","Arial Black",sans-serif; line-height: 1;
  color: rgba(255,255,255,0.04); position: absolute; top: 0.4rem; right: 0.8rem;
}

/* ── Compare table ── */
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td { padding: 0.85rem 1rem; text-align: left; border-bottom: 1px solid var(--line); font-size: 0.9rem; }
.compare-table th { color: var(--brand-a); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.05em; text-transform: uppercase; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .check { color: var(--brand-a); }

/* ── Contact ── */
.contact-card .contact-icon {
  width: 54px; height: 54px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(46,230,166,0.14), rgba(46,168,255,0.14));
  border: 1px solid rgba(46,230,166,0.3); display: flex; align-items: center;
  justify-content: center; margin-bottom: 0.8rem;
}

/* ── Highlight strip ── */
.highlight-strip {
  background: linear-gradient(90deg, rgba(46,230,166,0.07) 0%, rgba(46,168,255,0.07) 100%);
  border-top: 1px solid rgba(46,230,166,0.18); border-bottom: 1px solid rgba(46,230,166,0.18);
  padding: 2.4rem 0;
}

/* ── Policy boxes ── */
.policy-box { background: rgba(11,28,45,0.92); border: 1px solid var(--line); border-radius: 14px; padding: 1.4rem; margin-bottom: 1.2rem; }
.policy-box h2 { font-size: 1.2rem; color: var(--brand-a); margin-bottom: 0.5rem; }

/* ── Footer ── */
footer { padding: 3.2rem 0 1.8rem; border-top: 1px solid var(--line); background: #04111d; }
.footer-grid { display: grid; grid-template-columns: 2.4fr 1fr 1.2fr; gap: 2.4rem; }
.footer-brand img { width: 140px; margin-bottom: 0.8rem; }
.footer-desc { color: var(--text-dim); font-size: 0.88rem; line-height: 1.55; margin-bottom: 0.4rem; }
.footer-col-title { font-weight: 700; font-size: 0.8rem; letter-spacing: 0.07em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 0.7rem; display: block; }
.footer-links { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a { font-size: 0.9rem; color: var(--text-soft); transition: color 0.2s; }
.footer-links a:hover { color: var(--brand-a); }
.footer-contact a { display: block; font-size: 0.88rem; color: var(--text-soft); margin-bottom: 0.4rem; transition: color 0.2s; }
.footer-contact a:hover { color: var(--brand-a); }
.footer-bottom {
  margin-top: 2.2rem; padding-top: 1.2rem; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.8rem;
}
.footer-copy { color: var(--text-dim); font-size: 0.84rem; }
.footer-legal { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.footer-legal a { font-size: 0.84rem; color: var(--text-dim); }
.footer-legal a:hover { color: var(--brand-a); }

/* ── Fade-in ── */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.delay-1 { transition-delay: 0.12s; }
.fade-in.delay-2 { transition-delay: 0.24s; }
.fade-in.delay-3 { transition-delay: 0.36s; }
.fade-in.delay-4 { transition-delay: 0.48s; }
.fade-in.show { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */

/* ── News Feature Article ── */
.news-feature { display: grid; grid-template-columns: 1fr 1.2fr; gap: 2.4rem; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 14px; overflow: hidden; }
.news-feature-img { min-height: 320px; }
.news-feature-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.news-feature-body { padding: 2.4rem 2.4rem 2.4rem 0; display: flex; flex-direction: column; gap: 1rem; }
.news-feature-body h2 { font-size: clamp(1.3rem,2.5vw,1.8rem); }

/* ── Info Table ── */
.info-table { width: 100%; border-collapse: collapse; }
.info-table th, .info-table td { padding: 0.7rem 1rem; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.07); font-size: 0.95rem; }
.info-table th { color: var(--brand-a); font-weight: 600; white-space: nowrap; width: 36%; }
.info-table td { color: var(--text-soft); }
.info-table td a { color: var(--brand-a); text-decoration: none; }
.info-table td a:hover { text-decoration: underline; }

/* ── Contact Link ── */
.contact-link { color: var(--brand-a); font-weight: 600; text-decoration: none; font-size: 1.05rem; word-break: break-all; }
.contact-link:hover { text-decoration: underline; }

@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > *:first-child { grid-column: 1/-1; }
}
@media (max-width: 820px) {
  .nav-toggle { display: inline-block; }
  .site-nav {
    position: absolute; right: 1.2rem; top: 72px;
    background: rgba(5,19,32,0.97); border: 1px solid var(--line);
    border-radius: 12px; padding: 0.8rem; min-width: 220px; display: none;
  }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; gap: 0.55rem; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .hero-content { padding-bottom: 3.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .grid-4 { grid-template-columns: 1fr; }
  .app-mockup { justify-content: flex-start; overflow-x: auto; padding-bottom: 0.6rem; }
}
  @media (max-width: 820px) {
    .news-feature { grid-template-columns: 1fr; }
    .news-feature-body { padding: 1.6rem; }
    .news-feature-img { min-height: 200px; }
  }
