/* ============================================================
   GLOBAL BUSINESS FORMATION — Static HTML Edition
   Clean, accessible, SEO-friendly stylesheet
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  --primary: #0F2B5B;
  --primary-hover: #163d7a;
  --secondary: #0ea5e9;
  --secondary-hover: #0284c7;
  --accent: #f59e0b;
  --accent-hover: #d97706;
  --success: #10b981;
  --success-hover: #059669;
  --danger: #ef4444;
  --dark: #0a0f1c;
  --text-primary: #1e293b;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --border: #e2e8f0;
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --whatsapp: #25D366;
  --whatsapp-hover: #128C7E;

  --gradient-primary: linear-gradient(135deg, #0F2B5B 0%, #1e40af 100%);
  --gradient-secondary: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%);
  --gradient-success: linear-gradient(135deg, #10b981 0%, #059669 100%);
  --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
  --gradient-hero: linear-gradient(135deg, #f0f4ff 0%, #e0f2fe 30%, #f0fdf4 70%, #fefce8 100%);

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.04), 0 2px 4px rgba(0,0,0,0.03);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.06), 0 4px 10px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.08), 0 8px 20px rgba(0,0,0,0.04);
  --shadow-card: 0 1px 3px rgba(0,0,0,0.05), 0 10px 30px rgba(0,0,0,0.04);
  --shadow-card-hover: 0 4px 6px rgba(0,0,0,0.05), 0 20px 50px rgba(0,0,0,0.08);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-primary: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-secondary: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-secondary);
  color: var(--text-primary);
  line-height: 1.7;
  background: var(--bg-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  color: var(--primary);
  line-height: 1.25;
  margin: 0 0 0.5em;
  font-weight: 800;
  letter-spacing: -0.02em;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--secondary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--secondary-hover); }
p { margin: 0 0 1em; }
:focus-visible { outline: 3px solid var(--secondary); outline-offset: 2px; border-radius: 4px; }

/* Skip link for accessibility */
.skip-link {
  position: absolute; top: -40px; left: 0;
  background: var(--primary); color: white;
  padding: 8px 16px; z-index: 10000; border-radius: 0 0 8px 0;
}
.skip-link:focus { top: 0; color: white; }

/* ---------- Layout helpers ---------- */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.wrap-sm { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.wrap-lg { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.sec { padding: 90px 0; position: relative; }
.sec-sm { padding: 60px 0; }
.sec-title { font-size: clamp(28px, 4vw, 42px); text-align: center; margin-bottom: 12px; }
.sec-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-secondary);
  text-align: center;
  margin: 0 auto 55px; max-width: 680px;
}
.text-center { text-align: center; }
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--bg-tertiary); color: var(--secondary);
  padding: 6px 16px; border-radius: var(--radius-full);
  font-size: 13px; font-weight: 600; letter-spacing: 0.3px;
  border: 1px solid var(--border); margin-bottom: 18px;
}
.badge-accent {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #92400e; border-color: #fde68a;
}
.badge-success {
  background: #ecfdf5; color: var(--success-hover); border-color: #a7f3d0;
}

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--primary); color: rgba(255,255,255,0.85);
  font-size: 13px; padding: 8px 0;
}
.topbar-inner {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  flex-wrap: wrap;
}
.topbar a { color: rgba(255,255,255,0.9); }
.topbar a:hover { color: white; }
.topbar-links { display: flex; gap: 18px; }

/* ---------- Navigation ---------- */
.nav-wrap {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226,232,240,0.8);
  transition: var(--transition);
}
.nav-wrap.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 20px;
}
.logo {
  display: inline-flex; align-items: baseline; gap: 3px;
  font-family: var(--font-primary); font-weight: 800;
  font-size: 19px; color: var(--primary); letter-spacing: -0.3px;
}
.logo em { font-style: normal; color: var(--secondary); }
.logo-dot {
  width: 8px; height: 8px; background: var(--accent);
  border-radius: 50%; display: inline-block; margin-left: 2px;
}
.menu {
  display: flex; align-items: center; gap: 6px;
  list-style: none; margin: 0; padding: 0;
}
.menu a {
  display: inline-block; font-size: 14px; font-weight: 500;
  color: var(--text-primary); padding: 8px 14px;
  border-radius: var(--radius-sm);
}
.menu a:hover, .menu a.active { background: var(--bg-secondary); color: var(--primary); }
.menu-cta {
  background: var(--primary) !important; color: white !important;
  padding: 10px 20px !important; border-radius: var(--radius-full) !important;
  font-weight: 600 !important; font-size: 13px !important;
}
.menu-cta:hover { background: var(--primary-hover) !important; transform: translateY(-1px); }
.menu-wa {
  background: var(--whatsapp) !important; color: white !important;
  padding: 10px 18px !important; border-radius: var(--radius-full) !important;
  font-weight: 600 !important; font-size: 13px !important;
}
.menu-wa:hover { background: var(--whatsapp-hover) !important; }

.hamburger {
  display: none; background: none; border: none;
  width: 40px; height: 40px; cursor: pointer; z-index: 1001;
  padding: 0;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--primary); margin: 5px auto; border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; font-size: 15px; font-weight: 600;
  border-radius: var(--radius-full); border: 2px solid transparent;
  cursor: pointer; white-space: nowrap; line-height: 1.4;
  font-family: var(--font-secondary); transition: var(--transition);
}
.btn-primary { background: var(--gradient-primary); color: white; box-shadow: 0 4px 14px rgba(15,43,91,0.25); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(15,43,91,0.35); color: white; }
.btn-success { background: var(--gradient-success); color: white; box-shadow: 0 4px 14px rgba(16,185,129,0.3); }
.btn-success:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(16,185,129,0.4); color: white; }
.btn-wa { background: var(--whatsapp); color: white; box-shadow: 0 4px 14px rgba(37,211,102,0.3); }
.btn-wa:hover { background: var(--whatsapp-hover); transform: translateY(-2px); color: white; }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--border); }
.btn-outline:hover { border-color: var(--primary); background: var(--bg-secondary); color: var(--primary); }
.btn-white { background: white; color: var(--primary); box-shadow: 0 4px 14px rgba(0,0,0,0.1); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); color: var(--primary); }
.btn-ghost-w { background: rgba(255,255,255,0.1); color: white; border-color: rgba(255,255,255,0.3); backdrop-filter: blur(10px); }
.btn-ghost-w:hover { background: rgba(255,255,255,0.2); color: white; }
.btn-accent { background: var(--gradient-accent); color: white; box-shadow: 0 4px 14px rgba(245,158,11,0.3); }
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(245,158,11,0.4); color: white; }
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-block { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  background: var(--gradient-hero); padding: 90px 0;
  overflow: hidden; position: relative;
}
.hero::before, .hero::after {
  content: ''; position: absolute; border-radius: 50%;
  pointer-events: none; z-index: 0;
}
.hero::before {
  width: 600px; height: 600px; top: -200px; right: -100px;
  background: radial-gradient(circle, rgba(14,165,233,0.08) 0%, transparent 70%);
}
.hero::after {
  width: 500px; height: 500px; bottom: -200px; left: -100px;
  background: radial-gradient(circle, rgba(16,185,129,0.06) 0%, transparent 70%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 60px; align-items: center; position: relative; z-index: 1;
}
.hero-badge { padding: 8px 18px; margin-bottom: 24px; box-shadow: var(--shadow-sm); background: white; }
.hero-badge .dot {
  width: 8px; height: 8px; background: var(--success);
  border-radius: 50%; display: inline-block;
  animation: blink 2s infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.hero h1 {
  font-size: clamp(34px, 5vw, 54px); margin-bottom: 22px;
  line-height: 1.15; letter-spacing: -1px;
}
.hero h1 .hl {
  display: inline; position: relative; color: var(--primary);
}
.hero h1 .hl::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 2px;
  height: 12px; background: rgba(14,165,233,0.20); z-index: -1; border-radius: 4px;
}
.hero-desc {
  font-size: clamp(16px, 2vw, 18px); color: var(--text-secondary);
  margin-bottom: 32px; line-height: 1.8; max-width: 540px;
}
.hero-btns { display: flex; gap: 12px; margin-bottom: 36px; flex-wrap: wrap; }
.hero-metrics {
  display: flex; gap: 32px; padding-top: 28px;
  border-top: 1px solid var(--border); flex-wrap: wrap;
}
.metric h4 { font-size: 28px; margin: 0 0 2px; color: var(--primary); }
.metric p { color: var(--text-muted); margin: 0; font-size: 13px; font-weight: 500; }

.hero-card {
  background: white; border-radius: var(--radius-xl);
  padding: 32px; box-shadow: var(--shadow-xl); position: relative;
}
.hero-card-header {
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 18px; margin-bottom: 18px;
  border-bottom: 1px solid var(--bg-tertiary);
}
.hero-card-icon {
  width: 48px; height: 48px; border-radius: var(--radius-md);
  background: var(--gradient-secondary); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.hero-card-title { font-weight: 700; font-size: 18px; margin: 0; color: var(--primary); }
.hero-card-sub { margin: 2px 0 0; color: var(--text-muted); font-size: 13px; }
.hero-checklist { list-style: none; padding: 0; margin: 0; }
.hero-checklist li {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--bg-tertiary);
  font-size: 14px; color: var(--text-primary);
}
.hero-checklist li:last-child { border-bottom: none; }
.hero-checklist .ico {
  width: 28px; height: 28px; background: #ecfdf5;
  color: var(--success); display: inline-flex;
  align-items: center; justify-content: center;
  border-radius: 50%; flex-shrink: 0; font-weight: 700;
}
.hero-float {
  position: absolute; bottom: -16px; right: -16px;
  background: white; padding: 14px 20px;
  border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 10px;
  animation: float 3s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.hero-float .num { font-size: 24px; font-weight: 800; color: var(--success); font-family: var(--font-primary); }
.hero-float .txt { font-size: 12px; line-height: 1.3; color: var(--text-secondary); }

/* ---------- Page header (interior pages) ---------- */
.page-header {
  background: var(--gradient-hero); padding: 70px 0 60px;
  text-align: center; position: relative; overflow: hidden;
}
.page-header h1 { font-size: clamp(32px, 5vw, 46px); margin-bottom: 14px; }
.page-header p { font-size: 17px; color: var(--text-secondary); max-width: 640px; margin: 0 auto; }
.crumbs {
  font-size: 13px; color: var(--text-muted); margin-bottom: 14px;
}
.crumbs a { color: var(--text-secondary); }
.crumbs a:hover { color: var(--primary); }

/* ---------- Trust bar ---------- */
.trust { background: var(--primary); padding: 22px 0; }
.trust-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
.trust-label {
  color: rgba(255,255,255,0.5); font-size: 12px;
  text-transform: uppercase; letter-spacing: 2px; font-weight: 600;
}
.trust-logos { display: flex; gap: 36px; flex-wrap: wrap; justify-content: center; }
.trust-logos span {
  color: rgba(255,255,255,0.7); font-weight: 600;
  letter-spacing: 0.5px; font-size: 15px;
  transition: var(--transition);
}
.trust-logos span:hover { color: white; }

/* ---------- Problems ---------- */
.problems { background: var(--bg-primary); }
.problems-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  max-width: 880px; margin: 0 auto 45px;
}
.problem {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 16px 20px; background: #fef2f2;
  border: 1px solid #fecaca; border-radius: var(--radius-md);
  font-size: 14.5px; line-height: 1.5; transition: var(--transition);
}
.problem:hover { transform: translateX(4px); }
.problem .x { color: var(--danger); font-weight: 700; margin-top: 1px; flex-shrink: 0; }
.solution { max-width: 680px; margin: 0 auto; text-align: center; }
.solution p { margin-bottom: 28px; font-size: 16px; color: var(--text-secondary); }
.solution strong { color: var(--primary); }

/* ---------- Services ---------- */
.services { background: var(--bg-secondary); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.svc {
  background: white; padding: 32px 26px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card); transition: var(--transition);
  position: relative; overflow: hidden;
}
.svc::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gradient-secondary); opacity: 0;
  transition: var(--transition);
}
.svc:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.svc:hover::before { opacity: 1; }
.svc-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  background: var(--bg-tertiary); color: var(--secondary);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 20px; transition: var(--transition);
}
.svc:hover .svc-icon { transform: scale(1.05); background: var(--gradient-secondary); color: white; }
.svc h3 { font-size: 19px; margin-bottom: 10px; }
.svc p { color: var(--text-secondary); line-height: 1.65; margin: 0; font-size: 14.5px; }

/* ---------- Steps ---------- */
.steps-section { background: white; }
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  position: relative;
}
.steps::before {
  content: ''; position: absolute; top: 40px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary), var(--primary), var(--success));
  z-index: 0; opacity: 0.3;
}
.step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 80px; height: 80px; background: white;
  border: 3px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-primary); font-weight: 800;
  font-size: 26px; color: var(--primary);
  margin: 0 auto 20px; transition: var(--transition);
}
.step:hover .step-num {
  transform: scale(1.08);
  border-color: var(--primary);
  box-shadow: 0 8px 25px rgba(15,43,91,0.3);
}
.step h3 { font-size: 17px; margin-bottom: 8px; }
.step p { color: var(--text-secondary); line-height: 1.6; max-width: 220px; margin: 0 auto; font-size: 14px; }

/* ---------- Pricing ---------- */
.pricing { background: var(--bg-secondary); }
.pricing-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: start;
}
.price {
  background: white; padding: 32px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card); transition: var(--transition);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.price:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.price.featured {
  border: 2px solid var(--secondary);
  transform: scale(1.04); z-index: 2;
  box-shadow: 0 10px 40px rgba(14,165,233,0.18);
}
.price.featured:hover { transform: scale(1.06); }
.price-badge {
  background: var(--gradient-secondary); color: white;
  padding: 7px 0; margin: -32px -24px 24px;
  text-align: center; font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px;
}
.price-name { font-size: 22px; margin-bottom: 6px; }
.price-tag { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.price-tag .amount { font-size: 44px; font-weight: 800; color: var(--primary); font-family: var(--font-primary); }
.price-tag .period { color: var(--text-muted); font-size: 14px; }
.price-desc { font-style: italic; color: var(--text-secondary); font-size: 13.5px; margin-bottom: 14px; }
.price-divider { height: 1px; background: var(--border); margin: 0 -24px 18px; }
.price-list { list-style: none; padding: 0; margin: 0 0 18px; }
.price-list li {
  display: flex; align-items: flex-start; gap: 8px;
  padding: 6px 0; font-size: 13.5px; line-height: 1.45;
}
.price-list .ck { color: var(--success); font-weight: 700; flex-shrink: 0; }
.price-time { font-size: 13px; color: var(--text-muted); margin-bottom: 18px; }
.price-btn { margin-top: auto; }

/* ---------- Countries ---------- */
.countries { background: white; }
.countries-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px;
  max-width: 920px; margin: 0 auto 30px;
}
.country {
  background: var(--bg-secondary); padding: 12px 6px;
  border-radius: var(--radius-md); text-align: center;
  font-size: 14px; font-weight: 500; color: var(--text-primary);
  transition: var(--transition); cursor: default;
  border: 1px solid var(--border);
}
.country:hover {
  background: white; box-shadow: var(--shadow-md);
  transform: translateY(-2px); border-color: var(--secondary);
}

/* ---------- Reviews ---------- */
.reviews { background: var(--bg-secondary); }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.review {
  background: white; padding: 28px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card); transition: var(--transition);
}
.review:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.review-stars { color: var(--accent); margin-bottom: 16px; font-size: 16px; }
.review-text { font-size: 14.5px; line-height: 1.7; color: var(--text-secondary); margin-bottom: 20px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gradient-primary); color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-family: var(--font-primary);
}
.review-name { font-weight: 700; font-size: 14px; color: var(--primary); }
.review-role { font-size: 12.5px; color: var(--text-muted); }

/* ---------- FAQ ---------- */
.faq { background: white; }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--bg-secondary); border: 1px solid var(--border);
  border-radius: var(--radius-md); margin-bottom: 12px;
  overflow: hidden; transition: var(--transition);
}
.faq-item:hover { border-color: var(--secondary); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px; cursor: pointer; user-select: none;
  font-weight: 600; color: var(--primary); font-size: 15.5px;
  font-family: var(--font-primary);
}
.faq-q:hover { background: var(--bg-tertiary); }
.faq-q .arr {
  margin-left: 12px; color: var(--secondary); font-size: 20px;
  transition: transform 0.3s ease; flex-shrink: 0;
}
.faq-item.open .faq-q .arr { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 22px; color: var(--text-secondary); line-height: 1.75;
  font-size: 14.5px;
}
.faq-item.open .faq-a { max-height: 800px; padding: 0 22px 20px; }
.faq-a strong { color: var(--primary); }

/* ---------- CTA ---------- */
.cta {
  background: var(--gradient-primary); color: white;
  padding: 100px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 20L20 0L40 20L20 40Z' fill='%23ffffff' fill-opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta h2 { color: white; font-size: clamp(30px, 4vw, 44px); margin-bottom: 14px; }
.cta .sub { color: rgba(255,255,255,0.8); font-size: 17px; margin-bottom: 24px; }
.cta .offer {
  display: inline-block; background: rgba(245,158,11,0.18);
  color: #fde68a; padding: 8px 18px; border-radius: var(--radius-full);
  font-size: 14px; font-weight: 600; margin-bottom: 32px;
  border: 1px solid rgba(245,158,11,0.3);
}
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 30px; }
.cta-info { line-height: 2; color: rgba(255,255,255,0.85); font-size: 14.5px; }
.cta-info a { color: rgba(255,255,255,0.95); font-weight: 500; }
.cta-info a:hover { color: white; }

/* ---------- Footer ---------- */
.footer { background: var(--dark); color: #9ca3af; padding: 65px 0 20px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px; margin-bottom: 45px;
}
.footer h4 {
  color: white; font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 20px;
}
.footer p { color: #9ca3af; font-size: 14px; line-height: 1.8; margin-bottom: 16px; }
.footer a { color: #9ca3af; font-size: 14px; }
.footer a:hover { color: var(--secondary); }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 10px; }
.footer-logo {
  display: inline-flex; align-items: baseline; gap: 3px;
  font-family: var(--font-primary); font-weight: 800;
  font-size: 20px; color: white; margin-bottom: 14px;
}
.footer-logo em { font-style: normal; color: var(--secondary); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08); color: white;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px; transition: var(--transition);
}
.footer-social a:hover { background: var(--secondary); color: white; transform: translateY(-2px); }
.footer-bottom {
  border-top: 1px solid #1f2937; padding-top: 20px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer-bottom p { font-size: 12px; color: #6b7280; margin: 0; max-width: 800px; line-height: 1.6; }
.footer-bottom a { color: #6b7280; font-size: 12px; }
.footer-bottom a:hover { color: var(--secondary); }
.footer-bottom-links { display: flex; gap: 14px; }

/* ---------- Floating WhatsApp ---------- */
.wa-float { position: fixed; bottom: 24px; right: 24px; z-index: 9999; }
.wa-float a {
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--whatsapp); color: white;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 28px; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  animation: wa-pulse 2s infinite; transition: var(--transition);
}
.wa-float a:hover {
  background: var(--whatsapp-hover); color: white;
  transform: scale(1.05); box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}
@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- Back to top ---------- */
.top-btn {
  position: fixed; bottom: 92px; right: 28px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary); color: white; border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; cursor: pointer;
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden;
  transition: var(--transition); z-index: 9998;
}
.top-btn.show { opacity: 1; visibility: visible; }
.top-btn:hover { background: var(--primary-hover); transform: translateY(-2px); }

/* ---------- Forms ---------- */
.form-card {
  background: white; padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl); max-width: 560px; margin: 0 auto;
}
.form-card h3 { font-size: 22px; margin-bottom: 8px; }
.form-sub { color: var(--text-secondary); font-size: 14.5px; margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--text-primary); margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: 15px; font-family: var(--font-secondary);
  background: white; color: var(--text-primary);
  outline: none; transition: var(--transition);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(14,165,233,0.12);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-trust {
  display: flex; justify-content: center; gap: 16px;
  margin-top: 16px; font-size: 12.5px; color: var(--text-muted);
  flex-wrap: wrap;
}
.form-trust span { display: inline-flex; align-items: center; gap: 4px; }

/* ---------- Contact methods grid ---------- */
.contact-methods {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  margin-bottom: 50px;
}
.contact-method {
  background: white; padding: 26px 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border); text-align: center;
  transition: var(--transition);
}
.contact-method:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-card-hover);
  border-color: var(--secondary);
}
.contact-method .icn { font-size: 32px; margin-bottom: 12px; }
.contact-method h3 { font-size: 16px; margin-bottom: 6px; }
.contact-method p { font-size: 14px; color: var(--text-secondary); margin: 0; }
.contact-method strong { color: var(--primary); display: block; margin-top: 4px; font-size: 15px; }

/* ---------- Legal pages ---------- */
.legal { padding: 60px 0 90px; background: white; }
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-content h2 { font-size: 22px; margin: 40px 0 14px; }
.legal-content h3 { font-size: 18px; margin: 28px 0 10px; }
.legal-content p, .legal-content li { color: var(--text-secondary); font-size: 15px; line-height: 1.8; }
.legal-content ul, .legal-content ol { padding-left: 22px; margin-bottom: 18px; }
.legal-content li { margin-bottom: 8px; }
.legal-updated { color: var(--text-muted); font-size: 13px; font-style: italic; margin-bottom: 30px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero { padding: 70px 0 60px; text-align: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-metrics { justify-content: center; }
  .hero-badge { margin-left: auto; margin-right: auto; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .price.featured { transform: scale(1.02); }
  .price.featured:hover { transform: scale(1.04); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; max-width: 600px; margin-left: auto; margin-right: auto; }
  .steps::before { display: none; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-methods { grid-template-columns: repeat(2, 1fr); }
  .countries-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  .sec { padding: 60px 0; }
  .topbar-inner { justify-content: center; text-align: center; }
  .menu {
    position: fixed; top: 72px; left: 0; right: 0;
    background: white; flex-direction: column; align-items: stretch;
    padding: 20px; gap: 4px; box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border);
    transform: translateY(-150%); transition: transform 0.3s ease;
  }
  .menu.open { transform: translateY(0); }
  .menu a { padding: 14px 16px; font-size: 15px; }
  .hamburger { display: block; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; max-width: 360px; margin: 0 auto; }
  .hero-metrics { gap: 20px; justify-content: space-around; }
  .metric h4 { font-size: 22px; }
  .problems-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .price.featured { transform: scale(1); }
  .price.featured:hover { transform: translateY(-4px); }
  .services-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .countries-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-methods { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .form-card { padding: 26px; }
  .trust-inner { gap: 20px; }
  .trust-logos { gap: 20px; }
  .wa-float { bottom: 16px; right: 16px; }
  .wa-float a { width: 52px; height: 52px; font-size: 24px; }
}
@media (max-width: 480px) {
  .countries-grid { grid-template-columns: repeat(2, 1fr); }
  .topbar-links { gap: 12px; font-size: 12px; }
}

/* ---------- Print ---------- */
@media print {
  .nav-wrap, .topbar, .wa-float, .top-btn, .cta, .hero-btns { display: none !important; }
  body { color: black; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
