
: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: 1180px;

  --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;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

/* 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;
  }
}

.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 {
  margin: 18px auto 26px;
  border-radius: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  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: 1.1fr 0.9fr;
  gap: 60px;
  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: 72px;
  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: 980px) {
  .hero-title {
    font-size: 56px;
    letter-spacing: -1px;
  }
}

.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: 18px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 32px;
  max-width: 580px;
  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: 18px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 auto;
  max-width: 800px;
}

/* 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;        /* orange */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 18px 40px rgba(0,0,0,.20);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.floating-finder svg{
  stroke: #fff;
}

.floating-finder:hover{
  transform: translateY(-2px);
  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);
}