/* ============================================================
   Guerrero Consulting — Site V2 Styles
   Colors: #0a1628 (navy) | #2E75B6 (blue) | #1a3a5c (mid navy)
   Font: Sora
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  color: #1e2a3a;
  background: #ffffff;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
[id] { scroll-margin-top: 90px; }

/* --- CSS Variables --- */
:root {
  --navy: #0a1628;
  --blue: #2E75B6;
  --mid: #1a3a5c;
  --light-blue: #7eb8e8;
  --accent-bg: #e8f2ff;
  --light-bg: #f8f9fb;
  --border: #e4eaf2;
  --text: #1e2a3a;
  --muted: #5a6a7a;
  --white: #ffffff;
  --header-h: 72px;
}

/* --- Typography --- */
h1,h2,h3,h4,h5 { font-weight: 700; color: var(--navy); line-height: 1.2; margin-top: 0; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); }
h3 { font-size: 1.25rem; }
p { line-height: 1.75; color: var(--muted); margin-top: 0; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

/* --- Buttons --- */
.btn-primary-gc {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}
.btn-primary-gc:hover { background: #1a5fa0; transform: translateY(-1px); color: var(--white); }

.btn-outline-gc {
  display: inline-block;
  border: 2px solid var(--white);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.2s;
}
.btn-outline-gc:hover { background: rgba(255,255,255,0.15); color: var(--white); }

.btn-ghost-blue {
  display: inline-block;
  border: 2px solid var(--blue);
  color: var(--blue);
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
}
.btn-ghost-blue:hover { background: var(--blue); color: var(--white); }

/* --- Header / Nav --- */
.gc-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: box-shadow 0.3s;
}
.gc-header.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.35); }

.gc-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  padding: 0 30px;
  max-width: 1280px;
  margin: 0 auto;
}
.gc-nav-logo img { max-height: 42px; width: auto; }

.gc-nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
}
.gc-nav-links > li { position: relative; }
.gc-nav-links > li > a {
  display: block;
  padding: 8px 14px;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.gc-nav-links > li > a:hover,
.gc-nav-links > li > a.active { color: #fff; background: rgba(255,255,255,0.08); }

/* Dropdown */
.gc-nav-links .has-drop > a::after {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid rgba(255,255,255,0.6);
  margin-left: 6px;
  vertical-align: middle;
  transition: transform 0.2s;
}
.gc-nav-links .has-drop:hover > a::after { transform: rotate(180deg); }

.gc-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  min-width: 210px;
  padding: 8px 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
  z-index: 200;
}
.gc-nav-links .has-drop:hover .gc-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.gc-dropdown li a {
  display: block;
  padding: 9px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: background 0.15s, color 0.15s;
}
.gc-dropdown li a:hover { background: var(--accent-bg); color: var(--blue); }

.gc-nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.gc-nav-phone {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
}
.gc-nav-phone:hover { color: var(--light-blue); }

/* Hamburger */
.gc-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.gc-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.25s;
}

/* --- Hero --- */
.gc-hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  padding: 100px 0 90px;
  min-height: 88vh;
  display: flex;
  align-items: center;
}
.gc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 70% 50%, rgba(46,117,182,0.22) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(46,117,182,0.12) 0%, transparent 60%);
  pointer-events: none;
}
/* Dot grid pattern */
.gc-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.gc-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
.gc-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(46,117,182,0.18);
  border: 1px solid rgba(46,117,182,0.35);
  border-radius: 30px;
  padding: 5px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--light-blue);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.gc-hero h1 { color: var(--white); margin-bottom: 22px; }
.gc-hero h1 span { color: var(--light-blue); }
.gc-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  max-width: 580px;
  margin-bottom: 36px;
}
.gc-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.gc-hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.gc-proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 24px;
}
.gc-proof-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.92);
  font-size: 0.88rem;
  font-weight: 500;
}
.gc-proof-pill i { color: var(--light-blue); }
.gc-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}
.gc-trust-item i { color: var(--light-blue); font-size: 1rem; }

/* Hero right card */
.gc-hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 20px;
  padding: 36px 32px;
  backdrop-filter: blur(8px);
}
.gc-hero-card h3 { color: var(--white); font-size: 1.25rem; margin-bottom: 8px; }
.gc-hero-card p { color: rgba(255,255,255,0.7); font-size: 0.95rem; margin-bottom: 24px; }
.gc-hero-card-form .form-control-gc {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  color: var(--white);
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  margin-bottom: 12px;
  outline: none;
  transition: border-color 0.2s;
}
.gc-hero-card-form .form-control-gc::placeholder { color: rgba(255,255,255,0.4); }
.gc-hero-card-form .form-control-gc:focus { border-color: var(--blue); }
.gc-hero-card-divider {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  margin: 16px 0;
}
.gc-hero-card-phone {
  display: block;
  text-align: center;
  color: var(--light-blue);
  font-weight: 700;
  font-size: 1.05rem;
}

/* --- Stats Bar --- */
.gc-stats {
  background: var(--blue);
  padding: 28px 0;
}
.gc-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.gc-stat-item {
  padding: 8px 20px;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.gc-stat-item:last-child { border-right: none; }
.gc-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.gc-stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

/* --- Section Spacing --- */
.gc-section { padding: 80px 0; }
.gc-section-sm { padding: 60px 0; }
.gc-section-dark { background: var(--navy); }
.gc-section-light { background: var(--light-bg); }

/* --- Section Header --- */
.gc-section-header { margin-bottom: 52px; }
.gc-section-header.centered { text-align: center; }
.gc-section-header.centered p { max-width: 580px; margin-left: auto; margin-right: auto; }

/* --- Service Cards --- */
.gc-service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  height: 100%;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
}
.gc-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(46,117,182,0.12);
  border-color: #c0d8f0;
}
.gc-service-icon {
  width: 52px; height: 52px;
  background: var(--accent-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--blue);
  margin-bottom: 20px;
  flex-shrink: 0;
}
.gc-service-card h3 { font-size: 1.05rem; margin-bottom: 10px; color: var(--navy); }
.gc-service-card p { font-size: 0.92rem; line-height: 1.7; flex: 1; margin-bottom: 20px; }
.gc-service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--blue);
  transition: gap 0.2s;
}
.gc-service-card:hover .gc-service-link { gap: 10px; }

/* --- Why Us --- */
.gc-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.gc-why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.gc-why-icon {
  width: 48px; height: 48px;
  background: rgba(46,117,182,0.18);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--light-blue);
  flex-shrink: 0;
}
.gc-why-item h4 { color: var(--white); font-size: 1rem; margin-bottom: 6px; }
.gc-why-item p { color: rgba(255,255,255,0.65); font-size: 0.92rem; line-height: 1.65; margin: 0; }

/* --- Pricing --- */
.gc-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.gc-pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.gc-pricing-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(46,117,182,0.13); }
.gc-pricing-card.featured {
  background: var(--navy);
  border-color: var(--blue);
  box-shadow: 0 8px 40px rgba(46,117,182,0.25);
}
.gc-pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.gc-pricing-tier {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}
.gc-pricing-card.featured .gc-pricing-tier { color: var(--light-blue); }
.gc-pricing-price {
  font-size: clamp(2rem, 4vw, 2.6rem);
  line-height: 1;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.gc-pricing-price span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}
.gc-pricing-card.featured .gc-pricing-price,
.gc-pricing-card.featured .gc-pricing-price span {
  color: var(--white);
}
.gc-pricing-meta {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--blue);
  margin-bottom: 16px;
}
.gc-pricing-card.featured .gc-pricing-meta { color: var(--light-blue); }
.gc-pricing-card h3 { font-size: 1.4rem; margin-bottom: 6px; }
.gc-pricing-card.featured h3 { color: var(--white); }
.gc-pricing-subtitle {
  font-size: 0.93rem;
  color: #435568;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.gc-pricing-card.featured .gc-pricing-subtitle { color: rgba(255,255,255,0.86); border-color: rgba(255,255,255,0.18); }
.gc-pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
}
.gc-pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: #243547;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.gc-pricing-card.featured .gc-pricing-features li { color: rgba(255,255,255,0.94); border-color: rgba(255,255,255,0.14); }
.gc-pricing-features li:last-child { border-bottom: none; }
.gc-pricing-features li i { color: var(--blue); font-size: 0.85rem; margin-top: 3px; flex-shrink: 0; }
.gc-pricing-card.featured .gc-pricing-features li i { color: var(--light-blue); }
.gc-pricing-cta { display: block; text-align: center; width: 100%; padding: 13px; }
.gc-pricing-addons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 22px;
}
.gc-pricing-addon-card {
  background: linear-gradient(180deg, #f8fbff 0%, #eef5fd 100%);
  border: 1px solid #d9e7f6;
  border-radius: 18px;
  padding: 22px;
}
.gc-pricing-addon-card h4 {
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.gc-pricing-addon-card strong {
  display: block;
  font-size: 1.3rem;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 8px;
}
.gc-pricing-addon-card p {
  font-size: 0.9rem;
  color: #425466;
  margin: 0;
}
.gc-pricing-footnote {
  font-size: 0.94rem;
  color: #4c5f73;
  max-width: 900px;
  margin: 22px auto 0;
}
.gc-pricing-footnote a {
  color: var(--blue);
  font-weight: 700;
}

/* --- Industries --- */
.gc-industry-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  height: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
  display: block;
  color: inherit;
}
.gc-industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(46,117,182,0.11);
  color: inherit;
}
.gc-industry-icon {
  font-size: 2rem;
  color: var(--blue);
  margin-bottom: 16px;
}
.gc-industry-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.gc-industry-card p { font-size: 0.9rem; margin-bottom: 16px; }
.gc-industry-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.gc-industry-card:hover .gc-industry-link { gap: 10px; }

/* --- Blog Preview --- */
.gc-blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.gc-blog-card:hover { box-shadow: 0 8px 28px rgba(46,117,182,0.1); transform: translateY(-3px); }
.gc-blog-card img { width: 100%; height: 180px; object-fit: cover; display: block; }
.gc-blog-card-body { padding: 20px 22px; flex: 1; display: flex; flex-direction: column; }
.gc-blog-tag {
  display: inline-block;
  background: var(--accent-bg);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 20px;
  padding: 3px 12px;
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}
.gc-blog-card h3 { font-size: 0.98rem; line-height: 1.45; margin-bottom: 10px; }
.gc-blog-card p { font-size: 0.88rem; flex: 1; margin-bottom: 14px; }
.gc-blog-read {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* --- Contact Section --- */
.gc-contact-section { background: var(--navy); padding: 80px 0; }
.gc-contact-info h2 { color: var(--white); margin-bottom: 14px; }
.gc-contact-info p { color: rgba(255,255,255,0.65); margin-bottom: 32px; }
.gc-contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.gc-contact-detail-icon {
  width: 44px; height: 44px;
  background: rgba(46,117,182,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--light-blue);
  font-size: 1rem;
  flex-shrink: 0;
}
.gc-contact-detail-text { font-size: 0.95rem; color: rgba(255,255,255,0.8); }
.gc-contact-detail-text a { color: rgba(255,255,255,0.8); transition: color 0.2s; }
.gc-contact-detail-text a:hover { color: var(--light-blue); }
.gc-contact-detail-label { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-bottom: 2px; }

/* Contact Form */
.gc-contact-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 40px 36px;
}
.gc-form-group { margin-bottom: 18px; }
.gc-form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.gc-form-control {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: var(--white);
  font-family: 'Sora', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}
.gc-form-control::placeholder { color: rgba(255,255,255,0.3); }
.gc-form-control:focus { border-color: var(--blue); background: rgba(46,117,182,0.08); }
textarea.gc-form-control { resize: vertical; min-height: 120px; }
#gc-form-message { font-size: 0.95rem; font-weight: 600; min-height: 24px; margin-top: 10px; }

/* --- CTA Banner --- */
.gc-cta-banner {
  background: linear-gradient(135deg, var(--blue) 0%, #1a5fa0 100%);
  padding: 72px 0;
  text-align: center;
}
.gc-cta-banner h2 { color: var(--white); margin-bottom: 14px; }
.gc-cta-banner p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
.gc-cta-banner-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* --- Footer --- */
.gc-footer {
  background: #060e1c;
  padding: 60px 0 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.gc-footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.9rem; line-height: 1.7; margin-top: 16px; }
.gc-footer-heading {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 18px;
}
.gc-footer-links { list-style: none; padding: 0; margin: 0; }
.gc-footer-links li { margin-bottom: 10px; }
.gc-footer-links a { color: rgba(255,255,255,0.65); font-size: 0.9rem; transition: color 0.2s; }
.gc-footer-links a:hover { color: var(--light-blue); }
.gc-footer-divider { border-color: rgba(255,255,255,0.07); margin: 40px 0 24px; }
.gc-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.gc-footer-copyright { font-size: 0.85rem; color: rgba(255,255,255,0.35); }
.gc-footer-social { display: flex; gap: 10px; }
.gc-footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s;
}
.gc-footer-social a:hover { background: var(--blue); color: var(--white); }

/* --- Mobile Drawer --- */
.gc-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1099;
}
.gc-mobile-overlay.open { display: block; }
.gc-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  background: var(--navy);
  z-index: 1100;
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
  padding: 24px 20px;
}
.gc-drawer.open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}
.gc-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.gc-drawer-close {
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  width: 34px; height: 34px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
}
.gc-drawer-nav { display: flex; flex-direction: column; gap: 2px; }
.gc-drawer-nav a {
  display: block;
  padding: 11px 14px;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.gc-drawer-nav a:hover { background: rgba(255,255,255,0.07); color: var(--white); }
.gc-drawer-section-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 11px 14px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 500;
  font-family: 'Sora', sans-serif;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s;
}
.gc-drawer-section-btn:hover { background: rgba(255,255,255,0.07); color: var(--white); }
.gc-drawer-section-btn i { transition: transform 0.2s; font-size: 0.75rem; }
.gc-drawer-section-btn.open i { transform: rotate(180deg); }
.gc-drawer-sub {
  display: none;
  padding-left: 14px;
  margin-top: 2px;
}
.gc-drawer-sub.open { display: block; }
.gc-drawer-sub a {
  padding: 9px 14px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
}
.gc-drawer-sub a:hover { color: var(--light-blue); background: rgba(46,117,182,0.1); }
.gc-drawer-cta {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.gc-drawer-cta a {
  display: block;
  text-align: center;
  padding: 13px;
  background: var(--blue);
  color: var(--white);
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 10px;
}
.gc-drawer-cta .phone-link {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
}

/* --- WOW Animations --- */
.wow { visibility: hidden; }

/* --- Responsive --- */
@media (max-width: 991px) {
  .gc-nav-links, .gc-nav-phone { display: none; }
  .gc-hamburger { display: flex; }
  .gc-hero { padding: 80px 0 70px; min-height: auto; }
  .gc-hero-card { margin-top: 40px; }
  .gc-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gc-stat-item:nth-child(2) { border-right: none; }
  .gc-stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.2); }
  .gc-why-grid { grid-template-columns: 1fr; }
  .gc-pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .gc-pricing-addons { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .gc-section { padding: 60px 0; }
  .gc-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gc-proof-strip { gap: 10px; }
  .gc-proof-pill {
    width: 100%;
    justify-content: flex-start;
  }
  .gc-hero-trust { gap: 16px; }
  .gc-contact-form { padding: 28px 22px; }
  .gc-footer-bottom { flex-direction: column; text-align: center; }
}

/* --- Sitewide polish / mobile spacing --- */
.gc-footer-links a[href="privacy-policy.html"],
.gc-footer-links a[href="terms.html"] {
  color: rgba(255,255,255,0.7);
}

@media (max-width: 991px) {
  .gc-nav {
    padding: 0 18px;
    gap: 12px;
  }

  .gc-hero,
  .gc-page-hero {
    padding-top: 112px !important;
    padding-bottom: 64px !important;
  }

  .gc-section-header {
    margin-bottom: 34px !important;
  }

  .gc-footer {
    padding-top: 56px;
  }
}

@media (max-width: 767px) {
  .container {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .gc-nav {
    height: 68px;
    padding: 0 14px;
  }

  .gc-nav-logo img {
    max-height: 36px;
  }

  .gc-drawer {
    width: min(92vw, 360px);
    padding: 22px 18px 28px;
  }

  .gc-hero,
  .gc-page-hero {
    min-height: auto;
    padding-top: 104px !important;
    padding-bottom: 56px !important;
  }

  .gc-hero-actions,
  .gc-featured-actions,
  .gc-hero-badges,
  .gc-proof-strip {
    gap: 10px;
  }

  .gc-hero-actions .btn-primary-gc,
  .gc-hero-actions .btn-outline-gc,
  .gc-featured-actions a,
  .gc-blog-cta .gc-link-ghost,
  .gc-contact-form .btn-primary-gc,
  .gc-nav-cta .btn-primary-gc {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .gc-card,
  .gc-service-card,
  .gc-feature-card,
  .gc-value-card,
  .gc-approach-step,
  .gc-contact-form,
  .gc-article-shell,
  .gc-area-card,
  .gc-process-card,
  .gc-sector-card,
  .gc-home-base-card,
  .gc-contact-shell {
    border-radius: 18px !important;
  }

  .gc-faq-head,
  .gc-faq-body,
  .accordion-button,
  .accordion-body {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .gc-footer-links li,
  .gc-footer-links a {
    line-height: 1.65;
  }
}
