/* ===== CSS Variables ===== */
:root {
    --background: hsl(220, 20%, 97%);
    --foreground: hsl(222, 47%, 11%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(222, 47%, 11%);
    --primary: #122349;
    --primary-foreground: #f8c630;
    --muted: hsl(220, 14%, 96%);
    --muted-foreground: hsl(228, 10%, 10%);
    --border: hsl(220, 13%, 91%);
    --gold: hsl(45, 93%, 58%);
    --gold-dark: hsl(38, 92%, 50%);
    --navy: hsl(222, 60%, 18%);
    --navy-light: hsl(222, 45%, 28%);
    --radius: 0.75rem;

    --gradient-gold: linear-gradient(135deg, hsl(45, 93%, 58%) 0%, hsl(38, 92%, 50%) 100%);
    --shadow-sm: 0 2px 8px -2px hsl(222, 60%, 18%, 0.08);
    --shadow-md: 0 8px 24px -8px hsl(222, 60%, 18%, 0.12);
    --shadow-lg: 0 16px 48px -12px hsl(222, 60%, 18%, 0.18);
    --shadow-gold: 0 8px 32px -8px hsl(45, 93%, 58%, 0.4);
  }

  /* ===== Reset & Base ===== */
  *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
  }

  a {
    text-decoration: none;
    color: inherit;
  }

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

  button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
  }

  /* ===== Utility Classes ===== */
  .container-custom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
  }

  .section-padding {
    padding: 4rem 1rem;
  }

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

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

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

  .text-gold {
    color: var(--gold);
  }

  .text-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hidden {
    display: none !important;
  }

  /* ===== Buttons ===== */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    white-space: nowrap;
  }

  .btn-ghost {
    padding: 0.5rem 1rem;
    color: var(--foreground);
    background: transparent;
  }

  .btn-ghost:hover {
    background: hsl(220, 14%, 96%);
  }

  .btn-hero {
    padding: 0.75rem 1.5rem;
    background: var(--gradient-gold);
    color: var(--primary);
    box-shadow: var(--shadow-gold);
  }

  .btn-hero:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px -8px hsl(45, 93%, 58%, 0.5);
  }

  .btn-hero-outline {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
  }

  .btn-hero-outline:hover {
    background: var(--gold);
    color: var(--primary);
  }

  .btn-xl {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  /* ===== Section Headers ===== */
  .section-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
  }

  .section-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    background: hsl(45, 93%, 58%, 0.1);
    color: var(--gold);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
  }

  .section-title {
    font-size: clamp(1.875rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1.5rem;
  }

  .section-title.light {
    color: var(--primary-foreground);
  }

  .section-title-left {
    font-size: clamp(1.875rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1.5rem;
    text-align: left;
  }

  .section-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
  }

  .section-subtitle.light {
    color: hsl(45, 93%, 58%, 0.7);
  }

  /* ===== Navbar ===== */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: #fff  !important;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }
.navbar-spacing{
    padding: 8px 0px;
}
  .navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
  }

  .logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--foreground);
  }

  .nav-links {
    display: none;
    gap: 2rem;
  }

  .nav-links a {
    color: var(--muted-foreground);
    font-weight: 500;
    transition: color 0.2s;
  }

  .nav-links a:hover {
    color: var(--foreground);
  }

  .nav-cta {
    display: none;
    gap: 1rem;
  }

  .mobile-menu-btn {
    display: block;
    color: var(--foreground);
  }

  .mobile-menu {
    padding: 1rem;
    border-top: 1px solid var(--border);
    animation: fadeIn 0.3s ease;
  }

  .mobile-menu a {
    display: block;
    padding: 0.75rem 0;
    color: var(--muted-foreground);
    font-weight: 500;
  }

  .mobile-menu-cta {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
  }

  .mobile-menu-cta .btn {
    flex: 1;
  }

  /* ===== Hero Section ===== */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--navy-light) 50%, var(--primary) 100%);
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, hsl(222, 60%, 18%, 0.9) 0%, hsl(222, 60%, 18%, 0.5) 50%, transparent 100%);
  }

  .hero-decorative-1 {
    position: absolute;
    top: 10rem;
    right: 5rem;
    width: 24rem;
    height: 24rem;
    background: hsl(45, 93%, 58%, 0.1);
    border-radius: 50%;
    filter: blur(60px);
    animation: pulse-slow 4s ease-in-out infinite;
  }

  .hero-decorative-2 {
    position: absolute;
    bottom: 5rem;
    left: 2.5rem;
    width: 18rem;
    height: 18rem;
    background: hsl(45, 93%, 58%, 0.1);
    border-radius: 50%;
    filter: blur(60px);
    animation: pulse-slow 4s ease-in-out infinite;
  }

  .hero-content {
    position: relative;
    z-index: 10;
  }

  .hero-inner {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: hsl(45, 93%, 58%, 0.1);
    border: 1px solid hsl(45, 93%, 58%, 0.2);
    margin-bottom: 2rem;
  }

  .badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 2s infinite;
  }

  .hero-badge span:last-child {
    color: var(--gold);
    font-size: 0.875rem;
    font-weight: 500;
  }

  .hero-title {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--primary-foreground);
    margin-bottom: 1.5rem;
  }

  .hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: hsl(45, 93%, 58%, 0.8);
    max-width: 42rem;
    margin: 0 auto 2rem;
  }

  .hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
  }

  .hero-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }

  .highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: hsl(45, 93%, 58%, 0.8);
    font-weight: 500;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 5rem;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
  }

  .stat-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: 1rem;
    background: hsl(0, 0%, 100%, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid hsl(45, 93%, 58%, 0.1);
  }

  .stat-value {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
  }

  .stat-label {
    font-size: 0.875rem;
    color: hsl(45, 93%, 58%, 0.7);
  }

  .scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: bounce 2s infinite;
  }

  .scroll-indicator span {
    color: hsl(45, 93%, 58%, 0.6);
    font-size: 0.875rem;
  }

  .scroll-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    border: 2px solid hsl(45, 93%, 58%, 0.3);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 0.5rem;
  }

  .scroll-dot {
    width: 0.375rem;
    height: 0.75rem;
    border-radius: 9999px;
    background: var(--gold);
    animation: pulse 2s infinite;
  }

  /* ===== Services Section ===== */
  .services-grid {
    display: grid;
    gap: 1.5rem;
  }

  .service-card {
    padding: 2rem;
    border-radius: 1rem;
    background: var(--card);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
  }

  .service-card:hover {
    border-color: hsl(45, 93%, 58%, 0.3);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
  }

  .service-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, hsl(45, 93%, 58%, 0.2) 0%, hsl(45, 93%, 58%, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--gold);
    transition: transform 0.3s;
  }

  .service-card:hover .service-icon {
    transform: scale(1.1);
  }

  .service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.75rem;
  }

  .service-card p {
    color: var(--muted-foreground);
    line-height: 1.7;
  }

  /* ===== Video Section ===== */
  .video-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
  }

  .video-content .section-badge {
    margin-bottom: 1rem;
  }

  .video-description {
    color: var(--muted-foreground);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
  }

  .video-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .video-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .feature-dot {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: hsl(45, 93%, 58%, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .dot-inner {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--gold);
  }

  .video-feature span {
    color: var(--foreground);
    font-weight: 500;
  }

  .video-player-container {
    position: relative;
  }

  .video-player {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }

  .video-thumbnail {
    width: 100%;
    height: 400px;
    object-fit: cover;
  }

  .video-overlay {
    position: absolute;
    inset: 0;
    background: hsl(222, 60%, 18%, 0.4);
    transition: background 0.3s;
  }

  .video-player:hover .video-overlay {
    background: hsl(222, 60%, 18%, 0.3);
  }

  .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: var(--shadow-gold);
    transition: transform 0.3s;
  }

  .video-player:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
  }

  .play-button svg {
    margin-left: 4px;
  }

  .video-info {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background: hsl(0, 0%, 100%, 0.9);
    backdrop-filter: blur(4px);
    border-radius: 0.75rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .video-info-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    background: hsl(45, 93%, 58%, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
  }

  .video-info-title {
    font-weight: 600;
    color: var(--foreground);
  }

  .video-info-meta {
    font-size: 0.875rem;
    color: var(--muted-foreground);
  }

  .video-decorative {
    position: absolute;
    z-index: -1;
    top: -1.5rem;
    right: -1.5rem;
    width: 100%;
    height: 100%;
    border-radius: 1.5rem;
    background: hsl(45, 93%, 58%, 0.2);
  }

  .video-player iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 1.5rem;
  }

  /* ===== How It Works Section ===== */
  .how-it-works {
    position: relative;
    overflow: hidden;
  }

  .section-bg-element-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background: hsl(45, 93%, 58%, 0.05);
    border-radius: 50%;
    filter: blur(60px);
  }

  .section-bg-element-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 18rem;
    height: 18rem;
    background: hsl(45, 93%, 58%, 0.05);
    border-radius: 50%;
    filter: blur(60px);
  }

  .how-it-works .container-custom {
    position: relative;
    z-index: 10;
  }

  .steps-grid {
    display: grid;
    gap: 2rem;
  }

  .step-card {
    position: relative;
    background: hsl(0, 0%, 100%, 0.05);
    backdrop-filter: blur(4px);
    border: 1px solid hsl(45, 93%, 58%, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
  }

  .step-card:hover {
    border-color: hsl(45, 93%, 58%, 0.3);
    transform: translateY(-8px);
  }

  .step-connector {
    display: none;
  }

  .step-number {
    position: absolute;
    top: -1rem;
    right: -1rem;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--primary);
  }

  .step-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    background: hsl(45, 93%, 58%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--gold);
    transition: background 0.3s;
  }

  .step-card:hover .step-icon {
    background: hsl(45, 93%, 58%, 0.2);
  }

  .step-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-foreground);
    margin-bottom: 0.75rem;
  }

  .step-card p {
    color: hsl(45, 93%, 58%, 0.7);
    line-height: 1.7;
  }

  /* ===== Global Reach Section ===== */
  .global-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
  }

  .global-map {
    position: relative;
  }

  .map-container {
    aspect-ratio: 1;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, hsl(222, 60%, 18%, 0.05) 0%, hsl(45, 93%, 58%, 0.05) 100%);
    border: 1px solid var(--border);
    padding: 2rem;
    position: relative;
    overflow: hidden;
  }

  .map-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .map-ping {
    position: absolute;
    inset: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--gold);
    animation: ping 2s infinite;
  }

  .map-point {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
    color: var(--primary);
  }

  .map-label {
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-weight: 600;
    color: var(--foreground);
  }

  .map-point-small {
    position: absolute;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: hsl(45, 93%, 58%, 0.5);
    animation: pulse 2s infinite;
  }

  .point-label {
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 0.75rem;
    color: var(--muted-foreground);
  }

  .map-grid {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    color: var(--foreground);
  }

  .global-content .section-badge {
    margin-bottom: 1rem;
  }

  .global-description {
    color: var(--muted-foreground);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
  }

  .country-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .country-card {
    padding: 1rem;
    border-radius: 0.75rem;
    background: var(--card);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
  }

  .country-card:hover {
    border-color: hsl(45, 93%, 58%, 0.3);
    box-shadow: var(--shadow-md);
  }

  .country-flag {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
  }

  .country-card h4 {
    font-weight: 600;
    color: var(--foreground);
  }

  .country-card p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
  }

  /* ===== Testimonials Section ===== */
  .testimonials-grid {
    display: grid;
    gap: 2rem;
  }

  .testimonial-card {
    position: relative;
    padding: 2rem;
    border-radius: 1rem;
    background: var(--card);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
  }

  .testimonial-card:hover {
    border-color: hsl(45, 93%, 58%, 0.3);
    box-shadow: var(--shadow-lg);
  }

  .quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    opacity: 0.1;
    color: var(--gold);
    transition: opacity 0.3s;
  }

  .testimonial-card:hover .quote-icon {
    opacity: 0.2;
  }

  .stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
  }

  .testimonial-text {
    color: var(--foreground);
    line-height: 1.8;
    margin-bottom: 2rem;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .testimonial-author img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid hsl(45, 93%, 58%, 0.2);
  }

  .testimonial-author h4 {
    font-weight: 600;
    color: var(--foreground);
  }

  .testimonial-author p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
  }

  .testimonial-author .location {
    font-size: 0.75rem;
    color: var(--gold);
  }

  .trust-badges {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid var(--border);
    text-align: center;
  }

  .trust-badges p {
    color: var(--muted-foreground);
    margin-bottom: 2rem;
  }

  .badges-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    opacity: 0.6;
  }

  .badges-list span {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(220, 9%, 46%, 0.5);
  }

  /* ===== FAQ Section ===== */
  .faq-grid {
    display: grid;
    gap: 4rem;
    align-items: start;
  }

  .faq-content {
    position: sticky;
    top: 8rem;
  }

  .faq-description {
    color: var(--muted-foreground);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
  }

  .faq-contact-card {
    padding: 1.5rem;
    border-radius: 1rem;
    background: var(--card);
    border: 1px solid var(--border);
  }

  .faq-contact-card h3 {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
  }

  .faq-contact-card p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
  }

  .faq-contact-link {
    color: var(--gold);
    font-weight: 600;
  }

  .faq-contact-link:hover {
    text-decoration: underline;
  }

  .faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: border-color 0.3s;
  }

  .faq-item.active {
    border-color: hsl(45, 93%, 58%, 0.3);
  }

  .faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
    text-align: left;
    cursor: pointer;
  }

  .faq-trigger:hover {
    color: var(--gold);
  }

  .faq-chevron {
    transition: transform 0.3s;
    flex-shrink: 0;
  }

  .faq-item.active .faq-chevron {
    transform: rotate(180deg);
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  .faq-item.active .faq-answer {
    max-height: 200px;
  }

  .faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--muted-foreground);
    line-height: 1.7;
  }

  /* ===== CTA Section ===== */
  .cta {
    position: relative;
    overflow: hidden;
  }

  .cta-bg-1 {
    position: absolute;
    top: 0;
    left: 25%;
    width: 24rem;
    height: 24rem;
    background: hsl(45, 93%, 58%, 0.1);
    border-radius: 50%;
    filter: blur(60px);
  }

  .cta-bg-2 {
    position: absolute;
    bottom: 0;
    right: 25%;
    width: 18rem;
    height: 18rem;
    background: hsl(45, 93%, 58%, 0.1);
    border-radius: 50%;
    filter: blur(60px);
  }

  .cta-container {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 56rem;
    margin: 0 auto;
  }

  .cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: hsl(45, 93%, 58%, 0.1);
    border: 1px solid hsl(45, 93%, 58%, 0.2);
    margin-bottom: 2rem;
    color: var(--gold);
  }

  .cta-badge span {
    font-size: 0.875rem;
    font-weight: 500;
  }

  .cta-title {
    font-size: clamp(1.875rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--primary-foreground);
    margin-bottom: 1.5rem;
  }

  .cta-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: hsl(45, 93%, 58%, 0.8);
    max-width: 42rem;
    margin: 0 auto 2.5rem;
  }

  .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
  }

  .cta-trust-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    color: hsl(45, 93%, 58%, 0.7);
  }

  .cta-trust-points span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .trust-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--gold);
  }

  /* ===== Footer ===== */
  .footer {
    background: var(--primary);
    padding-top: 4rem;
    padding-bottom: 2rem;
  }

  .footer-grid {
    display: grid;
    gap: 2rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid hsl(45, 93%, 58%, 0.1);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand .logo {
    margin-bottom: 1.5rem;
  }

  .footer-brand .logo-text {
    color: var(--primary-foreground);
  }

  .footer-description {
    color: hsl(45, 93%, 58%, 0.7);
    max-width: 24rem;
    margin-bottom: 1.5rem;
  }

  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: hsl(45, 93%, 58%, 0.7);
  }

  .contact-item svg {
    color: var(--gold);
  }

  .footer-links h4 {
    font-weight: 600;
    color: var(--primary-foreground);
    margin-bottom: 1rem;
  }

  .footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer-links a {
    color: hsl(45, 93%, 58%, 0.7);
    transition: color 0.2s;
  }

  .footer-links a:hover {
    color: var(--gold);
  }

  .footer-bottom {
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .footer-bottom p {
    color: hsl(45, 93%, 58%, 0.6);
    font-size: 0.875rem;
  }

  .social-links {
    display: flex;
    gap: 1rem;
  }

  .social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: hsl(45, 93%, 58%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(45, 93%, 58%, 0.7);
    transition: all 0.3s;
  }

  .social-link:hover {
    background: var(--gold);
    color: var(--primary);
  }

  /* ===== Animations ===== */
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes scaleIn {
    from {
      opacity: 0;
      transform: scale(0.9);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
  }

  @keyframes pulse-slow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
  }

  @keyframes ping {
    0% {
      transform: scale(1);
      opacity: 1;
    }
    75%, 100% {
      transform: scale(2);
      opacity: 0;
    }
  }

  @keyframes bounce {
    0%, 100% {
      transform: translateX(-50%) translateY(0);
    }
    50% {
      transform: translateX(-50%) translateY(-10px);
    }
  }

  .animate-fade-up {
    animation: fadeUp 0.8s ease-out forwards;
  }

  .animate-fade-up-delay {
    animation: fadeUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
  }

  .animate-scale-in {
    animation: scaleIn 0.6s ease-out forwards;
    opacity: 0;
  }

  /* ===== Responsive ===== */
  @media (min-width: 640px) {
    .container-custom {
      padding: 0 1.5rem;
    }

    .section-padding {
      padding: 5rem 1.5rem;
    }

    .hero-cta {
      flex-direction: row;
    }

    .hero-stats {
      grid-template-columns: repeat(4, 1fr);
    }

    .country-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .cta-buttons {
      flex-direction: row;
    }
  }

  @media (min-width: 768px) {
    .section-padding {
      padding: 6rem 1.5rem;
    }

    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .footer-brand {
      grid-column: 1 / -1;
    }

    .footer-bottom {
      flex-direction: row;
      justify-content: space-between;
    }
  }

  @media (min-width: 1024px) {
    .container-custom {
      padding: 0 2rem;
    }

    .nav-links {
      display: flex;
    }

    .nav-cta {
      display: flex;
    }

    .mobile-menu-btn {
      display: none;
    }

    .services-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .video-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
      grid-template-columns: repeat(4, 1fr);
    }

    .step-connector {
      display: block;
      position: absolute;
      top: 3rem;
      left: 100%;
      width: 100%;
      height: 2px;
      background: linear-gradient(90deg, hsl(45, 93%, 58%, 0.5) 0%, transparent 100%);
    }

    .step-card:last-child .step-connector {
      display: none;
    }

    .global-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .faq-grid {
      grid-template-columns: 1fr 1.5fr;
    }

    .faq-content {
      position: sticky;
      top: 8rem;
    }

    .footer-grid {
      grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }

    .footer-brand {
      grid-column: auto;
    }
  }

  /* ===== Scrollbar ===== */
  ::-webkit-scrollbar {
    width: 8px;
  }

  ::-webkit-scrollbar-track {
    background: var(--muted);
  }

  ::-webkit-scrollbar-thumb {
    background: var(--navy);
    border-radius: 4px;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: var(--navy-light);
  }