/* ═══════════════════════════════════════════════════════════
   Blue Reef Solutions — Design System v2 (redesign, 2026)
   Principles: one idea per section · generous whitespace ·
   gradient accent used sparingly · nothing competing for focus
   ═══════════════════════════════════════════════════════════ */

:root {
  --black: #050810;
  --dark: #0a101d;
  --card: #0e1626;
  --border: rgba(0, 160, 255, 0.14);
  --border-soft: rgba(120, 150, 190, 0.10);
  --blue-lo: #0057b8;
  --blue-hi: #00bfff;
  --text: #cdd9ec;
  --muted: #8298b8;
  --white: #f2f7ff;
  --grad: linear-gradient(135deg, var(--blue-lo), var(--blue-hi));
  --radius: 14px;
  --shadow: 0 6px 48px rgba(0, 80, 180, 0.16);
  --font-head: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --w-wide: 1120px;
  --w-text: 720px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--text);
  font-size: 1.0625rem;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

/* ─── Typography ─────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 3.9rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.22rem; font-weight: 700; line-height: 1.35; }
p  { max-width: 65ch; }
a  { color: var(--blue-hi); text-decoration: none; }
a:hover { text-decoration: underline; }
strong { color: var(--white); font-weight: 600; }

.eyebrow {
  display: block;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
}

.lede { font-size: 1.15rem; color: var(--muted); }

/* ─── Layout ─────────────────────────────────────── */
.section { padding: clamp(4.5rem, 9vw, 7.5rem) 1.5rem; }
.section-alt { background: var(--dark); }
.container { max-width: var(--w-wide); margin: 0 auto; }
.container-text { max-width: var(--w-text); margin: 0 auto; }
.section-head { max-width: var(--w-text); margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head p { margin-top: 1rem; }
.center { text-align: center; margin-inline: auto; }

/* ─── Buttons ────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 1.9rem;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary {
  background: var(--grad);
  color: #04101c;
  box-shadow: 0 4px 24px rgba(0, 140, 255, 0.35);
}
.btn-primary:hover { box-shadow: 0 8px 32px rgba(0, 140, 255, 0.5); color: #04101c; }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(0, 160, 255, 0.4);
}
.btn-ghost:hover { border-color: var(--blue-hi); color: var(--blue-hi); }
.btn-row { display: flex; gap: 1rem; flex-wrap: wrap; }

.text-link {
  font-family: var(--font-head);
  font-weight: 600;
  white-space: nowrap;
}
.text-link::after { content: ' →'; }

/* ─── Navigation ─────────────────────────────────── */
#nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.5rem;
  background: rgba(5, 8, 16, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
}
.nav-logo img { width: 116px; height: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}
.nav-links > li > a {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}
.nav-links > li > a:hover { color: var(--blue-hi); text-decoration: none; }
.nav-cta {
  background: var(--grad);
  color: #04101c !important;
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
}

/* Services dropdown */
.has-dropdown { position: relative; }
.has-dropdown > a::after { content: ' ▾'; font-size: 0.7em; }
.dropdown {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 460px;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.25rem 1.5rem;
  list-style: none;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { display: grid; }
.dropdown-group { font-family: var(--font-head); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); padding: 0.5rem 0 0.35rem; grid-column: span 1; }
.dropdown a {
  display: block;
  padding: 0.42rem 0;
  font-size: 0.92rem;
  color: var(--text);
}
.dropdown a:hover { color: var(--blue-hi); text-decoration: none; }

.hamburger { display: none; background: none; border: 0; cursor: pointer; padding: 0.5rem; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; transition: 0.2s; }

/* ─── Hero ───────────────────────────────────────── */
.hero {
  padding: clamp(5rem, 12vw, 9rem) 1.5rem clamp(4rem, 9vw, 7rem);
  background:
    radial-gradient(ellipse 60% 50% at 70% 10%, rgba(0, 87, 184, 0.22), transparent),
    radial-gradient(ellipse 50% 40% at 20% 90%, rgba(0, 191, 255, 0.07), transparent),
    var(--black);
}
.hero-inner { max-width: var(--w-wide); margin: 0 auto; }
.hero h1 { max-width: 17ch; }
.hero h1 span {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 54ch;
  margin: 1.5rem 0 2.5rem;
}

/* ─── Trust bar ──────────────────────────────────── */
.trust-bar {
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: var(--dark);
  padding: 1.75rem 1.5rem;
}
.trust-bar-inner {
  max-width: var(--w-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 2.5rem;
}
.trust-item {
  font-family: var(--font-head);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}
.trust-item::before { content: '›'; color: var(--blue-hi); font-weight: 800; }
.trust-item small { display: block; font-family: var(--font-body); font-weight: 400; color: var(--muted); font-size: 0.88rem; }

/* ─── Problem section ────────────────────────────── */
.pain-list { list-style: none; display: grid; gap: 1.25rem; margin: 2rem 0; }
.pain-list li {
  padding-left: 1.6rem;
  position: relative;
  max-width: 62ch;
}
.pain-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grad);
}
.pain-list strong { display: block; }

/* ─── Cards ──────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.card:hover { border-color: var(--border); transform: translateY(-3px); }
.card p { color: var(--muted); font-size: 0.97rem; flex: 1; }

/* ─── Amtelco band ───────────────────────────────── */
.specialty-band {
  background:
    radial-gradient(ellipse 50% 80% at 85% 50%, rgba(0, 191, 255, 0.08), transparent),
    var(--dark);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.specialty-inner {
  max-width: var(--w-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
}
.specialty-inner .btn-row { justify-content: flex-end; }

/* ─── Process ────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  counter-reset: step;
}
.process-step { padding: 1.5rem 0; border-top: 2px solid var(--border); }
.process-step::before {
  counter-increment: step;
  content: '0' counter(step);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.9rem;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  margin-bottom: 0.6rem;
}
.process-step h3 { margin-bottom: 0.5rem; }
.process-step p { color: var(--muted); font-size: 0.97rem; }

/* ─── Testimonials ───────────────────────────────── */
.quote-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.5rem; }
.quote-card {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.quote-card blockquote { font-size: 1.05rem; color: var(--text); flex: 1; }
.quote-card blockquote::before { content: '“'; color: var(--blue-hi); font-size: 2.2rem; font-family: var(--font-head); line-height: 0; vertical-align: -0.35em; margin-right: 0.15rem; }
.quote-card blockquote::after { content: '”'; color: var(--blue-hi); font-size: 2.2rem; font-family: var(--font-head); line-height: 0; vertical-align: -0.35em; margin-left: 0.15rem; }
.quote-attr { font-family: var(--font-head); font-weight: 700; color: var(--white); font-size: 0.95rem; }
.quote-attr small { display: block; font-family: var(--font-body); font-weight: 400; color: var(--muted); }

/* ─── About ──────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3.5rem;
  align-items: center;
}
.about-photo img { border-radius: var(--radius); box-shadow: var(--shadow); }
.about-points { list-style: none; margin-top: 1.75rem; display: grid; gap: 0.7rem; }
.about-points li { padding-left: 1.6rem; position: relative; }
.about-points li::before { content: '✓'; position: absolute; left: 0; color: var(--blue-hi); font-weight: 700; }

/* ─── Contact ────────────────────────────────────── */
.contact-wrap {
  max-width: var(--w-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
}
.response-note {
  margin-top: 1.75rem;
  padding: 1rem 1.25rem;
  background: rgba(0, 191, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--text);
}
.contact-form { display: grid; gap: 1.1rem; }
.contact-form label {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  display: grid;
  gap: 0.4rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--white);
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  transition: border-color 0.15s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { outline: none; border-color: var(--blue-hi); }
.contact-form textarea { min-height: 140px; resize: vertical; }
#form-status { font-size: 0.95rem; min-height: 1.4em; }
.hp-field { position: absolute !important; left: -9999px !important; height: 1px; overflow: hidden; }
#turnstileSlot { min-height: 0; }

/* ─── Service pages ──────────────────────────────── */
.page-hero {
  padding: clamp(3.5rem, 8vw, 6rem) 1.5rem clamp(2.5rem, 6vw, 4.5rem);
  background:
    radial-gradient(ellipse 60% 50% at 75% 0%, rgba(0, 87, 184, 0.18), transparent),
    var(--black);
}
.breadcrumbs {
  font-family: var(--font-head);
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--blue-hi); }
.page-hero h1 { font-size: clamp(2.1rem, 4.5vw, 3.2rem); max-width: 22ch; }
.page-hero .lede { margin-top: 1.25rem; max-width: 60ch; }

.check-list, .x-list { list-style: none; display: grid; gap: 0.7rem; margin: 1.5rem 0; }
.check-list li, .x-list li { padding-left: 1.7rem; position: relative; max-width: 62ch; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--blue-hi); font-weight: 700; }
.x-list li::before { content: '•'; position: absolute; left: 0; color: var(--blue-hi); font-weight: 800; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
@media (max-width: 800px) { .two-col { grid-template-columns: 1fr; } }

/* FAQ */
.faq { display: grid; gap: 0.85rem; max-width: var(--w-text); }
.faq details {
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 0;
  transition: border-color 0.2s ease;
}
.faq details[open] { border-color: var(--border); }
.faq summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--white);
  padding: 1.1rem 1.4rem;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  position: absolute;
  right: 1.4rem;
  color: var(--blue-hi);
  font-weight: 800;
}
.faq details[open] summary::after { content: '–'; }
.faq details p { padding: 0 1.4rem 1.2rem; color: var(--muted); }

/* Related posts */
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }
.related-card {
  display: block;
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  color: var(--text);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.4;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.related-card:hover { border-color: var(--border); transform: translateY(-2px); text-decoration: none; color: var(--blue-hi); }
.related-card small { display: block; font-family: var(--font-body); font-weight: 400; color: var(--muted); margin-top: 0.5rem; }

/* CTA band */
.cta-band {
  text-align: center;
  padding: clamp(4rem, 8vw, 6.5rem) 1.5rem;
  background:
    radial-gradient(ellipse 50% 60% at 50% 100%, rgba(0, 87, 184, 0.2), transparent),
    var(--dark);
  border-top: 1px solid var(--border-soft);
}
.cta-band h2 { max-width: 24ch; margin: 0 auto 1rem; }
.cta-band p { margin: 0 auto 2rem; color: var(--muted); }
.cta-band .btn-row { justify-content: center; }

/* ─── Footer ─────────────────────────────────────── */
footer {
  background: var(--dark);
  border-top: 1px solid var(--border-soft);
  padding: 4rem 1.5rem 2.5rem;
}
.footer-grid {
  max-width: var(--w-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
}
.footer-brand img { width: 116px; margin-bottom: 1rem; }
.footer-brand p { color: var(--muted); font-size: 0.92rem; max-width: 32ch; }
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: grid; gap: 0.55rem; }
.footer-col a { color: var(--text); font-size: 0.94rem; }
.footer-col a:hover { color: var(--blue-hi); }
.footer-bottom {
  max-width: var(--w-wide);
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-soft);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.88rem;
}

/* ─── Responsive ─────────────────────────────────── */
@media (max-width: 900px) {
  .specialty-inner, .about-grid, .contact-wrap, .quote-grid { grid-template-columns: 1fr; }
  .specialty-inner .btn-row { justify-content: flex-start; }
  .about-grid { gap: 2rem; }
  .about-photo { max-width: 260px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-bar-inner { grid-template-columns: 1fr; gap: 0.9rem; }
}

@media (max-width: 760px) {
  .hamburger { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--dark);
    border-bottom: 1px solid var(--border-soft);
    padding: 0.5rem 1.5rem 1.25rem;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links > li { width: 100%; }
  .nav-links > li > a { display: block; padding: 0.7rem 0; }
  .dropdown {
    position: static;
    transform: none;
    display: grid;
    min-width: 0;
    grid-template-columns: 1fr;
    border: 0;
    box-shadow: none;
    background: transparent;
    padding: 0 0 0 1rem;
  }
  .nav-cta { display: inline-block; margin-top: 0.5rem; }
}

/* ─── Cookie consent ─────────────────────────────── */
.cookie-notice {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  max-width: 520px;
  margin: 0 auto;
  z-index: 200;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.1rem 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-notice p { font-size: 0.9rem; color: var(--text); margin: 0; flex: 1 1 260px; }
.cookie-notice-btns { display: flex; gap: 0.6rem; }
.cookie-btn {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
}
.cookie-btn-accept { background: var(--grad); color: #04101c; }
.cookie-btn-decline { background: transparent; color: var(--muted); border: 1px solid var(--border-soft); }
.cookie-btn-decline:hover { color: var(--text); }

/* ─── Privacy page ───────────────────────────────── */
.privacy-hero {
  padding: clamp(3.5rem, 8vw, 5.5rem) 1.5rem 2.5rem;
  background: radial-gradient(ellipse 60% 50% at 75% 0%, rgba(0, 87, 184, 0.15), transparent), var(--black);
}
.privacy-hero-inner { max-width: var(--w-text); margin: 0 auto; }
.privacy-updated { color: var(--muted); font-size: 0.9rem; margin-top: 0.75rem; }
.privacy-page, .privacy-content { max-width: var(--w-text); margin: 0 auto; padding: 2rem 1.5rem 4rem; }
.privacy-content h2 { font-size: 1.35rem; margin: 2.2rem 0 0.8rem; }
.privacy-content p, .privacy-content li { color: var(--text); margin-bottom: 0.9rem; }
.privacy-content ul { margin: 0 0 1.2rem 1.3rem; display: grid; gap: 0.5rem; }

/* ─── Blog (v2) ──────────────────────────────────── */
.page-hero-inner { max-width: var(--w-wide); margin: 0 auto; }
.page-hero-inner h1 { font-size: clamp(2rem, 4.2vw, 3rem); max-width: 26ch; }
.page-hero-inner > p { margin-top: 1.1rem; color: var(--muted); font-size: 1.12rem; max-width: 62ch; }
.section-label {
  display: block; font-family: var(--font-head); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 1rem;
}
.blog-article { max-width: var(--w-text); margin: 0 auto; padding: clamp(2.5rem, 5vw, 4rem) 1.5rem; }
.blog-article h2 { font-size: 1.5rem; margin: 2.4rem 0 0.9rem; }
.blog-article h3 { margin: 1.7rem 0 0.6rem; }
.blog-article p { margin-bottom: 1.15rem; }
.blog-article ul, .blog-article ol { margin: 0 0 1.3rem 1.3rem; display: grid; gap: 0.55rem; }
.blog-article li { max-width: 62ch; }
.blog-article-meta {
  display: flex; align-items: center; gap: 0.9rem; flex-wrap: wrap;
  color: var(--muted); font-size: 0.9rem; font-family: var(--font-head);
  margin-bottom: 2.25rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--border-soft);
}
.blog-article-tag, .blog-card-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--blue-hi);
  border: 1px solid rgba(0, 160, 255, 0.35); border-radius: 999px; padding: 0.2rem 0.7rem;
}
.blog-related-link { display: block; margin: 0.35rem 0; font-weight: 600; }
.link-muted { color: var(--muted); }
.author-box {
  max-width: var(--w-text); margin: 0 auto; padding: 0 1.5rem 3.5rem;
  display: flex; gap: 1.25rem; align-items: flex-start;
}
.author-box img { border-radius: 50%; flex-shrink: 0; }
.author-box strong { font-family: var(--font-head); color: var(--white); }
.author-box span { color: var(--muted); font-size: 0.92rem; }
.author-box p { color: var(--muted); font-size: 0.95rem; margin-top: 0.4rem; }
.page-cta-section {
  text-align: center; padding: clamp(3.5rem, 7vw, 5.5rem) 1.5rem;
  background: radial-gradient(ellipse 50% 60% at 50% 100%, rgba(0, 87, 184, 0.2), transparent), var(--dark);
  border-top: 1px solid var(--border-soft);
}
.page-cta-inner { max-width: var(--w-text); margin: 0 auto; }
.page-cta-inner h2 { margin-bottom: 0.9rem; }
.page-cta-inner p { margin: 0 auto 1.75rem; color: var(--muted); }
.page-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
a.btn-primary {
  display: inline-block; font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  padding: 0.9rem 1.9rem; border-radius: 999px; background: var(--grad); color: #04101c;
  box-shadow: 0 4px 24px rgba(0, 140, 255, 0.35); transition: transform 0.15s ease;
}
a.btn-primary:hover { transform: translateY(-2px); text-decoration: none; color: #04101c; }
a.btn-outline {
  display: inline-block; font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  padding: 0.9rem 1.9rem; border-radius: 999px; background: transparent; color: var(--white);
  border: 1px solid rgba(0, 160, 255, 0.4); transition: border-color 0.15s ease;
}
a.btn-outline:hover { border-color: var(--blue-hi); color: var(--blue-hi); text-decoration: none; }
.blog-grid {
  max-width: var(--w-wide); margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem) 1.5rem;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem;
}
.blog-card {
  display: flex; flex-direction: column; gap: 0.8rem;
  background: var(--card); border: 1px solid var(--border-soft); border-radius: var(--radius);
  padding: 1.75rem 1.6rem; color: var(--text);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.blog-card:hover { border-color: var(--border); transform: translateY(-3px); text-decoration: none; }
.blog-card h3 { font-size: 1.08rem; line-height: 1.35; }
.blog-card p { color: var(--muted); font-size: 0.94rem; flex: 1; }
.blog-card-tag { align-self: flex-start; }
.blog-card-meta { display: flex; justify-content: space-between; gap: 0.75rem; flex-wrap: wrap; color: var(--muted); font-size: 0.85rem; font-family: var(--font-head); }
.blog-card-read { color: var(--blue-hi); font-weight: 600; }
