/* ============================================================
   OCALA PREMIUM EPOXY FLOORING — Design System
   Light professional theme optimized for home service conversions
   Mobile-first responsive approach
   ============================================================ */

/* === DESIGN TOKENS === */
:root {
  /* Brand Colors */
  --primary: #E85D04;
  --primary-dark: #C94D00;
  --primary-light: #FFF3E0;
  --primary-glow: rgba(232, 93, 4, 0.15);

  /* Neutrals */
  --white: #FFFFFF;
  --bg: #FFFFFF;
  --surface: #F8F9FA;
  --surface-2: #F1F3F5;
  --border: #E9ECEF;
  --border-light: #F1F3F5;

  /* Text */
  --text: #212529;
  --text-2: #495057;
  --text-3: #6C757D;
  --text-4: #ADB5BD;

  /* Dark sections */
  --dark: #1A1A2E;
  --dark-2: #16162A;
  --dark-3: #0F0F1F;

  /* Accents */
  --success: #28A745;
  --star: #FFC107;
  --info: #0D6EFD;
  --danger: #DC3545;

  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-head: 'Outfit', 'Inter', sans-serif;

  /* Spacing */
  --section-pad: 5rem 5%;
  --section-pad-sm: 3.5rem 5%;
  --container: 1200px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.1);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
  --shadow-primary: 0 4px 14px rgba(232, 93, 4, 0.35);

  /* Radius */
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 0.3s;
}

/* === RESET === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; transition: color var(--duration) var(--ease); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 1rem;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.15rem; }
p { margin-bottom: 1rem; color: var(--text-2); font-size: 1.05rem; }

.highlight { color: var(--primary); }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-white p { color: rgba(255,255,255,0.8) !important; }

/* === LAYOUT === */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: var(--section-pad); }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 3.5rem; }
.section-header p { font-size: 1.1rem; color: var(--text-3); }
.section-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: var(--primary); margin-bottom: 0.75rem;
}
.bg-surface { background: var(--surface); }
.bg-dark { background: var(--dark); }
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 { color: var(--white); }
.bg-dark p { color: rgba(255,255,255,0.75); }
.bg-dark .section-label { color: var(--primary); }

/* Grids */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.9rem 2rem; font-weight: 700; font-size: 1rem;
  border-radius: var(--radius-sm); border: 2px solid transparent;
  text-transform: uppercase; letter-spacing: 0.5px;
  transition: all var(--duration) var(--ease);
  white-space: nowrap; cursor: pointer;
}
.btn-primary {
  background: var(--primary); color: var(--white); border-color: var(--primary);
  box-shadow: var(--shadow-primary);
}
.btn-primary:hover {
  background: var(--primary-dark); border-color: var(--primary-dark);
  transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232, 93, 4, 0.4);
}
.btn-outline {
  background: transparent; color: var(--primary); border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary); color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white); color: var(--primary); border-color: var(--white);
}
.btn-white:hover {
  background: rgba(255,255,255,0.9); transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,255,255,0.3);
}
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1.1rem; }
.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.85rem; }
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }

/* Phone button */
.btn-phone {
  background: var(--success); color: var(--white); border-color: var(--success);
  box-shadow: 0 4px 14px rgba(40, 167, 69, 0.35);
}
.btn-phone:hover {
  background: #218838; border-color: #218838;
  transform: translateY(-2px);
}

/* === NAVBAR === */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--duration) var(--ease);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 1.25rem;
}
.logo {
  font-family: var(--font-head); font-size: 1.6rem; font-weight: 900;
  color: var(--text); display: flex; align-items: center; gap: 0.35rem;
}
.logo .highlight { color: var(--primary); }
.logo-sub {
  font-size: 0.6rem; font-weight: 600; color: var(--text-3);
  letter-spacing: 1px; text-transform: uppercase;
  display: block; line-height: 1; margin-top: 2px;
}

.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-link {
  padding: 0.5rem 0.9rem; font-weight: 600; font-size: 0.95rem;
  color: var(--text-2); border-radius: var(--radius-sm);
  transition: all var(--duration) var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--primary); background: var(--primary-light); }

/* Nav Dropdown */
.nav-dd { position: relative; }
.nav-dd-menu {
  position: absolute; top: calc(100% + 0.5rem); left: 50%; transform: translateX(-50%);
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 0.5rem; min-width: 240px;
  opacity: 0; visibility: hidden; transition: all var(--duration) var(--ease);
  transform: translateX(-50%) translateY(8px);
}
.nav-dd:hover .nav-dd-menu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dd-item {
  display: block; padding: 0.6rem 1rem; font-size: 0.9rem;
  color: var(--text-2); border-radius: var(--radius-sm);
  transition: all var(--duration) var(--ease); font-weight: 500;
}
.nav-dd-item:hover { background: var(--primary-light); color: var(--primary); }

.nav-phone {
  font-size: 1rem; font-weight: 800; color: var(--primary);
  display: flex; align-items: center; gap: 0.4rem;
}
.nav-phone:hover { color: var(--primary-dark); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 0.5rem;
  width: 36px; height: 36px; justify-content: center;
}
.hamburger span {
  display: block; width: 100%; height: 2.5px; background: var(--text);
  border-radius: 2px; transition: all var(--duration) var(--ease);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mob-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 999;
  padding: 5rem 1.5rem 2rem; overflow-y: auto;
  flex-direction: column;
}
.mob-menu.active { display: flex; }
.mob-link {
  display: block; padding: 0.9rem 0; font-size: 1.1rem; font-weight: 600;
  color: var(--text-2); border-bottom: 1px solid var(--border-light);
}
.mob-link:hover, .mob-link.active { color: var(--primary); }
.mob-section {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: var(--text-4); margin-top: 1.5rem; margin-bottom: 0.5rem;
}
.mob-cta { margin-top: auto; padding-top: 1.5rem; }

/* === HERO === */
.hero {
  padding: 10rem 5% 5rem; min-height: 90vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 50%, var(--dark-3) 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 80%; height: 200%; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(232, 93, 4, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { max-width: 680px; z-index: 2; position: relative; }
.hero-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem; background: rgba(232, 93, 4, 0.15);
  border: 1px solid rgba(232, 93, 4, 0.3); border-radius: 50px;
  font-size: 0.82rem; font-weight: 700; color: var(--primary);
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1.25rem;
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 .highlight { color: var(--primary); }
.hero p { color: rgba(255,255,255,0.8); font-size: 1.15rem; margin-bottom: 0; }
.hero .btn-group { margin-top: 2rem; }

/* Trust Bar */
.trust-bar {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  margin-top: 2.5rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.trust-badge {
  display: flex; align-items: center; gap: 0.5rem;
  font-weight: 600; font-size: 0.9rem; color: rgba(255,255,255,0.9);
}
.trust-badge-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(232, 93, 4, 0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}

/* Page Hero (interior pages) */
.page-hero {
  padding: 9rem 5% 4rem;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.8); max-width: 640px; margin: 0 auto; font-size: 1.1rem; }
.page-hero .btn-group { justify-content: center; margin-top: 2rem; }

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem; color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem; justify-content: center;
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }

/* === CARDS === */
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  transition: all var(--duration) var(--ease);
}
.card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

/* Service Card */
.svc-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: all var(--duration) var(--ease);
  position: relative; overflow: hidden;
}
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--primary); transform: scaleX(0);
  transition: transform var(--duration) var(--ease); transform-origin: left;
}
.svc-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon {
  width: 56px; height: 56px; border-radius: var(--radius);
  background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.25rem;
}
.svc-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.75rem; }
.svc-desc { font-size: 0.95rem; color: var(--text-3); margin-bottom: 1rem; }
.svc-link {
  font-size: 0.9rem; font-weight: 700; color: var(--primary);
  display: inline-flex; align-items: center; gap: 0.3rem;
}
.svc-link:hover { gap: 0.6rem; }
.svc-link::after { content: '→'; transition: inherit; }

/* Image in service card */
.svc-card-img {
  width: 100%; height: 200px; object-fit: cover;
  border-radius: var(--radius); margin-bottom: 1.25rem;
}

/* === PROCESS STEPS === */
.process-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.process-step {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  position: relative; transition: all var(--duration) var(--ease);
}
.process-step:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.step-num {
  font-size: 3rem; font-weight: 900; color: var(--primary-light);
  font-family: var(--font-head); line-height: 1; margin-bottom: 1rem;
}
.process-step h3 { font-size: 1.15rem; margin-bottom: 0.75rem; }
.process-step p { font-size: 0.95rem; margin-bottom: 0; }

/* === USP / FEATURE BOXES === */
.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.usp-box {
  text-align: center; padding: 2rem 1.5rem;
  border-radius: var(--radius); background: var(--white);
  border: 1px solid var(--border);
  transition: all var(--duration) var(--ease);
}
.usp-box:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.usp-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.usp-box h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.usp-box p { font-size: 0.88rem; color: var(--text-3); margin-bottom: 0; }

/* === STATS / RESULTS === */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat-box { text-align: center; padding: 2rem 1rem; }
.stat-num {
  font-family: var(--font-head); font-size: 2.8rem; font-weight: 900;
  color: var(--primary); line-height: 1; margin-bottom: 0.5rem;
}
.stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.7); }

/* === TESTIMONIALS === */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testi-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: all var(--duration) var(--ease);
}
.testi-card:hover { box-shadow: var(--shadow-md); }
.stars { color: var(--star); margin-bottom: 1rem; font-size: 1.1rem; letter-spacing: 2px; }
.testi-card blockquote {
  font-size: 0.95rem; color: var(--text-2); line-height: 1.7;
  margin-bottom: 1.5rem; font-style: italic;
}
.testi-card blockquote::before { content: '"'; font-size: 2rem; color: var(--primary); line-height: 0; vertical-align: -0.4em; margin-right: 4px; }
.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem;
}
.testi-name { font-weight: 700; font-size: 0.95rem; }
.testi-loc { font-size: 0.82rem; color: var(--text-3); }

/* === FAQ ACCORDION === */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: 0.75rem; overflow: hidden;
  transition: border-color var(--duration) var(--ease);
}
.faq-item:hover { border-color: rgba(232, 93, 4, 0.3); }
.faq-item.active { border-color: var(--primary); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 1.5rem; cursor: pointer; gap: 1rem;
}
.faq-q h3 { font-size: 1.05rem; margin-bottom: 0; font-weight: 600; flex: 1; }
.faq-toggle {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--surface); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 700; flex-shrink: 0;
  transition: all var(--duration) var(--ease);
}
.faq-item.active .faq-toggle {
  background: var(--primary); color: var(--white);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-a-inner { padding: 0 1.5rem 1.25rem; }
.faq-a-inner p { font-size: 0.95rem; margin-bottom: 0; color: var(--text-3); }

/* === SERVICE AREAS === */
.areas-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
}
.area-tag {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 1.25rem; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.95rem; color: var(--text-2);
  transition: all var(--duration) var(--ease);
}
.area-tag:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.area-tag .pin { color: var(--primary); font-size: 1.1rem; }

/* === CTA SECTION === */
.cta-section {
  padding: 5rem 5%;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -50%; left: -30%;
  width: 80%; height: 200%; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(232, 93, 4, 0.1) 0%, transparent 60%);
}
.cta-section h2 { color: var(--white); max-width: 600px; margin: 0 auto 1rem; }
.cta-section p { color: rgba(255,255,255,0.75); max-width: 520px; margin: 0 auto; font-size: 1.1rem; }
.cta-section .btn-group { justify-content: center; margin-top: 2rem; }

/* === COMPARISON TABLE === */
.compare-table { width: 100%; border-collapse: collapse; border-radius: var(--radius); overflow: hidden; }
.compare-table th, .compare-table td { padding: 1rem 1.25rem; text-align: left; font-size: 0.95rem; }
.compare-table thead th { background: var(--dark); color: var(--white); font-weight: 700; }
.compare-table tbody tr { border-bottom: 1px solid var(--border); }
.compare-table tbody tr:hover { background: var(--primary-light); }
.compare-table td:first-child { font-weight: 600; }
.check { color: var(--success); font-weight: 700; }
.cross { color: var(--danger); font-weight: 700; }

/* === GOOGLE MAP === */
.map-container {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow);
}
.map-container iframe { width: 100%; height: 400px; border: none; display: block; }

/* === FOOTER === */
footer {
  background: var(--dark-3); padding: 4rem 5% 0;
  color: rgba(255,255,255,0.7);
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-family: var(--font-head); font-size: 1.5rem; font-weight: 900;
  color: var(--white); margin-bottom: 1rem;
}
.footer-logo .highlight { color: var(--primary); }
.footer-desc { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-bottom: 1.25rem; line-height: 1.7; }
.footer-nap { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nap-item {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.88rem; color: rgba(255,255,255,0.7);
}
.footer-nap-icon { color: var(--primary); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.f-heading {
  font-family: var(--font-head); font-weight: 700; color: var(--white);
  font-size: 0.95rem; margin-bottom: 1.25rem; letter-spacing: 0.5px;
}
.f-links { display: flex; flex-direction: column; gap: 0.6rem; }
.f-link {
  font-size: 0.88rem; color: rgba(255,255,255,0.6);
  transition: all var(--duration) var(--ease);
}
.f-link:hover { color: var(--primary); padding-left: 4px; }
.footer-bottom {
  text-align: center; padding: 1.5rem 0;
  font-size: 0.82rem; color: rgba(255,255,255,0.4);
}

/* === CONTACT FORM === */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block; margin-bottom: 0.4rem;
  font-weight: 600; font-size: 0.9rem; color: var(--text-2);
}
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 0.85rem 1rem; border: 1px solid var(--border);
  border-radius: var(--radius-sm); font-size: 1rem; color: var(--text);
  background: var(--white);
  transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}
.form-textarea { resize: vertical; min-height: 120px; }

/* === INLINE LINK === */
.in-link {
  color: var(--primary); font-weight: 600;
  text-decoration: underline; text-decoration-color: rgba(232, 93, 4, 0.3);
  text-underline-offset: 3px;
  transition: all var(--duration) var(--ease);
}
.in-link:hover { text-decoration-color: var(--primary); }

/* === FLOATING CTA (Mobile) === */
.floating-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--primary); color: var(--white);
  text-align: center; padding: 1rem;
  font-weight: 800; font-size: 1.1rem;
  z-index: 9998; box-shadow: 0 -4px 16px rgba(0,0,0,0.15);
}
.floating-cta:hover { background: var(--primary-dark); }

/* === ANIMATIONS === */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }

/* Counter animation handled by JS */
[data-count] { transition: none; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4, .usp-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 3.5rem 5%; }

  .nav-links, .nav-phone { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 8rem 5% 3.5rem; min-height: auto; }
  .hero h1 { font-size: 2rem; }
  .page-hero { padding: 7.5rem 5% 3rem; }

  .grid-2, .grid-3, .grid-4, .usp-grid, .stats-grid, .process-grid, .testi-grid {
    grid-template-columns: 1fr;
  }

  .trust-bar { gap: 1rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .floating-cta { display: flex; align-items: center; justify-content: center; gap: 0.5rem; }

  /* Add padding at bottom for floating CTA */
  footer { padding-bottom: 4rem; }
  body { padding-bottom: 0; }

  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; }

  .section-header { margin-bottom: 2.5rem; }

  .compare-table { font-size: 0.85rem; }
  .compare-table th, .compare-table td { padding: 0.75rem 0.75rem; }

  .map-container iframe { height: 280px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.75rem; }
  h2 { font-size: 1.6rem; }
  .stat-num { font-size: 2.2rem; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
}

/* === UTILITY === */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0 !important; }
