/* Greater Clean — Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --yellow: #F5D507;
  --yellow-dark: #d4ba00;
  --yellow-light: rgba(245,213,7,0.12);
  --black: #000000;
  --black-soft: #1f2937;
  --white: #FFFFFF;
  --grey: #F5F5F5;
  --text-dark: #222222;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --shadow: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.10);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
  --radius: 8px;
  --radius-lg: 12px;
  /* Aliases used in inner pages */
  --navy: #000000;
  --green: #F5D507;
  --green-dark: #d4ba00;
  --dark: #222222;
  --muted: #6b7280;
  --gray-light: #F5F5F5;
  --gray-50: #F5F5F5;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-900: #222222;
  --teal: #F5D507;
  --teal-dark: #d4ba00;
  /* Legacy compat */
  --white-var: #FFFFFF;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: #FFFFFF; color: #222222; line-height: 1.65; font-size: 16px; }

a { color: inherit; text-decoration: none; transition: color .2s; }
a:hover { color: #000000; }
img { max-width: 100%; height: auto; display: block; }

h1,h2,h3,h4,h5,h6 { font-weight: 800; line-height: 1.2; color: #222222; }
h1 { font-size: clamp(2rem, 4vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1.1rem; }
p { color: #6b7280; margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; background: #FFFFFF; }
.section.alt { background: #F5F5F5; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 112px 0; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius);
  font-weight: 700; font-size: 1rem; cursor: pointer;
  transition: all .2s; border: 2px solid transparent;
  text-decoration: none; white-space: nowrap;
}
.btn-primary {
  background: #F5D507; color: #000000; border-color: #F5D507; font-weight: 800;
}
.btn-primary:hover {
  background: #d4ba00; border-color: #d4ba00; color: #000000;
  transform: scale(1.02); box-shadow: 0 6px 20px rgba(245,213,7,0.4);
}
.btn-outline {
  background: transparent; color: #000000; border-color: #000000; font-weight: 700;
}
.btn-outline:hover { background: #000000; color: #FFFFFF; }
.btn-outline-white {
  background: transparent; color: #FFFFFF; border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); color: #FFFFFF; }
.btn-white {
  background: #FFFFFF; color: #000000; border-color: #FFFFFF; font-weight: 800;
}
.btn-white:hover {
  background: #F5D507; color: #000000; border-color: #F5D507;
  transform: translateY(-1px); box-shadow: 0 6px 20px rgba(245,213,7,0.3);
}
.btn-lg { padding: 18px 36px; font-size: 1.1rem; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  background: #FFFFFF;
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-mark {
  width: 40px; height: 40px; background: #F5D507; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-mark svg { width: 24px; height: 24px; fill: #FFFFFF; }
.nav-logo-text { font-size: 1.35rem; font-weight: 800; color: #222222; letter-spacing: -0.5px; }
.nav-logo-text span { color: #F5D507; }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links > li > a {
  color: #222222; font-weight: 500; padding: 8px 14px;
  border-radius: 6px; font-size: 0.95rem; transition: all .2s;
}
.nav-links > li > a:hover { color: #000000; background: rgba(245,213,7,0.1); }

.nav-portal a { color: #222222 !important; font-weight: 500; }
.nav-cta a {
  background: #F5D507 !important; color: #000000 !important;
  padding: 10px 20px !important; border-radius: var(--radius) !important;
  font-weight: 800 !important;
}
.nav-cta a:hover { background: #d4ba00 !important; color: #000000 !important; }

.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 0.75rem; }
.dropdown-menu {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: #FFFFFF; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); min-width: 240px; overflow: hidden;
  border: 1px solid #e5e7eb;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block; padding: 12px 20px; color: #374151;
  font-weight: 500; font-size: 0.9rem; border-bottom: 1px solid #e5e7eb;
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { background: #F5F5F5; color: #F5D507; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #374151; margin: 5px 0; transition: all .3s; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none; flex-direction: column; position: absolute;
    top: 72px; left: 0; right: 0; background: #FFFFFF;
    padding: 16px 24px 24px; gap: 4px;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-links > li { width: 100%; }
  .nav-links > li > a { display: block; padding: 12px 16px; }
  .dropdown-menu { position: static; box-shadow: none; border: none; background: #F5F5F5; border-radius: var(--radius); }
  .dropdown-menu a { color: #374151; padding: 10px 32px; }
}

/* ============================================================
   HERO — pure black background
   ============================================================ */
.hero {
  background: #000000;
  color: #FFFFFF; padding: 100px 0 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 1; max-width: 760px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,213,7,0.15); border: 1px solid rgba(245,213,7,0.4);
  color: #F5D507; padding: 8px 16px; border-radius: 100px;
  font-size: 0.85rem; font-weight: 600; margin-bottom: 24px;
}
.hero h1 { color: #FFFFFF; margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: #F5D507; }
.hero-sub { font-size: 1.2rem; color: rgba(255,255,255,0.8); margin-bottom: 36px; max-width: 580px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 24px; margin-top: 56px;
  padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.9rem; color: rgba(255,255,255,0.85); font-weight: 500;
}
.hero-trust-item svg { width: 18px; height: 18px; fill: rgba(255,255,255,0.9); flex-shrink: 0; }

/* ============================================================
   TRUST / STATS BAR — yellow background
   ============================================================ */
.trust-bar { background: #F5D507; padding: 16px 0; }
.trust-bar-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 0; }
.trust-item { color: #000000; font-weight: 700; }
.trust-stat {
  text-align: center; padding: 16px 40px;
  border-right: 1px solid rgba(0,0,0,0.15);
}
.trust-stat:last-child { border-right: none; }
.trust-stat-num { font-size: 2rem; font-weight: 800; color: #000000; line-height: 1; }
.trust-stat-label { font-size: 0.85rem; color: rgba(0,0,0,0.7); margin-top: 4px; }
@media (max-width: 768px) {
  .trust-bar-inner { gap: 0; }
  .trust-stat { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.15); width: 50%; }
  .trust-stat:nth-child(odd) { border-right: 1px solid rgba(0,0,0,0.15); }
  .trust-stat:last-child, .trust-stat:nth-last-child(2):nth-child(odd) { border-bottom: none; }
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-label {
  display: inline-block;
  background: rgba(245,213,7,0.15); color: #000000;
  font-weight: 700; font-size: 0.8rem; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 6px 14px; border-radius: 100px; margin-bottom: 16px;
}
.section-header h2 { color: #222222; margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; color: #6b7280; }

/* ============================================================
   CARDS / GRIDS
   ============================================================ */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .grid-5 { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
}

.card {
  background: #FFFFFF; border-radius: var(--radius-lg);
  padding: 32px; border: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06); transition: all .25s;
}
.card:hover {
  transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  border-color: #F5D507;
}
.card-icon {
  width: 52px; height: 52px; background: #F5F5F5;
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; margin-bottom: 20px; font-size: 1.6rem;
}
.card-icon svg { width: 28px; height: 28px; fill: #F5D507; }
.card h3 { color: #222222; margin-bottom: 8px; }
.card p { font-size: 0.95rem; margin-bottom: 14px; color: #6b7280; }
.card-link {
  font-weight: 700; font-size: 0.9rem; color: #F5D507;
  display: inline-flex; align-items: center; gap: 6px;
}
.card-link:hover { gap: 10px; color: #d4ba00; }

/* Dark industry cards (black section) */
.industry-card {
  background: #1f2937; border-radius: var(--radius-lg);
  padding: 32px; border: 1px solid rgba(255,255,255,0.08);
  transition: all .25s; text-decoration: none; display: block; color: #FFFFFF;
}
.industry-card:hover {
  transform: translateY(-4px); border-color: #F5D507;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.industry-card h3 { color: #FFFFFF; margin-bottom: 8px; }
.industry-card p { color: rgba(255,255,255,0.65); font-size: 0.95rem; margin-bottom: 14px; }
.industry-card .card-link { color: #F5D507; }
.industry-card .card-link:hover { color: #d4ba00; }
.industry-card .card-icon { background: rgba(245,213,7,0.15); }

/* City cards */
.city-card {
  background: #FFFFFF; border-radius: var(--radius-lg); padding: 32px;
  border: 1px solid #e5e7eb; box-shadow: var(--shadow);
  transition: all .25s;
}
.city-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: #F5D507; }
.city-card-state {
  display: inline-block; background: #F5D507; color: #000000;
  font-weight: 700; font-size: 0.75rem; letter-spacing: 1px;
  padding: 4px 10px; border-radius: 4px; margin-bottom: 12px;
}
.city-card h3 { color: #222222; margin-bottom: 8px; }
.city-card p { color: #6b7280; font-size: 0.95rem; margin-bottom: 20px; }
.city-card a { color: #F5D507; font-weight: 700; font-size: 0.9rem; }
.city-card a:hover { color: #d4ba00; }

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem-section { background: #FFFFFF; }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
@media (max-width: 768px) { .problem-grid { grid-template-columns: 1fr; gap: 40px; } }
.problem-card {
  background: #F5F5F5; border-radius: var(--radius-lg);
  padding: 28px; border: 1px solid #e5e7eb; margin-bottom: 16px;
}
.problem-card:last-child { margin-bottom: 0; }
.problem-card-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px; font-weight: 700; font-size: 1rem; color: #222222;
}
.problem-card-header .badge-bad {
  background: #fee2e2; color: #dc2626;
  padding: 4px 10px; border-radius: 4px; font-size: 0.8rem; font-weight: 700;
}
.problem-item { display: flex; gap: 10px; margin-bottom: 10px; font-size: 0.9rem; color: #6b7280; align-items: flex-start; }
.problem-item::before { content: '✗'; color: #dc2626; font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ============================================================
   ADVANTAGE / FEATURE GRID
   ============================================================ */
.feature-card {
  background: #FFFFFF; border-radius: var(--radius-lg);
  padding: 28px; border: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06); transition: all .25s;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: #F5D507; }
.feature-icon {
  font-size: 2rem; margin-bottom: 16px;
  width: 52px; height: 52px; background: #F5F5F5;
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
}
.feature-card h3 { color: #222222; font-size: 1.05rem; margin-bottom: 8px; }
.feature-card p { font-size: 0.9rem; color: #6b7280; margin: 0; }

/* ============================================================
   PROCESS / STEPS
   ============================================================ */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 32px; left: calc(12.5% + 16px);
  right: calc(12.5% + 16px); height: 2px; background: #e5e7eb; z-index: 0;
}
.process-step { text-align: center; padding: 0 16px; position: relative; }
.step-num {
  width: 64px; height: 64px; background: #F5D507; color: #000000;
  border-radius: 50%; font-size: 1.4rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; position: relative; z-index: 1;
  box-shadow: 0 4px 12px rgba(245,213,7,0.4);
}
.process-step h4 { color: #222222; margin-bottom: 8px; font-size: 1rem; }
.process-step p { font-size: 0.9rem; color: #6b7280; margin: 0; }
/* Also target .process-step-num for inner pages */
.process-step-num { background: #F5D507; color: #000000; font-weight: 800; }
@media (max-width: 768px) {
  .process-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-steps::before { display: none; }
}
@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: #F5F5F5; }
.testimonial-card {
  background: #FFFFFF; border-radius: var(--radius-lg);
  padding: 32px; border: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06); transition: all .25s;
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.testimonial-stars { color: #F5D507; font-size: 1.1rem; margin-bottom: 16px; }
.testimonial-text { color: #374151; font-size: 0.98rem; margin-bottom: 24px; font-style: italic; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 48px; height: 48px; background: #F5D507; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: #000000; font-size: 1rem; flex-shrink: 0;
}
.testimonial-name { font-weight: 700; color: #222222; font-size: 0.95rem; }
.testimonial-role { font-size: 0.85rem; color: #6b7280; }

/* ============================================================
   CTA BAND — pure black
   ============================================================ */
.cta-band { background: #000000; padding: 80px 0; }
.cta-band-inner { text-align: center; }
.cta-band h2 { color: #FFFFFF; margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,0.75); font-size: 1.15rem; margin-bottom: 36px; }

/* ============================================================
   FOOTER — pure black
   ============================================================ */
.site-footer { background: #000000; color: rgba(255,255,255,0.7); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { margin-top: 16px; font-size: 0.95rem; color: rgba(255,255,255,0.55); }
.footer-logo-text { font-size: 1.25rem; font-weight: 800; color: #FFFFFF; letter-spacing: -0.5px; }
.footer-logo-text span { color: #F5D507; }
.footer-col h5 {
  color: #FFFFFF; font-size: 0.8rem; letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 20px; font-weight: 700;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: color .2s; }
.footer-col ul li a:hover { color: #F5D507; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px; font-size: 0.85rem;
}
.footer-bottom p { margin: 0; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: #F5D507; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; text-align: center; } }

/* ============================================================
   PAGE HERO (inner pages) — pure black
   ============================================================ */
.page-hero {
  background: #000000;
  padding: 72px 0 64px;
}
.page-hero .breadcrumb { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.page-hero .breadcrumb a { color: rgba(255,255,255,0.7); }
.page-hero .breadcrumb a:hover { color: #FFFFFF; }
.page-hero .breadcrumb .sep { color: rgba(255,255,255,0.4); margin: 0 6px; }
.page-hero h1 { color: #FFFFFF; margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 640px; margin: 0; }

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.compare-table { width: 100%; border-collapse: collapse; background: #FFFFFF; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid #e5e7eb; }
.compare-table thead tr { background: #000000; }
.compare-table th { padding: 18px 24px; font-size: 0.9rem; font-weight: 700; color: #FFFFFF; text-align: left; }
.compare-table th:first-child { width: 35%; }
.compare-table th.highlight { background: #F5D507; color: #000000; }
.compare-table tbody tr { border-bottom: 1px solid #e5e7eb; }
.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table tbody tr:nth-child(even) { background: #F5F5F5; }
.compare-table td { padding: 16px 24px; font-size: 0.9rem; color: #374151; }
.compare-table td:first-child { font-weight: 600; color: #222222; }
.compare-table .check { color: #F5D507; font-weight: 700; }
.compare-table .cross { color: #dc2626; }
.compare-table .maybe { color: #6b7280; }

/* ============================================================
   WHY / FEATURE SECTION
   ============================================================ */
.why-section { background: #F5F5F5; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-features { display: flex; flex-direction: column; gap: 28px; }
.why-feature { display: flex; gap: 18px; }
.why-feature-icon {
  width: 44px; height: 44px; background: rgba(245,213,7,0.15);
  border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.why-feature-icon svg { width: 22px; height: 22px; fill: #F5D507; }
.why-feature-text h4 { margin-bottom: 6px; color: #222222; }
.why-feature-text p { font-size: 0.95rem; margin: 0; }
/* why-visual is the dark stats block used in about page */
.why-visual { background: #000000; border-radius: var(--radius-lg); padding: 48px; color: #FFFFFF; }
.why-stat { margin-bottom: 32px; }
.why-stat:last-child { margin-bottom: 0; }
.why-stat-number { font-size: 3rem; font-weight: 800; color: #F5D507; line-height: 1; }
.why-stat-label { font-size: 0.95rem; color: rgba(255,255,255,0.7); margin-top: 4px; }
/* Also .stat-num */
.stat-num { color: #F5D507; }
@media (max-width: 768px) { .why-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ============================================================
   CONTENT SECTIONS
   ============================================================ */
.content-section { padding: 72px 0; background: #FFFFFF; }
.content-section.alt { background: #F5F5F5; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; gap: 32px; } }

/* ============================================================
   SERVICE LIST
   ============================================================ */
.service-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.service-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.95rem; color: #374151; }
.service-list li::before {
  content: ''; width: 20px; height: 20px; background: rgba(245,213,7,0.15);
  border-radius: 50%; display: inline-flex; align-items: center;
  justify-content: center; flex-shrink: 0; margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23F5D507'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 12px; background-repeat: no-repeat; background-position: center;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { padding: 72px 0; background: #F5F5F5; }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #FFFFFF; border-radius: var(--radius); border: 1px solid #e5e7eb; overflow: hidden; }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 24px; cursor: pointer; font-weight: 700;
  color: #222222; font-size: 1rem; gap: 16px;
}
.faq-question:hover { background: #F5F5F5; }
.faq-toggle {
  width: 28px; height: 28px; background: #F5F5F5; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1.1rem; color: #000000; transition: transform .25s;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 24px 22px; color: #6b7280; font-size: 0.95rem; line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form {
  background: #FFFFFF; border-radius: var(--radius-lg);
  padding: 48px; box-shadow: var(--shadow-lg); border: 1px solid #e5e7eb;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label { font-weight: 600; font-size: 0.9rem; color: #222222; }
.form-group input, .form-group select, .form-group textarea {
  padding: 13px 16px; border: 1.5px solid #e5e7eb;
  border-radius: 8px; font-size: 0.95rem; font-family: inherit;
  color: #222222; transition: border-color .2s; background: #FFFFFF;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: #F5D507; box-shadow: 0 0 0 3px rgba(245,213,7,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; justify-content: center; font-size: 1.05rem; padding: 16px; }
.form-note { text-align: center; margin-top: 16px; font-size: 0.85rem; color: #6b7280; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } .contact-form { padding: 28px 20px; } }

/* ============================================================
   STAT BOXES
   ============================================================ */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-box {
  text-align: center; padding: 36px 24px; background: #FFFFFF;
  border-radius: var(--radius-lg); border: 1px solid #e5e7eb;
  box-shadow: var(--shadow);
}
.stat-box .stat-num { font-size: 2.8rem; font-weight: 800; color: #F5D507; line-height: 1; }
.stat-box .stat-label { font-size: 0.9rem; color: #6b7280; margin-top: 8px; }
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2,1fr); } }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.breadcrumb a, .breadcrumb span { font-size: 0.85rem; }
.breadcrumb span { color: rgba(255,255,255,0.5); }
.breadcrumb .sep { color: rgba(255,255,255,0.4); }

/* ============================================================
   INTERNAL LINK GRID
   ============================================================ */
.link-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.link-card {
  display: block; background: #FFFFFF; border: 1px solid #e5e7eb;
  border-radius: var(--radius); padding: 20px 24px;
  font-weight: 600; color: #222222; transition: all .2s; font-size: 0.95rem;
}
.link-card:hover { border-color: #F5D507; color: #F5D507; transform: translateY(-2px); }
@media (max-width: 768px) { .link-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .link-grid { grid-template-columns: 1fr; } }

/* ============================================================
   NOTICE
   ============================================================ */
.notice {
  background: rgba(245,213,7,0.12); border-left: 4px solid #F5D507;
  border-radius: 0 var(--radius) var(--radius) 0; padding: 20px 24px; margin: 24px 0;
}
.notice p { color: #374151; margin: 0; font-size: 0.95rem; }

/* ============================================================
   BLOG
   ============================================================ */
.blog-card {
  background: #FFFFFF; border-radius: var(--radius-lg);
  border: 1px solid #e5e7eb; overflow: hidden; transition: all .25s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-img {
  height: 200px; background: linear-gradient(135deg, #F5D507 0%, #000000 100%);
  display: flex; align-items: center; justify-content: center;
}
.blog-card-body { padding: 28px; }
.blog-tag {
  display: inline-block; background: rgba(245,213,7,0.15); color: #000000;
  font-weight: 700; font-size: 0.78rem; padding: 4px 10px;
  border-radius: 4px; margin-bottom: 12px;
}
.blog-card h3 { font-size: 1.1rem; margin-bottom: 10px; color: #222222; }
.blog-card p { font-size: 0.9rem; margin-bottom: 16px; color: #6b7280; }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.text-white { color: #FFFFFF !important; }
.text-teal { color: #F5D507; }
.text-yellow { color: #F5D507; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.success-msg {
  display: none; background: rgba(245,213,7,0.15); border: 1px solid #F5D507;
  color: #000000; padding: 16px 24px; border-radius: var(--radius);
  font-weight: 600; text-align: center; margin-top: 16px;
}
