:root {
  --bg-black: #F5F7FA;
  --bg-darker: #EEF2F9;
  --bg-surface: #FFFFFF;
  --bg-surface-elevated: #FFFFFF;
  --bg-card: #FFFFFF;
  --accent-emerald: #0B63F6;
  --accent-emerald-glow: #3B82F6;
  --accent-dark-green: #084ec9;
  --accent-success: #10B981;
  --text-pure: #0B1F3A;
  --text-main: #16233d;
  --text-muted: #5B6B85;
  --text-subtle: #8896AB;
  --border-subtle: rgba(11, 99, 246, 0.18);
  --border-light: rgba(11, 31, 58, 0.08);
  --glass-bg: rgba(255, 255, 255, 0.80);
  --glass-bg-scrolled: rgba(255, 255, 255, 0.94);
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-heading: 'Plus Jakarta Sans', var(--font-sans);
  --container: 1240px;
  --radius: 12px;
  --radius-sm: 6px;
  --transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-cube: 0 10px 30px -10px rgba(11, 31, 58, 0.12), 0 0 1px 1px var(--border-subtle);
  --shadow-glow: 0 0 35px -8px rgba(11, 99, 246, 0.22);
  --navy-dark: #0B1F3A;
}

@property --border-angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  background-color: var(--bg-black);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* AMBIENT BACKGROUND LAYER — glows, blobs, grid texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(680px 480px at 18% 8%, rgba(11, 99, 246, 0.06) 0%, transparent 70%),
    radial-gradient(560px 420px at 88% 22%, rgba(59, 130, 246, 0.05) 0%, transparent 70%),
    radial-gradient(520px 460px at 78% 78%, rgba(16, 185, 129, 0.04) 0%, transparent 70%);
  animation: ambient-drift 22s ease-in-out infinite alternate;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.6;
  background-image:
    linear-gradient(rgba(11, 31, 58, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 31, 58, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 40%, transparent 100%);
}

@keyframes ambient-drift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-2%, 2%) scale(1.05); }
}

/* SCROLL REVEAL UTILITY */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

/* HERO ENTRANCE SEQUENCE */
.hero-enter {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-enter.hero-enter-visible {
  opacity: 1;
  transform: translateY(0);
}
.hero-enter-card {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-enter-card.hero-enter-visible {
  opacity: 1;
  transform: translateX(0);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-pure);
  font-weight: 700;
  line-height: 1.25;
}

h1 { font-size: 2.75rem; letter-spacing: -0.03em; }
h2 { font-size: 2.15rem; letter-spacing: -0.02em; }
h3 { font-size: 1.35rem; }

p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* BUTTONS */
/* SAFETY NET: any flex row of buttons wraps by default so a stray
   inline flex container can never force horizontal page overflow again */
.hero-actions, .featured-bottom, .featured-bottom > div {
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s cubic-bezier(0.16, 1, 0.3, 1), background 0.28s ease, border-color 0.28s ease, filter 0.28s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-emerald) 0%, var(--accent-dark-green) 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(11, 99, 246, 0.30);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-emerald-glow) 0%, var(--accent-emerald) 100%);
  box-shadow: 0 8px 32px rgba(11, 99, 246, 0.5), 0 0 0 1px rgba(11, 99, 246, 0.3);
  transform: translateY(-3px);
}

.btn-secondary {
  background: rgba(11, 99, 246, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-subtle);
  color: var(--accent-emerald);
}

.btn-secondary:hover {
  background: rgba(11, 99, 246, 0.08);
  border-color: var(--accent-emerald);
  box-shadow: 0 8px 26px -8px rgba(11, 99, 246, 0.35);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  border-color: var(--border-subtle);
  color: var(--accent-emerald);
}

.btn-outline:hover {
  background: rgba(11, 99, 246, 0.1);
  border-color: var(--accent-emerald);
  box-shadow: 0 6px 20px -6px rgba(11, 99, 246, 0.35);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

/* BADGES & TAGS */
.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  color: var(--accent-emerald);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* TOP HEADER STRIP */
.top-strip {
  background: var(--bg-darker);
  border-bottom: 1px solid var(--border-light);
  padding: 9px 0;
  font-size: 0.84rem;
  color: var(--text-muted);
}

.top-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-strip-links {
  display: flex;
  gap: 20px;
}

.top-strip-links a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-strip-links a:hover {
  color: var(--accent-emerald);
}

/* MAIN NAVBAR */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.site-header.scrolled {
  background: var(--glass-bg-scrolled);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: 0 12px 40px -12px rgba(11, 31, 58, 0.14);
  border-bottom-color: var(--border-subtle);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand-logo {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-pure);
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-logo span {
  color: var(--accent-emerald);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 24px;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--text-main);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent-emerald);
  box-shadow: 0 0 8px rgba(11, 99, 246, 0.7);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-emerald);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 250px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 10px 0;
  display: none;
  box-shadow: 0 16px 40px -8px rgba(11, 31, 58, 0.18), 0 2px 8px rgba(11, 31, 58, 0.06);
  list-style: none;
}

.nav-dropdown a {
  display: block;
  padding: 8px 18px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.nav-dropdown a:hover {
  color: var(--text-pure);
  background: var(--bg-surface-elevated);
  padding-left: 22px;
}

.nav-item:hover .nav-dropdown {
  display: block;
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-pure);
  font-size: 1.5rem;
  cursor: pointer;
}

/* SECTION PADDING & HEADERS */
.section-pad {
  padding: 90px 0;
}

.bg-darker {
  background-color: var(--bg-darker);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 54px;
}

.section-head .badge-tag {
  margin-bottom: 14px;
}

.section-head h2 {
  margin-bottom: 14px;
}

/* HERO SECTION */
.hero {
  position: relative;
  padding: 100px 0 80px;
  background: radial-gradient(circle at 50% 10%, rgba(11, 99, 246, 0.08) 0%, var(--bg-black) 70%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-content h1 {
  margin: 18px 0;
}

.hero-content h1 span {
  color: var(--accent-emerald);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 580px;
}

.hero-check-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 36px;
  font-size: 0.9rem;
  color: var(--text-main);
}

.hero-check-list span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-check-list svg {
  color: var(--accent-success);
  width: 16px;
  height: 16px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* HERO VISUAL CARD */
.hero-glass-card {
  background: linear-gradient(160deg, rgba(11, 99, 246, 0.07) 0%, var(--bg-surface) 45%);
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-cube), var(--shadow-glow);
  position: relative;
  animation: card-float 6s ease-in-out infinite;
}

.hero-glass-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(from var(--border-angle), transparent 0%, transparent 78%, var(--accent-emerald) 88%, var(--accent-emerald-glow) 92%, transparent 96%, transparent 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: border-travel 7s linear infinite;
  pointer-events: none;
}

@keyframes border-travel {
  to { --border-angle: 360deg; }
}

@keyframes card-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-glass-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.hero-glass-card p {
  font-size: 0.9rem;
  margin-bottom: 20px;
}

/* VALUE STRIP */
.value-strip {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 36px 0;
}

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

.value-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.value-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-emerald);
  flex-shrink: 0;
}

.value-item h4 {
  font-size: 0.98rem;
  margin-bottom: 2px;
}

.value-item p {
  font-size: 0.82rem;
}

/* PRICING CUBES (GRID SYSTEM) */
.cubes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
}

.price-cube {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-cube);
  transition: var(--transition);
  position: relative;
  cursor: pointer;
}

.price-cube:hover {
  border-color: var(--accent-emerald);
  transform: translateY(-6px);
  box-shadow: 0 16px 36px -8px rgba(11, 31, 58, 0.16), var(--shadow-glow);
  filter: brightness(1.06);
}

.cube-cat {
  font-size: 0.74rem;
  color: var(--accent-emerald);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.cube-title {
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.cube-price-box {
  padding: 14px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 16px;
}

.cube-price {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--text-pure);
}

.cube-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

.cube-actions {
  display: flex;
  gap: 10px;
}

/* FEATURED SECTION 8 SHOWCASE BOX */
.featured-section-8 {
  background: linear-gradient(145deg, var(--bg-surface-elevated) 0%, var(--bg-card) 100%);
  border: 2px solid var(--accent-emerald);
  border-radius: var(--radius);
  padding: 48px;
  position: relative;
  box-shadow: var(--shadow-cube), 0 0 50px -10px rgba(11, 99, 246, 0.20);
  margin: 30px 0;
}

.featured-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.featured-price-huge {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--accent-emerald-glow);
}

.featured-price-huge span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}

.featured-checklist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 24px;
  padding: 28px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 30px;
}

.featured-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-main);
}

.featured-check-item svg {
  color: var(--accent-success);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.featured-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* HOW IT WORKS PROCESS */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 30px 22px;
  text-align: center;
  position: relative;
}

.process-step-num {
  width: 44px;
  height: 44px;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--accent-emerald);
  color: var(--accent-emerald-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin: 0 auto 16px;
}

.process-item h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.process-item p {
  font-size: 0.85rem;
}

/* FAQ ACCORDIONS */
.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.faq-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  overflow: hidden;
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-pure);
}

.faq-question svg {
  color: var(--accent-emerald);
  transition: var(--transition);
  width: 18px;
  height: 18px;
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-out;
  color: var(--text-muted);
  font-size: 0.94rem;
}

.faq-card.active .faq-answer {
  padding-bottom: 20px;
  max-height: 400px;
}

.faq-card.active .faq-question svg {
  transform: rotate(180deg);
}

/* CONTACT & FORM */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.contact-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-cube);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-main);
}

.form-input {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-pure);
  font-family: inherit;
  font-size: 0.92rem;
  transition: var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-emerald);
  box-shadow: 0 0 0 3px rgba(11, 99, 246, 0.15);
}

/* SERVICE TEMPLATE PAGE ARCHITECTURE */
.page-hero {
  padding: 60px 0 40px;
  border-bottom: 1px solid var(--border-light);
  background: radial-gradient(circle at 50% 0%, rgba(11, 99, 246, 0.07) 0%, var(--bg-black) 70%);
}

.breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.breadcrumb a {
  color: var(--accent-emerald);
}

.service-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  padding: 60px 0 100px;
}

.service-main-content h2 {
  font-size: 1.6rem;
  margin: 36px 0 14px;
  color: var(--text-pure);
}

.service-main-content h3 {
  font-size: 1.25rem;
  margin: 24px 0 10px;
  color: var(--accent-emerald-glow);
}

.service-main-content p {
  margin-bottom: 18px;
  font-size: 0.98rem;
}

.service-main-content ul {
  margin-left: 20px;
  margin-bottom: 24px;
  color: var(--text-muted);
}

.service-main-content li {
  margin-bottom: 10px;
}

.service-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-cube);
  margin-bottom: 24px;
}

/* MODAL SYSTEM (CLICKABLE SERVICE DETAILS & DIRECT UPI) */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-backdrop.open {
  display: flex;
}

.modal-window {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(11, 31, 58, 0.22), var(--shadow-glow);
  position: relative;
  padding: 36px;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.4rem;
  cursor: pointer;
}

.modal-close:hover {
  color: var(--navy-dark);
}

.upi-box {
  background: var(--bg-surface-elevated);
  border: 1px dashed var(--accent-emerald);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin: 20px 0;
  text-align: center;
}

.upi-code {
  font-family: monospace;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-emerald-glow);
  letter-spacing: 0.05em;
  margin: 8px 0;
}

/* FOOTER */
.site-footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 80px 0 30px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

.site-footer p, .site-footer div, .site-footer span, .site-footer strong {
  color: inherit;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 36px;
  margin-bottom: 60px;
}

.footer-col h4 {
  font-size: 1rem;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
  color: var(--accent-emerald-glow);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
  .hero-grid, .service-layout, .contact-grid {
    grid-template-columns: 1fr;
  }
  .value-grid, .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .featured-checklist {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .top-strip {
    display: none;
  }
  .mobile-nav-toggle {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: 76px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 76px);
    background: var(--bg-black);
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 24px;
    transition: 0.3s ease;
    overflow-y: auto;
  }
  .nav-menu.open {
    left: 0;
  }
  .nav-dropdown {
    position: static;
    width: 100%;
    background: transparent;
    border: none;
    padding-left: 14px;
    box-shadow: none;
  }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.75rem; }
  .value-grid, .process-grid, .featured-checklist, .footer-grid {
    grid-template-columns: 1fr;
  }
  .featured-section-8 {
    padding: 26px;
  }
  .compliance-featured-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ============ LOGO ============ */
.brand-logo-box {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  background: rgba(11, 99, 246, 0.08);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.brand-logo-box:hover {
  background: rgba(11, 99, 246, 0.14);
  border-color: var(--accent-emerald);
}

.brand-logo-img {
  display: block;
  height: 30px;
  width: auto;
}

@media (max-width: 480px) {
  .brand-logo-img { height: 24px; }
}

/* ============ MOBILE NAV CLOSE BUTTON ============ */
.nav-menu-close-row {
  display: none;
}

@media (max-width: 768px) {
  .nav-menu-close-row {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin-bottom: 10px;
  }
  .nav-menu-close {
    background: rgba(11, 99, 246, 0.08);
    border: 1px solid var(--border-subtle);
    color: var(--text-pure);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
  }
  .nav-menu-close:hover {
    background: rgba(11, 99, 246, 0.16);
    border-color: var(--accent-emerald);
    color: var(--accent-emerald);
  }
}

/* ============ BACK BUTTON (service pages) ============ */
.page-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-emerald);
  background: rgba(11, 99, 246, 0.06);
  border: 1px solid var(--border-subtle);
  border-radius: 50px;
  padding: 7px 16px 7px 12px;
  margin-bottom: 18px;
  cursor: pointer;
  transition: var(--transition);
}

.page-back-btn:hover {
  background: rgba(11, 99, 246, 0.12);
  border-color: var(--accent-emerald);
  transform: translateX(-2px);
}

/* ============ FEATURED COMPLIANCE PACKAGES GRID (responsive) ============ */
.compliance-featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 900px) {
  .compliance-featured-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ SMALL PHONE HARDENING (≤480px) ============ */
@media (max-width: 480px) {
  html, body { overflow-x: hidden; max-width: 100vw; }
  .container { padding: 0 16px; }
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.45rem; }
  .hero { padding: 60px 0 50px; }
  .section-pad { padding: 56px 0; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .featured-price-huge { font-size: 1.9rem; }
  .featured-top { flex-direction: column; }
  .modal-window { padding: 22px; }
}
