/* === Ejecutiva Tax Modern Site Styles === */

:root {
  --brand: #1e73be;
  --brand-2: #1565a0;
  --ink: #0f172a;
  --muted: #64748b;
  --bg: #f8f9fa;
  --card: #ffffff;
  --radius: 8px;
  --shadow: 0 4px 12px rgba(0,0,0,.08);
  --gold: #fbbf24;
}

/* === Global Fix: Topbar + Header Alignment === */
.topstrip {
  background: var(--brand);
  color: #fff;
  font-size: 0.85rem;
  padding: 0.25rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.topstrip .row {
  display: flex;
  justify-content: center;
  align-items: center;
}

.topstrip .item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.topstrip .item a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.topstrip .dot {
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
  opacity: 0.6;
}

.btn-topbar {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 1rem;
  background: #fff !important;
  color: var(--brand) !important;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-decoration: none;
}

.btn-topbar:hover {
  background: #f8f9fa !important;
  color: var(--brand) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; scroll-behavior: smooth; }
body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background-color: var(--card);
  font-size: 16px;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
}

/* Header / Navigation */
header {
  background: var(--card);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  min-height: 60px;
}

.brand .logo {
  height: 50px;
  width: auto;
}

.nav.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav.desktop-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  transition: color 0.3s;
}

.nav.desktop-nav a:hover,
.nav.desktop-nav a.active {
  color: var(--brand);
}

.nav.desktop-nav .btn {
  margin-left: 1rem;
}

/* Dropdown Navigation */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  transition: color 0.3s;
}

.dropdown-toggle:hover {
  color: var(--brand);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--card);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s;
  z-index: 1000;
  padding: 0.5rem 0;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid #f3f4f6;
  transition: background 0.3s;
}

.dropdown-menu a:hover {
  background: var(--bg);
  color: var(--brand);
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--ink);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.container { width: 90%; max-width: 1100px; margin: 0 auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: var(--brand);
  color: #fff !important;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s, transform 0.2s;
  box-shadow: var(--shadow);
  text-decoration: none !important;
}
.btn:hover {
  background: var(--brand-2);
  transform: translateY(-1px);
  color: #fff !important;
}
.btn.secondary {
  background: #fff;
  color: var(--brand) !important;
  border: 1px solid var(--brand);
}
.btn.secondary:hover {
  background: var(--bg);
  color: var(--brand) !important;
}

.btn.small {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Primary button style for hero CTA */
.btn-primary {
  background-color: var(--brand);
  border-radius: 6px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff !important;
  box-shadow: 0 4px 10px rgba(30,115,190,0.2);
  transition: all 0.3s ease;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-primary:hover {
  background-color: var(--brand-2);
  transform: translateY(-2px);
  color: #fff !important;
  box-shadow: 0 6px 15px rgba(30,115,190,0.3);
}

/* Secondary button style */
.btn-secondary {
  background-color: #fff;
  border: 2px solid var(--brand);
  border-radius: 6px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand) !important;
  transition: all 0.3s ease;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-secondary:hover {
  background-color: var(--brand);
  color: #fff !important;
  transform: translateY(-2px);
}

/* Large button variant */
.btn-primary.btn-lg,
.btn-secondary.btn-lg {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
}

/* CTA band paragraph */
.cta-band p {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

/* Step list paragraph */
.step-list-note {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: #64748b;
}

/* Info card subtext */
.info-card-subtext {
  font-size: 0.85rem;
  color: #64748b;
  margin-top: 0.5rem;
}

/* Centered CTA for band sections */
.cta-centered {
  margin-top: 2rem;
  text-align: center;
}

/* Hero */
.hero {
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  color: var(--ink);
  padding: 80px 20px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-grid {
  display: block;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.1rem;
  color: #5c6b7a;
  margin-bottom: 2rem;
}

.hero .who-for {
  font-size: 1.1rem;
  color: #2c5282;
  font-weight: 500;
  margin-bottom: 1.5rem;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, #ebf8ff 0%, #e6f3ff 100%);
  border-radius: 6px;
  border-left: 4px solid var(--brand);
}

.hero .cta-group,
.about-content .cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}

.hero .trust-chips,
.about-content .trust-chips {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: #4a5568;
  margin-top: 1rem;
}

.hero .trust-chips span,
.about-content .trust-chips span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  background: #f7fafc;
  border-radius: 4px;
  border: 1px solid #e2e8f0;
}

.hero .kicker {
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
  color: var(--brand);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.hero .kicker::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  border-radius: 2px;
}

/* Badgebar - Certification Logos */
.badgebar {
  margin-top: 3rem;
}

.badgebar .label {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 2rem;
  font-weight: 500;
}

.badgebar .logos {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.logoChip {
  background: #fff;
  border-radius: 10px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: auto;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.logoChip:hover {
  transform: scale(1.05);
}

.logoChip img {
  max-width: 76px;
  max-height: 76px;
  object-fit: contain;
}

/* Features Section */
.features {
  background: var(--bg);
  padding: 80px 20px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e5e7eb;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,.1);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--brand-2);
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Stats Section */
.stats {
  position: relative;
  background: linear-gradient(160deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  clip-path: polygon(0 15%, 100% 0, 100% 85%, 0% 100%);
}

.stats h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-item h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
}

.stat-item p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* About Content */
.about-content {
  background: #fff;
  color: #333;
  padding: 80px 20px;
  text-align: left;
  max-width: 1000px;
  margin: 0 auto;
}

.about-content h2 {
  font-size: 0.85rem;
  color: var(--brand);
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.9;
}

.about-content h1 {
  font-size: 2rem;
  color: #0d1b2a;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

.about-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.5rem;
}

.about-content::before {
  content: "";
  display: block;
  height: 4px;
  width: 80px;
  background: var(--brand);
  margin-bottom: 20px;
  border-radius: 2px;
}

/* What You Need Card */
.what-you-need-card {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.what-you-need-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.what-you-need-card .info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.what-you-need-card .info-item {
  background: #fff;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.what-you-need-card .info-item h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-2);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.what-you-need-card .info-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.what-you-need-card .info-item li {
  font-size: 0.9rem;
  color: #475569;
  padding: 0.25rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.what-you-need-card .info-item li::before {
  content: "\2022";
  color: var(--brand);
  font-weight: bold;
}

.what-you-need-card .timeline {
  font-size: 0.9rem;
  color: #475569;
  font-weight: 500;
}

.what-you-need-card .languages {
  font-size: 0.9rem;
  color: #475569;
  font-weight: 500;
}

@media (max-width: 768px) {
  .what-you-need-card .info-grid {
    grid-template-columns: 1fr;
  }
}

/* About */
.about { background: var(--card); padding: 70px 0; }

/* --- ICONS --- */
.service-icon img,
.section-icon img {
  width: 64px;
  height: auto;
  margin: 0 auto 15px;
  display: block;
}

/* --- SECTIONS --- */
section {
  padding: 70px 20px;
}
section h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #0d1b2a;
  margin-bottom: 20px;
}
section p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
}

/* --- FOOTER --- */
footer {
  background-color: #1e73be;
  color: #fff;
  text-align: center;
  padding: 30px 20px;
  font-size: 0.9rem;
}
footer .footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
}
footer a {
  color: #fff;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}

/* Icon cards for better visual hierarchy */
.icon-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  padding: 30px;
  transition: transform 0.3s ease;
  text-align: center;
}
.icon-card:hover {
  transform: translateY(-3px);
}

/* Adjust glyph sizes */
.svc .glyph {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.sectionTitle h2 { font-size: 2rem; color: var(--brand); margin-bottom: 1rem; }
.about p { color: var(--muted); margin-bottom: 1rem; }
.ticks { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; margin-bottom: 1.5rem; }
.ticks li { display: flex; align-items: center; gap: 8px; font-weight: 600; color: #334155; }
.ticks i { color: var(--brand); }

/* Services */
.services { background: var(--bg); padding: 70px 0; text-align: center; }
.sectionTitle.center h2 { color: var(--brand-2); }
.intro { max-width: 700px; margin: 0 auto 2rem; color: var(--muted); }
.serviceGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.svc {
  background: var(--card);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid #e5e7eb;
}
.svc:hover { transform: translateY(-4px); box-shadow: 0 8px 20px rgba(0,0,0,.12); }
.svc .glyph {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ebf8ff 0%, #e6f3ff 100%);
}
.svc .title { font-weight: 700; font-size: 1.1rem; margin-bottom: 0.25rem; }
.svc .sub { opacity: 0.85; font-size: 0.9rem; }

/* Hero CTA - Centered */
.cta-group-center {
  display: flex;
  justify-content: center;
}

/* Hero Spacer */
.hero-spacer {
  height: 24px;
}

/* Featured Service Card */
.svcFeatured {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow);
  border: 2px solid var(--brand);
  max-width: 1000px;
  margin: 0 auto 2rem;
}
.svcFeatured .glyph {
  font-size: 2.5rem;
  flex-shrink: 0;
}
.svcFeatured .content {
  flex: 1;
  text-align: left;
}
.svcFeatured .title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.svcFeatured .sub {
  font-size: 1rem;
  opacity: 0.85;
}
.svcFeatured .btn {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .svcFeatured {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
  .svcFeatured .content {
    text-align: center;
  }
}

/* CTA */
.cta-band {
  background: var(--brand);
  color: #fff;
  text-align: center;
  padding: 60px 1rem;
}
.cta-band h2 { font-size: 2rem; margin-bottom: 1rem; }
.cta-band p { margin-bottom: 1.5rem; font-size: 1rem; }

/* Contact */
.contact { background: var(--card); padding: 70px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: flex-start;
}
.formCard, .sideCard {
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  background: var(--card);
}
.field { display: flex; flex-direction: column; margin-bottom: 1rem; }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--brand-2); margin-bottom: 0.25rem; }
.field input, .field select, .field textarea {
  border: 1px solid #d1d5db;
  border-radius: var(--radius);
  padding: 0.75rem;
  font-size: 1rem;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--brand);
  border-color: var(--brand);
}
.sideCard h4 { color: var(--brand); margin-bottom: 1rem; }
.citem { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; }
.cicon { font-size: 1.5rem; color: var(--brand); }

.experience-logo {
  margin-top: 2rem;
  text-align: center;
}

.experience-logo img {
  width: 100%;
  height: auto;
  max-width: 200px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Footer */
footer {
  background: var(--brand);
  color: #fff;
  padding: 30px 20px;
  font-size: 0.9rem;
}

.footerGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 1.5rem;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.foot {
  text-align: left;
}

.foot h5 {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.foot a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  transition: color 0.3s;
}

.foot a:hover {
  color: #fff;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Animations */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 1s ease, transform 1s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* === Mobile Drawer Navigation === */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100%;
  background: #fff;
  box-shadow: -4px 0 20px rgba(0,0,0,0.1);
  transition: right 0.4s ease;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
}

.mobile-drawer .drawer-inner a {
  display: block;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 1.25rem;
  font-size: 1rem;
  text-decoration: none;
}

.mobile-drawer .drawer-inner a.btn {
  margin-top: 1.5rem;
  color: #fff !important;
}

header[data-open="true"] .mobile-drawer {
  right: 0;
}

/* Dimmed background overlay */
header[data-open="true"]::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 999;
  transition: opacity 0.3s ease;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero { padding: 60px 20px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; text-align: center; }

  /* Mobile About Content */
  .about-content { padding: 60px 20px; }
  .about-content h1 { font-size: 1.8rem; }
  .serviceGrid { grid-template-columns: repeat(2, 1fr); }
  .svc { padding: 1.25rem 1rem; }
  .cta-band { padding: 50px 1rem; }
  .btn-primary {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
  .badgebar .logos {
    gap: 15px;
  }
  .logoChip {
    width: 80px;
    padding: 10px;
  }
  .logoChip img {
    max-width: 60px;
    max-height: 60px;
  }

  .experience-logo {
    margin-top: 1.5rem;
  }

  .experience-logo img {
    max-width: 150px;
  }
}

@media (max-width: 600px) {
  .serviceGrid { grid-template-columns: 1fr; }

  /* Mobile Features */
  .features { padding: 60px 20px; }
  .feature-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .feature-card { padding: 1.5rem; }

  /* Mobile Stats */
  .stats { padding: 60px 20px; clip-path: none; }
  .stats h2 { font-size: 1.5rem; margin-bottom: 2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .stat-item h3 { font-size: 2rem; }

  /* Mobile Navigation */
  .nav.desktop-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .navrow {
    padding: 0.75rem 0;
    min-height: 50px;
  }

  .brand .logo {
    height: 40px;
  }

  /* Mobile Footer */
  .footerGrid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .foot {
    text-align: center;
    border: none;
    padding: 0;
  }

  footer {
    padding: 30px 20px;
  }
}

/* === ABOUT PAGE STYLES === */

/* Hero Banner */
.about-hero {
  background: linear-gradient(180deg, rgba(47,119,183,.9) 0%, rgba(47,119,183,.7) 100%);
  color: #fff;
  text-align: center;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.about-hero h1 {
  font-size: 2.8rem;
  letter-spacing: 1px;
  font-weight: 900;
}

/* Team Banner */
.team-banner {
  background: linear-gradient(135deg, rgba(47,119,183,.95), rgba(31,95,155,.95));
  color: #fff;
  text-align: center;
  padding: 70px 1rem;
  position: relative;
  overflow: hidden;
}
.team-banner h2 {
  font-size: 2rem;
  letter-spacing: -0.4px;
  margin-bottom: 0.75rem;
}
.team-banner p {
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
}

/* Team Grid */
.team-grid {
  background: var(--bg);
  padding: 80px 0;
}
.team-grid .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.member-card {
  background: var(--card);
  border-radius: 14px;
  box-shadow: var(--shadow);
  text-align: center;
  padding: 2rem 1.25rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.member-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(2,6,23,0.1);
}
.member-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
}
.member-card h3 {
  font-size: 1.2rem;
  color: var(--brand-2);
  margin-bottom: 0.3rem;
}
.member-card .role {
  font-weight: 700;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}
.member-card p {
  font-size: 0.9rem;
  color: var(--ink);
  line-height: 1.6;
}

/* Stats Banner */
.stats-banner {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #fff;
  padding: 70px 0;
  text-align: center;
}
.stats-banner .stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}
.stat {
  text-align: center;
}
.stat .num {
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.5rem;
}
.stat .lbl {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Process List Styles */
.process-list {
  margin-top: 2rem;
}
.process-item {
  margin-bottom: 2rem;
}
.process-item h3 {
  color: var(--brand);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.process-item .ticks {
  margin: 0.5rem 0 0 0;
}
.process-item .ticks li {
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}

/* Service Benefits */
.service-benefits {
  background: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.service-benefits h3 {
  color: var(--brand);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.service-benefits .numbered-list {
  margin: 1rem 0;
  padding-left: 1rem;
}
.service-benefits .numbered-list li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
}
.service-benefits .highlight {
  background: var(--bg);
  padding: 1.5rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--brand);
  margin-top: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* License List */
.license-list {
  margin: 1rem 0;
  padding-left: 0;
  list-style: none;
}
.license-list li {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.5;
  position: relative;
  padding-left: 1.5rem;
}
.license-list li:before {
  content: "\1F4CB";
  position: absolute;
  left: 0;
  font-size: 0.8rem;
}

.license-highlight {
  background: var(--bg);
  padding: 1.5rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--brand);
  margin-top: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.payroll-highlight {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: white;
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.document-list {
  margin: 1rem 0;
  padding-left: 0;
  list-style: none;
}
.document-list li {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.5;
  position: relative;
  padding-left: 1.5rem;
}
.document-list li:before {
  content: "\1F4C4";
  position: absolute;
  left: 0;
  font-size: 0.8rem;
}

.translation-highlight {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: white;
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 600;
  box-shadow: var(--shadow);
  margin-top: 1.5rem;
}

.itin-highlight {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: white;
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.7;
  font-weight: 600;
  box-shadow: var(--shadow);
}

/* Contact Page Styles */
.contact-highlight {
  background: var(--bg);
  padding: 1.5rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--brand);
  margin-top: 2rem;
}
.contact-highlight h4 {
  color: var(--brand);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.map-container {
  margin-top: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* Resources Page Styles */
.resource-card {
  text-align: center;
  padding: 2rem 1.5rem;
}
.resource-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--brand);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: 1px solid var(--brand);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  transition: all 0.3s;
}
.resource-link:hover {
  background: var(--brand);
  color: white;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* Process section 2x2 grid */
.about .faq-grid {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
  .about .faq-grid {
    grid-template-columns: 1fr;
  }
}
.faq-item {
  background: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.faq-item h3 {
  color: var(--brand);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.faq-item p {
  line-height: 1.6;
  color: var(--muted);
}

.resource-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.content-card {
  background: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.content-card h3 {
  color: var(--brand);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
.content-card p {
  line-height: 1.6;
  color: var(--muted);
}

/* Navigation Dropdown */
.dropdown {
  position: relative;
}
.dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid var(--muted);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s;
  z-index: 1000;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--bg);
}
.dropdown-menu a:hover {
  background: var(--bg);
  color: var(--brand);
}
.dropdown-menu a:last-child {
  border-bottom: none;
}

/* Mobile Dropdown */
.mobile-dropdown {
  position: relative;
}
.mobile-dropdown .dropdown-toggle {
  display: block;
  padding: 1rem;
  border-bottom: 1px solid var(--muted);
}
.mobile-dropdown .dropdown-menu {
  background: var(--bg);
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  box-shadow: none;
  border: none;
  display: none;
}
.mobile-dropdown.active .dropdown-menu {
  display: block;
}
.mobile-dropdown .dropdown-menu a {
  padding: 0.75rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 2.2rem;
  }
  .member-card img {
    height: 260px;
  }
  .team-banner {
    padding: 50px 1rem;
  }
  .team-grid {
    padding: 60px 0;
  }
  .process-item h3 {
    font-size: 1rem;
  }
  .service-benefits {
    padding: 1.5rem;
  }
  .dropdown-menu {
    display: none !important;
  }
  .mobile-dropdown .dropdown-menu {
    display: none;
  }
  .mobile-dropdown.active .dropdown-menu {
    display: block;
  }
}

/* Custom Helpers */
.hidden { display: none !important; }
.map-iframe { border: 0; border-radius: var(--radius); }
.pt-0 { padding-top: 0 !important; }