/* ============================================================
   WHITE LABEL SOLUTIONS | Main Stylesheet
   Design: Premium Agency | Navy + Electric Blue
   Fonts: Syne (headings) + DM Sans (body)
============================================================ */

/* ===== VARIABLES ===== */
:root {
  --navy:        #0B1F3A;
  --navy-mid:    #112847;
  --navy-deep:   #071428;
  --blue:        #1E6FFF;
  --blue-light:  #5492FF;
  --blue-glow:   rgba(30,111,255,0.18);
  --blue-dark:   #0A50CC;
  --white:       #FFFFFF;
  --off-white:   #F5F8FF;
  --light-bg:    #EEF3FC;
  --border:      #DDE5F2;
  --mid-gray:    #7A8FA6;
  --body-text:   #2C3E55;
  --light-text:  #6B7F96;
  --success:     #00C897;
  --error:       #FF4255;
  --gradient-hero: linear-gradient(140deg, #071428 0%, #0B1F3A 45%, #0D2A50 100%);
  --gradient-blue: linear-gradient(135deg, #1E6FFF 0%, #0A50CC 100%);
  --gradient-card: linear-gradient(160deg, #ffffff 0%, #F5F8FF 100%);
  --shadow-xs:   0 1px 4px rgba(11,31,58,0.07);
  --shadow-sm:   0 2px 12px rgba(11,31,58,0.09);
  --shadow-md:   0 8px 28px rgba(11,31,58,0.13);
  --shadow-lg:   0 20px 60px rgba(11,31,58,0.18);
  --shadow-blue: 0 8px 36px rgba(30,111,255,0.28);
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   40px;
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --transition:  all 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  --font-head:   'Syne', sans-serif;
  --font-body:   'DM Sans', sans-serif;
  --max-w:       1200px;
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p  { font-size: 1rem; line-height: 1.75; color: var(--body-text); }

/* ===== UTILITIES ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 70px 0; }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-glow);
  border: 1px solid rgba(30,111,255,0.2);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-title span { color: var(--blue); }
.section-desc {
  font-size: 1.05rem;
  color: var(--light-text);
  max-width: 620px;
  line-height: 1.8;
}
.section-header { margin-bottom: 60px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-desc { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: var(--gradient-blue);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(30,111,255,0.38);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-blue {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
}
.btn-outline-blue:hover {
  background: var(--blue);
  color: var(--white);
}
.btn-arrow svg {
  transition: transform 0.3s var(--ease);
}
.btn-arrow:hover svg { transform: translateX(4px); }

/* ===== HEADER / NAV ===== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 20px 0;
}
#header.scrolled {
  background: rgba(7, 20, 40, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 40px;
  height: 40px;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}
.logo-sub {
  font-size: 0.62rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
nav a:hover,
nav a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.nav-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 600 !important;
}
.nav-cta:hover {
  background: var(--blue-dark) !important;
  transform: translateY(-1px);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  border: none;
  background: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy-deep);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  padding: 10px 0;
  transition: var(--transition);
  width: 100%;
  text-align: center;
}
.mobile-nav a:hover { color: var(--white); }
.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2rem;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
}

/* ===== HERO SECTION ===== */
#hero {
  background: var(--gradient-hero);
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30,111,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,111,255,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-orb-1 {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(30,111,255,0.15) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}
.hero-orb-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(30,111,255,0.08) 0%, transparent 70%);
  bottom: -50px;
  left: 10%;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(30,111,255,0.12);
  border: 1px solid rgba(30,111,255,0.3);
  border-radius: 50px;
  padding: 6px 16px 6px 8px;
  margin-bottom: 28px;
  animation: fadeInDown 0.7s var(--ease) both;
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero-badge span {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.04em;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.7s 0.1s var(--ease) both;
}
.hero-title .accent { color: var(--blue-light); }
.hero-desc {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.7);
  max-width: 620px;
  margin-bottom: 40px;
  line-height: 1.8;
  animation: fadeInUp 0.7s 0.2s var(--ease) both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
  animation: fadeInUp 0.7s 0.3s var(--ease) both;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: fadeInUp 0.7s 0.4s var(--ease) both;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.hero-trust-item svg {
  color: var(--blue-light);
}
.hero-countries {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 6px 14px;
  margin-top: 24px;
  animation: fadeInUp 0.7s 0.5s var(--ease) both;
  width: fit-content;
}
.hero-country-flag {
  font-size: 1.1rem;
}
.hero-countries span {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
}
.hero-countries span.sep {
  color: rgba(255,255,255,0.25);
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.35);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2.5s infinite;
}
.hero-scroll svg { color: rgba(255,255,255,0.35); }

/* ===== STATS SECTION ===== */
#stats {
  background: var(--navy);
  padding: 0;
}
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.stat-item {
  padding: 44px 32px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
  position: relative;
  transition: var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(30,111,255,0.06); }
.stat-number {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number .suffix { color: var(--blue-light); }
.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  letter-spacing: 0.03em;
}
.stat-divider {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width 0.4s var(--ease);
}
.stat-item:hover .stat-divider { width: 40px; }

/* ===== SERVICES SECTION ===== */
#services {
  background: var(--off-white);
  padding: 100px 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--blue-glow);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--blue);
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--blue);
  color: var(--white);
}
.service-card h3 {
  margin-bottom: 6px;
  font-size: 1.15rem;
}
.service-tagline {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.service-card p {
  font-size: 0.93rem;
  color: var(--light-text);
  line-height: 1.75;
  margin-bottom: 20px;
}
.service-coverage {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.coverage-tag {
  font-size: 0.73rem;
  font-weight: 600;
  background: var(--light-bg);
  color: var(--blue);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.03em;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--blue);
  margin-top: 16px;
  transition: var(--transition);
}
.service-link:hover { gap: 10px; }

/* ===== HOW IT WORKS ===== */
#how-it-works {
  background: var(--white);
  padding: 100px 0;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--border), var(--border), transparent);
  z-index: 0;
}
.step-item {
  padding: 0 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 72px;
  height: 72px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  transition: var(--transition);
}
.step-item:hover .step-number {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.step-item h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.step-item p {
  font-size: 0.9rem;
  color: var(--light-text);
  line-height: 1.7;
}

/* ===== WHY CHOOSE US ===== */
#why-us {
  background: var(--navy);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
#why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(30,111,255,0.08) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(30,111,255,0.05) 0%, transparent 50%);
  pointer-events: none;
}
#why-us .section-title { color: var(--white); }
#why-us .section-desc { color: rgba(255,255,255,0.55); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(30,111,255,0.3);
  transform: translateY(-4px);
}
.why-icon {
  width: 50px;
  height: 50px;
  background: rgba(30,111,255,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  margin-bottom: 18px;
}
.why-card h3 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.why-card p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.75;
}

/* ===== TESTIMONIALS ===== */
#testimonials {
  background: var(--off-white);
  padding: 100px 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.testimonial-quote {
  font-size: 3rem;
  color: var(--blue-light);
  font-family: var(--font-head);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.4;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: #F5A623;
  font-size: 1rem;
}
.testimonial-text {
  font-size: 0.95rem;
  color: var(--body-text);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 48px;
  height: 48px;
  background: var(--gradient-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}
.author-info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
}
.author-info span {
  font-size: 0.8rem;
  color: var(--light-text);
}
.author-country {
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--light-bg);
  color: var(--blue);
  padding: 2px 10px;
  border-radius: 50px;
  border: 1px solid var(--border);
  margin-top: 4px;
  display: inline-block;
}

/* ===== PRICING SECTION ===== */
#pricing {
  background: var(--white);
  padding: 100px 0;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: center;
}
.pricing-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
  background: var(--white);
}
.pricing-card.featured {
  border-color: var(--blue);
  box-shadow: var(--shadow-blue);
  transform: scale(1.03);
  background: var(--gradient-card);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-blue);
  color: var(--white);
  font-size: 0.73rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 50px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.pricing-tier {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}
.pricing-name {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.pricing-desc {
  font-size: 0.88rem;
  color: var(--light-text);
  line-height: 1.7;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.pricing-features {
  margin-bottom: 32px;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--body-text);
  margin-bottom: 10px;
  line-height: 1.5;
}
.pricing-features li svg {
  color: var(--success);
  flex-shrink: 0;
  margin-top: 2px;
}
.pricing-cta {
  display: block;
  text-align: center;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.93rem;
  transition: var(--transition);
}
.pricing-cta.solid {
  background: var(--gradient-blue);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.pricing-cta.solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(30,111,255,0.38);
}
.pricing-cta.outline {
  border: 1.5px solid var(--blue);
  color: var(--blue);
}
.pricing-cta.outline:hover {
  background: var(--blue);
  color: var(--white);
}

/* ===== FAQ SECTION ===== */
#faqs {
  background: var(--off-white);
  padding: 100px 0;
}
.faq-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
}
.faq-sidebar {
  position: sticky;
  top: 100px;
}
.faq-sidebar h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 16px;
}
.faq-nav-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.faq-nav-btn {
  text-align: left;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--light-text);
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}
.faq-nav-btn:hover,
.faq-nav-btn.active {
  color: var(--blue);
  background: rgba(30,111,255,0.08);
}
.faq-nav-btn.active { font-weight: 600; }
.faq-content { min-width: 0; }
.faq-group {
  display: none;
}
.faq-group.active { display: block; }
.faq-group-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border);
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--white);
  transition: var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-family: var(--font-body);
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--navy);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}
.faq-question:hover { color: var(--blue); }
.faq-question.open { color: var(--blue); }
.faq-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mid-gray);
  transition: var(--transition);
}
.faq-question.open .faq-icon {
  background: var(--blue);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.36s var(--ease);
}
.faq-answer-inner {
  padding: 0 22px 18px;
  font-size: 0.9rem;
  color: var(--light-text);
  line-height: 1.8;
}

/* ===== BLOG SECTION ===== */
#blog {
  background: var(--white);
  padding: 100px 0;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.blog-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  transition: var(--transition);
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.blog-thumb {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.blog-thumb-1 { background: linear-gradient(135deg, #0B1F3A 0%, #1E6FFF 100%); }
.blog-thumb-2 { background: linear-gradient(135deg, #071428 0%, #0D2A50 100%); }
.blog-thumb-3 { background: linear-gradient(135deg, #112847 0%, #1E6FFF 100%); }
.blog-thumb-icon {
  font-size: 3.5rem;
  opacity: 0.6;
}
.blog-body {
  padding: 24px 26px 28px;
}
.blog-cat {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.blog-card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.45;
}
.blog-card p {
  font-size: 0.87rem;
  color: var(--light-text);
  line-height: 1.7;
  margin-bottom: 18px;
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--mid-gray);
}
.blog-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}
.blog-cta-wrap {
  text-align: center;
}

/* ===== CONTACT SECTION ===== */
#contact {
  background: var(--off-white);
  padding: 100px 0;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 {
  margin-bottom: 16px;
}
.contact-info .section-desc {
  margin-bottom: 40px;
}
.contact-points {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-point-icon {
  width: 46px;
  height: 46px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
  box-shadow: var(--shadow-xs);
}
.contact-point-text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.contact-point-text span {
  font-size: 0.85rem;
  color: var(--light-text);
}
.contact-guarantee {
  margin-top: 36px;
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: var(--shadow-xs);
}
.contact-guarantee svg { color: var(--success); flex-shrink: 0; margin-top: 2px; }
.contact-guarantee p {
  font-size: 0.85rem;
  color: var(--body-text);
  line-height: 1.65;
}
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
}
.form-title {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-subtitle {
  font-size: 0.87rem;
  color: var(--light-text);
  margin-bottom: 32px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.form-group label .req {
  color: var(--error);
  margin-left: 2px;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--body-text);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(30,111,255,0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select { cursor: pointer; }
.form-submit {
  margin-top: 8px;
}
.form-submit .btn {
  width: 100%;
  justify-content: center;
  padding: 15px 32px;
  font-size: 0.97rem;
}
.form-note {
  font-size: 0.78rem;
  color: var(--light-text);
  text-align: center;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.form-note svg { color: var(--success); }
#form-message {
  display: none;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: center;
}
#form-message.success {
  background: rgba(0,200,151,0.1);
  border: 1px solid rgba(0,200,151,0.3);
  color: #007A5E;
  display: block;
}
#form-message.error {
  background: rgba(255,66,85,0.08);
  border: 1px solid rgba(255,66,85,0.2);
  color: var(--error);
  display: block;
}

/* ===== FOOTER ===== */
#footer {
  background: var(--navy-deep);
  padding: 80px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-tagline {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 24px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: var(--transition);
  text-decoration: none;
}
.social-link:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 14px;
  line-height: 1.6;
}
.footer-contact-item svg { color: var(--blue-light); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.65); }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom {
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copyright {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  transition: var(--transition);
  text-decoration: none;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }
.footer-terms {
  padding: 30px 0 10px;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 0;
}
.footer-terms p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
  text-align: center;
  line-height: 1.7;
}
.footer-terms a {
  color: rgba(255,255,255,0.4);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: var(--transition);
}
.footer-terms a:hover { color: rgba(255,255,255,0.7); }
.footer-service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.footer-service-tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 4px 12px;
  border-radius: 50px;
  transition: var(--transition);
  text-decoration: none;
}
.footer-service-tag:hover {
  color: var(--white);
  border-color: rgba(30,111,255,0.4);
  background: rgba(30,111,255,0.1);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ===== KEYFRAMES ===== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(30,111,255,0.5); }
  50%       { box-shadow: 0 0 0 6px rgba(30,111,255,0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.spinner {
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}
.btn.loading .btn-text { display: none; }
.btn.loading .spinner { display: block; }

/* ===== BACK TO TOP ===== */
#back-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--gradient-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-blue);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 500;
}
#back-top.visible {
  opacity: 1;
  pointer-events: auto;
}
#back-top:hover { transform: translateY(-3px); }

/* ===== MEDIA QUERIES ===== */

/* Tablet */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .steps-grid::before { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card.featured { transform: none; }
  .pricing-grid .pricing-card:last-child { grid-column: 1 / -1; max-width: 400px; margin: 0 auto; width: 100%; }
  .faq-layout { grid-template-columns: 220px 1fr; gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid .blog-card:last-child { grid-column: 1 / -1; max-width: 480px; margin: 0 auto; width: 100%; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.06); border-top: 1px solid rgba(255,255,255,0.06); }
  .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.06); }
}

/* Mobile */
@media (max-width: 768px) {
  :root { --section-pad: 70px 0; }
  .section-pad { padding: 70px 0; }
  nav { display: none; }
  .hamburger { display: flex; }
  #hero { padding: 140px 0 80px; min-height: auto; }
  .hero-title { font-size: 2.2rem; }
  .hero-desc { font-size: 1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-trust { gap: 16px; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid .testimonial-card:last-child { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-grid .pricing-card:last-child { grid-column: auto; max-width: none; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-sidebar { position: static; }
  .faq-nav-list { flex-direction: row; flex-wrap: wrap; gap: 6px; }
  .faq-nav-btn { padding: 6px 12px; font-size: 0.78rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-grid .blog-card:last-child { grid-column: auto; max-width: none; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: auto; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; flex-wrap: wrap; gap: 14px; }
  #back-top { bottom: 20px; right: 20px; }
  .hero-scroll { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.6rem; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 28px 16px; }
  .hero-countries { display: none; }
}
