/* NCA Register - White & Blue Professional Theme */

:root {
  --navy: #2563EB;
  --navy-mid: #1D4ED8;
  --navy-light: #3B82F6;
  --navy-soft: #60A5FA;
  --white: #FFFFFF;
  --off-white: #F8FAFC;
  --gray-50: #F1F5F9;
  --gray-100: #E2E8F0;
  --gray-200: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-600: #475569;
  --gray-800: #334155;
  --accent: #2563EB;
  --accent-light: #3B82F6;
  --accent-pale: #EFF6FF;
  --success: #059669;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(37, 99, 235, 0.08);
  --shadow-lg: 0 20px 60px rgba(37, 99, 235, 0.12);
  --header-h: 72px;
  --services-nav-h: 46px;
  --font: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --container: 1200px;
  --transition: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--accent);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: #0F172A;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 16px;
  color: var(--gray-600);
  max-width: 560px;
  line-height: 1.75;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-primary {
  background: var(--navy);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--gray-100);
}
.btn-ghost:hover {
  border-color: var(--navy);
  background: var(--off-white);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover {
  background: var(--gray-50);
  transform: translateY(-2px);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #1D4ED8;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(15, 23, 42, 0.18); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-logo {
  display: block;
  height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}
.brand-icon {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
}
.brand-text { line-height: 1.2; }
.brand-text strong {
  display: block;
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.brand-text small {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.main-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-header .btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}
.site-header .btn-ghost:hover {
  color: var(--white);
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}
.site-header .btn-primary {
  background: var(--white);
  color: var(--navy);
}
.site-header .btn-primary:hover {
  background: var(--gray-50);
  color: var(--navy-mid);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.15);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  background: #1D4ED8;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.mobile-nav a {
  text-decoration: none;
  padding: 12px 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-nav .mobile-cta {
  margin-top: 12px;
  text-align: center;
  background: var(--white);
  color: var(--navy);
  padding: 14px;
  border-radius: 50px;
  border: none;
  font-weight: 600;
}

/* Services mega nav (shown on all frontend pages) */
.services-nav {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: 999;
}
.services-nav-bar {
  position: relative;
  z-index: 2;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
}
.services-nav-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: var(--services-nav-h);
}
.services-nav-list {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.services-nav-list::-webkit-scrollbar { display: none; }
.services-nav-item {
  position: static;
  flex-shrink: 0;
}
.services-nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 12px 14px;
  border: none;
  background: none;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-800);
  cursor: pointer;
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}
.services-nav-trigger:hover,
.services-nav-item:hover .services-nav-trigger,
.services-nav-item.open .services-nav-trigger {
  color: var(--navy);
}
.services-nav-chevron {
  opacity: 0.55;
  transition: transform var(--transition);
}
.services-nav-item:hover .services-nav-chevron,
.services-nav-item.open .services-nav-chevron {
  transform: rotate(180deg);
}
.services-dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 1;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  pointer-events: none;
}
.services-nav-item.open .services-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.services-dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 48px;
  padding: 20px 0 24px;
}
.services-dropdown-col {
  list-style: none;
  margin: 0;
  padding: 0;
}
.services-dropdown-col a {
  display: block;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-800);
  text-decoration: none;
  transition: color var(--transition);
}
.services-dropdown-col a:hover { color: var(--navy); }
.services-nav-all {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
  padding: 8px 0;
}
.services-nav-all:hover { color: var(--navy-mid); }

/* Hero */
.hero {
  padding: calc(var(--header-h) + var(--services-nav-h) + 48px) 0 80px;
  background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 50%, var(--accent-pale) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy-light);
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}
.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: italic;
  color: var(--navy-light);
}
.hero-desc {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 480px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--gray-400);
}
.hero-trust strong { color: var(--navy); }
.hero-image-wrap {
  position: relative;
}
.hero-image {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  object-fit: cover;
  background: var(--gray-100);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-lg);
}
.img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
  border: 2px dashed var(--gray-200);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--gray-400);
  font-size: 14px;
  text-align: center;
  padding: 24px;
}
.img-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.5;
}
.hero-float-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-float-card .stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.hero-float-card .stat-label {
  font-size: 12px;
  color: var(--gray-400);
}

/* Quick services bar */
.quick-services {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 0;
}
.quick-services-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.quick-svc {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 16px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
  text-align: center;
}
.quick-svc:last-child { border-right: none; }
.quick-svc:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}
.quick-svc-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.quick-svc span {
  font-size: 13px;
  font-weight: 500;
}

/* Clients strip */
.clients-strip {
  padding: 48px 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}
.clients-strip p {
  text-align: center;
  font-size: 13px;
  color: var(--gray-400);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.client-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}
.client-logo {
  width: 120px;
  height: 48px;
  background: var(--gray-50);
  border: 1px dashed var(--gray-200);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--gray-400);
  font-weight: 600;
}

/* Sections */
.section { padding: 80px 0; }
.section-alt { background: var(--off-white); }
.section-dark {
  background: linear-gradient(135deg, var(--accent-pale) 0%, var(--white) 100%);
  color: var(--gray-800);
}
.section-dark .section-title { color: var(--navy-mid); }
.section-dark .section-sub { color: var(--gray-600); }
.section-dark .section-label { color: var(--navy); }
.section-dark .section-label::before { background: var(--navy); }
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header .section-sub { margin: 0 auto; }

/* Feature split */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
}
.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.feature-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.feature-item p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Service cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--accent));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::after { transform: scaleX(1); }
.service-card .svc-icon {
  width: 56px;
  height: 56px;
  background: var(--off-white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 16px;
}
.service-card .learn-more {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}
.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--white);
  border: 2px solid var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  transition: var(--transition);
}
.step-card:hover .step-num {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.step-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.step-card p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Stats */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 48px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  margin-top: 48px;
}
.stat-item {
  text-align: center;
  color: var(--white);
}
.stat-item .num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-item .label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.testimonial-card .stars {
  color: #F59E0B;
  font-size: 14px;
  margin-bottom: 16px;
}
.testimonial-card blockquote {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  overflow: hidden;
}
.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.author-info strong {
  display: block;
  font-size: 14px;
  color: var(--navy);
}
.author-info span {
  font-size: 12px;
  color: var(--gray-400);
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  font-family: var(--font);
  transition: var(--transition);
}
.faq-question:hover { background: var(--off-white); }
.faq-icon {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--accent);
}
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer p {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* CTA */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-section .section-title {
  color: var(--white);
  margin-bottom: 12px;
}
.cta-section .section-sub {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 auto 28px;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Page hero (inner pages) */
.page-hero {
  padding: calc(var(--header-h) + var(--services-nav-h) + 48px) 0 64px;
  background: linear-gradient(135deg, #1E40AF 0%, #1D4ED8 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(30, 64, 175, 0.2) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero .breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}
.page-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}
.page-hero .breadcrumb a:hover { color: var(--white); }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700;
  margin-bottom: 12px;
}
.page-hero p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  line-height: 1.75;
}

/* Legal pages */
.legal-content {
  max-width: 780px;
}
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #0F172A;
  margin: 32px 0 12px;
}
.legal-content h2:first-of-type {
  margin-top: 0;
}
.legal-content p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 14px;
}
.legal-content ul {
  margin: 0 0 16px 20px;
  list-style: disc;
}
.legal-content li {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 8px;
}

/* Feature detail pages */
.feature-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card-wide {
  grid-column: span 2;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}
.feature-card h2 {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 10px;
  color: #0F172A;
}
.feature-card p {
  color: var(--gray-600);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 14px;
}
.feature-card ul {
  list-style: disc;
  margin-left: 18px;
}
.feature-card li {
  color: var(--gray-600);
  margin-bottom: 8px;
}
.feature-visual img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--gray-100);
}
.feature-price {
  font-size: 34px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.feature-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Contact form */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}
.form-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-600);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 14px;
  color: var(--gray-800);
  background: var(--off-white);
  outline: none;
  transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-info-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.info-item {
  display: flex;
  gap: 14px;
  padding: 18px;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
}
.info-item .icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.info-item strong {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-400);
  margin-bottom: 4px;
}
.info-item span {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 24px;
}
.value-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

/* Products */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.product-image {
  aspect-ratio: 16/10;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
}
.product-body { padding: 24px; }
.product-body h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.product-body p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
}
.product-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
}

/* Footer */
.site-footer {
  background: #000000;
  color: rgba(255, 255, 255, 0.75);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.75;
  margin-top: 16px;
  max-width: 300px;
}
.brand-footer .brand-text strong { color: var(--white); }
.brand-footer .brand-icon { background: var(--white); color: var(--navy); }
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--white);
  color: var(--navy);
}
.site-footer h4 {
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.site-footer ul li { margin-bottom: 10px; }
.site-footer ul a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color var(--transition);
}
.site-footer ul a:hover { color: var(--white); }
.footer-contact li span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 2px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
}
.footer-bottom a:hover { color: var(--white); }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Auth pages */
.auth-page { background: var(--off-white); }
.auth-section {
  padding: calc(var(--header-h) + var(--services-nav-h) + 48px) 0 72px;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}
.auth-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.auth-side {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.auth-side-badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 18px;
}
.auth-side h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.15;
  margin-bottom: 14px;
}
.auth-side p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.auth-side ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.auth-side li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}
.auth-side li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #c7f9cc;
  font-weight: 700;
}
.auth-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.auth-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 420px;
  width: 100%;
  text-align: center;
}
.auth-brand { justify-content: center; margin-bottom: 24px; text-decoration: none; }
.auth-card h1,
.auth-card h2 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 8px;
}
.auth-sub { color: var(--gray-600); font-size: 14px; margin-bottom: 28px; }
.auth-card .form-group { text-align: left; }
.password-field {
  position: relative;
}
.password-field input {
  width: 100%;
  padding: 12px 44px 12px 16px;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 14px;
  color: var(--gray-800);
  background: var(--off-white);
  outline: none;
  transition: var(--transition);
}
.password-field input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  background: var(--white);
}
.password-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border: none;
  background: transparent;
  color: var(--gray-400);
  cursor: pointer;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.password-toggle:hover {
  color: var(--navy);
  background: var(--gray-50);
}
.password-toggle .icon-hide { display: none; }
.password-toggle.is-visible .icon-show { display: none; }
.password-toggle.is-visible .icon-hide { display: block; }
.auth-error {
  display: none;
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: #FEF2F2;
  border: 1px solid #FECACA;
  color: #DC2626;
  font-size: 13px;
  text-align: left;
}
.auth-error.show { display: block; }
.auth-btn { width: 100%; margin-top: 8px; }
.auth-link { margin-top: 20px; font-size: 14px; color: var(--gray-600); }
.auth-link a { color: var(--accent); font-weight: 600; text-decoration: none; }
.auth-back { display: inline-block; margin-top: 16px; font-size: 13px; color: var(--gray-400); text-decoration: none; }

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid,
  .feature-split,
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .services-grid,
  .testimonials-grid,
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .quick-services-inner { grid-template-columns: repeat(3, 1fr); }
  .quick-svc:nth-child(3) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .feature-layout { grid-template-columns: 1fr 1fr; }
  .feature-card-wide { grid-column: span 2; }
  .hero-float-card { left: auto; right: 20px; bottom: -16px; }
}

@media (max-width: 768px) {
  .main-nav,
  .header-actions { display: none; }
  .nav-toggle { display: flex; }
  .brand-logo {
    height: 38px;
    max-width: 150px;
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav {
    margin-top: var(--services-nav-h);
    max-height: calc(100vh - var(--header-h) - var(--services-nav-h));
    overflow-y: auto;
  }
  .services-nav-all { display: none; }
  .services-nav-item:not(.open) .services-dropdown {
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    pointer-events: none;
  }
  .services-dropdown-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 8px 0 16px;
  }
  .services-dropdown-col a {
    padding: 8px 0;
    font-size: 13px;
  }
  .section { padding: 56px 0; }
  .hero { padding-bottom: 56px; }
  .services-grid,
  .testimonials-grid,
  .products-grid,
  .steps-grid,
  .values-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; padding: 32px 24px; }
  .quick-services-inner { grid-template-columns: 1fr 1fr; }
  .quick-svc { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .feature-layout { grid-template-columns: 1fr; }
  .feature-card-wide { grid-column: span 1; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .auth-section { padding: calc(var(--header-h) + 24px) 0 48px; }
  .auth-shell { grid-template-columns: 1fr; }
  .auth-side { padding: 28px 24px; }
}

/* Fixed WhatsApp + Chat Bot */
.float-widgets {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  position: relative;
  color: #fff;
}
.float-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
}
.chat-toggle {
  background: var(--navy);
}
.whatsapp-btn {
  background: #25D366;
}
.float-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  background: #EF4444;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 50px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}
.float-badge.show { display: flex; }

.chat-panel {
  position: absolute;
  bottom: 132px;
  right: 0;
  width: 340px;
  max-width: calc(100vw - 48px);
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--gray-100);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  display: none;
  flex-direction: column;
  overflow: hidden;
  animation: chatSlideUp 0.28s ease;
}
.chat-panel.open { display: flex; }
@keyframes chatSlideUp {
  from { opacity: 0; transform: translateY(12px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.chat-panel-header {
  background: var(--navy);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.chat-agent {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}
.chat-agent-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
}
.chat-agent strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
}
.chat-online {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  gap: 5px;
}
.chat-online::before {
  content: '';
  width: 7px;
  height: 7px;
  background: #4ADE80;
  border-radius: 50%;
}
.chat-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.75);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
}
.chat-close:hover { color: #fff; }
.chat-messages {
  flex: 1;
  min-height: 220px;
  max-height: 280px;
  overflow-y: auto;
  padding: 16px;
  background: var(--off-white);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.chat-msg {
  max-width: 88%;
  display: flex;
}
.chat-msg.bot { align-self: flex-start; }
.chat-msg.user { align-self: flex-end; }
.chat-bubble {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13.5px;
  line-height: 1.55;
}
.chat-msg.bot .chat-bubble {
  background: var(--white);
  color: var(--gray-800);
  border: 1px solid var(--gray-100);
  border-bottom-left-radius: 4px;
}
.chat-msg.user .chat-bubble {
  background: var(--navy);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.chat-typing {
  display: flex;
  gap: 4px;
  padding: 10px 14px;
}
.chat-typing span {
  width: 7px;
  height: 7px;
  background: var(--gray-400);
  border-radius: 50%;
  animation: typingDot 1.2s infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}
.chat-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px 14px;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
}
.chat-quick button {
  padding: 6px 12px;
  border-radius: 50px;
  border: 1px solid var(--gray-100);
  background: var(--off-white);
  color: var(--navy);
  font-size: 12px;
  font-weight: 500;
  font-family: var(--font);
  cursor: pointer;
  transition: var(--transition);
}
.chat-quick button:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.chat-input-row {
  display: flex;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid var(--gray-100);
  background: var(--white);
}
.chat-input-row input {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid var(--gray-100);
  border-radius: 50px;
  font-family: var(--font);
  font-size: 13.5px;
  outline: none;
}
.chat-input-row input:focus {
  border-color: var(--navy);
}
.chat-input-row button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--navy);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.chat-input-row button:hover { background: var(--navy-mid); }

@media (max-width: 480px) {
  .float-widgets { bottom: 16px; right: 16px; }
  .chat-panel { bottom: 124px; width: 300px; }
}
