/* ============================================================
   ITGarden — Main Stylesheet
   Fonts : Outfit (headings) + DM Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800&family=DM+Sans:wght@300;400;500&display=swap');

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

:root {
  --navy:        #0f1c3f;
  --navy-mid:    #1a2f5e;
  --navy-soft:   #243a72;
  --teal:        #0d9e87;
  --teal-light:  #12bfa4;
  --teal-pale:   #e0f7f4;
  --blue:        #1d4ed8;
  --blue-mid:    #1e40af;
  --blue-dark:   #1e3a8a;
  --blue-pale:   #eff6ff;
  --green:       #15803d;
  --green-mid:   #16a34a;
  --green-pale:  #f0fdf4;
  --gold:        #f59e0b;
  --off-white:   #f5f7fa;
  --white:       #ffffff;
  --text:        #374151;
  --muted:       #6b7280;
  --border:      #e5e7eb;
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  22px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Outfit', 'Segoe UI', sans-serif;
  line-height: 1.2;
  color: var(--navy);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── LAYOUT ── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: 88px 0; }

/* ── SECTION HEADER ── */
.section-label {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #6b85c6;
  margin-bottom: 10px;
}

.section-header {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 52px;
}

.section-header.left {
  text-align: left;
  max-width: 760px;
  margin: 0 0 34px;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 10px 0 15px;
}

.section-sub {
    font-size: 1rem;
    color: #6b7280;
    max-width: 650px;
}

/* ════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════ */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.nav-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}

.nav-logo a {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
}

.nav-logo span { color: var(--teal-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: rgba(255,255,255,.72);
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
}

.nav-links a:hover { color: #fff; }

.nav-links a.nav-cta {
  background: var(--teal);
  color: #fff;
  padding: 9px 20px;
  border-radius: var(--r-sm);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  transition: background .2s, transform .15s;
}

.nav-links a.nav-cta:hover {
  background: var(--teal-light);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

/* ════════════════════════════════════════════
   SPLIT BANNERS
════════════════════════════════════════════ */
.banner {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  min-height: 480px;
}

.banner-content-pane {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  position: relative;
  z-index: 2;
}

.banner-reversed .banner-content-pane {
  order: 2;
  padding: 60px 24px;
}

.banner-reversed .banner-media-pane { order: 1; }

.banner-media-pane {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}

.banner-media-pane img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.banner-content-inner {
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
}

.banner-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  padding: 28px;
  border: 2px dashed;
}

.banner-placeholder .ph-icon { opacity: .45; }

.banner-placeholder .ph-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 20px;
}

.banner-placeholder .ph-hint {
  font-size: 13px;
  opacity: .6;
}
.banner-placeholder img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  display: block;
}
.banner-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.kicker-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-light);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(1.5); }
}

.banner-content-inner h1 {
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.08;
  margin-bottom: 16px;
}

.banner-content-inner h2 {
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.12;
  margin-bottom: 16px;
}

.banner-content-inner p {
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 22px;
  max-width: 560px;
}

.banner-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* Hero banner */
.banner-hero {
  background: linear-gradient(140deg, #0a1628 0%, #0f1c3f 45%, #1a2f5e 75%, #1e3a8a 100%);
}

.banner-hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 70% at 30% 50%, rgba(13,158,135,.14) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 5% 80%, rgba(99,102,241,.12) 0%, transparent 65%);
}

.banner-hero .banner-content-inner h1 { color: #fff; }
.banner-hero .banner-content-inner p { color: rgba(255,255,255,.75); }
.banner-hero .banner-content-inner { max-width: 640px; }

.banner-hero .banner-kicker {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.20);
  color: rgba(255,255,255,.90);
}

.highlight { color: var(--teal-light); }

.banner-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.banner-chips span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.88);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
}

.chip-check {
  font-style: normal;
  width: 18px;
  height: 18px;
  background: rgba(13,158,135,.40);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--teal-light);
}

.hero-placeholder {
  border-color: rgba(255,255,255,.20);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.65);
}

.hero-placeholder .ph-title { color: rgba(255,255,255,.80); }

.hero-stats {
  display: flex;
  gap: 22px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat strong {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  color: #fff;
}

.stat span {
  font-size: 13px;
  color: rgba(255,255,255,.7);
}

/* Webdev banner */
.banner-webdev {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 50%, #bfdbfe 100%);
}

.banner-webdev-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.wd-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(37,99,235,.07);
}

.wd-s1 { width: 500px; height: 500px; top: -200px; right: -100px; }
.wd-s2 { width: 280px; height: 280px; bottom: -120px; left: 8%; }

.banner-webdev .banner-content-inner h2 { color: var(--navy); }
.banner-webdev .banner-content-inner p { color: #374151; }

.kicker-blue {
  background: rgba(29,78,216,.10);
  border: 1px solid rgba(29,78,216,.22);
  color: var(--blue-mid);
}

.webdev-types {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.webdev-types span {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(29,78,216,.08);
  border: 1.5px solid rgba(29,78,216,.20);
  color: var(--blue-mid);
  transition: all .2s;
  cursor: default;
}

.webdev-types span:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.webdev-placeholder {
  border-color: rgba(29,78,216,.30);
  background: rgba(29,78,216,.06);
  color: var(--blue-mid);
}

/* Billing banner */
.banner-billing {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 50%, #bbf7d0 100%);
}

.banner-billing-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.bl-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(21,128,61,.07);
}

.bl-s1 { width: 480px; height: 480px; top: -180px; right: -90px; }
.bl-s2 { width: 260px; height: 260px; bottom: -110px; left: 5%; }

.banner-billing .banner-content-inner h2 { color: var(--navy); }
.banner-billing .banner-content-inner p { color: #374151; }

.kicker-green {
  background: rgba(21,128,61,.10);
  border: 1px solid rgba(21,128,61,.24);
  color: var(--green);
}

.banner-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.banner-feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}

.banner-feature-list li svg {
  flex-shrink: 0;
  color: var(--green);
}

.billing-placeholder {
  border-color: rgba(21,128,61,.28);
  background: rgba(21,128,61,.05);
  color: var(--green);
}

/* ════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════ */
.btn-primary,
.btn-navy,
.btn-green,
.btn-white {
  display: inline-flex;
  align-items: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--r-sm);
  transition: all .2s;
}

.btn-primary {
  background: var(--teal);
  color: #fff;
  padding: 14px 28px;
  box-shadow: 0 4px 16px rgba(13,158,135,.35);
}

.btn-primary:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,.88);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 0;
  border-bottom: 2px solid rgba(255,255,255,.30);
  transition: all .2s;
}

.btn-ghost:hover {
  color: #fff;
  border-color: #fff;
}

.btn-navy {
  background: var(--navy);
  color: #fff;
  padding: 14px 28px;
  box-shadow: 0 4px 16px rgba(15,28,63,.20);
}

.btn-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
}

.btn-green {
  background: var(--green);
  color: #fff;
  padding: 14px 28px;
  box-shadow: 0 4px 16px rgba(21,128,61,.25);
}

.btn-green:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--navy);
  font-weight: 700;
  padding: 15px 34px;
  box-shadow: 0 4px 16px rgba(255,255,255,.20);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,255,255,.25);
}

.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  color: var(--navy);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 0;
  border-bottom: 2px solid rgba(15,28,63,.25);
  transition: all .2s;
}

.btn-ghost-dark:hover {
  color: var(--blue);
  border-color: var(--blue);
}

.btn-outline-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: transparent;
  color: var(--navy);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: var(--r-sm);
  border: 2px solid var(--navy);
  transition: all .2s;
}

.btn-outline-card:hover {
  background: var(--navy);
  color: #fff;
}

/* ════════════════════════════════════════════
   SERVICES / PRICING / COURSES / CTA / FOOTER
════════════════════════════════════════════ */
.services-section { background: var(--off-white); }

.services-grid,
.pricing-grid {
  display: grid;
  gap: 24px;
}

.services-grid { grid-template-columns: repeat(3, 1fr); }
.pricing-grid { grid-template-columns: repeat(3, 1fr); align-items: start; }

.service-card,
.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 30px 26px;
  position: relative;
  transition: all .25s;
}

.service-card:hover,
.pricing-card:hover {
  box-shadow: 0 8px 28px rgba(15,28,63,.10);
  transform: translateY(-4px);
}

.service-featured {
  border-color: var(--teal);
  box-shadow: 0 0 0 1px var(--teal), 0 8px 28px rgba(15,28,63,.10);
}

.featured-badge,
.pricing-bundle .bundle-pill {
  position: absolute;
  top: -12px;
  left: 24px;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 4px 12px;
  border-radius: 999px;
}

.featured-badge {
  background: var(--teal);
  color: #fff;
}

.pricing-bundle .bundle-pill {
  background: var(--gold);
  color: #7c2d12;
}

.service-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.web-icon { background: var(--blue-pale); color: var(--blue); }
.bill-icon { background: var(--teal-pale); color: var(--teal); }
.bundle-icon { background: #fef3c7; color: #b45309; }

.service-card h3,
.pricing-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 18px;
  line-height: 1.65;
}

.card-link {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--teal);
  transition: color .15s;
}

.card-link:hover { color: var(--teal-light); }

.pricing-icon {
  width: 46px;
  height: 46px;
  background: var(--off-white);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-bottom: 18px;
}

.price {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.price-suffix {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
}

.pricing-card > p {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 18px;
  line-height: 1.6;
}

.pricing-list {
  list-style: none;
  margin-bottom: 24px;
}

.pricing-list li {
  font-size: 14px;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

.pricing-list li:last-child { border-bottom: none; }

.courses-section { background: var(--off-white); }

.courses-inner {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.courses-badge {
  display: inline-block;
  background: #fef3c7;
  color: #92400e;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.courses-inner h2 {
  font-size: clamp(24px,3vw,32px);
  margin-bottom: 12px;
}

.courses-inner p {
  color: var(--muted);
  margin-bottom: 26px;
  font-size: 15px;
}

.courses-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.courses-tags span {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--navy);
}

.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 60%, #1a4a7a 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--teal);
  opacity: .07;
  top: -200px;
  right: -80px;
  pointer-events: none;
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-inner h2 {
  font-size: clamp(26px,4vw,42px);
  color: #fff;
  margin-bottom: 14px;
}

.cta-inner p {
  color: rgba(255,255,255,.72);
  font-size: 17px;
  margin-bottom: 34px;
}

.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.70);
  padding: 64px 0 0;
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px 48px;
  display: grid;
  grid-template-columns: 1.45fr repeat(4, minmax(140px, 1fr));
  gap: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  align-items: start;
}

.footer-brand {
  min-width: 0;
}

.footer-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}

.footer-logo span {
  color: var(--teal-light);
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,.50);
  max-width: 240px;
}

.footer-links {
  display: contents;
}

.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 16px;
}

.footer-col a,
.footer-col span {
  display: block;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,.62);
  margin-bottom: 8px;
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}

.footer-col a:hover {
  color: var(--teal-light);
  transform: translateX(3px);
}

.footer-bottom {
  max-width: 1140px;
  margin: 0 auto;
  padding: 20px 28px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.30);
}

@media (max-width: 992px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding: 48px 0 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 20px 36px;
  }

  .footer-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    padding: 18px 20px;
  }
}

/* ════════════════════════════════════════════
   SHARED PAGE HERO SYSTEM
   Used by: services, billing, portfolio
════════════════════════════════════════════ */
:root{
  --page-hero-copy-width: 520px;
  --page-hero-expand: 320px;
  --page-hero-banner-height: 420px;
  --page-hero-section-height: 640px;
}

.services-hero-banner,
.billing-hero-section,
.portfolio-hero-section{
  position: relative;
  overflow: hidden;
  /*height: var(--page-hero-section-height);*/
  padding: 60px 0 60px;
}

.services-hero-banner{
  background: linear-gradient(135deg, #0f1c3f 0%, #1a2f5e 55%, #0d9e87 100%);
}

.billing-hero-section{
  background: linear-gradient(135deg, #0f1c3f 0%, #1a2f5e 48%, #15803d 100%);
}

.portfolio-hero-section{
  background: linear-gradient(135deg, #0f1c3f 0%, #1a2f5e 52%, #1e3a8a 100%);
}

.services-hero-overlay,
.billing-hero-overlay,
.portfolio-hero-overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.08), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255,255,255,.06), transparent 24%);
  pointer-events: none;
}

.services-hero-banner .container,
.billing-hero-section .container,
.portfolio-hero-section .container{
  max-width: 1240px;
  height: 100%;
}

.services-hero-inner,
.billing-hero-inner,
.portfolio-hero-inner{
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 520px minmax(0, 1fr);
  align-items: center;
  column-gap: 56px;
  height: 100%;
}

.services-hero-content,
.billing-hero-content,
.portfolio-hero-content{
  max-width: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services-hero-media,
.billing-hero-media,
.portfolio-hero-media{
  width: calc(100% + var(--page-hero-expand));
  margin-right: calc(var(--page-hero-expand) * -1);
  min-width: 0;
  display: flex;
  align-items: center;
  height: 100%;
}

.service-image-placeholder.dark,
.billing-image-placeholder.dark,
.portfolio-image-placeholder.dark{
  width: 100%;
  height: var(--page-hero-banner-height);
  min-height: var(--page-hero-banner-height);
  flex: 0 0 auto;
}

/* Page label colors */
.services-hero-content .section-label { color: #c8fff7; }
.billing-label-light { color: #d6ffe7; }
.portfolio-label-light { color: #dbe7ff; }


/* ════════════════════════════════════════════
   SERVICES PAGE
════════════════════════════════════════════ */
.services-hero-content h1 {
  color: #fff;
  font-size: clamp(34px, 4vw, 54px);
  margin-bottom: 14px;
}

.services-hero-content p {
  color: rgba(255,255,255,.82);
  max-width: 680px;
  font-size: 18px;
  margin-bottom: 26px;
}


.service-showcase-grid,
.pricing-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-showcase-card,
.feature-showcase-card,
.pricing-showcase-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(15,28,63,.05);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.service-showcase-card:hover,
.feature-showcase-card:hover,
.pricing-showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15,28,63,.08);
  border-color: #cdd8e6;
}

.service-showcase-media,
.feature-showcase-media {
  padding: 18px;
  background: #f8fbff;
}

.service-showcase-body,
.feature-showcase-body,
.pricing-showcase-body {
  padding: 22px;
}

.service-showcase-body h3,
.feature-showcase-body h3,
.pricing-showcase-body h3 {
  font-size: 21px;
  margin-bottom: 10px;
}

.service-showcase-body p,
.feature-showcase-body p,
.pricing-showcase-body p {
  color: var(--muted);
  line-height: 1.75;
}

.service-image-placeholder {
  min-height: 220px;
  border-radius: 18px;
  border: 2px dashed rgba(29,78,216,.22);
  background: linear-gradient(135deg, #eef6ff 0%, #dbeafe 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  color: var(--blue-mid);
}

.service-image-placeholder.small { min-height: 170px; }

.service-image-placeholder.dark {
  border-color: rgba(255,255,255,.26);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.85);
}

.service-image-placeholder.bill {
  min-height: 100%;
  height: 100%;
  border-color: rgba(21,128,61,.24);
  background: linear-gradient(135deg, #ecfdf5 0%, #dcfce7 100%);
  color: var(--green);
}

.service-image-placeholder .ph-title {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-image-placeholder .ph-note {
  font-size: 13px;
  opacity: .75;
}

.services-features-section { background: #f8fafc; }

.alt-soft { background: #f0fdf4; }

.pricing-showcase-section { background: #fff; }

.price-line {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

/* ════════════════════════════════════════════
   CONTACT PAGE
════════════════════════════════════════════ */
.contact-hero-section{
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f1c3f 0%, #1a2f5e 52%, #0d9e87 100%);
  padding: 92px 0;
}

.contact-hero-overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.08), transparent 26%),
    radial-gradient(circle at bottom right, rgba(255,255,255,.06), transparent 24%);
  pointer-events: none;
}

.contact-hero-inner{
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 32px;
  align-items: center;
}

.contact-hero-content h1{
  color: #fff;
  font-size: clamp(34px, 4vw, 54px);
  margin-bottom: 14px;
}

.contact-hero-content p{
  color: rgba(255,255,255,.82);
  font-size: 18px;
  line-height: 1.8;
  max-width: 680px;
  margin-bottom: 26px;
}

.contact-label-light{
  color: #c8fff7;
}

.contact-hero-card{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 18px 46px rgba(0,0,0,.12);
  backdrop-filter: blur(8px);
}

.contact-hero-card-title{
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 18px;
}

.contact-hero-list{
  display: grid;
  gap: 16px;
}

.contact-hero-item{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding: 14px 16px;
}

.contact-hero-item-label{
  display: block;
  color: rgba(255,255,255,.62);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 6px;
}

.contact-hero-item a{
  color: #fff;
  font-weight: 600;
  word-break: break-word;
}

.contact-main-section{
  background: #f8fafc;
}

.contact-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-card{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 12px 34px rgba(15,28,63,.05);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.contact-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15,28,63,.08);
  border-color: #cdd8e6;
}

.contact-card-icon{
  font-size: 28px;
  margin-bottom: 12px;
}

.contact-card h3{
  font-size: 22px;
  margin-bottom: 10px;
}

.contact-card p{
  color: var(--muted);
  margin-bottom: 14px;
}

.contact-card-link{
  color: var(--teal);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
}

.contact-card-link:hover{
  color: var(--teal-light);
}

.contact-details-section{
  background: #fff;
}

.contact-details-layout{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.contact-details-card,
.contact-map-card{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 12px 34px rgba(15,28,63,.05);
}

.contact-details-card h2,
.contact-map-card h2{
  margin-bottom: 20px;
}

.contact-detail-row + .contact-detail-row{
  margin-top: 16px;
}

.contact-detail-label{
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: 4px;
}

.contact-detail-value{
  font-size: 17px;
  color: var(--navy);
}

.contact-detail-value a{
  color: var(--blue-mid);
}

.contact-address{
  line-height: 1.8;
}

.contact-map-embed{
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid #dbe4f0;
  min-height: 360px;
}

.contact-map-embed iframe{
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}

/* ════════════════════════════════════════════
   BILLING PAGE
════════════════════════════════════════════ */
.billing-hero-content h1{
  color: #fff;
  font-size: clamp(34px, 4vw, 54px);
  margin-bottom: 14px;
}

.billing-hero-content p{
  color: rgba(255,255,255,.82);
  max-width: 680px;
  font-size: 18px;
  margin-bottom: 24px;
}

.billing-hero-points{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.billing-hero-points span{
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.88);
  font-size: 14px;
  font-weight: 500;
}

.billing-image-placeholder{
  min-height: 220px;
  border-radius: 18px;
  border: 2px dashed rgba(21,128,61,.24);
  background: linear-gradient(135deg, #ecfdf5 0%, #dcfce7 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 22px;
  color: var(--green);
}

.billing-image-placeholder.dark{
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.85);
}

.billing-image-placeholder.small{
  min-height: 170px;
}

.billing-image-placeholder.large{
  min-height: 360px;
}

/*.billing-image-placeholder .ph-title{
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}*/

.billing-image-placeholder {
  width: 100%;
  height: 220px;
  border-radius: 18px;
  overflow: hidden;
  padding: 0;

  background: #f8fbff;
  border: 1px solid #dbe4f0;
}

.billing-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.billing-image-placeholder .ph-note{
  font-size: 13px;
  opacity: .75;
}

.billing-intro-section{
  background: #f8fafc;
}

.billing-intro-layout{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.billing-intro-card{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 12px 34px rgba(15,28,63,.05);
}

.billing-intro-card h3{
  font-size: 22px;
  margin-bottom: 10px;
}

.billing-intro-card p{
  color: var(--muted);
  line-height: 1.75;
}

.billing-features-section{
  background: #fff;
}

.billing-feature-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.billing-feature-card{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(15,28,63,.05);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.billing-feature-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15,28,63,.08);
  border-color: #cdd8e6;
}

.billing-feature-body{
  padding: 0 22px 22px;
}

.billing-feature-body h3{
  font-size: 21px;
  margin-bottom: 10px;
}

.billing-feature-body p{
  color: var(--muted);
  line-height: 1.75;
}

.billing-showcase-section{
  background: #f0fdf4;
}

.billing-showcase-layout{
  display: flex;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.billing-showcase-content h2{
  margin-bottom: 14px;
}

.billing-showcase-content p{
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.billing-check-list{
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 26px;
}

.billing-check-list li{
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--text);
}

.billing-check-list li::before{
  content: "✔";
  color: var(--green);
  font-weight: 700;
}

.billing-pricing-section{
  background: #fff;
}

.billing-price-card{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 14px 38px rgba(15,28,63,.06);
}

.billing-price-amount{
  font-family: 'Outfit', sans-serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.billing-price-main h3{
  font-size: 24px;
  margin-bottom: 12px;
}

.billing-price-main p{
  color: var(--muted);
  line-height: 1.8;
}

.billing-price-side{
  display: grid;
  gap: 18px;
}

.billing-price-side-card{
  background: #f8fafc;
  border: 1px solid #e5edf5;
  border-radius: 18px;
  padding: 20px;
}

.billing-price-side-card h4{
  font-size: 18px;
  margin-bottom: 12px;
}

.billing-price-side-card ul{
  padding-left: 18px;
  color: var(--text);
}

.billing-price-side-card li + li{
  margin-top: 8px;
}

.billing-price-side-card p{
  color: var(--muted);
  line-height: 1.75;
}

/* ════════════════════════════════════════════
   PORTFOLIO PAGE
════════════════════════════════════════════ */
.portfolio-hero-content h1{
  color: #fff;
  font-size: clamp(34px, 4vw, 54px);
  margin-bottom: 14px;
}

.portfolio-hero-content p{
  color: rgba(255,255,255,.82);
  font-size: 18px;
  line-height: 1.8;
  max-width: 680px;
  margin-bottom: 26px;
}


.portfolio-image-placeholder{
  min-height: 220px;
  border-radius: 18px;
  border: 2px dashed rgba(59,130,246,.22);
  background: linear-gradient(135deg, #eef4ff 0%, #dbeafe 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 22px;
  color: var(--blue-mid);
}

.portfolio-image-placeholder.dark{
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.85);
}

.portfolio-image-placeholder.small{
  min-height: 160px;
}

.portfolio-image-placeholder .ph-title{
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.portfolio-image-placeholder .ph-note{
  font-size: 13px;
  opacity: .75;
}

.portfolio-grid-section{
  background: #f8fafc;
}

.portfolio-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.portfolio-card,
.portfolio-benefit-card{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(15,28,63,.05);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.portfolio-card:hover,
.portfolio-benefit-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15,28,63,.08);
  border-color: #cdd8e6;
}

.portfolio-card-media{
  padding: 18px;
  background: #f8fbff;
}

.portfolio-card-body,
.portfolio-benefit-body{
  padding: 22px;
}

.portfolio-card-body h3,
.portfolio-benefit-body h3{
  font-size: 21px;
  margin-bottom: 10px;
}

.portfolio-card-body p,
.portfolio-benefit-body p{
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

.portfolio-link{
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: var(--teal);
}

.portfolio-link:hover{
  color: var(--teal-light);
}

.portfolio-benefits-section{
  background: #fff;
}

.portfolio-benefits-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.portfolio-benefit-card .portfolio-image-placeholder{
  margin: 18px;
}

.portfolio-process-section{
  background: #f8fafc;
}

.portfolio-process-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.portfolio-process-step{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 12px 34px rgba(15,28,63,.05);
}

.portfolio-step-no{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: var(--blue-pale);
  color: var(--blue-mid);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  margin-bottom: 16px;
}

.portfolio-process-step h3{
  font-size: 21px;
  margin-bottom: 10px;
}

.portfolio-process-step p{
  color: var(--muted);
  line-height: 1.75;
}

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 980px) {
  .services-hero-banner,
  .billing-hero-section,
  .portfolio-hero-section{
    height: auto;
    min-height: auto;
    padding: 72px 0;
  }

  .services-hero-banner .container,
  .billing-hero-section .container,
  .portfolio-hero-section .container{
    height: auto;
  }

  .services-hero-inner,
  .billing-hero-inner,
  .portfolio-hero-inner{
    grid-template-columns: 1fr;
    height: auto;
    row-gap: 28px;
  }

  .services-hero-content,
  .billing-hero-content,
  .portfolio-hero-content{
    max-width: 100%;
  }

  .services-hero-media,
  .billing-hero-media,
  .portfolio-hero-media{
    width: 100%;
    margin-right: 0;
    height: auto;
  }

  .service-image-placeholder.dark,
  .billing-image-placeholder.dark,
  .portfolio-image-placeholder.dark{
    height: 240px;
    min-height: 240px;
  }

  .banner,
  .smartbill-layout,
  .contact-hero-inner,
  .contact-details-layout,
  .billing-showcase-layout,
  .billing-price-card,
  .billing-intro-layout,
  .billing-feature-grid,
  .portfolio-grid,
  .portfolio-benefits-grid,
  .portfolio-process-grid {
    grid-template-columns: 1fr;
  }
  .banner-content-pane,
  .banner-reversed .banner-content-pane {
    padding: 44px 24px;
    order: 2;
  }

  .banner-reversed .banner-media-pane,
  .banner-media-pane {
    order: 1;
  }

  .banner-media-pane {
    min-height: 280px;
  }

  .banner-placeholder {
    position: relative;
    min-height: 260px;
  }

  .services-grid,
  .pricing-grid,
  .service-showcase-grid,
  .pricing-showcase-grid,
  .feature-showcase-grid,
  .contact-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner { gap: 36px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {

  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    background: var(--navy-mid);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    width: 100%;
    padding: 12px 28px;
  }

  .nav-links a.nav-cta {
    margin: 8px 28px;
    width: auto;
  }

  /* HERO FIX */
  .banner.banner-hero {
    flex-direction: column;
  }

  .banner.banner-hero .banner-content-pane {
    order: 1;
  }

  .banner.banner-hero .banner-media-pane {
    order: 2;
    margin-top: 20px;
  }

  /* CTA FIX */
  .banner-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
     margin-top: 18px;
     
  }

  .banner-actions a {
    width: 100%;
    text-align: center;
  }

  /* STATS FIX */
  .banner-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .banner-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .banner-highlights span {
    width: auto;
    flex: 0 0 auto;
  }
}

@media (max-width: 600px) {
  .section { padding: 60px 0; }

  .banner-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .banner-chips {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-section { padding: 64px 0; }
}

.hero-visual-card{
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 520px;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.03)),
    linear-gradient(135deg, #243b74 0%, #304d8f 55%, #2f4f97 100%);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow:
    0 20px 60px rgba(2, 8, 23, .30),
    inset 0 1px 0 rgba(255,255,255,.08);
}

.hero-visual-glow{
  position: absolute;
  border-radius: 999px;
  filter: blur(30px);
  opacity: .45;
  pointer-events: none;
}

.hero-visual-glow-1{
  width: 240px;
  height: 240px;
  background: rgba(18,191,164,.35);
  top: -60px;
  right: -40px;
}

.hero-visual-glow-2{
  width: 220px;
  height: 220px;
  background: rgba(99,102,241,.28);
  bottom: -50px;
  left: -30px;
}

.hero-dashboard-window{
  position: absolute;
  inset: 34px;
  border-radius: 22px;
  background: rgba(9, 18, 43, .45);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
  overflow: hidden;
}

.hero-window-top{
  height: 52px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
}

.hero-window-top span{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
}

.hero-window-body{
  display: grid;
  grid-template-columns: 150px 1fr;
  min-height: calc(100% - 52px);
}

.hero-window-sidebar{
  padding: 22px 16px;
  border-right: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}

.hero-side-line{
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  margin-bottom: 16px;
}

.hero-side-line.w-70{ width: 70%; }
.hero-side-line.w-55{ width: 55%; }
.hero-side-line.w-80{ width: 80%; }
.hero-side-line.w-50{ width: 50%; }

.hero-window-content{
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}

.hero-chart-card{
  padding: 22px;
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
}

.hero-chart-title{
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: rgba(255,255,255,.92);
  margin-bottom: 18px;
}

.hero-chart-bars{
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 140px;
}

.hero-chart-bars span{
  flex: 1;
  border-radius: 12px 12px 4px 4px;
  background: linear-gradient(180deg, rgba(18,191,164,.95), rgba(29,78,216,.65));
  box-shadow: 0 8px 24px rgba(18,191,164,.18);
}

.hero-chart-bars span:nth-child(1){ height: 50%; }
.hero-chart-bars span:nth-child(2){ height: 75%; }
.hero-chart-bars span:nth-child(3){ height: 62%; }
.hero-chart-bars span:nth-child(4){ height: 88%; }

.hero-mini-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.hero-mini-box{
  padding: 18px;
  border-radius: 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
}

.hero-mini-box strong{
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  color: #fff;
  margin-bottom: 6px;
}

.hero-mini-box small{
  color: rgba(255,255,255,.70);
  font-size: 13px;
  line-height: 1.5;
}

.hero-floating-card{
  position: absolute;
  min-width: 150px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 36px rgba(15,28,63,.20);
}

.hero-floating-card strong{
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  color: #fff;
}

.hero-float-label{
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,.68);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hero-floating-card-1{
  left: 18px;
  bottom: 24px;
}

.hero-floating-card-2{
  right: 18px;
  top: 18px;
}

@media (max-width: 980px){
  .hero-visual-card{
    min-height: 420px;
  }

  .hero-dashboard-window{
    inset: 20px;
  }

  .hero-window-body{
    grid-template-columns: 1fr;
  }

  .hero-window-sidebar{
    display: none;
  }

  .hero-mini-grid{
    grid-template-columns: 1fr;
  }

  .hero-floating-card{
    display: none;
  }
}
.home-media-frame{
  border-radius: 28px;
  min-height: 100%;
  height: 100%;
  box-shadow: 0 18px 40px rgba(15, 28, 63, 0.10);
}

.banner-media-pane{
  display: flex;
  align-items: stretch;
}

.banner-media-pane .home-media-frame{
  width: 100%;
}

.banner-hero .home-media-frame{
  background: linear-gradient(135deg, rgba(255,255,255,.05), rgba(255,255,255,.08));
  border-color: rgba(255,255,255,.16);
}

.banner-webdev .home-media-frame{
  background: linear-gradient(135deg, rgba(255,255,255,.45), rgba(255,255,255,.25));
  border-color: rgba(29,78,216,.22);
}

.banner-billing .home-media-frame{
  background: linear-gradient(135deg, rgba(255,255,255,.45), rgba(255,255,255,.22));
  border-color: rgba(21,128,61,.22);
}

.hero-media-frame {
  position: relative;
  width: 100%;
  height: var(--page-hero-banner-height);
  min-height: var(--page-hero-banner-height);
  border-radius: 28px;
  overflow: hidden;
  flex: 0 0 auto;

  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 22px 55px rgba(0,0,0,.22);
}

.hero-media-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
} 



@media (max-width: 980px) {
  .hero-media-frame {
    height: 240px;
    min-height: 240px;
  }
}
/* === Card Media Frame (Service Cards) === */
.card-media-frame {
  width: 100%;
  height: 220px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.card-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* === Feature SVG Frame === */
.feature-svg-frame {
  width: 100%;
  height: 220px;
  border-radius: 18px;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #f8fbff;
  border: 1px solid #dbe4f0;
}

.feature-svg-frame img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}
.feature-icon-media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px 22px 10px;
  background: transparent;
}

.feature-icon-media img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  display: block;
}
/* === Feature Card Image Frame === */
.feature-card-media-frame {
  width: 100%;
  aspect-ratio: 16 / 9;   /* 👈 KEY FIX */
  border-radius: 18px;
  overflow: hidden;

  background: #f8fbff;
  border: 1px solid #dbe4f0;
}

.feature-card-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.smartbill-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.smartbill-media {
  width: 100%;
}

.smartbill-media-frame {
  width: 100%;
  height: 520px;
  border-radius: 24px;
  overflow: hidden;
  background: #f4faf7;
  border: 1px solid #dbeee4;
}

.smartbill-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.smartbill-content {
  display: flex;
  flex-direction: column;
}

.smartbill-points {
  display: grid;
  gap: 16px;
  margin-bottom: 24px;
}

.smartbill-point {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
}

.smartbill-point h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.smartbill-point p {
  color: var(--muted);
}

@media (max-width: 980px) {
  .smartbill-layout {
    grid-template-columns: 1fr;
  }

  .smartbill-media-frame {
    height: 360px;
  }
}
.portfolio-card-image-frame {
  width: 100%;
  height: 220px;
  border-radius: 18px;
  overflow: hidden;
  background: #f8fbff;
  border: 1px solid #dbe4f0;
}

.portfolio-card-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.billing-hero-benefits {
  margin: 18px 0 24px;
  padding: 0;
  list-style: none;
}

.billing-hero-benefits li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  color: #cfe3ff;
  font-size: 14px;
}

.billing-hero-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #2fd3a3;
  font-weight: 700;
}
/*
.billing-hero-benefits {
  margin: 18px 0 24px;
  padding: 0;
  list-style: none;
}

.billing-hero-benefits li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  color: #cfe3ff;
  font-size: 14px;
}

.billing-hero-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #2fd3a3;
  font-weight: 600;
} */
/*
.billing-hero-media .hero-media-frame {
  width: 100%;
  max-width: none;
  height: 360px;
  min-height: 360px;
  border-radius: 28px;
  overflow: hidden;
  flex: 0 0 auto;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 22px 55px rgba(0,0,0,.22);
}

.billing-hero-media .hero-media-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.08) saturate(1.05);
} */

.billing-hero-media .hero-media-frame {
  width: 100%;
  max-width: none;
  height: 360px;
  min-height: 360px;
  border-radius: 28px;
  overflow: hidden;
  flex: 0 0 auto;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
   box-shadow: 
    0 30px 70px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255,255,255,0.08) inset;
}

.billing-hero-media .hero-media-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
   filter: contrast(1.08) saturate(1.05) brightness(1.03);
}

.feature-card-media-frame.large {
  width: 100%;
  height: 320px; /* adjust 300–360 if needed */
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);

  background: #f8fbff;
  border: 1px solid #dbe4f0;
}

.feature-card-media-frame.large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .billing-showcase-layout {
    flex-direction: column;
    gap: 24px;
  }

  .billing-showcase-media,
  .billing-showcase-content {
    width: 100%;
    max-width: 100%;
  }

  .billing-showcase-media {
    order: 1;
  }

  .billing-showcase-content {
    order: 2;
  }
}

/* Billing product hero image only */
.billing-hero-section .hero-media-frame {
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 0;

  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
}

.billing-hero-section .hero-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Billing page key feature images */
.billing-features-section .feature-card-media-frame {
  width: 100%;
  border-radius: 18px 18px 0 0;
  overflow: hidden;

  /* ❌ REMOVE ANY HEIGHT */
  /* height: 220px; */
}

.billing-features-section .feature-card-media-frame img {
  width: 100%;
  height: auto;       /* ✅ keeps full image */
  display: block;
}
/*.billing-features-section .billing-feature-body {
  padding: 22px;
}*/

.billing-feature-card .feature-card-media-frame {
  width: 100%;
  height: auto;
  border-radius: 22px 22px 0 0;
  overflow: hidden;
  background: #f8fbff;
}

.billing-feature-card .feature-card-media-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: unset;
}

/* FINAL FIX: Billing feature card images */
.billing-features-section .billing-feature-card .feature-card-media-frame {
  width: 100%;
  height: auto !important;
  min-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
  border-radius: 22px 22px 0 0;
  background: #f8fbff;
}

.billing-features-section .billing-feature-card .feature-card-media-frame img {
  position: static !important;
  width: 100% !important;
  height: auto !important;
  max-width: 100%;
  object-fit: initial !important;
  object-position: initial !important;
  display: block;
}

.billing-features-section .billing-feature-body {
  padding: 18px 22px 22px !important;
}
/* FINAL OVERRIDE: show full image in billing feature cards */
.billing-features-section .billing-feature-card .feature-card-media-frame {
  aspect-ratio: auto !important;
  height: auto !important;
  min-height: 0 !important;
  border-radius: 22px 22px 0 0;
  overflow: hidden;
}

.billing-features-section .billing-feature-card .feature-card-media-frame img {
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
  display: block;
}
.smartbill-screenshot-card {
  padding: 0;   /* 🔥 remove extra inner spacing */
}
h3 {
  margin-top: 16px;
  margin-bottom: 16px;
}
.smartbill-screenshot-card h3 {
  margin: 0 0 8px;
  padding: 0;
}

.smartbill-screenshot-card img {
  margin: 0;
  display: block;
}