/* 
  Global LLC Hub - Production-Ready CSS Stylesheet
  Designed by Senior Web Developer & Marketing Strategist
  Focus: Premium Design, High Conversions, SEO-Friendly, Ultra-fast Loading
*/

:root {
  /* Color Palette */
  --primary-color: #0f172a;       /* Deep Navy Blue - Trust, Authority */
  --primary-light: #1e293b;     /* Lighter slate for backgrounds */
  --secondary-color: #0284c7;     /* Trusting Royal Blue */
  --secondary-dark: #0369a1;
  --accent-color: #f97316;        /* High-converting Vibrant Orange for CTAs */
  --accent-hover: #ea580c;
  --success-color: #10b981;       /* Emerald Green for Positive features, badges */
  --success-light: #d1fae5;
  --warning-color: #f59e0b;       /* Gold/Yellow for Stars and ratings */
  --text-dark: #1e293b;           /* Slate 800 - Body Text */
  --text-muted: #64748b;          /* Slate 500 - Secondary Text */
  --bg-light: #f8fafc;            /* Slate 50 - Section Backgrounds */
  --bg-white: #ffffff;
  --border-color: #e2e8f0;        /* Slate 200 - Borders */
  
  /* Fonts & Shadows */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  
  /* Layout */
  --max-width: 1200px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  scroll-behavior: smooth;
  color: var(--text-dark);
  background-color: var(--bg-white);
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.25;
  color: var(--primary-color);
  letter-spacing: -0.025em;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1.25rem;
  color: var(--text-dark);
  font-size: 1rem;
}

a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-dark);
}

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

ul {
  list-style: none;
}

/* --------------------------------------------------------------------------
   2. Utility Classes
-------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section {
  padding: 5rem 0;
}

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

.section-title-wrapper {
  max-width: 768px;
  margin: 0 auto 3.5rem auto;
  text-align: center;
}

.section-subtitle {
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
  display: block;
}

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

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2rem; }

/* Buttons & CTAs */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-sm);
}

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

.btn-primary:hover {
  background-color: var(--accent-hover);
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-white:hover {
  background-color: var(--bg-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-whatsapp {
  background-color: #25d366;
  color: var(--bg-white);
}

.btn-whatsapp:hover {
  background-color: #128c7e;
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* --------------------------------------------------------------------------
   3. Top Bar & Header Navigation
-------------------------------------------------------------------------- */
.top-bar {
  background-color: var(--primary-color);
  color: var(--bg-white);
  font-size: 0.8125rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top-bar-contact a {
  color: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  gap: 0.37rem;
}

.top-bar-contact a:hover {
  color: var(--bg-white);
}

.top-bar-badge {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.top-bar-trust {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #fca5a5; /* Red / Gold text */
  font-weight: 600;
}

.top-bar-trust svg {
  fill: currentColor;
}

/* Header */
.main-header {
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4.5rem;
}

.logo-wrapper {
  display: flex;
  align-items: center;
}

.logo {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo span {
  color: var(--secondary-color);
}

.logo svg {
  width: 2rem;
  height: 2rem;
  fill: var(--secondary-color);
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.9375rem;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
}

.nav-link:hover, .nav-link.active {
  color: var(--secondary-color);
  border-bottom-color: var(--secondary-color);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  display: block;
  width: 1.5rem;
  height: 2px;
  background-color: var(--primary-color);
  margin: 4px 0;
  transition: 0.4s;
}

/* --------------------------------------------------------------------------
   4. Hero Section
-------------------------------------------------------------------------- */
.hero {
  background: radial-gradient(circle at 100% 0%, #f0fdf4 0%, #f8fafc 100%);
  padding: 4.5rem 0 5rem 0;
  position: relative;
  border-bottom: 1px solid var(--border-color);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #f0fdf4;
  color: var(--success-color);
  border: 1px solid #bbf7d0;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3.125rem;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero-desc {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

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

.hero-bullet-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
}

.hero-bullet-icon {
  color: var(--success-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
}

/* Hero Trust Card (Right Column) */
.hero-trust-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
  padding: 2.5rem;
  text-align: center;
}

.hero-trust-stars {
  color: var(--warning-color);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.hero-trust-heading {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.hero-trust-subtext {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.hero-trust-badges {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.hero-trust-badge-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.75rem 1rem;
  background-color: var(--bg-light);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.hero-trust-badge-icon {
  background-color: var(--bg-white);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.hero-trust-badge-content h4 {
  font-size: 0.9375rem;
  margin-bottom: 0.125rem;
}

.hero-trust-badge-content p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   5. Stat Funnel Bar
-------------------------------------------------------------------------- */
.stat-bar {
  background-color: var(--primary-color);
  color: var(--bg-white);
  padding: 2.5rem 0;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}

/* --------------------------------------------------------------------------
   6. Grid Configurations & Cards
-------------------------------------------------------------------------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

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

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

/* Generic Card Styles */
.card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Problem Solution Section */
.problem-card {
  border-left: 4px solid #ef4444; /* Red border */
}

.problem-card-icon {
  color: #ef4444;
  margin-bottom: 1.25rem;
}

.solution-card-top {
  grid-column: span 3;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  color: var(--bg-white);
  padding: 3rem;
  border-radius: var(--radius-xl);
  border: none;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.solution-card-top h3 {
  color: var(--bg-white);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.solution-card-top p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 650px;
  margin-bottom: 0;
  font-size: 1.125rem;
}

.solution-card-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Process Section */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.process-card {
  position: relative;
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border-color);
  text-align: center;
  box-shadow: var(--shadow-sm);
  z-index: 1;
}

.process-number {
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 3rem;
  height: 3rem;
  background-color: var(--secondary-color);
  color: var(--bg-white);
  font-size: 1.25rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--bg-white);
  box-shadow: var(--shadow-md);
}

.process-time {
  display: inline-block;
  background-color: var(--bg-light);
  color: var(--text-muted);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

/* --------------------------------------------------------------------------
   7. Inclusions / Everything You Need List
-------------------------------------------------------------------------- */
.inclusion-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.inclusion-item {
  display: flex;
  gap: 1.25rem;
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.inclusion-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-md);
  background-color: rgba(2, 132, 199, 0.1);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.inclusion-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: currentColor;
}

.inclusion-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background-color: var(--success-light);
  color: var(--success-color);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  margin-top: 0.5rem;
}

/* --------------------------------------------------------------------------
   8. Comparison Table Styles
-------------------------------------------------------------------------- */
.table-responsive {
  overflow-x: auto;
  margin-top: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background-color: var(--bg-white);
  font-size: 0.9375rem;
}

.comparison-table th, .comparison-table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
  background-color: var(--primary-color);
  color: var(--bg-white);
  font-weight: 700;
}

.comparison-table tr:hover {
  background-color: var(--bg-light);
}

/* Highlight Recommended Column */
.comparison-table td.highlight, .comparison-table th.highlight {
  background-color: #f0fdf4; /* Light green tint */
  font-weight: 600;
}

.comparison-table th.highlight {
  background-color: #047857; /* Deep emerald */
  color: var(--bg-white);
}

.table-badge-winner {
  background-color: #f0fdf4;
  color: #047857;
  border: 1px solid #a7f3d0;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-block;
  margin-top: 0.25rem;
}

/* --------------------------------------------------------------------------
   9. Country Grid Section
-------------------------------------------------------------------------- */
.country-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.country-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.country-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary-color);
}

.country-flag {
  width: 3.5rem;
  height: 2.5rem;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow-sm);
}

.country-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.country-badge {
  background-color: #eff6ff;
  color: var(--secondary-color);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.125rem 0.5rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.5rem;
}

.country-link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--secondary-color);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

/* --------------------------------------------------------------------------
   10. Use Cases Section
-------------------------------------------------------------------------- */
.use-case-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.use-case-icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.use-case-link {
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 1rem;
}

/* --------------------------------------------------------------------------
   11. Success Stories / Testimonials
-------------------------------------------------------------------------- */
.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-rating {
  color: var(--warning-color);
  margin-bottom: 1rem;
}

.testimonial-quote {
  font-style: italic;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

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

.testimonial-avatar {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--primary-color);
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9375rem;
}

.testimonial-author-info h4 {
  font-size: 0.9375rem;
  margin-bottom: 0.125rem;
}

.testimonial-author-info p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   12. FAQ Accordion Layout
-------------------------------------------------------------------------- */
.faq-wrapper {
  max-width: 850px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--primary-color);
  cursor: pointer;
  background-color: var(--bg-white);
  transition: var(--transition);
}

.faq-question:hover {
  background-color: var(--bg-light);
}

.faq-icon {
  width: 1.25rem;
  height: 1.25rem;
  fill: var(--text-muted);
  transition: transform 0.3s;
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  border-top: 0px solid var(--border-color);
  background-color: var(--bg-white);
}

/* If active using class or detail tag */
.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

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

/* Detailed HTML5 Accordion as alternative fallback */
details.faq-details {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
}

details.faq-details summary {
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--primary-color);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

details.faq-details summary::-webkit-details-marker {
  display: none;
}

details.faq-details summary::after {
  content: '▼';
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: var(--transition);
}

details.faq-details[open] summary::after {
  transform: rotate(180deg);
}

details.faq-details .faq-answer-content {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border-color);
}

/* --------------------------------------------------------------------------
   13. Bottom Lead CTA & Conversion Section
-------------------------------------------------------------------------- */
.bottom-cta {
  background: radial-gradient(circle at 0% 100%, #0f172a 0%, #1e293b 100%);
  color: var(--bg-white);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.bottom-cta h2, .bottom-cta p {
  color: var(--bg-white);
}

.bottom-cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.bottom-cta-bullets {
  margin: 2rem 0;
}

.bottom-cta-bullet {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.0625rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.bottom-cta-bullet svg {
  color: var(--success-color);
}

.pricing-box-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  color: var(--primary-color);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
  text-align: center;
}

.pricing-box-header {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}

.pricing-box-price {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin: 0.5rem 0;
}

.pricing-box-price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-box-features {
  text-align: left;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pricing-box-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
}

.pricing-box-feature-item svg {
  color: var(--success-color);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   14. Forms & Interactive Components (Contact / Lead form)
-------------------------------------------------------------------------- */
.contact-form-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid #cbd5e1;
  background-color: var(--bg-white);
  color: var(--text-dark);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-submit-btn {
  width: 100%;
}

/* --------------------------------------------------------------------------
   15. Footer Section
-------------------------------------------------------------------------- */
.main-footer {
  background-color: var(--primary-color);
  color: rgba(255, 255, 255, 0.75);
  padding: 4.5rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9375rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-col-title {
  color: var(--bg-white);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.footer-logo {
  color: var(--bg-white);
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo span {
  color: var(--secondary-color);
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
}

.footer-links a:hover {
  color: var(--bg-white);
  transform: translateX(2px);
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-contact-item svg {
  color: var(--secondary-color);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.875rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-social-link {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social-link:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   16. Interactive Floating Widgets & Elements
-------------------------------------------------------------------------- */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  background-color: #25d366;
  color: var(--bg-white);
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
  transition: var(--transition);
  animation: pulse-whatsapp 2s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  background-color: #128c7e;
}

.floating-whatsapp svg {
  width: 2rem;
  height: 2rem;
  fill: currentColor;
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Sales Notification Toast */
.sales-toast {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 9999;
  background-color: var(--bg-white);
  color: var(--primary-color);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 350px;
  animation: slide-in 0.5s ease-out, fade-out 0.5s ease-in 4.5s forwards;
}

.sales-toast-avatar {
  width: 2.25rem;
  height: 2.25rem;
  background-color: var(--secondary-color);
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.sales-toast-content {
  font-size: 0.8125rem;
  line-height: 1.4;
}

.sales-toast-content strong {
  font-weight: 700;
  color: var(--primary-color);
}

.sales-toast-time {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: block;
  margin-top: 0.125rem;
}

@keyframes slide-in {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}

/* --------------------------------------------------------------------------
   17. Responsive Media Queries (Mobile & Tablet optimizations)
-------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-trust-card {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .country-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 3.5rem 0;
  }
  
  .top-bar {
    display: none; /* Hide top bar on mobile for cleaner look */
  }
  
  /* Mobile Navigation Styles */
  .main-header .container {
    position: relative;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: absolute;
    top: 4.5rem;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 2px solid var(--secondary-color);
    box-shadow: var(--shadow-lg);
    display: none; /* Controlled by CSS state or basic JS */
  }
  
  /* Mobile toggle trick with checkbox if required, or simple click class */
  .nav-menu.active {
    display: flex;
  }
  
  .nav-link {
    width: 100%;
    text-align: center;
    padding: 0.75rem 0;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .process-card {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .inclusion-list {
    grid-template-columns: 1fr;
  }
  
  .bottom-cta-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .bottom-cta-grid .btn {
    width: 100%;
  }
  
  .country-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  
  .stat-grid {
    grid-template-columns: 1fr;
  }
  
  .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .country-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-ctas .btn {
    width: 100%;
  }
  
  .hero-bullets {
    grid-template-columns: 1fr;
  }
}
