/* ============================================================
   CSS CUSTOM PROPERTIES
============================================================ */
:root {
  --navy:    #050d1a;
  --navy2:   #0a1628;
  --blue:    #1565c0;
  --accent:  #3490d5;
  --accent2: #5db8f0;
  --white:   #ffffff;
  --offwhite:#f5f6f8;
  --grey:    #8a9ab5;
  --grey2:   #e2e6ee;
  --dark:    #000000;
  --text:    #2c3a52;
  --radius:  10px;
  --shadow:  0 8px 40px rgba(10,22,40,0.13);
  --trans:   all 0.32s cubic-bezier(0.4,0,0.2,1);
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', 'Segoe UI', sans-serif;
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================================
   TYPOGRAPHY UTILITIES
============================================================ */
.section-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
  display: block;
}
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.25; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.25rem; }
p { color: var(--grey); font-size: 1rem; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 90px 0; }
.section-alt { background: var(--offwhite); }

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-body);
  transition: var(--trans);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--accent);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--accent2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(52,144,213,0.35);
}
.btn-outline {
  border: 2px solid rgba(255,255,255,0.55);
  color: var(--white);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* ============================================================
   NAVBAR
============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(52,144,213,0.15);
  transition: var(--trans);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  cursor: pointer;
  text-decoration: none;
}
.nav-logo-icon {
  height: 58px;
  width: auto;
  min-width: unset;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  box-shadow: none;
  transition: var(--trans);
  flex-shrink: 0;
}
.nav-logo:hover .nav-logo-icon {
  opacity: 0.88;
}
.nav-logo-icon img {
  height: 100%;
  width: auto;
  object-fit: contain;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.nav-logo-name {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  line-height: 1.1;
  white-space: nowrap;
}
.nav-logo-tag {
  font-size: 0.58rem;
  color: var(--accent2);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--trans);
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { margin-left: 1rem; }

/* Mobile menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--trans);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  background: var(--navy2);
  padding: 1.5rem;
  border-top: 1px solid rgba(52,144,213,0.12);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  color: rgba(255,255,255,0.8);
  padding: 0.8rem 0;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--trans);
}
.mobile-menu a:hover { color: var(--accent); padding-left: 0.5rem; }
.mobile-menu .btn { margin-top: 1.2rem; width: 100%; justify-content: center; }

/* ============================================================
   FOOTER
============================================================ */
footer {
  background: var(--dark);
  color: var(--white);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.92rem;
  margin: 1rem 0 1.5rem;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: var(--trans);
}
.footer-social a:hover {
  background: var(--accent);
  color: var(--navy);
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.footer-col ul li {
  margin-bottom: 0.6rem;
}
.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: var(--trans);
}
.footer-col ul li a:hover { color: var(--accent); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
}
.footer-contact-item i {
  color: var(--accent);
  margin-top: 3px;
  min-width: 16px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  color: rgba(255,255,255,0.35);
  font-size: 0.82rem;
}
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a {
  color: rgba(255,255,255,0.35);
  font-size: 0.82rem;
  transition: var(--trans);
}
.footer-bottom-links a:hover { color: var(--accent); }

/* ============================================================
   WHATSAPP FLOAT
============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: var(--trans);
  animation: pulse-wa 2.5s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37,211,102,0.6);
}
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 6px 40px rgba(37,211,102,0.7); }
}

/* ============================================================
   HOME PAGE
============================================================ */

/* Hero */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 50%, var(--blue) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(52,144,213,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(26,58,110,0.6) 0%, transparent 60%);
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(52,144,213,0.12);
  border: 1px solid rgba(52,144,213,0.3);
  border-radius: 50px;
  padding: 0.4rem 1.1rem;
  margin-bottom: 1.8rem;
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-badge i { font-size: 0.7rem; }
.hero h1 {
  color: var(--white);
  margin-bottom: 1.2rem;
  line-height: 1.18;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  color: rgba(255,255,255,0.65);
  font-size: 1.15rem;
  max-width: 560px;
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  flex-wrap: wrap;
}
.hero-stat { border-left: 2px solid rgba(52,144,213,0.35); padding-left: 1.25rem; }
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--white);
  font-weight: 700;
  display: block;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.35);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-dot {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(52,144,213,0.6), transparent);
  animation: scrolldot 1.6s ease-in-out infinite;
}
@keyframes scrolldot {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

/* Services Overview */
.services-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-mini-card {
  background: var(--white);
  border: 1px solid var(--grey2);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.service-mini-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: linear-gradient(to right, var(--accent), var(--accent2));
  transition: width 0.4s ease;
}
.service-mini-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(52,144,213,0.25);
}
.service-mini-card:hover::before { width: 100%; }
.svc-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
}
.service-mini-card h3 {
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}
.service-mini-card p { font-size: 0.88rem; }

/* Why Choose Us */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.why-visual {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.why-visual::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(52,144,213,0.08);
}
.why-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.why-stat-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 1.25rem;
  text-align: center;
}
.why-stat-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  color: var(--accent);
  font-weight: 700;
  display: block;
}
.why-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}
.why-list { margin-top: 2rem; }
.why-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.why-check {
  width: 36px; height: 36px;
  min-width: 36px;
  background: rgba(52,144,213,0.1);
  border: 1.5px solid var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.85rem;
  margin-top: 2px;
}
.why-item-text h4 { color: var(--navy); margin-bottom: 0.25rem; font-size: 1rem; }
.why-item-text p { font-size: 0.88rem; }

/* Stats Counter */
.stats-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 70px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-head);
  font-size: 3rem;
  color: var(--accent);
  font-weight: 700;
  display: block;
}
.stat-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--grey2);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: var(--trans);
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.t-quote {
  font-size: 2.5rem;
  color: var(--accent);
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 0.5rem;
  opacity: 0.6;
}
.t-text {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.t-stars { color: var(--accent); font-size: 0.85rem; margin-bottom: 1rem; }
.t-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid var(--grey2);
  padding-top: 1rem;
}
.t-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
}
.t-name { font-weight: 600; color: var(--navy); font-size: 0.9rem; }
.t-role { font-size: 0.78rem; color: var(--grey); }

/* Highlights */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.highlight-card {
  text-align: center;
  padding: 2rem 1.25rem;
  border: 1px solid var(--grey2);
  border-radius: var(--radius);
  transition: var(--trans);
}
.highlight-card:hover {
  background: var(--navy);
  border-color: var(--navy);
}
.highlight-card:hover h3, .highlight-card:hover p { color: rgba(255,255,255,0.85); }
.highlight-card:hover .h-icon { background: rgba(52,144,213,0.15); color: var(--accent); }
.h-icon {
  width: 60px; height: 60px;
  margin: 0 auto 1.25rem;
  background: var(--offwhite);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--navy);
  transition: var(--trans);
}
.highlight-card h3 { color: var(--navy); margin-bottom: 0.5rem; font-size: 1rem; transition: var(--trans); }
.highlight-card p { font-size: 0.84rem; transition: var(--trans); }

/* ============================================================
   SERVICES PAGE
============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 60%, var(--blue) 100%);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}
.page-hero h1 { color: var(--white); position: relative; }
.page-hero p { color: rgba(255,255,255,0.6); max-width: 560px; margin: 1rem auto 0; font-size: 1.05rem; }

.services-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--grey2);
  border-radius: 12px;
  padding: 2rem;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  background: linear-gradient(to bottom, var(--accent), var(--accent2));
  transition: height 0.4s ease;
}
.service-card:hover {
  box-shadow: 0 16px 50px rgba(10,22,40,0.12);
  transform: translateY(-6px);
  border-color: rgba(52,144,213,0.2);
}
.service-card:hover::after { height: 100%; }
.sc-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
  transition: var(--trans);
}
.service-card:hover .sc-icon {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: var(--navy);
}
.service-card h3 { color: var(--navy); margin-bottom: 0.6rem; }
.service-card p { font-size: 0.9rem; margin-bottom: 1rem; }
.service-tag {
  display: inline-block;
  background: var(--offwhite);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  margin-right: 0.4rem;
  margin-bottom: 0.4rem;
}

/* ============================================================
   PAYMENTS PAGE
============================================================ */
.payment-section { padding: 90px 0; }
.payment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 3rem;
}
.payment-card {
  background: var(--white);
  border: 1px solid var(--grey2);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(10,22,40,0.06);
}
.payment-card h3 {
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.payment-card p { margin-bottom: 1.5rem; }
.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}
.pm-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--offwhite);
  border: 1px solid var(--grey2);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}
.pm-badge i { color: var(--accent); }
.cf-btn {
  display: block;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: var(--trans);
  text-align: center;
}
.cf-btn:hover {
  background: linear-gradient(135deg, var(--blue), var(--accent));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10,22,40,0.2);
}
.qr-box {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  color: white;
}
.qr-placeholder {
  width: 160px; height: 160px;
  background: white;
  border-radius: 12px;
  margin: 1.25rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 1rem;
  text-align: center;
}
.qr-box h3 { color: var(--white); }
.qr-box p { color: rgba(255,255,255,0.65); font-size: 0.9rem; }
.upi-id {
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 0.75rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-top: 1rem;
}
.payment-instructions {
  background: var(--offwhite);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2rem;
}
.payment-instructions h3 { color: var(--navy); margin-bottom: 1rem; }
.pi-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--grey2);
}
.pi-step:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.pi-num {
  width: 28px; height: 28px;
  min-width: 28px;
  background: var(--navy);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
}
.pi-step p { font-size: 0.88rem; color: var(--text); }
.emi-card {
  background: linear-gradient(135deg, #1a3a6e, #0f2044);
  border-radius: 16px;
  padding: 2.5rem;
  color: white;
  margin-top: 2rem;
}
.emi-card h3 { color: var(--accent); margin-bottom: 0.75rem; }
.emi-card p { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin-bottom: 1.25rem; }
.emi-features { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.emi-feat {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.emi-feat i { color: var(--accent); }

/* ============================================================
   CONTACT PAGE
============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  margin-top: 3rem;
}
.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--grey2);
}
.contact-info-item:last-child { border-bottom: none; }
.ci-icon {
  width: 46px; height: 46px;
  min-width: 46px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
}
.ci-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--grey); font-weight: 600; margin-bottom: 0.3rem; }
.ci-val { color: var(--navy); font-weight: 600; font-size: 0.95rem; }
.wa-btn-big {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #25D366;
  color: white;
  padding: 1rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--trans);
  margin-top: 1.5rem;
}
.wa-btn-big:hover {
  background: #1ebe5b;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}
/* Contact Form */
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--grey2);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(10,22,40,0.06);
}
.contact-form-card h3 { color: var(--navy); margin-bottom: 0.5rem; }
.contact-form-card > p { margin-bottom: 1.75rem; font-size: 0.9rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--grey2);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--offwhite);
  transition: var(--trans);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: white;
  box-shadow: 0 0 0 3px rgba(52,144,213,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-error { color: #e74c3c; font-size: 0.78rem; margin-top: 0.3rem; display: none; }
.form-success {
  background: #edfbf2;
  border: 1px solid #25D366;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  color: #1a7a3a;
  font-size: 0.9rem;
  display: none;
  margin-top: 1rem;
}

/* Map placeholder */
.map-container {
  margin-top: 3rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 380px;
  background: var(--grey2);
  position: relative;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================================
   ABOUT PAGE
============================================================ */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-visual {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 20px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.about-visual::before {
  content: '';
  position: absolute;
  bottom: -50px; right: -50px;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: rgba(52,144,213,0.07);
}
.about-logo-big {
  width: 90px; height: 90px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--navy);
  margin-bottom: 2rem;
}
.about-visual h2 { color: var(--white); margin-bottom: 1rem; font-size: 1.6rem; }
.about-visual p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}
.about-tag {
  background: rgba(52,144,213,0.12);
  border: 1px solid rgba(52,144,213,0.25);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
}
.about-content h2 { color: var(--navy); margin-bottom: 1rem; }
.about-content p { margin-bottom: 1rem; }
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--grey2);
  border-radius: 12px;
  transition: var(--trans);
}
.value-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(52,144,213,0.12);
  transform: translateY(-4px);
}
.val-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
  margin: 0 auto 1.25rem;
  transition: var(--trans);
}
.value-card:hover .val-icon {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: var(--navy);
}
.value-card h3 { color: var(--navy); margin-bottom: 0.5rem; font-size: 1rem; }
.value-card p { font-size: 0.86rem; }

/* ============================================================
   SECTION HEADINGS
============================================================ */
.section-head { text-align: center; margin-bottom: 1rem; }
.section-head h2 { color: var(--navy); }
.section-head p { max-width: 540px; margin: 0.75rem auto 0; }
.divider {
  width: 50px; height: 3px;
  background: linear-gradient(to right, var(--accent), var(--accent2));
  margin: 1rem auto 0;
  border-radius: 2px;
}
.divider-left {
  margin-left: 0;
}

/* ============================================================
   LEGAL PAGES
============================================================ */
.legal-content {
  max-width: 860px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 1.5rem;
  color: var(--navy);
  margin: 2.5rem 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--grey2);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.8;
}
.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal-content ul li {
  color: var(--text);
  margin-bottom: 0.4rem;
  line-height: 1.7;
}
.legal-last-updated {
  display: inline-block;
  font-size: 0.82rem;
  color: var(--grey);
  margin-bottom: 2rem;
  background: var(--offwhite);
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  border: 1px solid var(--grey2);
}

/* ============================================================
   ANIMATIONS
============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .about-intro-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-stats { gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .payment-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .why-grid { gap: 2rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .section { padding: 60px 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .nav-logo-icon { height: 44px; }
  .nav-logo-name { font-size: 0.7rem; letter-spacing: 0.08em; }
  .nav-logo-tag { font-size: 0.5rem; letter-spacing: 0.18em; }
}

/* 2026 ACS REDESIGN */
:root {
  --navy:#05080d; --navy2:#0a1019; --blue:#168ce6; --accent:#25a8ff; --accent2:#8ed6ff;
  --offwhite:#f4f7fa; --grey:#7f8b9b; --grey2:#dce3ea; --text:#263140; --radius:18px;
  --font-head:'Space Grotesk',sans-serif; --font-body:'Manrope',sans-serif;
  --trans:all .28s cubic-bezier(.2,.8,.2,1);
}
body{background:#f4f7fa}.skip-link{position:fixed;top:-60px;left:20px;z-index:2000;background:white;padding:12px 18px}.skip-link:focus{top:20px}
#navbar{background:rgba(4,7,11,.72);border-color:rgba(255,255,255,.08)}#navbar.scrolled{background:rgba(4,7,11,.94)}
.nav-inner{max-width:1320px;padding:.75rem 1.5rem}.nav-logo img{width:108px;height:52px;object-fit:cover;object-position:center;border-radius:8px}.nav-links{gap:2.3rem}.nav-links a{font-size:.78rem;text-transform:uppercase;letter-spacing:.12em}
.btn{border-radius:999px;padding:.9rem 1.55rem;font-size:.86rem}.btn-primary{color:white;background:linear-gradient(135deg,#168ce6,#27b7ff);box-shadow:0 10px 34px rgba(22,140,230,.25)}.btn-ghost{color:white;border:1px solid rgba(255,255,255,.17);background:rgba(255,255,255,.04)}.btn-ghost:hover{border-color:var(--accent);transform:translateY(-2px)}
.hero-new{min-height:100svh;background:#030507}.hero-new:before{background:radial-gradient(circle at 75% 45%,rgba(20,139,230,.18),transparent 32%),radial-gradient(circle at 20% 80%,rgba(19,96,165,.12),transparent 30%)}.hero-grid-lines{opacity:.38;mask-image:linear-gradient(to bottom,black,transparent 86%);background-size:72px 72px}
.hero-layout{position:relative;z-index:2;width:100%;display:grid;grid-template-columns:1.05fr .95fr;align-items:center;gap:5vw;padding-top:6rem}.hero-content{max-width:720px}.eyebrow{display:flex;align-items:center;gap:.7rem;color:#a9b5c4;font-size:.72rem;text-transform:uppercase;letter-spacing:.16em;margin-bottom:1.5rem}.eyebrow span{width:32px;height:1px;background:var(--accent)}
.hero h1{font-size:clamp(3.2rem,6.4vw,6.8rem);letter-spacing:-.07em;line-height:.92;margin-bottom:1.6rem}.hero h1 em,.split-heading h2 em,.cta-new h2 em{font-style:normal;color:var(--accent2)}.hero-sub{font-size:1.05rem;line-height:1.75;max-width:590px}.trust-row{display:flex;align-items:center;gap:1rem;color:#788493;font-size:.72rem;text-transform:uppercase;letter-spacing:.1em;margin-top:3rem}.trust-row strong{color:white}.trust-row i{width:3px;height:3px;background:var(--accent);border-radius:50%}
.hero-stage{min-height:590px;display:grid;place-items:center;position:relative}.hero-stage>img{width:min(620px,100%);position:relative;z-index:2;filter:drop-shadow(0 30px 80px rgba(0,135,255,.24));animation:logo-float 6s ease-in-out infinite}.stage-rings,.stage-rings span{position:absolute;inset:50%;border:1px solid rgba(37,168,255,.16);border-radius:50%;transform:translate(-50%,-50%)}.stage-rings span:nth-child(1){width:460px;height:460px}.stage-rings span:nth-child(2){width:610px;height:610px}.stage-rings span:nth-child(3){width:760px;height:760px}
.hero-orb{position:absolute;border-radius:50%;filter:blur(1px);background:var(--accent);opacity:.16}.orb-one{width:420px;height:420px;right:-250px;top:20%;filter:blur(120px)}.orb-two{width:200px;height:200px;left:8%;bottom:-100px;filter:blur(80px)}.float-chip{position:absolute;z-index:3;display:flex;align-items:center;gap:.8rem;padding:.8rem 1rem;background:rgba(12,18,27,.75);border:1px solid rgba(255,255,255,.11);backdrop-filter:blur(18px);border-radius:14px;color:var(--accent);box-shadow:0 18px 50px rgba(0,0,0,.25)}.float-chip span{font-size:.65rem;color:#8794a4;text-transform:uppercase;letter-spacing:.1em}.float-chip strong{display:block;color:white;font-size:.77rem;margin-top:2px}.chip-a{top:18%;left:0}.chip-b{right:-2%;top:41%}.chip-c{bottom:17%;left:8%}.scroll-cue{position:absolute;z-index:3;bottom:25px;left:50%;transform:translateX(-50%);font-size:.65rem;color:#718092;text-transform:uppercase;letter-spacing:.14em}.scroll-cue span{display:block;width:1px;height:32px;margin:8px auto 0;background:linear-gradient(var(--accent),transparent)}
@keyframes logo-float{50%{transform:translateY(-12px)}}.ticker{overflow:hidden;background:var(--accent);color:#04101a;padding:.85rem 0}.ticker-track{width:max-content;display:flex;gap:2rem;align-items:center;font-weight:800;font-size:.75rem;text-transform:uppercase;letter-spacing:.14em;animation:ticker 25s linear infinite}.ticker b{font-size:1.1rem}@keyframes ticker{to{transform:translateX(-50%)}}
.dark-section{background:#070b11;color:white;padding:120px 0}.split-heading{display:grid;grid-template-columns:1fr 1fr;align-items:end;gap:3rem;margin-bottom:4rem}.split-heading h2{font-size:clamp(2.6rem,5vw,5rem);letter-spacing:-.06em}.split-heading p{max-width:460px;justify-self:end;color:#8290a0}.capability-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.1)}.cap-card{position:relative;padding:2.5rem;background:#0a0f16;min-height:360px;transition:var(--trans)}.cap-card>span{color:#657282;font-size:.7rem;letter-spacing:.15em}.cap-card>i{display:block;font-size:1.8rem;color:var(--accent);margin:5rem 0 1.5rem}.cap-card h3{font-size:1.5rem;color:white}.cap-card p{font-size:.88rem;margin-top:.8rem}.cap-card b{position:absolute;bottom:2.5rem;color:#9aabba;font-size:.75rem;text-transform:uppercase;letter-spacing:.12em}.cap-card:hover{background:#0c1722;transform:translateY(-8px)}
.proof-section{background:#eef3f7}.proof-panel{border-radius:28px;background:#fff;padding:4rem;display:grid;grid-template-columns:1fr 1.2fr;gap:4rem;box-shadow:0 25px 80px rgba(11,28,44,.08)}.proof-panel h2{font-size:clamp(2rem,4vw,3.6rem);letter-spacing:-.055em;color:#08111b}.text-link{display:inline-flex;gap:.6rem;align-items:center;color:var(--blue);font-size:.8rem;text-transform:uppercase;letter-spacing:.12em;margin-top:2rem}.metric-grid{display:grid;grid-template-columns:1fr 1fr;gap:1px;background:var(--grey2)}.metric-grid div{background:white;padding:1.5rem}.metric-grid strong{display:block;font-family:var(--font-head);font-size:2.6rem;color:#08111b}.metric-grid span{color:var(--grey);font-size:.75rem;text-transform:uppercase;letter-spacing:.1em}
.process-section{background:white}.process-line{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;margin-top:4rem}.process-card{border-top:2px solid var(--grey2);padding:2rem 1rem 1rem 0}.process-card span{color:var(--accent);font-weight:700}.process-card h3{font-size:1.4rem;color:#07111d;margin:2.5rem 0 .6rem}.process-card p{font-size:.9rem}.cta-new{position:relative;overflow:hidden;text-align:center;background:#05080d;padding:120px 0;color:white}.cta-new h2{font-size:clamp(3rem,7vw,6.5rem);letter-spacing:-.07em;line-height:.95;margin:1rem 0 1.5rem}.cta-new p{margin:0 auto 2rem}.cta-glow{position:absolute;width:600px;height:300px;background:var(--blue);opacity:.16;filter:blur(140px);left:50%;top:50%;transform:translate(-50%,-50%)}
.footer-new{display:grid;grid-template-columns:2fr 1fr 1.3fr;gap:4rem}.footer-new>div{display:flex;flex-direction:column;align-items:flex-start;gap:.6rem}.footer-new .nav-logo img{width:150px;height:78px}.footer-new h4{color:var(--accent);font-size:.7rem;text-transform:uppercase;letter-spacing:.15em}.footer-new a,.footer-new span{color:#8693a1;font-size:.86rem}.reveal{opacity:0;transform:translateY(24px);transition:opacity .7s ease,transform .7s ease}.reveal.visible{opacity:1;transform:none}
/* Global polish for retained inner pages */
.page-hero{background:#05080d;padding:170px 0 100px}.page-hero h1{font-size:clamp(3rem,7vw,6rem);letter-spacing:-.07em}.section-head h2,.about-content h2{letter-spacing:-.04em}.service-card,.value-card,.contact-form-card,.payment-card{border-radius:20px;box-shadow:0 12px 45px rgba(12,28,45,.06)}.service-card:hover,.value-card:hover{transform:translateY(-8px)}footer{background:#030507}
@media(max-width:900px){.hero-layout,.split-heading,.proof-panel{grid-template-columns:1fr}.hero-stage{min-height:400px}.hero-stage>img{width:80%}.float-chip{display:none}.capability-grid,.process-line{grid-template-columns:1fr}.cap-card{min-height:280px}.cap-card>i{margin:3rem 0 1rem}.proof-panel{padding:2rem}.hero-new{padding:130px 0 60px}.trust-row{flex-wrap:wrap}.footer-new{grid-template-columns:1fr 1fr}.scroll-cue{display:none}}
@media(max-width:560px){.hero h1{font-size:3.4rem}.hero-stage{min-height:260px}.stage-rings{display:none}.hero-actions{align-items:stretch}.metric-grid,.footer-new{grid-template-columns:1fr}.split-heading{margin-bottom:2rem}.dark-section{padding:80px 0}.proof-panel{border-radius:18px}.ticker-track{animation-duration:18s}}
@media(prefers-reduced-motion:reduce){*,*:before,*:after{animation-duration:.001ms!important;animation-iteration-count:1!important;scroll-behavior:auto!important}.reveal,.fade-in{opacity:1;transform:none}}

/* Reference-match ACS homepage */
.reference-home {
  margin: 0;
  background: #030711;
  color: #111827;
  font-family: Inter, Arial, sans-serif;
}
.reference-home .skip-link,
.reference-home .whatsapp-float {
  display: none;
}
.ref-shell {
  width: min(1476px, calc(100vw - 8px));
  margin: 20px auto 0;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 20px 70px rgba(0,0,0,.32);
}
.ref-nav {
  position: absolute !important;
  top: 20px !important;
  left: 50% !important;
  right: auto !important;
  width: min(1476px, calc(100vw - 8px));
  transform: translateX(-50%);
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  z-index: 20;
}
.ref-nav-inner {
  height: 95px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
}
.ref-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #fff;
  font-weight: 800;
  letter-spacing: .24em;
  font-size: 23px;
}
.ref-brand img {
  width: 52px;
  height: 38px;
  object-fit: cover;
  object-position: 49% 35%;
  border-radius: 3px;
}
.ref-links {
  display: flex;
  align-items: center;
  gap: 38px;
  margin-left: auto;
  margin-right: 32px;
}
.ref-links a {
  color: #fff;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .03em;
  opacity: .92;
  padding: 17px 0;
  position: relative;
}
.ref-links a.active,
.ref-links a:hover {
  color: #4d72ff;
}
.ref-links a.active:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 7px;
  height: 2px;
  background: #4b68ff;
}
.ref-contact {
  min-width: 181px;
  height: 53px;
  border: 1px solid #4267ff;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: #fff;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  transition: .22s ease;
}
.ref-contact span,
.ref-primary span {
  font-size: 18px;
  line-height: 1;
}
.ref-contact:hover {
  background: #3f63ff;
  transform: translateY(-2px);
}
.ref-hamburger {
  display: none;
}
.ref-mobile {
  background: #071226 !important;
}
.ref-hero {
  min-height: 640px;
  position: relative;
  overflow: hidden;
  padding: 190px 85px 80px;
  background:
    radial-gradient(circle at 76% 34%, rgba(42,100,255,.2), transparent 20%),
    radial-gradient(circle at 50% 78%, rgba(31,92,255,.24), transparent 31%),
    linear-gradient(111deg, #030814 0%, #061125 51%, #020710 100%);
}
.ref-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 26%, #000 100%);
}
.ref-hero-content {
  position: relative;
  z-index: 3;
  max-width: 475px;
}
.ref-kicker,
.ref-small {
  color: #426cff;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .06em;
  margin: 0 0 26px;
}
.ref-hero h1 {
  color: #fff;
  font-family: Inter, Arial, sans-serif;
  font-size: 56px;
  line-height: 1.15;
  letter-spacing: -.045em;
  margin: 0 0 22px;
  font-weight: 800;
}
.ref-hero h1 em {
  color: #456dff;
  font-style: normal;
}
.ref-copy {
  color: rgba(255,255,255,.86);
  font-size: 18px;
  line-height: 1.75;
  margin: 0 0 36px;
}
.ref-actions {
  display: flex;
  gap: 26px;
}
.ref-primary,
.ref-secondary {
  height: 54px;
  padding: 0 25px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 800;
}
.ref-primary {
  background: #4366ff;
  color: #fff;
  box-shadow: 0 20px 35px rgba(67,102,255,.2);
}
.ref-secondary {
  color: #fff;
  border: 1px solid rgba(255,255,255,.45);
  background: rgba(255,255,255,.02);
}
.ref-primary:hover,
.ref-secondary:hover {
  transform: translateY(-2px);
}
.ref-hero-mark {
  position: absolute;
  z-index: 3;
  right: 145px;
  top: 165px;
  width: 390px;
  height: 245px;
  display: grid;
  place-items: center;
  animation: ref-float 4.8s ease-in-out infinite;
}
.ref-hero-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: drop-shadow(0 24px 32px rgba(0,0,0,.48));
}
.ref-network {
  position: absolute;
  inset: auto 0 0;
  height: 270px;
  pointer-events: none;
  z-index: 1;
}
.ref-network:before {
  content: "";
  position: absolute;
  left: 38%;
  right: -4%;
  bottom: 0;
  height: 210px;
  background:
    radial-gradient(circle, rgba(65,112,255,.85) 1px, transparent 2px) 0 0 / 24px 17px,
    linear-gradient(120deg, transparent 0 46%, rgba(71,111,255,.36) 46.2%, transparent 46.8%),
    linear-gradient(28deg, transparent 0 52%, rgba(71,111,255,.27) 52.2%, transparent 52.8%);
  opacity: .95;
  transform: skewY(-7deg);
  mask-image: radial-gradient(ellipse at 60% 65%, #000 12%, transparent 69%);
}
.ref-network:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  width: 470px;
  height: 265px;
  opacity: .62;
  background:
    linear-gradient(32deg, transparent 48%, rgba(93,135,255,.85) 49%, transparent 50%),
    linear-gradient(148deg, transparent 48%, rgba(93,135,255,.85) 49%, transparent 50%),
    radial-gradient(circle at 15% 40%, #4b74ff 0 3px, transparent 4px),
    radial-gradient(circle at 42% 22%, #4b74ff 0 3px, transparent 4px),
    radial-gradient(circle at 68% 48%, #4b74ff 0 3px, transparent 4px),
    radial-gradient(circle at 82% 18%, #4b74ff 0 3px, transparent 4px);
}
.wave {
  position: absolute;
  left: 40%;
  right: -3%;
  bottom: 45px;
  height: 105px;
  border-top: 4px solid rgba(72,114,255,.9);
  border-radius: 58% 42% 0 0 / 100% 100% 0 0;
  transform: rotate(-3deg);
  filter: drop-shadow(0 0 16px rgba(77,115,255,.8));
  animation: wave-move 5.5s ease-in-out infinite;
}
.wave-two {
  bottom: 26px;
  opacity: .55;
  transform: rotate(-4deg) scaleY(.7);
  animation-delay: -1.2s;
}
.node {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4a72ff;
  box-shadow: 0 0 16px #4a72ff;
  animation: node-pulse 2.8s ease-in-out infinite;
}
.n1{right:112px;bottom:156px}.n2{right:72px;bottom:190px;animation-delay:.2s}.n3{right:32px;bottom:129px;animation-delay:.4s}.n4{right:160px;bottom:98px;animation-delay:.6s}.n5{right:232px;bottom:150px;animation-delay:.8s}.n6{right:16px;bottom:214px;animation-delay:1s}
.ref-services {
  padding: 47px 85px 32px;
  background: #fff;
}
.ref-section-top {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 55px;
  align-items: start;
  margin-bottom: 30px;
}
.ref-section-top h2 {
  color: #07111f;
  font-family: Inter, Arial, sans-serif;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -.035em;
  margin: 0;
  font-weight: 800;
}
.ref-section-top p:last-child {
  color: #111827;
  font-size: 13px;
  line-height: 1.65;
  margin: 22px 0 0;
  max-width: 470px;
}
.ref-underline {
  display: block;
  width: 72px;
  height: 2px;
  background: #4167ff;
  margin-top: 20px;
}
.ref-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.ref-card {
  min-height: 217px;
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 16px;
  padding: 35px 25px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e9edf5;
  box-shadow: 0 16px 38px rgba(9,23,50,.08);
  transition: .25s ease;
}
.ref-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 46px rgba(9,23,50,.13);
}
.ref-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #eef3ff;
  color: #4366ff;
  font-size: 24px;
}
.ref-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ref-card h3 {
  color: #0b1422;
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  margin: 0 0 15px;
  font-weight: 800;
}
.ref-card p {
  color: #192234;
  font-size: 12.4px;
  line-height: 1.62;
  margin: 0 0 22px;
}
.ref-card a {
  color: #4167ff;
  font-size: 12px;
  font-weight: 800;
}
.ref-card a span {
  margin-left: 10px;
}
.ref-stats {
  min-height: 130px;
  padding: 0 85px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  background: linear-gradient(95deg, #041024, #07172e);
}
.ref-stat {
  min-height: 73px;
  display: grid;
  grid-template-columns: 54px 1fr;
  grid-template-rows: auto auto;
  align-content: center;
  border-right: 1px solid rgba(255,255,255,.25);
}
.ref-stat:last-child {
  border-right: 0;
}
.ref-stat svg {
  grid-row: 1 / 3;
  align-self: center;
  color: #4167ff;
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ref-stat strong {
  color: #fff;
  font-size: 29px;
  line-height: 1;
  font-weight: 800;
}
.ref-stat span {
  color: rgba(255,255,255,.8);
  font-size: 12px;
  margin-top: 7px;
}
@keyframes ref-float {
  50% { transform: translateY(-10px); }
}
@keyframes wave-move {
  50% { transform: rotate(-2deg) translateY(-8px); filter: drop-shadow(0 0 24px rgba(77,115,255,1)); }
}
@keyframes node-pulse {
  50% { transform: scale(1.55); opacity: .55; }
}
@media (max-width: 1040px) {
  .ref-shell,.ref-nav{width:100%;margin-top:0;top:0!important}
  .ref-links,.ref-contact{display:none}
  .ref-hamburger{display:flex}
  .ref-nav-inner{padding:0 24px}
  .ref-hero{padding:145px 30px 60px}
  .ref-hero-mark{position:relative;right:auto;top:auto;width:min(410px,90vw);height:245px;margin:48px auto 0}
  .ref-section-top,.ref-card-grid,.ref-stats{grid-template-columns:1fr}
  .ref-services,.ref-stats{padding-left:30px;padding-right:30px}
  .ref-stat{border-right:0;border-bottom:1px solid rgba(255,255,255,.18);padding:22px 0}
}
@media (max-width: 560px) {
  .ref-brand span{font-size:18px}.ref-brand img{width:44px;height:32px}
  .ref-hero h1{font-size:42px}.ref-copy{font-size:15px}.ref-actions{flex-direction:column;gap:14px;align-items:flex-start}
  .ref-card{grid-template-columns:1fr}.ref-section-top h2{font-size:30px}
}

.ref-page-hero {
  min-height: 520px;
  position: relative;
  overflow: hidden;
  padding: 178px 85px 70px;
  background:
    radial-gradient(circle at 75% 38%, rgba(42,100,255,.18), transparent 24%),
    radial-gradient(circle at 35% 75%, rgba(31,92,255,.18), transparent 28%),
    linear-gradient(111deg, #030814 0%, #061125 55%, #020710 100%);
}
.ref-page-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 42px 42px;
}
.ref-page-copy {
  position: relative;
  z-index: 3;
  max-width: 570px;
}
.ref-page-copy h1 {
  color: #fff;
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(46px, 5vw, 72px);
  line-height: 1.08;
  letter-spacing: -.055em;
  margin: 0 0 24px;
  font-weight: 800;
}
.ref-page-copy h1 em {
  color: #456dff;
  font-style: normal;
}
.ref-page-copy p:last-child {
  color: rgba(255,255,255,.84);
  font-size: 18px;
  line-height: 1.7;
}
.ref-page-mark {
  position: absolute;
  right: 120px;
  top: 168px;
  width: 365px;
  height: 230px;
  z-index: 3;
  animation: ref-float 4.8s ease-in-out infinite;
}
.ref-page-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: drop-shadow(0 24px 32px rgba(0,0,0,.48));
}
.ref-inner-section {
  padding-bottom: 64px;
}
.ref-many-grid {
  grid-template-columns: repeat(3, 1fr);
}
.ref-about-grid,
.ref-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  margin-bottom: 34px;
}
.ref-detail-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 34px;
}
.ref-story,
.ref-founder,
.ref-info-panel,
.ref-form {
  border: 1px solid #e9edf5;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(9,23,50,.08);
  padding: 36px;
}
.ref-story h3,
.ref-founder strong,
.ref-info-panel h3 {
  display: block;
  color: #07111f;
  font-family: Inter, Arial, sans-serif;
  font-size: 28px;
  line-height: 1.18;
  letter-spacing: -.04em;
  margin: 0 0 18px;
  font-weight: 800;
}
.ref-story p,
.ref-founder p,
.ref-info-panel p {
  color: #192234;
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 16px;
}
.ref-founder {
  background: linear-gradient(135deg, #051024, #071832);
  color: #fff;
}
.ref-founder span,
.ref-info-panel strong {
  display: block;
  color: #4167ff;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 8px;
}
.ref-founder strong {
  color: #fff;
}
.ref-founder p,
.ref-founder a {
  color: rgba(255,255,255,.78);
}
.ref-info-panel a,
.ref-info-panel span {
  display: block;
  color: #192234;
  margin: 3px 0;
}
.ref-info-panel .ref-primary {
  color: #fff;
  width: max-content;
  margin-top: 18px;
}
.ref-info-panel .ref-primary span {
  display: inline;
  color: inherit;
  margin: 0;
}
.ref-form {
  display: grid;
  gap: 14px;
}
.ref-form label {
  display: grid;
  gap: 8px;
  color: #07111f;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.ref-form input,
.ref-form select,
.ref-form textarea {
  width: 100%;
  border: 1px solid #dfe6f1;
  border-radius: 8px;
  background: #f7f9fd;
  padding: 14px 16px;
  color: #101827;
  font: 500 15px Inter, Arial, sans-serif;
  outline: none;
}
.ref-form textarea {
  min-height: 128px;
  resize: vertical;
}
.ref-form input:focus,
.ref-form select:focus,
.ref-form textarea:focus {
  border-color: #4167ff;
  box-shadow: 0 0 0 4px rgba(65,103,255,.1);
  background: #fff;
}
.ref-submit {
  border: 0;
  width: max-content;
  cursor: pointer;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.chips button {
  border: 1px solid #dfe6f1;
  background: #fff;
  color: #4167ff;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 800;
  cursor: pointer;
}
.msg {
  display: none;
  border-radius: 8px;
  padding: 13px 15px;
  font-size: 14px;
  line-height: 1.5;
}
.msg.err { background:#fff0f0; border:1px solid #fca5a5; color:#b91c1c; }
.msg.info { background:#eef3ff; border:1px solid #93b0ff; color:#1e3a8a; }
.ref-legal {
  padding: 52px 85px 78px;
}
.ref-legal-card {
  max-width: 940px;
  border: 1px solid #e9edf5;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(9,23,50,.08);
  padding: 42px;
}
.ref-legal-card h2 {
  color: #07111f;
  font-size: 24px;
  margin: 28px 0 10px;
}
.ref-legal-card h2:first-child {
  margin-top: 0;
}
.ref-legal-card p,
.ref-legal-card li {
  color: #192234;
  line-height: 1.8;
  font-size: 15px;
}
.ref-legal-card ul {
  padding-left: 20px;
}
.ref-status-card {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid #e9edf5;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(9,23,50,.08);
  padding: 46px;
}
.ref-status-card h2 {
  color: #07111f;
  font-size: 32px;
  margin: 12px 0 10px;
}
.ref-status-card p {
  color: #192234;
  font-size: 16px;
  line-height: 1.7;
}
.ref-spinner {
  width: 52px;
  height: 52px;
  margin: 0 auto 12px;
  border: 4px solid #e8eefb;
  border-top-color: #4167ff;
  border-radius: 50%;
  animation: spinning .8s linear infinite;
}
.ref-status-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eef3ff;
  color: #4167ff;
  font-size: 38px;
  font-weight: 800;
}
.ref-status-card.ok .ref-status-icon { background: #ecfdf3; color: #16a34a; }
.ref-status-card.fail .ref-status-icon { background: #fff1f2; color: #dc2626; }
.ref-status-card.wait .ref-status-icon { background: #fffbeb; color: #d97706; }
.order-box {
  margin: 18px auto;
  padding: 12px 14px;
  border-radius: 8px;
  background: #f7f9fd;
  color: #192234;
  word-break: break-all;
}
.ref-status-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 22px;
}
@media (max-width: 1040px) {
  .ref-page-hero{padding:145px 30px 60px}
  .ref-page-mark{position:relative;right:auto;top:auto;width:min(410px,90vw);height:245px;margin:44px auto 0}
  .ref-about-grid,.ref-contact-grid,.ref-detail-grid,.ref-many-grid{grid-template-columns:1fr}
  .ref-legal{padding:40px 30px 60px}
}
@media (max-width: 560px) {
  .ref-page-copy h1{font-size:42px}
  .ref-page-copy p:last-child{font-size:15px}
  .ref-story,.ref-founder,.ref-info-panel,.ref-form,.ref-legal-card{padding:25px}
}

/* ACS final brand pass: banner, logo, footer, sitemap, login */
.ref-brand-wide {
  min-width: 245px;
}
.ref-brand-wide img {
  width: 235px !important;
  height: 58px !important;
  object-fit: contain !important;
  object-position: left center !important;
  border-radius: 0 !important;
}
.ref-links {
  gap: 30px;
}
.ref-hero {
  min-height: 590px;
  background:
    linear-gradient(90deg, rgba(0,0,0,.12), rgba(0,0,0,.04)),
    url('/images/hero-banner.png') center / cover no-repeat,
    #030814 !important;
}
.ref-hero:before,
.ref-hero .ref-network,
.ref-hero .ref-hero-mark {
  display: none !important;
}
.ref-hero-content {
  display: none !important;
}
.ref-page-mark img {
  object-fit: contain;
}
.ref-page-mark {
  width: 360px !important;
  height: 150px !important;
  top: 205px !important;
  right: 115px !important;
}
.ref-second-heading {
  margin-top: 62px;
}
.ref-footer {
  width: min(1476px, calc(100vw - 8px));
  margin: 0 auto 20px;
  background:
    radial-gradient(circle at 80% 0%, rgba(47,157,255,.14), transparent 34%),
    #030814;
  color: #fff;
  border-top: 1px solid rgba(47,157,255,.28);
}
.ref-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 34px;
  padding: 58px 85px 38px;
}
.ref-footer h4 {
  color: #2f9dff;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  margin: 0 0 18px;
}
.ref-footer a,
.ref-footer span,
.ref-footer p {
  display: block;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.75;
  margin: 0 0 8px;
}
.ref-footer a:hover {
  color: #2f9dff;
}
.ref-footer-brand img {
  width: 260px;
  max-width: 100%;
  margin-bottom: 18px;
}
.ref-footer-cta {
  color: #fff !important;
  font-weight: 800;
  margin-top: 14px !important;
}
.ref-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px 85px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.ref-footer-bottom span {
  margin: 0;
  color: rgba(255,255,255,.54);
}
.ref-stats {
  min-height: 118px;
}
.ref-stat {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 74px;
  text-align: center;
}
.ref-stat strong {
  font-size: 28px !important;
  line-height: 1 !important;
}
.ref-stat span {
  font-size: 12px !important;
  line-height: 1.2 !important;
  margin: 0 !important;
}
.payment-locked {
  border: 1px solid #dfe6f1;
  border-radius: 12px;
  padding: 36px;
  background: linear-gradient(135deg,#fff,#f4f8ff);
  box-shadow: 0 16px 38px rgba(9,23,50,.08);
  margin-bottom: 34px;
}
.payment-locked h3 {
  color: #07111f;
  font-size: 28px;
  margin: 0 0 10px;
}
.payment-locked p {
  max-width: 650px;
  color: #192234;
  line-height: 1.7;
  margin-bottom: 20px;
}
.ref-login-form h2 {
  color: #07111f;
  font-size: 30px;
  margin: 0;
}
.ref-login-form p {
  color: #192234;
  line-height: 1.7;
  margin: 0 0 8px;
}
@media (max-width: 1040px) {
  .ref-brand-wide {
    min-width: 0;
  }
  .ref-brand-wide img {
    width: 190px !important;
  }
  .ref-footer-grid {
    grid-template-columns: 1fr 1fr;
    padding: 45px 30px 28px;
  }
  .ref-footer-bottom {
    padding: 18px 30px;
  }
}
@media (max-width: 560px) {
  .ref-brand-wide img {
    width: 165px !important;
  }
  .ref-hero {
    min-height: 360px;
    padding: 120px 22px 40px;
    background-position: center;
  }
  .ref-footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Global ACS banner pass: every inner page uses the same hero artwork cleanly. */
.ref-page-hero {
  min-height: 590px !important;
  padding: 0 !important;
  display: block !important;
  background:
    linear-gradient(90deg, rgba(0,0,0,.10), rgba(0,0,0,.02)),
    url('/images/hero-banner.png') center / cover no-repeat,
    #030814 !important;
}
.ref-page-hero:before,
.ref-page-hero .ref-network,
.ref-page-hero .ref-page-mark {
  display: none !important;
}
.ref-page-copy {
  position: absolute !important;
  z-index: 3 !important;
  left: clamp(24px, 5.6vw, 86px) !important;
  bottom: 26px !important;
  max-width: 470px !important;
  padding: 14px 18px !important;
  border: 1px solid rgba(47,157,255,.22) !important;
  border-radius: 14px !important;
  background: linear-gradient(135deg, rgba(3,8,20,.72), rgba(3,8,20,.42)) !important;
  box-shadow: 0 24px 80px rgba(0,0,0,.25) !important;
  backdrop-filter: blur(14px) !important;
}
.ref-page-copy .ref-kicker {
  margin-bottom: 8px !important;
  color: #2f9dff !important;
}
.ref-page-copy h1 {
  font-size: clamp(24px, 2.4vw, 34px) !important;
  line-height: 1.02 !important;
  letter-spacing: -.045em !important;
  margin-bottom: 0 !important;
}
.ref-page-copy h1 em {
  color: #59b8ff !important;
}
.ref-page-copy p:last-child {
  display: none !important;
}
@media (max-width: 900px) {
  .ref-page-hero {
    min-height: 500px !important;
    background-position: center !important;
  }
  .ref-page-copy {
    left: 24px !important;
    right: 24px !important;
    bottom: 24px !important;
    max-width: none !important;
  }
}
@media (max-width: 560px) {
  .ref-page-hero {
    min-height: 390px !important;
    background-position: center !important;
  }
  .ref-page-copy {
    padding: 13px 14px !important;
    border-radius: 14px !important;
  }
  .ref-page-copy h1 {
    font-size: 22px !important;
  }
}

/* Final ACS professional polish: stronger brand color, responsive heroes, account UX. */
:root {
  --acs-black: #02050a;
  --acs-ink: #07111f;
  --acs-navy: #06152b;
  --acs-blue: #1499ee;
  --acs-blue-2: #42bdff;
  --acs-blue-soft: #eaf6ff;
  --acs-border: #dce8f5;
}
body.reference-home {
  background: #f6f9fd;
  color: var(--acs-ink);
}
.ref-nav {
  background:
    linear-gradient(180deg, rgba(2,5,10,.94), rgba(2,8,18,.74)) !important;
  border-bottom: 1px solid rgba(66,189,255,.18) !important;
  backdrop-filter: blur(18px);
}
.ref-brand-wide {
  background: rgba(0,0,0,.48);
  border: 1px solid rgba(66,189,255,.16);
  border-radius: 10px;
  padding: 8px 12px;
}
.ref-brand-wide img {
  filter: drop-shadow(0 0 16px rgba(20,153,238,.16));
}
.ref-links a,
.ref-mobile a {
  color: rgba(255,255,255,.82) !important;
}
.ref-links a:hover,
.ref-links a.active,
.ref-mobile a:hover,
.ref-mobile a.active {
  color: var(--acs-blue-2) !important;
}
.ref-contact,
.ref-primary {
  background: linear-gradient(135deg, #126ff0, #21b2ff) !important;
  border: 1px solid rgba(142,214,255,.45) !important;
  box-shadow: 0 18px 40px rgba(18,111,240,.22);
}
.ref-secondary {
  border-color: rgba(20,153,238,.36) !important;
  color: var(--acs-ink) !important;
  background: #fff !important;
}
.ref-secondary:hover,
.ref-primary:hover,
.ref-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(18,111,240,.28);
}
.ref-hero,
.ref-page-hero {
  isolation: isolate;
}
.ref-hero:after,
.ref-page-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 80% 18%, rgba(66,189,255,.20), transparent 28%),
    linear-gradient(180deg, rgba(2,5,10,.04), rgba(2,5,10,.22));
  z-index: 1;
  animation: acs-hero-glow 7s ease-in-out infinite alternate;
}
.ref-hero {
  background:
    linear-gradient(90deg, rgba(0,0,0,.08), rgba(0,0,0,.02)),
    url('/images/hero-banner.png') center / cover no-repeat,
    var(--acs-black) !important;
}
.ref-page-hero {
  background:
    linear-gradient(90deg, rgba(0,0,0,.08), rgba(0,0,0,.02)),
    url('/images/hero-banner.png') center / cover no-repeat,
    var(--acs-black) !important;
}
.ref-page-copy {
  background:
    linear-gradient(135deg, rgba(3,8,20,.82), rgba(5,22,44,.58)) !important;
  border-color: rgba(66,189,255,.34) !important;
  box-shadow: 0 26px 90px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.08) !important;
}
.ref-page-copy h1 em,
.ref-hero h1 em,
.ref-small,
.ref-kicker,
.ref-footer h4 {
  color: var(--acs-blue-2) !important;
}
.ref-section-top h2,
.ref-login-form h2,
.payment-locked h3,
.account-hero-card h2,
.account-panel h2 {
  color: #061225 !important;
}
.ref-card,
.service-card,
.value-card,
.payment-card,
.contact-form-card,
.ref-form,
.ref-info-panel,
.account-card,
.account-panel,
.payment-locked {
  border: 1px solid var(--acs-border) !important;
  border-radius: 22px !important;
  background: linear-gradient(180deg, #fff, #f9fcff) !important;
  box-shadow: 0 18px 55px rgba(6,21,43,.08) !important;
}
.ref-card:hover,
.service-card:hover,
.value-card:hover,
.account-card:hover {
  transform: translateY(-6px);
  border-color: rgba(20,153,238,.36) !important;
  box-shadow: 0 26px 75px rgba(20,153,238,.16) !important;
}
.ref-form input,
.ref-form select,
.ref-form textarea {
  border-color: #d8e5f2 !important;
  background: #f8fbff !important;
  min-height: 48px;
}
.ref-form input:focus,
.ref-form select:focus,
.ref-form textarea:focus {
  outline: 3px solid rgba(20,153,238,.16);
  border-color: var(--acs-blue) !important;
  background: #fff !important;
}
.account-shell {
  background:
    radial-gradient(circle at 90% 8%, rgba(20,153,238,.09), transparent 28%),
    linear-gradient(180deg, #fff, #f4f9ff);
}
.account-hero-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 34px;
  margin-bottom: 28px;
  border-radius: 26px;
  color: #fff;
  background:
    radial-gradient(circle at 84% 0%, rgba(66,189,255,.28), transparent 34%),
    linear-gradient(135deg, #02050a, #071a34 56%, #02050a);
  box-shadow: 0 28px 80px rgba(2,5,10,.24);
  overflow: hidden;
  position: relative;
}
.account-hero-card:before {
  content: "";
  position: absolute;
  inset: auto -12% -45% 32%;
  height: 220px;
  border-radius: 50%;
  background: linear-gradient(90deg, transparent, rgba(33,178,255,.34), transparent);
  filter: blur(18px);
  transform: rotate(-8deg);
}
.account-hero-card > * {
  position: relative;
  z-index: 1;
}
.account-hero-card h2 {
  color: #fff !important;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.05;
  margin: 0 0 10px;
}
.account-hero-card p {
  color: rgba(255,255,255,.72);
  margin: 0;
}
.account-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.account-logout {
  cursor: pointer;
  min-height: 52px;
}
.account-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 28px;
}
.account-card {
  padding: 28px;
}
.account-card span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--acs-blue-soft);
  color: #126ff0;
  font-weight: 800;
  margin-bottom: 18px;
}
.account-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}
.account-card p {
  color: #45566d;
  line-height: 1.7;
}
.account-card strong,
.account-card a {
  color: #126ff0;
  font-weight: 800;
}
.account-panel {
  padding: 30px;
}
.account-panel-head,
.account-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.account-panel-head {
  margin-bottom: 18px;
}
.account-panel-head h2 {
  margin: 0;
  font-size: 30px;
}
.account-panel-head a {
  color: #126ff0;
  font-weight: 800;
}
.account-row {
  padding: 16px 0;
  border-top: 1px solid #e4edf7;
}
.account-row span {
  color: #56657a;
}
.account-row strong {
  color: #061225;
}
.account-row em {
  font-style: normal;
  color: #126ff0;
  font-weight: 800;
}
.account-empty {
  color: #56657a;
  margin: 0;
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s cubic-bezier(.2,.8,.2,1), box-shadow .25s ease, border-color .25s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@keyframes acs-hero-glow {
  from { opacity: .55; transform: translate3d(0,0,0); }
  to { opacity: .92; transform: translate3d(-10px,8px,0); }
}
@media (max-width: 1040px) {
  .ref-shell,
  .ref-footer {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .ref-contact-grid,
  .ref-about-grid,
  .ref-detail-grid,
  .account-grid {
    grid-template-columns: 1fr !important;
  }
  .account-hero-card {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 720px) {
  .ref-nav-inner {
    min-height: 76px;
    padding: 0 16px !important;
  }
  .ref-brand-wide {
    padding: 6px 8px;
  }
  .ref-brand-wide img {
    width: 146px !important;
    height: 42px !important;
  }
  .ref-hamburger {
    display: flex !important;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
  }
  .ref-mobile.open {
    display: flex;
    position: fixed;
    left: 14px;
    right: 14px;
    top: 82px;
    z-index: 999;
    padding: 16px;
    border: 1px solid rgba(66,189,255,.22);
    border-radius: 18px;
    background: rgba(2,8,18,.96) !important;
    box-shadow: 0 20px 70px rgba(0,0,0,.35);
  }
  .ref-hero,
  .ref-page-hero {
    min-height: 500px !important;
    background:
      radial-gradient(circle at 50% 28%, rgba(20,153,238,.16), transparent 42%),
      linear-gradient(180deg, rgba(2,5,10,.10) 0%, rgba(2,5,10,.08) 48%, rgba(2,5,10,.70) 100%),
      url('/images/hero-banner.png') center 104px / 100% auto no-repeat,
      var(--acs-black) !important;
  }
  .ref-page-copy {
    left: 16px !important;
    right: 16px !important;
    bottom: 18px !important;
    padding: 14px 16px !important;
  }
  .ref-page-copy h1 {
    font-size: clamp(22px, 7vw, 32px) !important;
  }
  .ref-page-copy .ref-kicker {
    font-size: 10px !important;
    line-height: 1.25 !important;
  }
  .ref-section-top {
    display: block !important;
  }
  .ref-services,
  .ref-inner-section {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
  .ref-footer-grid {
    padding: 38px 20px 24px !important;
  }
  .ref-footer-bottom {
    padding: 18px 20px !important;
  }
  .account-panel-head,
  .account-row {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 430px) {
  .ref-hero,
  .ref-page-hero {
    min-height: 470px !important;
    background-size: auto, auto, 100% auto !important;
    background-position: center, center, center 104px !important;
  }
  .account-hero-card,
  .account-card,
  .account-panel,
  .ref-form,
  .ref-info-panel,
  .payment-locked {
    padding: 22px !important;
    border-radius: 18px !important;
  }
  .account-actions,
  .account-actions .ref-primary,
  .account-actions .ref-secondary {
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}
