:root {
  --bg: #fafbfc;
  --surface: #ffffff;
  --surface2: #f8f9fb;
  --text: #0d1117;
  --text-strong: #000000;
  --muted: #3d4656;
  --muted-light: #586069;
  --line: #e7eef7;

  --primary: #012169;
  --primary2: #001952;
  --primary-light: #1a3a8a;
  --gold: #ffcd00;
  --purple: #7c3aed;
  --purple-light: #9333ea;
  --footer: #0a1220;

  --shadow: 0 18px 40px rgba(1, 33, 105, 0.08);
  --shadow2: 0 12px 26px rgba(1, 33, 105, 0.06);
  --shadow-lg: 0 24px 60px rgba(1, 33, 105, 0.12);
  --radius: 18px;
  --max: 100%;

  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

.wrap {
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 80px);
}

/* HEADER */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 12px rgba(1, 33, 105, 0.04);
}

.nav {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.2px;
  transition: transform 0.3s ease;
}

.brand:hover {
  transform: scale(1.02);
}

.brand .mark {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(1, 33, 105, 0.08), rgba(255, 205, 0, 0.08));
  display: grid;
  place-items: center;
  border: 1px solid rgba(1, 33, 105, 0.12);
  color: var(--primary);
  transition: all 0.3s ease;
}

.brand:hover .mark {
  background: linear-gradient(135deg, rgba(1, 33, 105, 0.12), rgba(255, 205, 0, 0.12));
  transform: rotate(5deg);
}

.brand b {
  color: var(--primary);
}

nav.links {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}

nav.links a {
  padding: 10px 14px;
  border-radius: 8px;
  position: relative;
  transition: all 0.3s ease;
}

nav.links a:hover {
  color: var(--primary);
  background: rgba(1, 33, 105, 0.04);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid var(--primary);
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 8px 24px rgba(1, 33, 105, 0.2);
  white-space: nowrap;
  transition: all 0.3s ease;
}

.cta:hover {
  box-shadow: 0 12px 32px rgba(1, 33, 105, 0.3);
  transform: translateY(-2px);
}

.menu {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 10px;
  justify-content: center;
}

@media (max-width: 980px) {
  nav.links {
    display: none;
  }

  .menu {
    display: inline-flex;
  }

  .nav {
    height: auto;
    min-height: 64px;
    padding: 8px 0;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow2);
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
  font-size: 14px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(1, 33, 105, 0.12);
}


/* Fix: menu button should NOT show on desktop */
.btn.menu {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 999px;
  justify-content: center;
}

/* Show hamburger only on mobile */
@media (max-width: 980px) {
  .btn.menu {
    display: inline-flex;
  }
}



.drawer {
  border-top: 1px solid var(--line);
  padding: 12px 0 16px;
}

.drawer a {
  display: block;
  padding: 12px 14px;
  color: var(--muted);
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.drawer .drawer-cta {
  margin-top: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  border: 1px solid rgba(1, 33, 105, 0.22);
  color: #fff;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 10px 26px rgba(1, 33, 105, 0.22);
}

.drawer .drawer-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(1, 33, 105, 0.28);
  padding-left: 14px;
  /* override drawer hover indent */
}

.drawer a:hover {
  background: rgba(1, 33, 105, 0.05);
  color: var(--primary);
  padding-left: 20px;
}

/* PAGE CONTAINER */
.page {
  width: 100%;
  background: var(--surface);
  overflow: hidden;
  animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MODERN HERO */
.hero-modern {
  position: relative;
  background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
  overflow: hidden;
}

.hero-modern:before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(1, 33, 105, 0.06) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.4;
  pointer-events: none;
}

.hero-content {
  position: relative;
  padding: 80px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 80px);
  align-items: center;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content {
    padding: 60px 0 40px;
  }
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 205, 0, 0.3);
  color: var(--primary);
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 8px 24px rgba(1, 33, 105, 0.08);
  margin-bottom: 24px;
  animation: slideInLeft 0.6s ease 0.2s backwards;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-title {
  font-size: clamp(42px, 4.5vw, 80px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin: 0 0 24px;
  animation: slideInLeft 0.6s ease 0.3s backwards;
}

.hero-title-nowrap {
  white-space: nowrap;
}

@media (max-width: 640px) {
  .hero-title-nowrap {
    white-space: normal;
  }
}


.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 32px;
  animation: slideInLeft 0.6s ease 0.4s backwards;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: slideInLeft 0.6s ease 0.5s backwards;
}

.btn-large {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow2);
}

.btn-large.primary {
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color: #fff;
  border: 1px solid var(--primary);
  box-shadow: 0 12px 32px rgba(1, 33, 105, 0.25);
}

.btn-large.primary:hover {
  box-shadow: 0 16px 40px rgba(1, 33, 105, 0.35);
  transform: translateY(-2px);
}

.btn-large.secondary {
  background: var(--surface);
  color: var(--primary);
  border: 2px solid var(--line);
}

.btn-large.secondary:hover {
  border-color: var(--primary);
  background: rgba(1, 33, 105, 0.02);
}

/* Trust Stats */
.trust-stats {
  display: flex;
  gap: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  animation: slideInLeft 0.6s ease 0.6s backwards;
}

@media (max-width: 600px) {
  .trust-stats {
    gap: 24px;
  }
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-size: 42px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
}

/* Hero Visual */
.hero-visual {
  animation: slideInRight 0.6s ease 0.3s backwards;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(1, 33, 105, 0.15);
  transition: all 0.5s ease;
}

.hero-image:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 80px rgba(1, 33, 105, 0.2);
}

.hero-image img {
  width: 100%;
  height: clamp(340px, 38vw, 520px);
  object-fit: cover;
  display: block;
}

@media (max-width: 980px) {
  .hero-image img {
    height: 340px;
  }
}

.float-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(1, 33, 105, 0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: badgeFloat 0.8s ease 0.8s backwards;
}

@keyframes badgeFloat {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.badge-icon {
  font-size: 32px;
}

.badge-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

.badge-subtitle {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

/* SECTION STYLES */
.section {
  padding: 80px 0;
}

@media (max-width: 980px) {
  .section {
    padding: 60px 0;
  }
}

.section-header {
  margin-bottom: 56px;
}

.section-header.centered {
  text-align: center;
}

.section-header.white .kicker,
.section-header.white .section-title,
.section-header.white .section-subtitle {
  color: #fff;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 900;
  color: var(--primary);
  font-size: 12px;
  margin-bottom: 16px;
  opacity: 0.9;
}

.kicker.white {
  color: rgba(255, 255, 255, 0.8);
}

.kicker.purple {
  color: var(--purple);
}

.section-title {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--text);
}

@media (max-width: 980px) {
  .section-title {
    font-size: 36px;
    letter-spacing: -0.5px;
  }
}

.section-subtitle {
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.7;
  color: var(--muted);
  margin: 0 auto;
}

/* ABOUT SECTION */
.about-section {
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
}

/* Why Choose Grid */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

@media (max-width: 980px) {
  .why-choose-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
  }
}

.why-item {
  text-align: center;
  padding: 28px 20px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow2);
  transition: all 0.4s ease;
}

.why-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(1, 33, 105, 0.12);
  border-color: rgba(1, 33, 105, 0.2);
}

.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  display: grid;
  place-items: center;
  color: #fff;
  margin: 0 auto 16px;
  transition: all 0.3s ease;
}

.why-item:hover .why-icon {
  transform: scale(1.1) rotate(-5deg);
}

.why-item h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--text);
}

.why-item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* Differentiator Box */
.differentiator-box {
  background: linear-gradient(135deg, rgba(1, 33, 105, 0.02), rgba(255, 205, 0, 0.03));
  border: 1px solid rgba(1, 33, 105, 0.1);
  border-radius: 24px;
  padding: 40px;
  margin-bottom: 64px;
}

.diff-title {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--text);
}

.diff-subtitle {
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 24px;
  line-height: 1.7;
}

.diff-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

@media (max-width: 600px) {
  .diff-list {
    grid-template-columns: 1fr;
  }
}

.diff-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.diff-item:hover {
  background: #fff;
  padding-left: 16px;
}

.diff-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

.diff-tagline {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin: 24px 0 0;
  text-align: center;
}

/* Who We Support */
.support-section {
  margin-top: 64px;
}

.support-title {
  font-size: 28px;
  font-weight: 800;
  text-align: center;
  margin: 0 0 32px;
  color: var(--text);
}

.support-grid-compact {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 980px) {
  .support-grid-compact {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .support-grid-compact {
    grid-template-columns: 1fr;
  }
}

.support-compact-item {
  text-align: center;
  padding: 24px 20px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow2);
  transition: all 0.4s ease;
}

.support-compact-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(1, 33, 105, 0.1);
  border-color: rgba(1, 33, 105, 0.15);
}

.support-compact-icon {
  font-size: 40px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.support-compact-item:hover .support-compact-icon {
  transform: scale(1.15) rotate(5deg);
}

.support-compact-item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
  font-weight: 600;
}

/* SERVICES MODERN */
.services-modern {
  background: var(--surface);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow2);
  transition: all 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(1, 33, 105, 0.12);
  border-color: rgba(1, 33, 105, 0.2);
}

.service-number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 72px;
  font-weight: 900;
  color: rgba(1, 33, 105, 0.04);
  line-height: 1;
  pointer-events: none;
}

.service-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.service-icon.blue {
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color: #fff;
  box-shadow: 0 12px 32px rgba(1, 33, 105, 0.25);
}

.service-card:hover .service-icon {
  transform: scale(1.08) rotate(-5deg);
}

.service-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--text);
}

.service-intro {
  font-size: 15px;
  color: var(--muted);
  margin: 0 0 16px;
  font-weight: 600;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.service-list li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

.service-list li:before {
  content: '•';
  position: absolute;
  left: 8px;
  color: var(--primary);
  font-weight: 900;
  font-size: 18px;
}

.service-footer {
  font-size: 14px;
  font-style: italic;
  color: var(--primary);
  margin: 16px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-weight: 600;
}

/* PROCESS TIMELINE */
.process-timeline {
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  margin: 0 20px;
  border-radius: 28px;
}

.process-timeline:before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.3;
  pointer-events: none;
}

.process-timeline .wrap {
  position: relative;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

@media (max-width: 980px) {
  .timeline {
    grid-template-columns: 1fr;
  }
}

.timeline-item {
  position: relative;
}

.timeline-marker {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-marker {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.08);
}

.timeline-content h4 {
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
}

.timeline-content p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* DESTINATIONS */
.destinations-section {
  background: var(--bg);
}

.destinations-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

@media (max-width: 980px) {
  .destinations-grid {
    grid-template-columns: 1fr;
  }
}

.dest-card {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
}

.dest-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(1, 33, 105, 0.15);
}

.dest-card.primary {
  position: relative;
}

.dest-image {
  height: 280px;
  overflow: hidden;
}

.dest-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.dest-card:hover .dest-image img {
  transform: scale(1.05);
}

.dest-content {
  padding: 28px;
  background: var(--surface);
}

.dest-card.primary .dest-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(1, 33, 105, 0.95), transparent);
  color: #fff;
}

.dest-content h3 {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 8px;
}

.dest-card.primary .dest-content h3 {
  color: #fff;
}

.dest-content p {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

.dest-card.primary .dest-content p {
  color: rgba(255, 255, 255, 0.9);
}

/* Provider Types */
.provider-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 980px) {
  .provider-types {
    grid-template-columns: 1fr;
  }
}

.provider-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow2);
  transition: all 0.4s ease;
}

.provider-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(1, 33, 105, 0.1);
  border-color: rgba(1, 33, 105, 0.15);
}

.provider-icon {
  font-size: 36px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.provider-item:hover .provider-icon {
  transform: scale(1.15) rotate(5deg);
}

.provider-text h4 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--text);
}

.provider-text p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}

/* MIGRATION MODERN */
.migration-modern {
  background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
}

.migration-grid {
  display: grid;
  gap: 56px;
}

/* Advisor Profile */
.advisor-profile {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow);
}

@media (max-width: 980px) {
  .advisor-profile {
    grid-template-columns: 1fr;
  }
}

.advisor-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(1, 33, 105, 0.15);
}

.advisor-image img {
  width: 100%;
  height: auto;
  display: block;
}

.advisor-info h3 {
  font-size: 32px;
  font-weight: 900;
  margin: 0 0 8px;
  color: var(--text);
}

.advisor-role {
  font-size: 18px;
  color: var(--primary);
  font-weight: 700;
  margin: 0 0 20px;
}

.advisor-bio {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 24px;
}

.advisor-approach {
  background: rgba(1, 33, 105, 0.02);
  border-left: 3px solid var(--primary);
  padding: 20px 24px;
  border-radius: 12px;
  margin-bottom: 24px;
}

.advisor-approach h4 {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 16px;
  color: var(--text);
}

.advisor-approach ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.advisor-approach li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 10px 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

.advisor-approach li svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.advisor-note {
  font-size: 14px;
  line-height: 1.7;
  color: var(--primary);
  background: rgba(1, 33, 105, 0.04);
  padding: 16px 20px;
  border-radius: 12px;
  margin: 0;
  font-weight: 600;
}

/* Migration Stages */
.migration-stages {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 980px) {
  .migration-stages {
    grid-template-columns: 1fr;
  }
}

.stage-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow2);
  position: relative;
  transition: all 0.4s ease;
}

.stage-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(1, 33, 105, 0.12);
  border-color: rgba(1, 33, 105, 0.2);
}

.stage-number {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 8px 24px rgba(1, 33, 105, 0.25);
}

.stage-card h4 {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 16px;
  padding-right: 60px;
  color: var(--text);
}

.stage-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.stage-card li {
  padding: 8px 0 8px 20px;
  position: relative;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

.stage-card li:before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* SUPPORT SERVICES */
.support-services {
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.02), rgba(255, 255, 255, 1));
  border-top: 1px solid rgba(124, 58, 237, 0.1);
}

.support-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 980px) {
  .support-services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .support-services-grid {
    grid-template-columns: 1fr;
  }
}

.support-service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow2);
  transition: all 0.4s ease;
}

.support-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(124, 58, 237, 0.15);
  border-color: rgba(124, 58, 237, 0.25);
}

.service-icon-large {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.service-icon-large.purple {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  box-shadow: 0 12px 32px rgba(1, 33, 105, 0.3);
}

.support-service-card:hover .service-icon-large {
  transform: scale(1.08) rotate(-5deg);
}

.support-service-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--text);
}

.support-service-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

.integrated-support-message {
  margin-top: 48px;
  text-align: center;
  padding: 32px;
  background: rgba(124, 58, 237, 0.04);
  border-radius: 20px;
  border: 1px solid rgba(124, 58, 237, 0.1);
}

.integrated-support-message p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
  font-weight: 600;
  margin: 0;
  max-width: 900px;
  margin: 0 auto;
}

/* FINAL CTA MODERN */
.final-cta-modern {
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  margin: 0 20px 0;
  border-radius: 28px;
}

.final-cta-modern:before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.2;
  pointer-events: none;
}

/* Contact Section Grid */
.contact-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
}

@media (max-width: 980px) {
  .contact-section-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.contact-info h2 {
  font-size: 42px;
  font-weight: 900;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: -0.8px;
}

@media (max-width: 980px) {
  .contact-info h2 {
    font-size: 32px;
  }
}

.contact-lead {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 32px;
}

.contact-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-feature {
  display: flex;
  gap: 16px;
  align-items: start;
}

.contact-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.25);
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
}

.contact-feature h4 {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 4px;
}

.contact-feature p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.5;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-detail-item {
  display: flex;
  gap: 14px;
  align-items: start;
  color: #fff;
}

.contact-detail-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail-item strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 4px;
}

.contact-detail-item p {
  font-size: 15px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.tagline-box {
  font-size: 20px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  letter-spacing: 0.3px;
}

/* Contact Form */
.contact-form-wrapper {
  position: relative;
}

.contact-form {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
  position: relative;
}

.contact-form h3 {
  font-size: 26px;
  font-weight: 900;
  color: var(--text);
  margin: 0 0 8px;
}

.form-subtitle {
  font-size: 15px;
  color: var(--muted);
  margin: 0 0 28px;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.form-group label svg {
  color: var(--primary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--line);
  border-radius: 12px;
  font-size: 15px;
  font-family: var(--font);
  color: var(--text);
  background: var(--surface);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(1, 33, 105, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
  opacity: 0.6;
}

.form-submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 12px 32px rgba(1, 33, 105, 0.25);
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(1, 33, 105, 0.35);
}

.form-submit-btn:active {
  transform: translateY(0);
}

.form-privacy {
  font-size: 12px;
  color: var(--muted);
  margin: 16px 0 0;
  line-height: 1.6;
  text-align: center;
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, #0a1220, #080e1a);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 24px;
  margin-top: 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.brand-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.footer-tagline strong {
  color: rgba(255, 255, 255, 0.95);
  display: block;
  margin-top: 8px;
  font-size: 16px;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px;
}

.footer-col a {
  display: block;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-col a:hover {
  color: #fff;
  padding-left: 6px;
}

.footer-contact {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.footer-contact strong {
  color: rgba(255, 255, 255, 0.95);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* RESPONSIVE OVERRIDES */
body {
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .wrap {
    padding: 0 16px;
  }

  .page {
    margin: 10px auto 18px;
    border-radius: 18px;
  }

  .hero-content {
    padding: 44px 0 32px;
  }

  .hero-title {
    font-size: 46px;
    line-height: 1.15;
  }

  .hero-title-nowrap {
    white-space: normal;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-ctas {
    gap: 12px;
    margin-bottom: 32px;
  }

  .btn-large {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }

  .trust-stats {
    gap: 20px;
    flex-wrap: wrap;
  }

  .stat-number {
    font-size: 34px;
  }

  .section-title {
    font-size: 32px;
    line-height: 1.25;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .process-timeline,
  .final-cta-modern {
    margin: 0 12px;
    border-radius: 20px;
  }

  .contact-form {
    padding: 28px 22px;
  }
}

@media (max-width: 480px) {
  .wrap {
    padding: 0 12px;
  }

  .nav {
    height: auto;
    min-height: 68px;
    gap: 8px;
  }

  .brand {
    font-size: 16px;
    gap: 8px;
  }

  .brand .mark {
    width: 42px;
    height: 42px;
  }

  .cta {
    height: 40px;
    padding: 0 16px;
    font-size: 13px;
  }

  /* On very small screens, the header CTA can crowd the menu button */
  .cta {
    display: none;
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-image img {
    height: 260px;
  }

  .float-badge {
    right: 12px;
    bottom: 12px;
    padding: 10px 12px;
    gap: 8px;
  }

  .badge-icon {
    font-size: 22px;
  }

  .badge-title {
    font-size: 14px;
  }

  .badge-subtitle {
    font-size: 12px;
  }

  .timeline-marker {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .timeline-content h4 {
    font-size: 18px;
  }

  .contact-info h2 {
    font-size: 28px;
  }

  .contact-form {
    padding: 24px 16px;
    border-radius: 18px;
  }

  .footer-tagline,
  .footer-contact,
  .footer-col a {
    font-size: 13px;
  }
}

@media (max-width: 360px) {
  .hero-title {
    font-size: 34px;
  }

  .stat-number {
    font-size: 30px;
  }

  .btn-large {
    font-size: 15px;
  }

  .service-card {
    padding: 24px;
  }

  .differentiator-box {
    padding: 26px;
  }
}

/* Helpers */
[x-cloak] {
  display: none !important;
}

.form-alert {
  padding: 12px 14px;
  border-radius: 12px;
  margin: 12px 0 0;
  font-weight: 600;
  font-size: 14px;
}

.form-alert.success {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.22);
  color: #0f5132;
}

.form-alert.error {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.22);
  color: #7f1d1d;
}

.fill-gold svg {
  fill: var(--gold) !important;
  stroke: var(--gold) !important;
}

/* === V4 FIXES (layout + responsiveness) === */
.nav {
  height: 88px;
  gap: 18px;
}

nav.links {
  flex: 1;
  justify-content: center;
}

.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}

/* Hide hamburger on desktop (avoid white circle); show only on mobile */
.btn.menu {
  display: none !important;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 999px;
  justify-content: center;
}

@media (max-width: 980px) {
  .btn.menu {
    display: inline-flex !important;
  }
}

/* Full-width page (remove outer boxed container) */
.page {
  margin: 0;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  overflow: hidden;
}

@media (max-width: 768px) {
  .page {
    margin: 0;
    border-radius: 0;
  }
}

/* Slightly larger CTA to match taller header */
.cta {
  height: 48px;
  padding: 0 26px;
  font-size: 15px;
}




/* Floating corner button (like chat widget) */
.floating-finder {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 9999px;
  background: #f59e0b;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .20);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.floating-finder svg {
  stroke: #fff;
}

.floating-finder:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, .26);
  filter: brightness(1.03);
}

@media (max-width: 480px) {
  .floating-finder {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }
}

.floating-finder[data-label]::before {
  content: attr(data-label);
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: #111;
  border: 1px solid rgba(0, 0, 0, .10);
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  white-space: nowrap;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .14);
}

@keyframes homeChatLauncherFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

@keyframes homeChatLauncherGlow {

  0%,
  100% {
    box-shadow: 0 16px 36px rgba(1, 33, 105, .16);
  }

  50% {
    box-shadow: 0 22px 42px rgba(245, 158, 11, .24);
  }
}

@keyframes homeChatWave {

  0%,
  60%,
  100% {
    transform: rotate(0deg);
  }

  10% {
    transform: rotate(16deg);
  }

  20% {
    transform: rotate(-10deg);
  }

  30% {
    transform: rotate(16deg);
  }

  40% {
    transform: rotate(-4deg);
  }

  50% {
    transform: rotate(10deg);
  }
}

.floating-finder--chat {
  width: auto;
  min-width: auto;
  height: 46px;
  padding: 0 6px 0 0;
  border: 0;
  background: transparent;
  color: #0f172a;
  cursor: pointer;
  gap: 6px;
  box-shadow: none;
  animation: homeChatLauncherFloat 3.2s ease-in-out infinite;
  backdrop-filter: none;
}

.floating-finder--chat::before,
.floating-finder--chat::after {
  display: none;
}

.floating-finder--chat:hover {
  transform: translateY(-4px) translateX(-2px) scale(1.02);
  filter: none;
  box-shadow: none;
}

.floating-finder__text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  color: #012169;
  letter-spacing: -.02em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .72), 0 8px 20px rgba(255, 255, 255, .82), 0 10px 22px rgba(1, 33, 105, .10);
}

.floating-finder__emoji {
  display: inline-block;
  transform-origin: 70% 70%;
}

.floating-finder--chat:focus-visible {
  outline: none;
  transform: translateY(-2px);
}

.floating-finder--chat:focus-visible .floating-finder__text,
.floating-finder--chat:hover .floating-finder__text {
  color: #0b2f84;
}

.floating-finder--chat:hover .floating-finder__emoji,
.floating-finder--chat:focus-visible .floating-finder__emoji {
  animation: homeChatWave .85s ease-in-out 1;
}

.home-chatbot {
  position: fixed;
  right: 108px;
  bottom: 118px;
  width: min(430px, calc(100vw - 170px));
  z-index: 9998;
}

.home-chatbot__card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(249, 251, 255, 1) 100%);
  border: 1px solid rgba(148, 163, 184, .18);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.18);
}

.home-chatbot__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 18px 16px;
  background: linear-gradient(135deg, #012169 0%, #12358b 58%, #f59e0b 140%);
  color: #fff;
}

.home-chatbot__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .12);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.home-chatbot__title-wrap h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.2;
  font-weight: 800;
}

.home-chatbot__title-wrap p {
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, .9);
  max-width: 270px;
}

.home-chatbot__close {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .12);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex: 0 0 auto;
  transition: transform .2s ease, background .2s ease;
}

.home-chatbot__close:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .18);
}

.home-chatbot__body {
  padding: 16px;
  max-height: min(70vh, 560px);
  overflow-y: auto;
  background:
    radial-gradient(circle at top right, rgba(245, 158, 11, .10), transparent 34%),
    linear-gradient(180deg, #fffdfa 0%, #f8fbff 100%);
}

.home-chatbot__conversation {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.home-chatbot__message {
  max-width: 92%;
  padding: 13px 15px;
  border-radius: 20px;
  font-size: 14px;
  line-height: 1.6;
  display: grid;
  gap: 5px;
}

.home-chatbot__message strong {
  font-size: 15px;
}

.home-chatbot__message--bot {
  background: rgba(255, 255, 255, .96);
  color: #111827;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
  border-bottom-left-radius: 8px;
}

.home-chatbot__message--user {
  margin-left: auto;
  background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
  color: #fff;
  box-shadow: 0 14px 28px rgba(249, 115, 22, .18);
  border-bottom-right-radius: 8px;
}

.home-chatbot__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.home-chatbot__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, .95);
  color: #111827;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.home-chatbot__chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.09);
  border-color: rgba(1, 33, 105, .16);
}

.home-chatbot__chip--primary {
  background: linear-gradient(135deg, #012169 0%, #23439b 100%);
  border-color: transparent;
  color: #fff;
}

.home-chatbot__thinking {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #64748b;
}

.home-chatbot__thinking span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #f59e0b;
  display: inline-block;
  animation: homeChatThinking 1.2s ease-in-out infinite;
}

.home-chatbot__thinking span:nth-child(2) {
  animation-delay: .18s;
}

.home-chatbot__thinking span:nth-child(3) {
  animation-delay: .36s;
}

@keyframes homeChatThinking {

  0%,
  80%,
  100% {
    opacity: .35;
    transform: scale(.75);
  }

  40% {
    opacity: 1;
    transform: scale(1);
  }
}

.home-chatbot__result {
  margin-top: 6px;
  padding-top: 6px;
}

.home-chatbot__cta-group {
  display: grid;
  gap: 12px;
}

.home-chatbot__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 16px;
  font-weight: 800;
  text-align: center;
}

.home-chatbot__btn--primary {
  background: #012169;
  color: #fff;
  box-shadow: 0 16px 30px rgba(1, 33, 105, .18);
}

.home-chatbot__secondary-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-chatbot__secondary-links a {
  font-size: 13px;
  font-weight: 700;
  color: #012169;
  text-decoration: underline;
}

.home-chatbot__footer-actions {
  margin-top: 8px;
  display: flex;
  justify-content: flex-end;
}

.home-chatbot__text-btn {
  border: 0;
  background: transparent;
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.home-chatbot__composer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px 12px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, .96);
}

.home-chatbot__input {
  flex: 1 1 auto;
  min-width: 0;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  padding: 0 16px;
  font-size: 14px;
  outline: none;
  background: #fff;
}

.home-chatbot__input:focus {
  border-color: rgba(1, 33, 105, 0.35);
  box-shadow: 0 0 0 4px rgba(1, 33, 105, 0.08);
}

.home-chatbot__send {
  flex: 0 0 auto;
  height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(135deg, #012169 0%, #23439b 100%);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.home-chatbot__send:disabled {
  opacity: .55;
  cursor: not-allowed;
}

.home-chatbot__helper {
  padding: 0 16px 15px;
  background: rgba(255, 255, 255, .96);
  font-size: 12px;
  color: #64748b;
}

@media (max-width: 768px) {
  .home-chatbot {
    right: 14px;
    left: 14px;
    width: auto;
    bottom: 80px;
  }

  .floating-finder--chat {
    right: 14px;
    height: 42px;
    padding: 0 4px 0 0;
  }

  .floating-finder__text {
    font-size: 22px;
  }

  .home-chatbot__message {
    max-width: 100%;
  }
}


/* ===== HERO SERVICES PANEL ===== */
.hero-services-card {
  background: var(--surface);
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(1, 33, 105, 0.08);
  padding: clamp(20px, 2.5vw, 40px);
  width: 100%;
  margin: 0;
  border: 1px solid var(--line);
}

.hero-services-heading {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.hero-services-kicker {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
  background: #fffbe7;
  padding: 4px 12px;
  border-radius: 999px;
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.service-accordion-item {
  margin-bottom: 8px;
  border-radius: 8px;
  background: var(--surface2);
  box-shadow: 0 1px 4px rgba(1, 33, 105, 0.04);
  transition: box-shadow 0.2s, background 0.2s;
  border-left: 2px solid #ffe066;
}

.service-accordion-item.active {
  box-shadow: 0 3px 12px rgba(1, 33, 105, 0.12);
  background: #fffbe7;
  border-left: 3px solid #e6c200;
}

.service-accordion-button {
  display: flex;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 12px 10px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
  box-shadow: none;
}

.service-accordion-button:hover {
  background: #fffbe7;
  color: #e6c200;
}

.service-accordion-left {
  display: flex;
  align-items: center;
  gap: 12px;
}


.service-human-icon {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  max-width: 44px !important;
  max-height: 44px !important;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.18), 0 1px 4px rgba(1, 33, 105, 0.12);
  border: 3px solid #fffbe7;
  margin-right: 12px;
  background: linear-gradient(135deg, #f3eaff 60%, #e7f3ff 100%);
  display: inline-block;
  transition: box-shadow 0.2s, transform 0.2s;
}

.service-accordion-item:hover .service-human-icon {
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.28), 0 2px 8px rgba(1, 33, 105, 0.18);
  transform: scale(1.08) rotate(-3deg);
}

.service-index {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: #FFD700;
  border-radius: 50%;
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  min-height: 36px !important;
  max-width: 36px !important;
  max-height: 36px !important;
  box-shadow: 0 1px 4px rgba(255, 215, 0, 0.12);
  border: 2px solid #fffbe7;
  margin-right: 4px;
  padding: 0 !important;
  line-height: 36px !important;
}

.service-index:hover {
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.18);
  transform: scale(1.05);
}

.service-accordion-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
  transition: color 0.18s;
}

.service-accordion-button:hover .service-accordion-title {
  color: #e6c200;
}

.service-accordion-content {
  padding: 0 10px 10px 52px;
  font-size: 0.92rem;
  color: var(--muted);
  background: none;
  border-radius: 0 0 8px 8px;
  animation: fadeInAccordion 0.3s;
}

@keyframes fadeInAccordion {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-services-note {
  margin-top: 14px;
  font-size: 0.92rem;
  color: #a18a3a;
  background: #fffbe7;
  border-radius: 8px;
  padding: 8px 12px;
  text-align: center;
  box-shadow: 0 1px 6px rgba(255, 205, 0, 0.08);
}

/* subtle UI transitions */
a, button, .cta, .card, .section-card, .service-card, .pill-link, .faq-card, .btn-primary, .btn-secondary {
  transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease, border-color .22s ease, color .22s ease;
}
button:hover, .cta:hover, .card:hover, .section-card:hover, .service-card:hover, .pill-link:hover, .faq-card:hover {
  transform: translateY(-2px);
}

/* === FULL WIDTH RESPONSIVE ENHANCEMENTS === */
/* Make form grids stack on mobile */
@media (max-width: 640px) {
  div[style*="display:grid"][style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
  
  /* Stack payment form inputs on small screens */
  div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  
  /* Adjust padding for lead capture and problem solution sections */
  section[style*="padding:60px 0"],
  section[style*="padding:70px 0"],
  section[style*="padding:64px 0"],
  section[style*="padding:48px 0"] {
    padding: 40px 0 !important;
  }
  
  /* Adjust inner section padding */
  div[style*="padding:48px"],
  div[style*="padding:36px"],
  div[style*="padding:28px"] {
    padding: 24px !important;
  }
}

@media (max-width: 480px) {
  /* Further reduce padding on very small screens */
  section[style*="padding"] {
    padding: 32px 0 !important;
  }
  
  div[style*="padding:24px"] {
    padding: 16px !important;
  }
  
  /* Ensure text is readable on small screens */
  h2[style*="font-size:2rem"],
  h2[style*="font-size:1.9rem"],
  h2[style*="font-size:1.8rem"] {
    font-size: 1.5rem !important;
  }
  
  /* Adjust gap spacing */
  div[style*="gap:60px"] {
    gap: 32px !important;
  }
  
  div[style*="gap:48px"] {
    gap: 24px !important;
  }
}
