/* ─── RESET & ROOT ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --blue: #05C7F2;
  --blue-dark: #04afd6;
  --blue-glow: rgba(5, 199, 242, 0.35);
  --green: #8CBF3F;
  --green-dark: #7aaa33;
  --dark-bg: #0c0e17;
  --dark-surface: #141722;
  --dark-surface-2: #1a1e2e;
  --light-bg: #f5f6f8;
  --light-surface: #ffffff;
  --warm-bg: #f0f1f3;
  --text-on-dark: #e8eaf0;
  --text-on-dark-muted: #8b8fa3;
  --text-on-light: #2d2f36;
  --text-on-light-muted: #6b6f80;
  --border-dark: rgba(5, 199, 242, 0.12);
  --border-light: rgba(45, 47, 54, 0.1);
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-hover: 0 16px 48px rgba(0,0,0,0.12);
  --shadow-dark: 0 4px 24px rgba(0,0,0,0.3);
  --shadow-dark-hover: 0 16px 48px rgba(0,0,0,0.4);
  --font-head: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --transition: 0.3s ease;
  --space-section: clamp(80px, 10vw, 120px);
}
html { scroll-behavior: smooth; }
body {
  background: var(--dark-bg);
  color: var(--text-on-dark);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
img { max-width: 100%; height: auto; }

/* ─── NAV ───────────────────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100; padding: 22px 0; transition: all 0.4s ease;
}
nav.scrolled {
  background: rgba(12, 14, 23, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-dark);
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 36px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  color: var(--text-on-dark-muted); text-decoration: none;
  font-size: 14px; font-weight: 500; letter-spacing: 0.02em;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--blue); }
.nav-cta {
  background: var(--blue) !important; color: #fff !important;
  padding: 10px 22px !important; border-radius: 6px;
  font-weight: 600 !important;
  transition: background var(--transition), transform 0.2s !important;
}
.nav-cta:hover { background: var(--blue-dark) !important; transform: translateY(-1px); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--text-on-dark-muted); border-radius: 2px; transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(12, 14, 23, 0.98);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 36px;
  opacity: 0; pointer-events: none; transition: opacity 0.35s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  color: var(--text-on-dark); text-decoration: none;
  font-family: var(--font-head);
  font-size: clamp(28px, 6vw, 42px); font-weight: 700;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--blue); }
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* ─── HERO (DARK) ──────────────────────────────────────────────────────────── */
#hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 120px 0 80px;
  background: var(--dark-bg);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 60% 45%, rgba(5,199,242,0.12) 0%, transparent 65%),
    radial-gradient(ellipse 40% 35% at 10% 85%, rgba(140,191,63,0.06) 0%, transparent 50%),
    radial-gradient(ellipse 30% 30% at 85% 15%, rgba(5,199,242,0.05) 0%, transparent 50%),
    var(--dark-bg);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(5,199,242,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5,199,242,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 60% 45%, black 0%, transparent 80%);
  animation: gridPulse 8s ease-in-out infinite;
}
@keyframes gridPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  top: 50%; left: 50%;
  transform: translate(-35%, -55%);
  background: radial-gradient(circle, rgba(5,199,242,0.08) 0%, transparent 70%);
  filter: blur(60px);
  animation: glowFloat 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes glowFloat {
  0%, 100% { transform: translate(-35%, -55%) scale(1); }
  50% { transform: translate(-35%, -55%) scale(1.15); }
}
.hero-content { position: relative; z-index: 1; max-width: 800px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(5,199,242,0.08); border: 1px solid rgba(5,199,242,0.2);
  color: var(--blue); font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 28px;
}
.eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue); animation: blink 2s infinite;
}
@keyframes blink {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.3; transform:scale(0.7); }
}
h1 {
  font-family: var(--font-head);
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 900; line-height: 1.08;
  letter-spacing: -0.025em; margin-bottom: 24px;
  color: #fff;
}
h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--blue), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.word-bigger {
  font-style: normal;
  letter-spacing: 0.04em;
}
.hero-sub {
  font-size: clamp(17px, 2.5vw, 20px); color: var(--text-on-dark-muted);
  max-width: 580px; margin-bottom: 40px;
  font-weight: 300; line-height: 1.65;
}

/* ─── BUTTONS ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 32px; border-radius: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 16px;
  text-decoration: none; cursor: pointer; border: none;
  transition: all var(--transition);
}
.btn-primary {
  background: var(--blue); color: #fff;
  box-shadow: 0 4px 24px rgba(5,199,242,0.25);
}
.btn-primary:hover {
  background: var(--blue-dark); transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(5,199,242,0.4);
}
.btn-ghost {
  background: transparent;
  border: 2px solid rgba(140,191,63,0.5);
  color: var(--green);
}
.btn-ghost:hover {
  background: var(--green); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(140,191,63,0.25);
  border-color: var(--green);
}
/* Light section button overrides */
.light-section .btn-ghost {
  border-color: rgba(140,191,63,0.6);
  color: var(--green-dark);
}
.light-section .btn-ghost:hover {
  background: var(--green); color: #fff;
  border-color: var(--green);
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }

/* ─── TRUST BAR ────────────────────────────────────────────────────────────── */
.trust-bar {
  display: flex; gap: 48px; flex-wrap: wrap;
  padding-top: 40px; border-top: 1px solid rgba(5,199,242,0.15);
}
.trust-item { display: flex; flex-direction: column; }
.trust-num {
  font-family: var(--font-head); font-size: 32px;
  font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, var(--blue), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.trust-label { font-size: 13px; color: var(--text-on-dark-muted); margin-top: 4px; }

/* ─── SECTION SHARED ───────────────────────────────────────────────────────── */
section { padding: var(--space-section) 0; }
.section-label {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 16px; display: block;
}
h2 {
  font-family: var(--font-head);
  font-size: clamp(30px, 4.5vw, 50px);
  font-weight: 900; line-height: 1.12;
  letter-spacing: -0.02em; margin-bottom: 20px;
}
h3 {
  font-family: var(--font-head);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700; line-height: 1.3; margin-bottom: 12px;
}
.section-intro {
  font-size: 18px; max-width: 560px; margin-bottom: 56px;
  font-weight: 300; line-height: 1.7;
}

/* ─── LIGHT SECTION BASE ──────────────────────────────────────────────────── */
.light-section {
  background: var(--light-bg);
  color: var(--text-on-light);
}
.light-section h2, .light-section h3 { color: var(--text-on-light); }
.light-section .section-intro { color: var(--text-on-light-muted); }
.light-section .section-label { color: var(--blue); }

/* ─── WARM SECTION ─────────────────────────────────────────────────────────── */
.warm-section {
  background: var(--warm-bg);
  color: var(--text-on-light);
}
.warm-section h2, .warm-section h3 { color: var(--text-on-light); }
.warm-section .section-intro { color: var(--text-on-light-muted); }

/* ─── DARK SECTION ─────────────────────────────────────────────────────────── */
.dark-section {
  background: var(--dark-bg);
  color: var(--text-on-dark);
  position: relative;
  overflow: hidden;
}
.dark-section h2 { color: #fff; }
.dark-section h3 { color: var(--text-on-dark); }
.dark-section .section-intro { color: var(--text-on-dark-muted); }

/* ─── CARDS (LIGHT) ────────────────────────────────────────────────────────── */
.card-light {
  background: var(--light-surface); border: 1px solid var(--border-light);
  border-radius: 14px; padding: 36px 32px; transition: all var(--transition);
}
.card-light:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(5,199,242,0.2);
}
.card-light p { color: var(--text-on-light-muted); font-size: 15px; line-height: 1.75; }

/* ─── CARDS (DARK) ─────────────────────────────────────────────────────────── */
.card-dark {
  background: var(--dark-surface); border: 1px solid var(--border-dark);
  border-radius: 14px; padding: 36px 32px; transition: all var(--transition);
}
.card-dark:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-dark-hover);
  border-color: rgba(5,199,242,0.25);
}
.card-dark p { color: var(--text-on-dark-muted); font-size: 15px; line-height: 1.75; }

/* ─── SVG ICON CONTAINERS ──────────────────────────────────────────────────── */
.icon-box {
  width: 52px; height: 52px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.icon-box svg { width: 26px; height: 26px; }
.icon-box-blue { background: rgba(5,199,242,0.1); }
.icon-box-blue svg { stroke: var(--blue); }
.icon-box-green { background: rgba(140,191,63,0.12); }
.icon-box-green svg { stroke: var(--green); }
.icon-box-dark { background: rgba(5,199,242,0.08); }
.icon-box-dark svg { stroke: var(--blue); }

/* ─── PROBLEM SECTION ──────────────────────────────────────────────────────── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* ─── HOW IT WORKS (DARK) ──────────────────────────────────────────────────── */
#how { position: relative; }
.how-bg-glow {
  position: absolute; top: 0; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(5,199,242,0.06) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.step-num {
  font-family: var(--font-head); font-size: 56px;
  font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, rgba(5,199,242,0.3), rgba(140,191,63,0.15));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}
.cta-center { text-align: center; margin-top: 52px; }

/* ─── SERVICES SECTION ─────────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  border-radius: 14px; padding: 36px 32px; transition: all var(--transition);
  text-decoration: none; color: inherit; display: block;
}
.service-card.card-light:hover { border-color: var(--blue); }
.service-card h3 { color: var(--text-on-light); }
.service-card p { color: var(--text-on-light-muted); font-size: 15px; line-height: 1.75; }
.service-price {
  color: var(--blue); font-size: 14px; font-weight: 600; margin-top: 12px;
  display: inline-block;
}

/* ─── ABOUT SECTION ────────────────────────────────────────────────────────── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.about-photo {
  border-radius: 16px; aspect-ratio: 4/5;
  position: relative; overflow: hidden;
  border: 1px solid var(--border-light);
}
.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
  display: block;
}
.about-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(12,14,23,0.15) 100%);
}
.about-text h2 { color: var(--text-on-light); }
.north-star {
  background: linear-gradient(135deg, rgba(5,199,242,0.06), rgba(140,191,63,0.04));
  border-left: 3px solid var(--blue);
  border-radius: 0 10px 10px 0; padding: 20px 24px;
  margin: 24px 0 28px;
  font-family: var(--font-head); font-size: 18px;
  font-weight: 700; font-style: italic; color: var(--blue); line-height: 1.4;
}
.about-text p { color: var(--text-on-light-muted); font-size: 16px; line-height: 1.85; margin-bottom: 18px; }
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { aspect-ratio: 3/4; max-width: 320px; margin: 0 auto; }
}

/* ─── TESTIMONIALS ─────────────────────────────────────────────────────────── */
.testi-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testi-card {
  border-radius: 14px; padding: 36px 32px; transition: all var(--transition);
}
.testi-card.card-dark:hover { border-color: var(--blue); }
.quote-mark {
  display: block; font-family: var(--font-head);
  font-size: 72px; line-height: 0.8;
  background: linear-gradient(135deg, rgba(5,199,242,0.3), rgba(140,191,63,0.15));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}
.testi-card blockquote {
  font-size: 16px; line-height: 1.75; color: var(--text-on-dark-muted);
  font-style: normal; margin-bottom: 24px;
}
.testi-name { font-weight: 600; color: var(--blue); font-size: 15px; }
.testi-context { font-size: 13px; color: var(--text-on-dark-muted); margin-top: 2px; }

/* ─── FAQ ───────────────────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 800px; }
.faq-item {
  background: var(--light-surface); border: 1px solid var(--border-light);
  border-radius: 12px; overflow: hidden; transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--blue); }
.faq-q {
  width: 100%; background: none; border: none;
  padding: 24px 28px; display: flex;
  align-items: center; justify-content: space-between;
  cursor: pointer; text-align: left; gap: 16px;
}
.faq-q span {
  font-family: var(--font-head); font-size: 18px;
  font-weight: 700; color: var(--text-on-light); line-height: 1.3;
}
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(5,199,242,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: 18px; flex-shrink: 0;
  transition: transform 0.3s, background 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(5,199,242,0.2); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 28px;
}
.faq-a.open { max-height: 300px; padding: 0 28px 24px; }
.faq-a p { color: var(--text-on-light-muted); font-size: 16px; line-height: 1.75; }

/* ─── CONTACT / CTA (GRADIENT) ─────────────────────────────────────────────── */
#contact {
  background: var(--dark-bg);
  position: relative; overflow: hidden;
}
.contact-glow-1 {
  position: absolute; width: 500px; height: 500px;
  top: -150px; right: -100px;
  background: radial-gradient(circle, rgba(5,199,242,0.1) 0%, transparent 70%);
  filter: blur(80px); pointer-events: none;
}
.contact-glow-2 {
  position: absolute; width: 400px; height: 400px;
  bottom: -150px; left: -100px;
  background: radial-gradient(circle, rgba(140,191,63,0.06) 0%, transparent 70%);
  filter: blur(80px); pointer-events: none;
}
.contact-inner {
  position: relative; z-index: 1;
  text-align: center; max-width: 680px; margin: 0 auto;
}
.contact-inner h2 { color: #fff; margin-bottom: 20px; }
.contact-inner .lead { color: var(--text-on-dark-muted); font-size: 18px; margin-bottom: 8px; font-weight: 300; }
.contact-email {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--blue); font-size: 20px; font-weight: 600;
  text-decoration: none; margin-bottom: 40px; transition: color 0.3s;
}
.contact-email:hover { color: var(--blue-dark); }
.btn-contact {
  background: var(--blue); color: #fff;
  box-shadow: 0 4px 32px rgba(5,199,242,0.3);
  font-size: 18px; padding: 18px 44px;
}
.btn-contact:hover {
  background: var(--blue-dark); transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(5,199,242,0.45);
}
.risk {
  margin-top: 24px; font-size: 14px; color: var(--text-on-dark-muted);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.risk svg { width: 16px; height: 16px; stroke: var(--green); flex-shrink: 0; }

/* ─── FOOTER ───────────────────────────────────────────────────────────────── */
footer {
  background: var(--dark-surface); border-top: 1px solid var(--border-dark);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand p { color: var(--text-on-dark-muted); font-size: 14px; line-height: 1.7; max-width: 280px; margin-top: 16px; }
.footer-col h4 {
  font-family: var(--font-head); font-size: 15px;
  font-weight: 700; color: #fff; margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--text-on-dark-muted); text-decoration: none; font-size: 14px; transition: color 0.3s; }
.footer-col a:hover { color: var(--blue); }
.footer-col span { color: var(--text-on-dark-muted); font-size: 14px; }
.map-embed { border-radius: 10px; overflow: hidden; border: 1px solid var(--border-dark); margin-top: 48px; }
.map-embed iframe { display: block; }
.footer-bottom {
  border-top: 1px solid var(--border-dark); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: var(--text-on-dark-muted); font-size: 13px; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ─── BACK TO TOP ──────────────────────────────────────────────────────────── */
#back-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 44px; height: 44px; background: var(--blue);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 18px; cursor: pointer; border: none;
  opacity: 0; pointer-events: none; transition: all 0.3s; z-index: 90;
  box-shadow: 0 4px 16px rgba(5,199,242,0.3);
}
#back-top.visible { opacity: 1; pointer-events: all; }
#back-top:hover { transform: translateY(-3px); background: var(--blue-dark); }

/* ─── ANIMATIONS ───────────────────────────────────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1), transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }
.d5 { transition-delay: 0.4s; }
.d6 { transition-delay: 0.48s; }

/* Scale-in variant for cards */
.scale-in {
  opacity: 0; transform: translateY(20px) scale(0.97);
  transition: opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1), transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.scale-in.visible { opacity: 1; transform: translateY(0) scale(1); }

/* ─── SECTION DIVIDER ──────────────────────────────────────────────────────── */
.section-divide-down {
  position: relative;
}
.section-divide-down::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(5,199,242,0.15), transparent);
}

/* ─── MOBILE ───────────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .trust-bar { gap: 24px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
}

/* ─── DARK SECTION TRANSITION EDGES ───────────────────────────────────────── */
.edge-top-dark {
  position: relative;
}
.edge-top-dark::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-dark), transparent);
}

/* ─── IMAGE ACCENT CARD ────────────────────────────────────────────────────── */
.image-accent-card {
  border-radius: 16px; overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-dark);
  border: 1px solid var(--border-dark);
}
.image-accent-card img {
  display: block; width: 100%; height: auto;
}
.image-accent-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(12,14,23,0.4) 100%);
  pointer-events: none;
}

/* ─── HERO IMAGE FLOAT ─────────────────────────────────────────────────────── */
.hero-image-float {
  position: absolute;
  right: -60px; top: 50%;
  transform: translateY(-50%);
  width: 340px;
  opacity: 0.12;
  filter: blur(1px);
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 1000px) {
  .hero-image-float { display: none; }
}

/* ─── INNER PAGE HERO (DARK) ───────────────────────────────────────────────── */
.page-hero {
  padding: 160px 0 80px;
  background: var(--dark-bg);
  position: relative; overflow: hidden;
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(5,199,242,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5,199,242,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 65% 40%, black 0%, transparent 80%);
}
.page-hero-content { position: relative; z-index: 1; max-width: 760px; }
.page-hero h1 { margin-bottom: 20px; color: #fff; }
.page-hero .lead {
  font-size: clamp(17px, 2.5vw, 20px); color: var(--text-on-dark-muted);
  max-width: 580px; font-weight: 300; line-height: 1.65;
  margin-bottom: 36px;
}
.pricing-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(140,191,63,0.1); border: 1px solid rgba(140,191,63,0.25);
  color: var(--green); font-size: 14px; font-weight: 600;
  padding: 8px 18px; border-radius: 100px; margin-bottom: 32px;
}

/* ─── BREADCRUMB ───────────────────────────────────────────────────────────── */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-on-dark-muted); margin-bottom: 20px;
}
.breadcrumb a { color: var(--text-on-dark-muted); text-decoration: none; transition: color 0.3s; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb span { color: var(--blue); }

/* ─── PORTFOLIO ────────────────────────────────────────────────────────────── */
.portfolio-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px; margin-top: 56px;
}
.portfolio-card {
  border-radius: 14px; overflow: hidden; transition: all var(--transition);
  text-decoration: none; color: inherit; display: block;
}
.portfolio-card.card-light:hover { border-color: var(--blue); transform: translateY(-5px); }
.portfolio-preview {
  height: 180px;
  background: linear-gradient(135deg, rgba(5,199,242,0.06), rgba(140,191,63,0.06));
  display: flex; align-items: center; justify-content: center;
  font-size: 48px; border-bottom: 1px solid var(--border-light);
}
.portfolio-info { padding: 24px; }
.portfolio-info h3 { margin-bottom: 8px; }
.portfolio-info p { color: var(--text-on-light-muted); font-size: 14px; margin-bottom: 12px; }
.portfolio-link {
  color: var(--blue); font-size: 13px; font-weight: 600;
  text-decoration: none; display: inline-flex; align-items: center; gap: 4px;
}

