/* ============================================================
   Global Insurance Pro — Main Stylesheet
   Brand: Forest Green + Lime Accent | IBM Plex Sans
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  --forest-950: #001525;
  --forest-900: #002035;
  --forest-800: #003048;
  --forest-700: #004063;
  --forest-600: #005C7B;
  --forest-500: #00865B;
  --forest-400: #00A475;
  --forest-300: #2DC998;
  --forest-200: #7DE3C5;
  --forest-100: #C0F2E3;
  --forest-50:  #E6FAF4;

  --lime:       #E6FCA2;
  --lime-dark:  #CDEF7A;
  --lime-light: #F0FDCA;

  --cta:        #00865B;
  --cta-dark:   #006E49;
  --cta-light:  #00A475;

  --neutral-950: #0A100D;
  --neutral-900: #111E18;
  --neutral-800: #1C3028;
  --neutral-700: #2D4D3C;
  --neutral-600: #4A7060;
  --neutral-500: #6B9482;
  --neutral-400: #93B3A5;
  --neutral-300: #C0D7CC;
  --neutral-200: #DFF0E8;
  --neutral-100: #F2F8F5;
  --neutral-50:  #F9FCFB;
  --white:       #FFFFFF;

  --font-sans:  'IBM Plex Sans', system-ui, -apple-system, sans-serif;

  --shadow-sm:    0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:    0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg:    0 10px 24px rgba(0,0,0,0.10), 0 4px 8px rgba(0,0,0,0.05);
  --shadow-xl:    0 20px 40px rgba(0,0,0,0.12), 0 8px 16px rgba(0,0,0,0.06);
  --shadow-green: 0 8px 32px rgba(0, 92, 123, 0.28);
  --shadow-lime:  0 8px 32px rgba(230, 252, 162, 0.35);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--neutral-900);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

a { text-decoration: none; color: inherit; }

/* ── Navigation ─────────────────────────────────────────────── */
#site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--forest-900);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow var(--transition);
}

#site-nav.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 68px;
  gap: 8px;
}

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 12px;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  flex-wrap: nowrap;
}

.nav-link {
  color: rgba(255,255,255,0.88);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.10);
}

.nav-link.active {
  color: var(--lime);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  color: rgba(255,255,255,0.88);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
  user-select: none;
}

.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle {
  color: var(--white);
  background: rgba(255,255,255,0.10);
}

.nav-dropdown-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
}

.nav-dropdown.open .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--forest-800);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-md);
  min-width: 240px;
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity var(--transition), transform var(--transition);
  box-shadow: var(--shadow-xl);
}

.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 400;
  transition: background var(--transition), color var(--transition);
}

.dropdown-item:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}

.dropdown-icon {
  width: 28px;
  height: 28px;
  background: rgba(200,230,25,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dropdown-icon svg {
  width: 14px;
  height: 14px;
  color: var(--lime);
}

/* Nav Right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: auto;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 6px 8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: color var(--transition);
  white-space: nowrap;
}

.lang-btn:hover { color: var(--white); }

.btn-nav-cta {
  background: var(--lime);
  color: var(--forest-900);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: var(--radius-full);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-nav-cta:hover {
  background: var(--lime-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lime);
}

/* ── Language Toggle ─────────────────────────────────────── */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-full);
  padding: 3px 6px;
}

.lang-sep {
  color: rgba(255,255,255,0.25);
  font-size: 0.75rem;
  line-height: 1;
}

.lang-toggle-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.55);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 8px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.lang-toggle-btn:hover {
  color: var(--white);
  background: rgba(255,255,255,0.10);
}

.lang-toggle-btn.active {
  background: var(--lime);
  color: var(--forest-900);
}

@media (max-width: 768px) {
  .lang-toggle { display: none; }
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.hamburger:hover { background: rgba(255,255,255,0.08); }

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity 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); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--forest-900);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 24px 24px;
  z-index: 999;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  max-height: calc(100vh - 68px);
  overflow-y: auto;
}

.mobile-menu.open { display: block; }

.mobile-menu-link {
  display: block;
  padding: 12px 0;
  color: rgba(255,255,255,0.88);
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition);
}

.mobile-menu-link:hover { color: var(--lime); }

.mobile-sub-links {
  padding: 4px 0 4px 16px;
}

.mobile-sub-link {
  display: block;
  padding: 8px 0;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.mobile-sub-link:hover { color: var(--lime); }

.mobile-cta {
  margin-top: 20px;
  display: block;
  text-align: center;
  background: var(--lime);
  color: var(--forest-900);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px;
  border-radius: var(--radius-full);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.btn-lg { font-size: 1rem; padding: 16px 36px; }
.btn-md { font-size: 0.9rem; padding: 13px 28px; }
.btn-sm { font-size: 0.82rem; padding: 10px 20px; }

.btn-primary {
  background: var(--cta);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--cta-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}

.btn-lime {
  background: var(--lime);
  color: var(--forest-900);
}
.btn-lime:hover {
  background: var(--lime-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lime);
}

.btn-white {
  background: var(--white);
  color: var(--forest-800);
}
.btn-white:hover {
  background: var(--neutral-100);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.10);
  border-color: var(--white);
}

.btn-outline-green {
  background: transparent;
  color: var(--forest-700);
  border: 2px solid var(--forest-700);
}
.btn-outline-green:hover {
  background: var(--forest-700);
  color: var(--white);
}

/* ── Layout Utilities ───────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-sm {
  padding: 64px 0;
}

.section-lg {
  padding: 128px 0;
}

.pt-nav { padding-top: 68px; }

/* ── Hero Sections ──────────────────────────────────────────── */
.hero-dark {
  background: linear-gradient(135deg, var(--forest-950) 0%, var(--forest-900) 40%, var(--forest-800) 100%);
  position: relative;
  overflow: hidden;
}

.hero-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(21,122,88,0.25) 0%, transparent 65%);
  pointer-events: none;
}

.hero-medium {
  background: linear-gradient(135deg, var(--forest-800) 0%, var(--forest-700) 60%, var(--forest-600) 100%);
  position: relative;
  overflow: hidden;
}

.hero-medium::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 80%, rgba(200,230,25,0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* ── Section Colors ─────────────────────────────────────────── */
.bg-forest-dark  { background: var(--forest-900); }
.bg-forest-medium { background: var(--forest-700); }
.bg-forest-light { background: var(--forest-50); }
.bg-lime-tint   { background: linear-gradient(135deg, #f0f9f4 0%, #e8f7f0 100%); }
.bg-white        { background: var(--white); }

/* ── Typography Scales ──────────────────────────────────────── */
.display-xl {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.display-lg {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.display-md {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.display-sm {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 600;
  line-height: 1.25;
}

.text-lime  { color: var(--lime); }
.text-cta   { color: var(--cta); }
.text-forest { color: var(--forest-700); }
.text-forest-light { color: var(--forest-500); }
.text-white { color: var(--white); }
.text-white-muted { color: rgba(255,255,255,0.72); }
.text-body { color: var(--neutral-700); }
.text-muted { color: var(--neutral-500); }

.lead {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.7;
  font-weight: 400;
}

/* ── Section Headers ────────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 12px;
}

.section-label-dark {
  color: var(--forest-600);
}

.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

/* ── Service Cards ──────────────────────────────────────────── */
.service-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform var(--transition-slow), box-shadow var(--transition-slow), border-color var(--transition-slow);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--forest-600), var(--lime));
  transform: scaleX(0);
  transition: transform var(--transition-slow);
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--forest-200);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--forest-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background var(--transition-slow);
}

.service-card:hover .service-icon {
  background: var(--forest-100);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--forest-600);
}

/* ── Stat Cards ─────────────────────────────────────────────── */
.stat-card {
  text-align: center;
  padding: 24px 16px;
}

.stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--lime);    /* default: on dark backgrounds */
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);  /* default: on dark backgrounds */
  font-weight: 400;
}

/* ── Process Steps ──────────────────────────────────────────── */
.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 20px;
}

.step-number {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--forest-600), var(--forest-500));
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: var(--shadow-green);
  position: relative;
}

.step-number::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: var(--radius-full);
  border: 2px solid rgba(200,230,25,0.3);
}

/* ── Testimonials ───────────────────────────────────────────── */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--neutral-200);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 5rem;
  line-height: 1;
  color: var(--forest-100);
  font-family: Georgia, serif;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--neutral-700);
  margin-bottom: 20px;
  padding-top: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 2px solid var(--forest-100);
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--neutral-900);
}

.testimonial-location {
  font-size: 0.8rem;
  color: var(--neutral-500);
}

/* ── Team Cards ─────────────────────────────────────────────── */
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.team-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
}

.team-info {
  padding: 24px;
  background: var(--white);
}

.team-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.82rem;
  color: var(--forest-600);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.team-bio {
  font-size: 0.9rem;
  color: var(--neutral-600);
  line-height: 1.6;
}

/* ── Blog Cards ─────────────────────────────────────────────── */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--neutral-200);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.blog-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card-img {
  transform: scale(1.03);
}

.blog-card-img-wrapper {
  overflow: hidden;
}

.blog-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest-600);
  background: var(--forest-50);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.blog-card-title {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--neutral-900);
  margin-bottom: 10px;
  flex: 1;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--forest-600);
  transition: gap var(--transition), color var(--transition);
}

.blog-card:hover .blog-read-more {
  gap: 10px;
  color: var(--forest-700);
}

/* ── Forms ──────────────────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
}

.form-label-dark {
  color: var(--neutral-800);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-md);
  padding: 13px 16px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255,255,255,0.40);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--lime);
  background: rgba(255,255,255,0.14);
  box-shadow: 0 0 0 3px rgba(200,230,25,0.18);
}

.form-input-light {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  color: var(--neutral-900);
}

.form-input-light::placeholder { color: var(--neutral-400); }

.form-input-light:focus {
  border-color: var(--forest-500);
  box-shadow: 0 0 0 3px rgba(28,158,114,0.12);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='rgba(255,255,255,0.6)'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 44px;
  cursor: pointer;
}

.form-select option { background: var(--forest-800); color: var(--white); }

.form-radio-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}

.form-radio-label input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--lime);
  cursor: pointer;
}

.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.form-checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--lime);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
}

.btn-submit {
  width: 100%;
  background: var(--lime);
  color: var(--forest-900);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all var(--transition);
}

.btn-submit:hover {
  background: var(--lime-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lime);
}

.btn-submit:active {
  transform: translateY(0);
}

.form-trust-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  text-align: center;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.form-trust-note svg {
  width: 14px;
  height: 14px;
  color: var(--cta);
  flex-shrink: 0;
}

/* ── Ticker ─────────────────────────────────────────────────── */
.ticker-wrap {
  overflow: hidden;
  background: var(--forest-600);
  padding: 14px 0;
  position: relative;
}

.ticker-wrap::before,
.ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 1;
}
.ticker-wrap::before { left: 0; background: linear-gradient(to right, var(--forest-600), transparent); }
.ticker-wrap::after  { right: 0; background: linear-gradient(to left, var(--forest-600), transparent); }

.ticker-track {
  display: flex;
  gap: 40px;
  animation: ticker 30s linear infinite;
  width: max-content;
}

.ticker-wrap:hover .ticker-track { animation-play-state: paused; }

.ticker-item {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ticker-dot {
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background: var(--lime);
  flex-shrink: 0;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Check List ─────────────────────────────────────────────── */
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.5;
}

.check-item-dark {
  color: var(--neutral-700);
}

.check-icon {
  width: 22px;
  height: 22px;
  background: rgba(200,230,25,0.15);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.check-icon svg {
  width: 12px;
  height: 12px;
  color: var(--lime);
}

.check-icon-dark {
  background: var(--forest-100);
}

.check-icon-dark svg {
  color: var(--forest-600);
}

/* ── Why Us Grid ────────────────────────────────────────────── */
.why-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.08);
  transition: background var(--transition), border-color var(--transition);
}

.why-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(200,230,25,0.2);
}

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(200,230,25,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-icon svg {
  width: 24px;
  height: 24px;
  color: var(--lime);
}

/* ── Floating CTA Banner ────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--forest-800) 0%, var(--forest-700) 100%);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(200,230,25,0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Footer ─────────────────────────────────────────────────── */
#site-footer {
  background: var(--forest-950);
  color: rgba(255,255,255,0.72);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 24px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  max-width: 200px;
  margin-bottom: 16px;
  object-fit: contain;
}

.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
  cursor: pointer;
}

.social-btn:hover {
  background: var(--forest-600);
  transform: translateY(-2px);
}

.social-btn svg {
  width: 16px;
  height: 16px;
  color: var(--white);
}

.footer-heading {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--lime); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-contact-icon {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-contact-icon svg {
  width: 14px;
  height: 14px;
  color: var(--lime);
}

.footer-contact-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.footer-contact-text a { transition: color var(--transition); }
.footer-contact-text a:hover { color: var(--lime); }

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  column-gap: 32px;
  row-gap: 16px;
}

.footer-disclaimer {
  grid-column: 1;
  grid-row: 1;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  max-width: 560px;
  margin: 0;
}

.footer-legal-links {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  gap: 20px;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
}

.footer-legal-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}

.footer-legal-links a:hover { color: var(--lime); }

.footer-copyright {
  grid-column: 1 / -1;
  grid-row: 2;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.bizmasoft-credit {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity var(--transition);
  vertical-align: middle;
}

.bizmasoft-credit:hover { opacity: 1; }

.bizmasoft-logo {
  height: 16px;
  width: auto;
  display: block;
}

/* ── Animations ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes pulseRing {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.08); opacity: 0.7; }
}

.animate-fade-up {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}

.animate-fade-up.delay-1 { animation-delay: 0.1s; }
.animate-fade-up.delay-2 { animation-delay: 0.2s; }
.animate-fade-up.delay-3 { animation-delay: 0.3s; }
.animate-fade-up.delay-4 { animation-delay: 0.4s; }

/* Intersection Observer driven */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }
.reveal.delay-5 { transition-delay: 0.5s; }

/* ── Misc Components ────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
}

.badge-lime {
  background: rgba(200,230,25,0.15);
  color: var(--lime);
  border: 1px solid rgba(200,230,25,0.25);
}

.badge-green {
  background: var(--forest-50);
  color: var(--forest-700);
  border: 1px solid var(--forest-100);
}

.badge-white {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.18);
}

.divider-line {
  display: block;
  width: 48px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--forest-500), var(--lime));
  margin: 20px 0;
}

.divider-center { margin-left: auto; margin-right: auto; }

/* Hero image overlays */
.img-overlay-dark {
  position: relative;
}
.img-overlay-dark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(7,56,40,0.75) 0%, rgba(7,56,40,0.2) 60%, transparent 100%);
}

.img-overlay-soft {
  position: relative;
}
.img-overlay-soft::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(7,56,40,0.8) 100%);
}

/* ── Lead Magnet Pages ──────────────────────────────────────── */
.lead-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--forest-900) 0%, var(--forest-800) 100%);
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}

.lead-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(21,122,88,0.2) 0%, transparent 65%);
  pointer-events: none;
}

.lead-form-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  backdrop-filter: blur(8px);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-right .lang-btn { display: none; }
  .nav-right .btn-nav-cta { display: none; }
  .hamburger { display: flex; }

  .section { padding: 64px 0; }
  .section-lg { padding: 80px 0; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { grid-template-columns: 1fr; }
  .footer-disclaimer { grid-column: 1; grid-row: 1; }
  .footer-legal-links { grid-column: 1; grid-row: 2; flex-wrap: wrap; gap: 12px; }
  .footer-copyright { grid-column: 1; grid-row: 3; }

  .cta-banner { padding: 40px 24px; }
  .lead-form-card { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .nav-inner { padding: 0 16px; }
  .display-xl { font-size: 2rem; }
  .display-lg { font-size: 1.75rem; }
  .display-md { font-size: 1.4rem; }
}

/* ── Accessibility ──────────────────────────────────────────── */
:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .ticker-track { animation: none; }
}

/* ── Utility ────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

.overflow-hidden { overflow: hidden; }

/* ── Global Mobile Responsive — Inline Grid Overrides ────────── */
@media (max-width: 768px) {

  /* Two-column hero & content grids → single column */
  div[style*="grid-template-columns:1fr 1fr"],
  div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  /* Three-column grids → single column */
  div[style*="grid-template-columns:repeat(3,1fr)"],
  div[style*="grid-template-columns: repeat(3,1fr)"],
  div[style*="grid-template-columns:repeat(3, 1fr)"] {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  /* Four-column grids → two columns */
  div[style*="grid-template-columns:repeat(4,1fr)"],
  div[style*="grid-template-columns: repeat(4,1fr)"],
  div[style*="grid-template-columns:repeat(4, 1fr)"] {
    grid-template-columns: 1fr 1fr !important;
    gap: 1px !important;
  }

  /* Two-column service listing → single column */
  div[style*="grid-template-columns:1fr 2fr"],
  div[style*="grid-template-columns: 1fr 2fr"],
  div[style*="grid-template-columns:2fr 1fr"],
  div[style*="grid-template-columns: 2fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  /* Blog article + sidebar → single column */
  div[style*="grid-template-columns:2fr 1fr"] aside,
  div[style*="grid-template-columns: 2fr 1fr"] aside {
    position: static !important;
  }

  /* Hero min-height adjustments */
  section[style*="min-height:100vh"],
  section[style*="min-height: 100vh"] {
    min-height: auto !important;
  }

  /* Fix hero image height on mobile */
  div[style*="height:560px"],
  div[style*="height: 560px"],
  div[style*="height:500px"],
  div[style*="height:440px"] {
    height: auto !important;
    aspect-ratio: 4/3;
  }

  /* Hero image in service pages */
  div[style*="position:relative;overflow:hidden"] img[style*="height:100%"] {
    height: 280px !important;
    object-fit: cover;
  }

  /* Floating badges — hide on mobile to avoid overflow */
  div[style*="position:absolute;bottom:-20px"],
  div[style*="position:absolute;top:28px;right:-16px"],
  div[style*="position:absolute;bottom:28px;left:-20px"] {
    display: none !important;
  }

  /* Two-column contact/form rows → single column */
  div[style*="grid-template-columns:1fr auto"],
  div[style*="grid-template-columns: 1fr auto"] {
    grid-template-columns: 1fr !important;
  }

  /* Fix inline padding for hero sections on mobile */
  div[style*="padding:80px 0 80px 5%"],
  div[style*="padding:80px 5%"] {
    padding: 40px 0 !important;
  }

  /* Stat grid: 4col → 2col */
  div[style*="grid-template-columns:repeat(4,1fr)"] {
    grid-template-columns: 1fr 1fr !important;
  }

  /* Three-col blog guide strip → single col */
  div[style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
  }

  /* Lead form card */
  .lead-form-card {
    padding: 24px 16px !important;
  }

  /* Team card photos — lower height on mobile */
  .team-photo {
    aspect-ratio: 1/1 !important;
  }

  /* Blog card full-width override */
  a.blog-card[style*="grid-column:1/-1"] > div,
  div.blog-card[style*="grid-column:1/-1"] > div {
    grid-template-columns: 1fr !important;
  }

  /* Stat numbers — smaller */
  .stat-number {
    font-size: 1.8rem !important;
  }

  /* Why card text */
  .why-card {
    flex-direction: column;
    gap: 12px;
  }

  /* Ticker */
  .ticker-wrap::before,
  .ticker-wrap::after {
    width: 32px;
  }

  /* Footer social */
  .footer-social {
    flex-wrap: wrap;
  }
}

/* ── Tablet Adjustments ─────────────────────────────────────── */
@media (max-width: 1024px) and (min-width: 769px) {
  div[style*="grid-template-columns:repeat(3,1fr)"],
  div[style*="grid-template-columns: repeat(3,1fr)"] {
    grid-template-columns: 1fr 1fr !important;
    gap: 20px !important;
  }
}
