:root {
  --navy: #123A72;
  --navy-dark: #0a2550;
  --navy-light: #1e4f9c;
  --green: #73B72B;
  --green-dark: #5a9020;
  --green-light: #8fd43a;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 16px rgba(18,58,114,0.08), 0 2px 6px rgba(18,58,114,0.04);
  --shadow-lg: 0 16px 48px rgba(18,58,114,0.12), 0 4px 16px rgba(18,58,114,0.06);
  --shadow-xl: 0 32px 80px rgba(18,58,114,0.14), 0 8px 24px rgba(18,58,114,0.08);
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
}
[data-theme="dark"] {
  --navy: #1e4f9c;
  --white: #0f172a;
  --gray-50: #1e293b;
  --gray-100: #334155;
  --gray-200: #475569;
  --gray-300: #64748b;
  --gray-500: #94a3b8;
  --gray-600: #cbd5e1;
  --gray-700: #e2e8f0;
  --gray-800: #f1f5f9;
  --gray-900: #f8fafc;
}
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--gray-800);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
ul { list-style: none; }

/* ─── LOADER ─── */
#loader {
  position: fixed; inset: 0; background: var(--navy-dark);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-logo { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 1rem; }
.loader-logo span { color: var(--green); }
.loader-bar {
  width: 200px; height: 3px; background: rgba(255,255,255,0.15); border-radius: 99px; overflow: hidden;
}
.loader-fill {
  height: 100%; width: 0%; background: linear-gradient(90deg, var(--green), #8fd43a);
  border-radius: 99px; animation: load 1.8s ease forwards;
}
@keyframes load { to { width: 100%; } }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 5%;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(18,58,114,0.08);
  transition: var(--transition);
}
nav.scrolled {
  box-shadow: 0 4px 24px rgba(18,58,114,0.10);
  padding-top: 0;
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px; font-weight: 800;
  font-size: 1.15rem; color: var(--navy);
}
.nav-logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 1rem; letter-spacing: -0.5px;
}
.nav-logo-text .brand { line-height: 1.1; }
.nav-logo-text .brand span { color: var(--green); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: 0.9rem; font-weight: 600; color: var(--gray-600);
  transition: color 0.2s; position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px;
  background: var(--green); border-radius: 1px; transition: width 0.2s;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: #fff; padding: 0.55rem 1.25rem; border-radius: var(--radius-sm);
  font-size: 0.875rem; font-weight: 600; transition: var(--transition);
  box-shadow: 0 4px 12px rgba(18,58,114,0.25);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(18,58,114,0.35); color: #fff; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 4px; border: none; background: none;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 1px; transition: var(--transition); }
.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: #fff; border-bottom: 1px solid var(--gray-200);
  padding: 1.5rem 5%; z-index: 999; flex-direction: column; gap: 1rem;
  box-shadow: var(--shadow-lg);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-weight: 600; color: var(--gray-700); padding: 0.5rem 0; border-bottom: 1px solid var(--gray-100); }
.theme-toggle {
  width: 36px; height: 36px; border-radius: 8px; border: 1px solid var(--gray-200);
  background: var(--gray-50); cursor: pointer; display: flex; align-items: center;
  justify-content: center; transition: var(--transition); font-size: 1rem;
}
.theme-toggle:hover { background: var(--gray-100); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 45%, #1a4a8a 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center; padding-top: 72px;
}
.hero-bg {
  position: absolute; inset: 0; overflow: hidden;
}
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.12;
  animation: pulse 6s ease-in-out infinite;
}
.hero-orb-1 { width: 600px; height: 600px; background: var(--green); top: -150px; right: -100px; animation-delay: 0s; }
.hero-orb-2 { width: 400px; height: 400px; background: #4fa8e8; bottom: -100px; left: -80px; animation-delay: 2s; }
.hero-orb-3 { width: 300px; height: 300px; background: var(--green-light); top: 40%; right: 25%; animation-delay: 4s; }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 0.12; } 50% { transform: scale(1.1); opacity: 0.18; } }
.grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.float-el {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  animation: float linear infinite;
}
.float-el:nth-child(1) { width: 14px; height: 14px; top: 20%; left: 10%; animation-duration: 8s; }
.float-el:nth-child(2) { width: 22px; height: 22px; top: 60%; left: 5%; animation-duration: 12s; animation-delay: 2s; }
.float-el:nth-child(3) { width: 10px; height: 10px; top: 35%; right: 8%; animation-duration: 10s; animation-delay: 4s; }
.float-el:nth-child(4) { width: 18px; height: 18px; bottom: 25%; right: 15%; animation-duration: 9s; animation-delay: 1s; }
.float-el:nth-child(5) { width: 12px; height: 12px; top: 75%; left: 35%; animation-duration: 11s; animation-delay: 3s; }
@keyframes float { 0% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-30px) rotate(180deg); } 100% { transform: translateY(0) rotate(360deg); } }

.hero-content {
  position: relative; z-index: 1; max-width: 1280px; margin: 0 auto;
  width: 100%; padding: 4rem 5%; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(115,183,43,0.15); border: 1px solid rgba(115,183,43,0.3);
  border-radius: 99px; padding: 6px 16px; margin-bottom: 1.5rem;
  font-size: 0.8rem; font-weight: 600; color: #8fd43a; letter-spacing: 0.5px;
  text-transform: uppercase;
}
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: blink 2s infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem); font-weight: 800; color: #fff;
  line-height: 1.12; margin-bottom: 1.5rem;
}
.hero-title .highlight { color: var(--green); }
.hero-desc {
  font-size: 1.05rem; color: rgba(255,255,255,0.72); margin-bottom: 2.5rem; line-height: 1.7; max-width: 560px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.btn-primary {
  background: var(--green); color: #fff; padding: 0.85rem 2rem;
  border-radius: var(--radius-sm); font-weight: 700; font-size: 0.95rem;
  transition: var(--transition); border: none; cursor: pointer;
  box-shadow: 0 8px 24px rgba(115,183,43,0.35);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(115,183,43,0.45); color: #fff; }
.btn-outline {
  background: rgba(255,255,255,0.08); color: #fff; padding: 0.85rem 2rem;
  border-radius: var(--radius-sm); font-weight: 700; font-size: 0.95rem;
  transition: var(--transition); border: 1px solid rgba(255,255,255,0.25); cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); color: #fff; }
.hero-stats {
  display: flex; gap: 2rem;
}
.hero-stat { text-align: left; }
.hero-stat .num { font-size: 1.6rem; font-weight: 800; color: #fff; line-height: 1; }
.hero-stat .num span { color: var(--green); }
.hero-stat .label { font-size: 0.75rem; color: rgba(255,255,255,0.5); font-weight: 500; margin-top: 2px; text-transform: uppercase; letter-spacing: 0.5px; }
.hero-visual {
  position: relative; display: flex; align-items: center; justify-content: center;
}
.hero-globe {
  width: 420px; height: 420px; position: relative;
}
.globe-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid rgba(115,183,43,0.25);
  animation: spin linear infinite;
}
.globe-ring:nth-child(1) { animation-duration: 20s; transform: rotateX(70deg); }
.globe-ring:nth-child(2) { animation-duration: 30s; transform: rotateY(60deg) rotateX(20deg); animation-direction: reverse; }
.globe-ring:nth-child(3) { animation-duration: 25s; transform: rotateZ(45deg) rotateX(50deg); }
@keyframes spin { from { transform: rotate(0deg) rotateX(70deg); } to { transform: rotate(360deg) rotateX(70deg); } }
.globe-center {
  position: absolute; inset: 15%; background: rgba(18,58,114,0.5);
  border-radius: 50%; border: 2px solid rgba(115,183,43,0.3);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(10px);
}
.globe-center svg { width: 80%; height: 80%; opacity: 0.6; }
.hero-cards {
  position: absolute;
  display: flex; flex-direction: column; gap: 12px;
}
.hero-cards.left { left: -20px; }
.hero-cards.right { right: -20px; }
.hero-card {
  background: rgba(255,255,255,0.08); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius);
  padding: 12px 16px; min-width: 160px;
  animation: floatCard 4s ease-in-out infinite;
}
.hero-card:nth-child(2) { animation-delay: 2s; }
.hero-card .card-icon { font-size: 1.2rem; margin-bottom: 4px; }
.hero-card .card-val { font-size: 1rem; font-weight: 700; color: #fff; }
.hero-card .card-lbl { font-size: 0.7rem; color: rgba(255,255,255,0.5); font-weight: 500; }
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ─── SECTIONS ─── */
section { padding: 5rem 5%; }
.container { max-width: 1280px; margin: 0 auto; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(115,183,43,0.1); border: 1px solid rgba(115,183,43,0.25);
  border-radius: 99px; padding: 5px 14px;
  font-size: 0.75rem; font-weight: 700; color: var(--green-dark);
  text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; color: var(--navy);
  line-height: 1.18; margin-bottom: 1rem;
}
.section-title span { color: var(--green); }
.section-desc { font-size: 1.05rem; color: var(--gray-500); max-width: 620px; line-height: 1.7; }
.text-center { text-align: center; }
.text-center .section-desc { margin-left: auto; margin-right: auto; }
.divider { width: 60px; height: 4px; background: linear-gradient(90deg, var(--green), var(--navy)); border-radius: 2px; margin-bottom: 1.5rem; }
.text-center .divider { margin-left: auto; margin-right: auto; }

/* ─── LOGOS / TRUST ─── */
.trust-bar { background: var(--gray-50); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); padding: 2rem 5%; }
.trust-inner { max-width: 1280px; margin: 0 auto; text-align: center; }
.trust-label { font-size: 0.8rem; color: var(--gray-400); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1.5rem; }
.trust-logos { display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.trust-logo { font-size: 0.9rem; font-weight: 700; color: var(--gray-300); letter-spacing: 0.5px; }

/* ─── SERVICES ─── */
.services { background: var(--gray-50); }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  background: #fff; border-radius: var(--radius-lg); padding: 2rem;
  border: 1px solid var(--gray-200); transition: var(--transition);
  position: relative; overflow: hidden; cursor: pointer;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--green));
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(18,58,114,0.15); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px; border-radius: var(--radius); margin-bottom: 1rem;
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
  background: linear-gradient(135deg, rgba(18,58,114,0.06), rgba(18,58,114,0.12));
}
.service-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.service-card p { font-size: 0.875rem; color: var(--gray-500); line-height: 1.6; }
.service-arrow { margin-top: 1.25rem; display: flex; align-items: center; gap: 6px; font-size: 0.8rem; font-weight: 700; color: var(--green-dark); opacity: 0; transition: opacity 0.2s; }
.service-card:hover .service-arrow { opacity: 1; }

/* ─── WHY CHOOSE ─── */
.why { background: linear-gradient(160deg, var(--navy-dark), var(--navy)); padding: 5rem 5%; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-top: 3rem; }
.why-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.why-feature {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 1.5rem; transition: var(--transition);
}
.why-feature:hover { background: rgba(255,255,255,0.10); transform: translateY(-2px); }
.why-feature-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
.why-feature h4 { font-size: 0.9rem; font-weight: 700; color: #fff; margin-bottom: 0.3rem; }
.why-feature p { font-size: 0.8rem; color: rgba(255,255,255,0.55); }
.why-counters { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.counter-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 2rem; text-align: center;
}
.counter-num { font-size: 2.5rem; font-weight: 800; color: var(--green); line-height: 1; }
.counter-label { font-size: 0.8rem; color: rgba(255,255,255,0.55); font-weight: 500; margin-top: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.why .section-title { color: #fff; }
.why .section-desc { color: rgba(255,255,255,0.65); }
.why .section-tag { background: rgba(115,183,43,0.15); border-color: rgba(115,183,43,0.3); }

/* ─── INDUSTRIES ─── */
.industries-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; margin-top: 2.5rem; }
.industry-pill {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius);
  padding: 0.875rem 1rem; transition: var(--transition); cursor: default;
}
.industry-pill:hover { border-color: var(--green); background: rgba(115,183,43,0.04); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.industry-pill .ind-icon { font-size: 1.2rem; }
.industry-pill span { font-size: 0.85rem; font-weight: 600; color: var(--gray-700); }

/* ─── PROCESS ─── */
.process { background: var(--gray-50); }
.process-steps { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.5rem; position: relative; z-index: 1; }
.process-step {
  background: #fff; border-radius: var(--radius-lg); padding: 1.75rem;
  border: 1px solid var(--gray-200); transition: var(--transition); position: relative;
}
.process-step:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: #fff; font-weight: 800; font-size: 0.8rem;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.process-step h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; }
.process-step p { font-size: 0.82rem; color: var(--gray-500); }

/* ─── COUNTRIES ─── */
.countries { background: #fff; }
.region-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.region-card {
  background: var(--gray-50); border-radius: var(--radius-lg); padding: 1.75rem;
  border: 1px solid var(--gray-200); transition: var(--transition); text-align: center;
}
.region-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(18,58,114,0.15); }
.region-flag { font-size: 2rem; margin-bottom: 0.75rem; }
.region-name { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 0.25rem; }
.region-count { font-size: 0.8rem; color: var(--green-dark); font-weight: 600; }
.region-countries { font-size: 0.75rem; color: var(--gray-400); margin-top: 0.5rem; line-height: 1.5; }

/* ─── TESTIMONIALS ─── */
.testimonials { background: var(--gray-50); }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.testimonial-card {
  background: #fff; border-radius: var(--radius-lg); padding: 2rem;
  border: 1px solid var(--gray-200); transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 1rem; }
.testimonial-text { font-size: 0.9rem; color: var(--gray-600); line-height: 1.7; font-style: italic; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 0.9rem;
}
.author-name { font-size: 0.9rem; font-weight: 700; color: var(--navy); }
.author-role { font-size: 0.75rem; color: var(--gray-400); }

/* ─── FAQ ─── */
.faq { background: #fff; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2.5rem; }
.faq-item {
  background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius);
  overflow: hidden; transition: var(--transition);
}
.faq-item:hover { border-color: rgba(18,58,114,0.2); }
.faq-q {
  padding: 1.25rem; cursor: pointer; display: flex; justify-content: space-between; align-items: flex-start; gap: 12px;
  font-size: 0.9rem; font-weight: 700; color: var(--navy); background: none; border: none; width: 100%; text-align: left;
}
.faq-toggle { flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; transition: transform 0.2s; }
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--green); }
.faq-a { display: none; padding: 0 1.25rem 1.25rem; font-size: 0.85rem; color: var(--gray-500); line-height: 1.7; border-top: 1px solid var(--gray-200); padding-top: 1rem; margin-top: 0; }
.faq-item.open .faq-a { display: block; }

/* ─── CONTACT ─── */
.contact { background: var(--gray-50); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; margin-top: 3rem; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-card {
  background: #fff; border-radius: var(--radius-lg); padding: 1.75rem;
  border: 1px solid var(--gray-200); display: flex; align-items: flex-start; gap: 1rem;
}
.contact-icon {
  width: 48px; height: 48px; border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(18,58,114,0.08), rgba(18,58,114,0.15));
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0;
}
.contact-card h4 { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.contact-card p { font-size: 0.85rem; color: var(--gray-500); }
.contact-card a { color: var(--navy); font-weight: 600; }
.contact-form-wrap {
  background: #fff; border-radius: var(--radius-xl); padding: 2.5rem;
  border: 1px solid var(--gray-200); box-shadow: var(--shadow);
}
.form-title { font-size: 1.3rem; font-weight: 800; color: var(--navy); margin-bottom: 0.5rem; }
.form-subtitle { font-size: 0.875rem; color: var(--gray-500); margin-bottom: 2rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 700; color: var(--gray-700); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.4px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.75rem 1rem; border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm);
  font-family: var(--font); font-size: 0.9rem; color: var(--gray-800); background: var(--gray-50);
  transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--navy); background: #fff; box-shadow: 0 0 0 3px rgba(18,58,114,0.08); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit {
  width: 100%; background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: #fff; border: none; padding: 1rem; border-radius: var(--radius-sm);
  font-family: var(--font); font-size: 1rem; font-weight: 700; cursor: pointer;
  transition: var(--transition); box-shadow: 0 8px 24px rgba(18,58,114,0.25);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(18,58,114,0.35); }
.quick-btns { display: flex; gap: 1rem; margin-top: 1rem; }
.quick-btn {
  flex: 1; padding: 0.75rem; border-radius: var(--radius-sm); border: 1.5px solid;
  font-family: var(--font); font-size: 0.875rem; font-weight: 700; cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.quick-btn-wa { border-color: #25d366; color: #25d366; background: #fff; }
.quick-btn-wa:hover { background: #25d366; color: #fff; }

/* ─── MAP ─── */
.map-embed {
  background: var(--gray-100); border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 16/9; margin-top: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gray-200);
}
.map-placeholder { text-align: center; }
.map-placeholder .map-icon { font-size: 3rem; margin-bottom: 1rem; }
.map-placeholder p { font-size: 0.85rem; color: var(--gray-400); font-weight: 500; }

/* ─── CTA BANNER ─── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 5rem 5%; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(115,183,43,0.15) 0%, transparent 60%);
}
.cta-banner h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 800; color: #fff; margin-bottom: 1rem; position: relative; }
.cta-banner p { font-size: 1.05rem; color: rgba(255,255,255,0.65); margin-bottom: 2rem; position: relative; }
.cta-banner .actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* ─── NEWSLETTER ─── */
.newsletter { background: var(--gray-50); border-top: 1px solid var(--gray-200); }
.newsletter .container { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.newsletter-text h3 { font-size: 1.3rem; font-weight: 800; color: var(--navy); }
.newsletter-text p { font-size: 0.875rem; color: var(--gray-500); }
.newsletter-form { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.newsletter-form input {
  padding: 0.75rem 1.25rem; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm); font-family: var(--font); font-size: 0.9rem;
  min-width: 260px; outline: none; transition: var(--transition); background: #fff;
}
.newsletter-form input:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(18,58,114,0.08); }
.newsletter-form button {
  background: linear-gradient(135deg, var(--navy), var(--navy-light)); color: #fff;
  border: none; padding: 0.75rem 1.5rem; border-radius: var(--radius-sm);
  font-family: var(--font); font-weight: 700; cursor: pointer; transition: var(--transition);
}
.newsletter-form button:hover { transform: translateY(-1px); }

/* ─── FOOTER ─── */
footer {
  background: var(--navy-dark); color: rgba(255,255,255,0.7);
  padding: 4rem 5% 2rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 2rem; max-width: 1280px; margin: 0 auto; margin-bottom: 3rem; }
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; color: rgba(255,255,255,0.5); }
.footer-col h4 { font-size: 0.8rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 1.25rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--green); }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.social-icon {
  width: 36px; height: 36px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center; font-size: 0.9rem;
  color: rgba(255,255,255,0.6); transition: var(--transition); cursor: pointer;
}
.social-icon:hover { background: var(--green); border-color: var(--green); color: #fff; }
.footer-bottom { max-width: 1280px; margin: 0 auto; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; align-items: center; flex-wrap: gap; gap: 1rem; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.8rem; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-links a:hover { color: var(--green); }

/* ─── BACK TO TOP ─── */
#backTop {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 500;
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--green));
  color: #fff; border: none; cursor: pointer; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg); transition: var(--transition);
  opacity: 0; transform: translateY(20px);
}
#backTop.show { opacity: 1; transform: translateY(0); }
#backTop:hover { transform: translateY(-3px) scale(1.05); }

/* ─── WHATSAPP FLOAT ─── */
#waFloat {
  position: fixed; bottom: 5.5rem; right: 2rem; z-index: 500;
  width: 50px; height: 50px; border-radius: 50%;
  background: #25d366; color: #fff; border: none; cursor: pointer; font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4); transition: var(--transition);
  text-decoration: none;
}
#waFloat:hover { transform: translateY(-3px) scale(1.05); }

/* ─── COOKIE BANNER ─── */
#cookie {
  position: fixed; bottom: 1rem; left: 1rem; right: 1rem;
  background: var(--navy-dark); border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  z-index: 8000; box-shadow: var(--shadow-xl); max-width: 700px;
  transition: all 0.4s ease; flex-wrap: wrap;
}
#cookie.hidden { opacity: 0; transform: translateY(20px); pointer-events: none; }
#cookie p { font-size: 0.85rem; color: rgba(255,255,255,0.75); flex: 1; }
.cookie-btns { display: flex; gap: 0.75rem; }
.cookie-accept { background: var(--green); color: #fff; border: none; padding: 0.5rem 1.25rem; border-radius: var(--radius-sm); font-weight: 700; cursor: pointer; font-size: 0.85rem; transition: var(--transition); }
.cookie-decline { background: transparent; color: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.2); padding: 0.5rem 1rem; border-radius: var(--radius-sm); font-weight: 600; cursor: pointer; font-size: 0.85rem; transition: var(--transition); }

/* ─── SCROLL REVEAL ─── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta, .theme-toggle { display: none; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .region-grid { grid-template-columns: repeat(2, 1fr); }
  .why-features { grid-template-columns: 1fr; }
  .why-counters { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .newsletter .container { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 1rem; }
  .testimonial-grid { grid-template-columns: 1fr; }
}
