@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:ital,wght@0,300;0,400;0,500;0,600;1,300&family=Barlow+Condensed:wght@400;500;600;700;800&display=swap');

/* ─── RESET & ROOT ─────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black:       #0A0A0A;
  --dark:        #0A0A0A;
  --dark2:       #1A1A1A;
  --dark3:       #252525;
  --card:        #151515;
  --card2:       #1A1A1A;
  --orange:      #FF1F1F;
  --orange2:     #FF6F61;
  --orange3:     #FF4545;
  --accent-red:  #FF1F1F;
  --amber:       #FF6F61;
  --glow:        rgba(255,31,31,0.18);
  --glow-strong: rgba(255,31,31,0.35);
  --glow-subtle: rgba(255,31,31,0.07);
  --white:       #FFFFFF;
  --cream:       #FFFFFF;
  --muted:       #9DA3AB;
  --muted2:      #BEC5CD;
  --muted3:      #D4DAE0;
  --border:      rgba(255,31,31,0.055);
  --border2:     rgba(255,31,31,0.10);
  --border3:     rgba(255,31,31,0.22);

  --font-display: 'Bebas Neue', sans-serif;
  --font-cond:    'Barlow Condensed', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.76, 0, 0.24, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--cream);
  overflow-x: hidden;
  cursor: auto;
  -webkit-font-smoothing: antialiased;
}
body.menu-locked {
  overflow: hidden;
}

.wa-label {
  display: none !important;
}

.wa-float {
  border-radius: 50% !important;
  width: 48px !important;
  height: 48px !important;
  padding: 12px !important;
  justify-content: center !important;
  gap: 0 !important;
}

.wa-float svg {
  width: 22px !important;
  height: 22px !important;
}

[style*="color:#3C3C3C"],
[style*="color:#5A5A5A"],
[style*="color:#707070"],
[style*="color:#808080"],
[style*="color:#8A8C8E"],
[style*="color:#909090"],
[style*="color:#3c3c3c"],
[style*="color:#5a5a5a"],
[style*="color:#8a8c8e"] {
  color: #BFC5CC !important;
}

/* ─── CUSTOM CURSOR ─────────────────────────────────── */
#cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.06s, width 0.2s, height 0.2s;
  will-change: transform;
}
#cursor-trail {
  position: fixed;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(255,31,31,0.65);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.14s var(--ease-out-expo),
              width 0.3s, height 0.3s, border-color 0.3s;
}
.cursor-hover #cursor      { width: 6px; height: 6px; }
.cursor-hover #cursor-trail { width: 56px; height: 56px; border-color: rgba(255,31,31,0.95); }

/* ─── NOISE TEXTURE OVERLAY ─────────────────────────── */
.noise-layer {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 900;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* ─── ANIMATED GRID ─────────────────────────────────── */
.grid-bg {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 1;
  background-image:
    linear-gradient(rgba(255,31,31,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,31,31,0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, black 20%, transparent 90%);
  animation: gridShimmer 12s ease-in-out infinite alternate;
}
@keyframes gridShimmer {
  from { opacity: 0.4; background-position: 0 0; }
  to   { opacity: 0.85; background-position: 2px 2px; }
}

/* ─── SCROLL REVEAL ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.45s; }
.reveal-delay-5 { transition-delay: 0.6s; }

/* ─── LOADER ─────────────────────────────────────────── */
#loader {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 28px;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
#loader.gone { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo {
  font-family: var(--font-display);
  font-size: 52px; letter-spacing: 6px;
  color: var(--white);
  animation: loaderPulse 1.2s ease-in-out infinite alternate;
}
.loader-logo span { color: var(--orange); }
.loader-bar-wrap {
  width: 220px; height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px; overflow: hidden;
}
.loader-bar {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--orange), var(--orange2));
  border-radius: 2px;
  animation: loadProgress 1.6s var(--ease-out-expo) forwards;
}
@keyframes loadProgress { to { width: 100%; } }
@keyframes loaderPulse { from { opacity: 0.7; } to { opacity: 1; } }

/* ─── NAVIGATION ─────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 500; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4rem;
  background: rgba(4,6,10,0.6);
  backdrop-filter: blur(32px) saturate(160%);
  border-bottom: 1px solid var(--border);
  transition: height 0.4s var(--ease-out-expo), background 0.4s;
}
nav.scrolled {
  height: 60px;
  background: rgba(4,6,10,0.92);
  border-bottom-color: var(--border2);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 28px; letter-spacing: 3px;
  color: var(--white); text-decoration: none;
  display: flex; align-items: center; gap: 10px;
  position: relative; z-index: 1;
}
.nav-logo .logo-axis {
  color: var(--orange) !important;
  -webkit-text-fill-color: var(--orange) !important;
}
.nav-logo .logo-freight {
  color: var(--white) !important;
  -webkit-text-fill-color: var(--white) !important;
}
.logo-hex {
  width: 34px; height: 34px;
  background: var(--orange);
  clip-path: polygon(50% 0%,93% 25%,93% 75%,50% 100%,7% 75%,7% 25%);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  transition: transform 0.4s var(--ease-out-expo);
}
.nav-logo:hover .logo-hex { transform: rotate(30deg) scale(1.1); }
.nav-links {
  display: flex; align-items: center; gap: 2px;
  list-style: none;
}
.nav-links a {
  color: var(--muted2); text-decoration: none;
  font-family: var(--font-cond); font-size: 14px;
  font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
  padding: 8px 16px; border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; right: 50%;
  height: 1px; background: var(--orange);
  transition: left 0.3s var(--ease-out-expo), right 0.3s var(--ease-out-expo);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { left: 16px; right: 16px; }
.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 9px 22px !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
  letter-spacing: 1.5px !important;
  transition: all 0.2s !important;
  box-shadow: 0 0 15px rgba(255,31,31,0.3);
}
.nav-cta:hover {
  background: linear-gradient(90deg, var(--orange), var(--orange2)) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 30px rgba(255,31,31,0.5) !important;
}
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border2);
  background: rgba(255,255,255,0.02);
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  transition: all 0.25s var(--ease-out-expo);
}
.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s var(--ease-out-expo), opacity 0.25s var(--ease-out-expo);
}
.nav-backdrop {
  display: none;
}
nav.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
nav.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-cond); font-size: 16px;
  font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 14px 32px; border-radius: 6px;
  border: none; cursor: pointer; text-decoration: none;
  transition: all 0.3s var(--ease-out-expo);
  position: relative; overflow: hidden;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0); 
  transition: background 0.3s;
}
.btn:hover::before { background: rgba(255,31,31,0.08); }
.btn-primary {
  background: linear-gradient(90deg, var(--orange), var(--orange2));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255,31,31,0.4);
}
.btn-primary:hover {
  background: linear-gradient(90deg, var(--orange2), var(--orange));
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(255,31,31,0.55);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--orange);
}
.btn-ghost:hover {
  border-color: var(--orange2);
  color: var(--orange2);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(255,31,31,0.3);
}
.btn-arrow { font-size: 18px; transition: transform 0.3s; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ─── SECTIONS ─────────────────────────────────────────── */
section { padding: 120px 4rem; position: relative; z-index: 10; }
.section-eyebrow {
  font-family: var(--font-cond);
  font-size: 12px; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.section-eyebrow::before {
  content: ''; display: inline-block;
  width: 32px; height: 1px; background: var(--orange);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  letter-spacing: 1px; line-height: 0.95;
  color: var(--white); margin-bottom: 20px;
  text-align: center;
}
.section-title em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1px var(--orange);
}
.section-sub {
  font-size: 16px; font-weight: 300;
  color: var(--muted2); max-width: 520px;
  line-height: 1.8;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ─── HERO ─────────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 0 4rem; padding-top: 140px;
  position: relative; overflow: hidden;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.52;
  filter: saturate(1.08) contrast(1.06) brightness(0.82);
}
.hero-video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,31,31,0.08), transparent 48%),
    linear-gradient(180deg, rgba(4,6,10,0.22) 0%, rgba(4,6,10,0.06) 42%, rgba(4,6,10,0.24) 100%);
}
.hero-bg-orb {
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,31,31,0.2) 0%, transparent 70%);
  top: -100px; right: -100px;
  z-index: 1;
  border-radius: 50%;
  animation: orbFloat 10s ease-in-out infinite alternate;
  pointer-events: none;
  filter: blur(40px);
}
.hero-bg-orb2 {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,31,31,0.15) 0%, transparent 70%);
  bottom: 100px; left: -100px;
  z-index: 1;
  border-radius: 50%;
  animation: orbFloat 14s ease-in-out infinite alternate-reverse;
  pointer-events: none;
  filter: blur(40px);
}
@keyframes orbFloat {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(30px, -30px) scale(1.08); }
}
.hero-content { max-width: 820px; position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,31,31,0.15);
  border: 2px solid var(--orange);
  color: var(--orange);
  font-family: var(--font-cond); font-size: 13px;
  font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  padding: 7px 18px; border-radius: 100px;
  margin-bottom: 2rem;
  animation: heroFadeUp 0.8s var(--ease-out-expo) 0.2s both;
  box-shadow: 0 0 20px rgba(255,31,31,0.2);
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange);
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%,100% { opacity:1; transform: scale(1); }
  50%      { opacity:0.5; transform: scale(0.7); }
}
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 9rem);
  letter-spacing: 2px; line-height: 0.9;
  color: var(--white); margin-bottom: 2rem;
  animation: heroFadeUp 0.9s var(--ease-out-expo) 0.4s both;
}
.hero-h1 .accent { color: var(--orange); }
.hero-h1 .outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.2);
}
.hero-sub {
  font-size: 22px; font-weight: 400;
  color: var(--white); max-width: 580px;
  line-height: 1.8; margin-bottom: 2.5rem;
  animation: heroFadeUp 0.9s var(--ease-out-expo) 0.55s both;
  letter-spacing: 0.5px;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 5rem;
  animation: heroFadeUp 0.9s var(--ease-out-expo) 0.7s both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-scroll-hint {
  position: absolute; bottom: 3rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--font-cond); font-size: 11px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--muted);
  animation: heroFadeUp 1s var(--ease-out-expo) 1.2s both;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(var(--orange), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ─── STATS TICKER ─────────────────────────────────────── */
.stats-ticker {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden; position: relative; z-index: 10;
  background: rgba(8,11,16,0.9);
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.ticker-track {
  display: flex;
  animation: tickerScroll 30s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  display: flex; align-items: center; gap: 16px;
  padding: 8px 50px;
  font-family: var(--font-cond); font-size: 14px;
  font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--muted);
  flex-shrink: 0;
}
.ticker-item .num {
  font-family: var(--font-display);
  font-size: 22px; letter-spacing: 1px;
  color: var(--white);
}
.ticker-item .num span { color: var(--orange); }
.ticker-sep {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--orange); opacity: 0.5;
  flex-shrink: 0;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── SERVICES SECTION ──────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  background: transparent;
  border: none;
  border-radius: 16px;
  overflow: visible;
  margin-top: 64px;
}
.service-card {
  background: linear-gradient(135deg, var(--card) 0%, var(--card2) 100%);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-out-expo);
  cursor: pointer;
  border: 2px solid rgba(255,31,31,0.2);
  border-radius: 16px;
}
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,31,31,0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover { 
  background: linear-gradient(135deg, var(--card2) 0%, var(--card) 100%);
  border-color: var(--orange);
  box-shadow: 0 12px 40px rgba(255,31,31,0.25);
  transform: translateY(-4px);
}
.service-card:hover::before { opacity: 1; }
.service-card-num {
  font-family: var(--font-display);
  font-size: 72px; letter-spacing: -2px;
  color: rgba(255,255,255,0.04);
  position: absolute; top: 16px; right: 24px;
  line-height: 1; pointer-events: none;
  transition: color 0.4s;
}
.service-card:hover .service-card-num { color: rgba(255,31,31,0.12); }

.service-card h3 {
  font-family: var(--font-cond);
  font-size: 20px; font-weight: 700;
  letter-spacing: 0.5px; color: var(--white);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px; font-weight: 300;
  color: var(--muted); line-height: 1.7;
  margin-bottom: 1.4rem;
}
.service-rpm {
  font-family: var(--font-cond);
  font-size: 13px; font-weight: 600;
  letter-spacing: 1px; color: var(--orange);
  display: flex; align-items: center; gap: 8px;
}
.service-rpm::before {
  content: ''; width: 20px; height: 1px; background: var(--orange);
}
.service-arrow {
  position: absolute; bottom: 2rem; right: 2rem;
  color: var(--muted); font-size: 20px;
  transition: color 0.3s, transform 0.3s;
}
.service-card:hover .service-arrow { color: var(--orange); transform: translate(4px,-4px); }

/* ─── HOW IT WORKS ───────────────────────────────────────── */
.how-bg {
  position: relative; overflow: hidden;
}
.how-bg::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg,
    transparent 0%, rgba(255,31,31,0.05) 50%, transparent 100%);
  pointer-events: none;
}
.steps-timeline {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 0; margin-top: 64px;
  position: relative;
}
.steps-timeline::before {
  content: '';
  position: absolute;
  top: 36px; left: calc(100%/12);
  right: calc(100%/12);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border2) 20%, var(--border2) 80%, transparent);
}
.step-item {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  padding: 0 1rem; position: relative;
}
.step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  background: rgba(255,31,31,0.1);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 28px; letter-spacing: 1px;
  color: var(--orange);
  margin-bottom: 1.4rem;
  position: relative; z-index: 1;
  transition: all 0.4s var(--ease-out-expo);
  font-weight: 700;
}
.step-item:hover .step-num {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 0 40px var(--glow-strong);
  transform: scale(1.08);
}
.step-item h4 {
  font-family: var(--font-cond);
  font-size: 15px; font-weight: 700;
  letter-spacing: 0.5px; color: var(--white);
  margin-bottom: 8px;
}
.step-item p {
  font-size: 13px; font-weight: 300;
  color: var(--muted); line-height: 1.6;
}

/* ─── PRICING ────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr 1fr;
  gap: 1.5rem; margin-top: 64px;
  align-items: start;
}
.price-card {
  border: 2px solid rgba(255,31,31,0.2);
  border-radius: 16px;
  padding: 2.5rem;
  background: linear-gradient(135deg, var(--card) 0%, var(--card2) 100%);
  position: relative; overflow: hidden;
  transition: transform 0.4s var(--ease-out-expo), border-color 0.3s, box-shadow 0.4s;
}
.price-card:hover {
  transform: translateY(-8px);
  border-color: var(--orange);
  box-shadow: 0 24px 60px rgba(255,31,31,0.25);
}
.price-card.featured {
  border-color: var(--orange);
  background: linear-gradient(160deg, rgba(255,31,31,0.12) 0%, var(--card) 60%);
  box-shadow: 0 0 30px rgba(255,31,31,0.15);
}
.price-card.featured:hover {
  box-shadow: 0 24px 80px rgba(255,31,31,0.4);
}
.price-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: transparent;
  transition: background 0.4s;
}
.price-card.featured::before,
.price-card:hover::before {
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}
.price-badge {
  position: absolute; top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-cond);
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 0 0 8px 8px;
}
.price-tier {
  font-family: var(--font-cond);
  font-size: 14px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--muted2); margin-bottom: 1rem;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 6rem; letter-spacing: -2px;
  color: var(--white); line-height: 1;
  margin-bottom: 4px;
}
.price-amount span { font-size: 1.4rem; color: var(--muted); }
.price-period {
  font-size: 13px; font-weight: 300;
  color: var(--muted); margin-bottom: 2rem;
}
.price-divider {
  height: 1px; background: var(--border);
  margin-bottom: 1.8rem;
}
.price-feature {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; font-weight: 400;
  color: var(--muted3);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.price-feature:last-of-type { border-bottom: none; }
.price-check {
  color: var(--orange); font-size: 14px;
  flex-shrink: 0; margin-top: 1px;
}
.price-feature-text { line-height: 1.4; }

/* ─── TESTIMONIALS ───────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 64px;
}
.testi-card {
  background: linear-gradient(135deg, var(--card) 0%, var(--card2) 100%);
  border: 2px solid rgba(255,31,31,0.2);
  border-radius: 16px; padding: 2rem;
  position: relative; overflow: hidden;
  transition: transform 0.4s var(--ease-out-expo), border-color 0.3s, box-shadow 0.4s;
}
.testi-card:hover {
  transform: translateY(-8px);
  border-color: var(--orange);
  box-shadow: 0 12px 40px rgba(255,31,31,0.2);
}
.testi-quote-mark {
  font-family: Georgia, serif;
  font-size: 80px; line-height: 0.6;
  color: rgba(255,101,0,0.12);
  margin-bottom: 1rem; display: block;
}
.testi-text {
  font-size: 15px; font-weight: 300;
  color: var(--muted3); line-height: 1.8;
  margin-bottom: 1.5rem; font-style: italic;
}
.testi-stars { color: var(--orange); font-size: 13px; margin-bottom: 1rem; }
.testi-author {
  display: flex; align-items: center; gap: 12px;
}
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange2) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-cond);
  font-size: 15px; font-weight: 700;
  color: var(--white);
}
.testi-name { font-size: 14px; font-weight: 500; color: var(--white); }
.testi-role { font-size: 12px; color: var(--muted); }

/* ─── BLOG ───────────────────────────────────────────────── */
.blog-hero-card {
  grid-column: 1 / -1;
  display: grid; grid-template-columns: 1.4fr 1fr;
  background: linear-gradient(135deg, var(--card) 0%, var(--card2) 100%);
  border: 2px solid rgba(255,31,31,0.2);
  border-radius: 16px; overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
  box-shadow: 0 0 30px rgba(255,31,31,0.08);
}
.blog-hero-card:hover { border-color: var(--orange); box-shadow: 0 0 30px rgba(255,31,31,0.2); }
.blog-hero-img {
  background: linear-gradient(135deg, rgba(255,31,31,0.15) 0%, rgba(255,31,31,0.05) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 6rem; min-height: 300px;
  position: relative; overflow: hidden;
}
.blog-hero-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 60%, var(--card) 100%);
}
.blog-hero-content { padding: 3rem; }
.blog-cat-pill {
  display: inline-flex;
  background: rgba(255,31,31,0.12);
  border: 2px solid var(--orange);
  color: var(--orange);
  font-family: var(--font-cond);
  font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px;
  margin-bottom: 1rem;
  font-weight: 700;
}
.blog-hero-title {
  font-family: var(--font-display);
  font-size: 2.2rem; letter-spacing: 0.5px;
  color: var(--white); line-height: 1.05;
  margin-bottom: 1rem;
}
.blog-hero-excerpt {
  font-size: 14px; font-weight: 300;
  color: var(--muted); line-height: 1.8;
  margin-bottom: 1.5rem;
}
.blog-meta-row {
  display: flex; gap: 16px;
  font-family: var(--font-cond);
  font-size: 12px; letter-spacing: 1px;
  color: var(--muted); text-transform: uppercase;
}
.blog-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 64px;
}
.blog-card {
  background: linear-gradient(135deg, var(--card) 0%, var(--card2) 100%);
  border: 2px solid rgba(255,31,31,0.2);
  border-radius: 14px; overflow: hidden;
  transition: all 0.4s var(--ease-out-expo);
  cursor: pointer;
}
.blog-card:hover {
  border-color: var(--orange);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(255,31,31,0.25);
}
.blog-card-thumb {
  height: 140px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
  position: relative; overflow: hidden;
}
.blog-card-thumb-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,31,31,0.2), rgba(0,0,0,0.7));
}
.blog-card-body { padding: 1.5rem; }
.blog-card-title {
  font-family: var(--font-cond);
  font-size: 17px; font-weight: 700;
  color: var(--white); line-height: 1.3;
  margin-bottom: 8px;
}
.blog-card-excerpt {
  font-size: 13px; font-weight: 300;
  color: var(--muted); line-height: 1.6;
}

/* ─── CALCULATOR ──────────────────────────────────────────── */
.calc-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden;
  max-width: 800px; margin: 64px auto 0;
}
.calc-tabs-row {
  display: flex; border-bottom: 1px solid var(--border);
  background: rgba(0,0,0,0.3);
}
.calc-tab {
  flex: 1; padding: 16px;
  font-family: var(--font-cond); font-size: 13px;
  font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); border: none; background: transparent;
  cursor: pointer; transition: all 0.3s;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.calc-tab.active { color: var(--orange); border-bottom-color: var(--orange); }
.calc-tab:hover:not(.active) { color: var(--muted3); }
.calc-body { padding: 2.5rem; }
.calc-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2rem; }
.calc-field label {
  display: block;
  font-family: var(--font-cond);
  font-size: 12px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 10px;
}
.calc-field input {
  width: 100%; background: rgba(255,31,31,0.05);
  border: 2px solid rgba(255,31,31,0.2);
  border-radius: 8px;
  color: var(--white); padding: 12px 16px;
  font-family: var(--font-cond); font-size: 20px;
  font-weight: 600; letter-spacing: 1px;
  transition: all 0.3s;
  outline: none;
}
.calc-field input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,31,31,0.15);
  background: rgba(255,31,31,0.08);
}
.calc-result-panel {
  background: linear-gradient(135deg, rgba(255,31,31,0.12), rgba(255,31,31,0.08));
  border: 2px solid rgba(255,31,31,0.3);
  border-radius: 14px; padding: 2rem;
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem; text-align: center;
  box-shadow: 0 0 30px rgba(255,31,31,0.1);
}
.calc-result-main { grid-column: 1 / -1; margin-bottom: 0.5rem; }
.calc-result-big {
  font-family: var(--font-display);
  font-size: 4.5rem; letter-spacing: -1px;
  color: var(--orange); line-height: 1;
}
.calc-result-label {
  font-family: var(--font-cond);
  font-size: 12px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); margin-top: 6px;
}
.calc-sub-stat .val {
  font-family: var(--font-cond);
  font-size: 22px; font-weight: 700;
  color: var(--muted3);
}
.calc-sub-stat .lbl {
  font-size: 11px; color: var(--muted);
  margin-top: 4px;
}

.blog-filter-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, rgba(255,31,31,0.04), rgba(0,0,0,0.2));
  border: 1px solid rgba(255,31,31,0.12);
  border-radius: 12px;
  padding: 1.2rem;
  backdrop-filter: blur(10px);
}

.category-filter {
  min-height: 40px;
  padding: 9px 16px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-size: 12px !important;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-family: var(--font-condensed);
  background: rgba(255,31,31,0.1);
  color: var(--accent-red);
  border: 1px solid rgba(255,31,31,0.25);
  border-radius: 8px !important;
  cursor: pointer;
  transition: all 0.25s ease;
}

.category-filter:hover {
  background: rgba(255,31,31,0.15);
  border-color: rgba(255,31,31,0.4);
}

.category-filter.active {
  background: linear-gradient(135deg, var(--accent-red), #FF6F61);
  color: var(--white);
  border: none;
  box-shadow: 0 4px 12px rgba(255,31,31,0.25);
}

/* ─── FAQ ─────────────────────────────────────────────────── */
.faq-list { max-width: 740px; margin: 64px auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-btn {
  width: 100%; background: none; border: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; padding: 1.4rem 0;
  font-family: var(--font-cond); font-size: 18px; font-weight: 600;
  color: var(--white); cursor: pointer;
  text-align: left; transition: all 0.3s;
  border-bottom: 1px solid rgba(255,31,31,0.1);
}
.faq-btn:hover, .faq-btn.open { color: var(--orange); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid var(--orange);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: 18px; flex-shrink: 0;
  transition: all 0.3s;
  background: rgba(255,31,31,0.08);
}
.faq-btn.open .faq-icon { transform: rotate(45deg); background: var(--orange); color: var(--white); border-color: var(--orange); }
.faq-answer {
  font-size: 15px; font-weight: 300;
  color: var(--muted2); line-height: 1.8;
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s var(--ease-out-expo), padding 0.4s;
}
.faq-answer.open { max-height: 300px; padding-bottom: 1.4rem; }

/* ─── CONTACT ─────────────────────────────────────────────── */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 4rem; align-items: start;
}
.contact-info-card {
  background: linear-gradient(135deg, rgba(255,31,31,0.08) 0%, rgba(255,31,31,0.04) 100%);
  border: 2px solid rgba(255,31,31,0.2);
  border-radius: 16px; padding: 2rem;
  margin-bottom: 1.5rem;
  display: flex; gap: 16px; align-items: flex-start;
  transition: all 0.3s;
}
.contact-info-card:hover { border-color: var(--orange); box-shadow: 0 0 20px rgba(255,31,31,0.15); }
.contact-icon-box {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--glow-subtle); border: 1px solid var(--border3);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.contact-card-label {
  font-family: var(--font-cond);
  font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 4px;
}
.contact-card-val { font-size: 15px; font-weight: 500; color: var(--white); }
.contact-form-wrap {
  background: linear-gradient(135deg, var(--card) 0%, var(--card2) 100%);
  border: 2px solid rgba(255,31,31,0.2);
  border-radius: 20px; padding: 2.5rem;
  position: relative; overflow: hidden;
  box-shadow: 0 0 30px rgba(255,31,31,0.1);
}
.contact-form-wrap::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,101,0,0.6), transparent);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-family: var(--font-cond);
  font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: rgba(255,31,31,0.05);
  border: 2px solid rgba(255,31,31,0.2);
  border-radius: 8px; color: var(--white);
  padding: 12px 16px;
  font-family: var(--font-body); font-size: 15px;
  transition: all 0.3s;
  outline: none; resize: vertical;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,31,31,0.15);
  background: rgba(255,31,31,0.08);
}
.form-group select option { background: var(--dark3); }

/* ─── TRUST BAR ───────────────────────────────────────────── */
.trust-bar {
  display: flex; justify-content: center;
  gap: 0; flex-wrap: wrap;
  border-top: 2px solid rgba(255,31,31,0.3);
  border-bottom: 2px solid rgba(255,31,31,0.3);
  background: linear-gradient(90deg, rgba(255,31,31,0.03) 0%, transparent 50%, rgba(255,31,31,0.03) 100%);
  position: relative; z-index: 10;
}
.trust-item {
  display: flex; align-items: center; gap: 12px;
  padding: 24px 50px;
  border-right: 1px solid rgba(255,31,31,0.2);
  font-family: var(--font-cond); font-size: 13px;
  font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--white);
  transition: all 0.3s;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { color: var(--orange); transform: scale(1.05); }

/* ─── CTA SECTION ─────────────────────────────────────────── */
.cta-section {
  text-align: center; padding: 120px 4rem;
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, rgba(255,31,31,0.05) 0%, transparent 100%);
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(255,31,31,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-big {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 8rem);
  letter-spacing: 2px; line-height: 0.9;
  color: var(--white); margin-bottom: 2rem;
}
.cta-big em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--orange);
}

/* ─── FOOTER ──────────────────────────────────────────────── */
footer {
  background: linear-gradient(180deg, var(--dark) 0%, rgba(255,31,31,0.05) 100%);
  border-top: 2px solid rgba(255,31,31,0.3);
  padding: 5rem 4rem 2rem;
  position: relative; z-index: 10;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem; margin-bottom: 4rem;
}
.footer-brand p {
  font-size: 14px; font-weight: 300;
  color: var(--white); line-height: 1.8;
  margin-top: 1rem; max-width: 280px;
}
.footer-col h5 {
  font-family: var(--font-cond);
  font-size: 12px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 1.2rem;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255,31,31,0.2);
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 14px; font-weight: 300;
  color: var(--white); text-decoration: none;
  transition: all 0.2s; display: inline-block;
}
.footer-col a:hover { color: var(--orange); padding-left: 4px; }
.footer-bottom {
  border-top: 2px solid rgba(255,31,31,0.2);
  padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy {
  font-size: 13px; font-weight: 300;
  color: var(--white);
}
.footer-legal-links {
  display: flex; gap: 2rem;
}
.footer-legal-links a {
  font-size: 12px; color: var(--white);
  text-decoration: none;
  transition: all 0.2s;
  position: relative;
}
.footer-legal-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.2s;
  transform-origin: left;
}
.footer-legal-links a:hover { color: var(--orange); }
.footer-legal-links a:hover::after { transform: scaleX(1); }

/* ─── PAGE ROUTING ──────────────────────────────────────────── */
.page-section { display: none; }
.page-section.active { display: block; }

/* ─── SITEMAP PAGE ─────────────────────────────────────────── */
.sitemap-cols {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2.5rem; margin-top: 48px;
}
.sitemap-group h4 {
  font-family: var(--font-cond);
  font-size: 12px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 1rem;
  padding-bottom: 10px; border-bottom: 1px solid var(--border3);
}
.sitemap-group li {
  list-style: none;
  font-size: 13px; font-weight: 300;
  color: var(--muted); padding: 6px 0;
  border-bottom: 1px solid var(--border);
  display: flex; gap: 10px; align-items: center;
}
.sitemap-group li::before { content: '╴'; color: var(--border2); }

/* ─── STYLE GUIDE PAGE ─────────────────────────────────────── */
.sg-section { margin-bottom: 3.5rem; }
.sg-section h3 {
  font-family: var(--font-cond);
  font-size: 14px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 1.5rem;
  padding-bottom: 12px; border-bottom: 1px solid var(--border);
}
.swatch-row { display: flex; gap: 12px; flex-wrap: wrap; }
.swatch { text-align: center; }
.swatch-box { width: 80px; height: 60px; border-radius: 8px; margin-bottom: 8px; }
.swatch span { font-size: 11px; color: var(--muted); }
.type-row { margin-bottom: 1.5rem; }
.type-label { font-size: 11px; color: var(--muted); margin-bottom: 6px; letter-spacing: 2px; text-transform: uppercase; }
.ad-zone {
  background: rgba(255,255,255,0.02);
  border: 1px dashed rgba(255,255,255,0.08);
  border-radius: 8px; padding: 1.5rem;
  text-align: center; margin: 2rem 0;
}
.ad-zone-label {
  font-family: var(--font-cond);
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--muted);
}

/* ─── ARTICLE PAGE ────────────────────────────────────────── */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 4rem; max-width: 1100px;
  margin: 0 auto; padding: 2rem 4rem;
}
.article-h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: 1px; line-height: 0.95;
  color: var(--white); margin-bottom: 1.5rem;
}
.article-meta-bar {
  display: flex; gap: 20px; flex-wrap: wrap;
  font-family: var(--font-cond); font-size: 12px;
  font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 2rem; padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.article-body h2 {
  font-family: var(--font-display);
  font-size: 2rem; letter-spacing: 0.5px;
  color: var(--white); margin: 2.5rem 0 1rem;
}
.article-body p {
  font-size: 16px; font-weight: 300;
  color: var(--muted2); line-height: 1.9;
  margin-bottom: 1.3rem;
}
.article-body ul {
  padding-left: 1.5rem; margin-bottom: 1.5rem;
}
.article-body li {
  font-size: 15px; font-weight: 300;
  color: var(--muted2); line-height: 1.8;
  margin-bottom: 6px;
}
.highlight-callout {
  background: linear-gradient(135deg, rgba(255,31,31,0.12), rgba(255,31,31,0.06));
  border: 2px solid rgba(255,31,31,0.3);
  border-left: 4px solid var(--orange);
  border-radius: 0 12px 12px 0;
  padding: 1.2rem 1.5rem; margin: 2rem 0;
  box-shadow: 0 0 15px rgba(255,31,31,0.08);
}
.highlight-callout p { margin: 0; color: var(--white); font-weight: 500; }
.article-cta-block {
  background: linear-gradient(135deg, rgba(255,31,31,0.1) 0%, var(--card) 100%);
  border: 2px solid rgba(255,31,31,0.3);
  border-radius: 16px; padding: 2rem;
  text-align: center; margin: 2.5rem 0;
  box-shadow: 0 0 30px rgba(255,31,31,0.1);
}
.article-cta-block h3 {
  font-family: var(--font-display);
  font-size: 1.8rem; color: var(--white);
  margin-bottom: 8px;
}
.article-cta-block p { font-size: 14px; color: var(--muted); margin-bottom: 1.2rem; }
.article-sidebar { position: sticky; top: 140px; }
.sidebar-widget {
  background: linear-gradient(135deg, var(--card) 0%, var(--card2) 100%);
  border: 2px solid rgba(255,31,31,0.2);
  border-radius: 14px; padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 20px rgba(255,31,31,0.08);
}
.sidebar-widget h4 {
  font-family: var(--font-cond); font-size: 13px;
  font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 1rem; padding-bottom: 10px;
  border-bottom: 2px solid rgba(255,31,31,0.2);
}
.sidebar-link {
  display: flex; gap: 10px; align-items: center;
  font-size: 13px; color: var(--white);
  padding: 8px 0; border-bottom: 1px solid rgba(255,31,31,0.1);
  cursor: pointer; transition: all 0.2s;
}
.sidebar-link:last-child { border-bottom: none; }
.sidebar-link:hover { color: var(--orange); padding-left: 4px; }

/* ─── ADVANCED ANIMATIONS FOR CONTACT PAGE ─────────────── */

/* Contact Cards Stagger Animation */
.contact-cards-grid > div:nth-child(1) { animation: floatCard 0.8s cubic-bezier(0.16,1,0.3,1) 0.1s both; }
.contact-cards-grid > div:nth-child(2) { animation: floatCard 0.8s cubic-bezier(0.16,1,0.3,1) 0.2s both; }
.contact-cards-grid > div:nth-child(3) { animation: floatCard 0.8s cubic-bezier(0.16,1,0.3,1) 0.3s both; }
.contact-cards-grid > div:nth-child(4) { animation: floatCard 0.8s cubic-bezier(0.16,1,0.3,1) 0.4s both; }
.contact-cards-grid > div:nth-child(5) { animation: floatCard 0.8s cubic-bezier(0.16,1,0.3,1) 0.5s both; }
.contact-cards-grid > div:nth-child(6) { animation: floatCard 0.8s cubic-bezier(0.16,1,0.3,1) 0.6s both; }

@keyframes floatCard {
  from { opacity: 0; transform: translateY(60px) scale(0.93); filter: blur(8px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

/* Icon Pulse Animation - Enhanced */
@keyframes iconPulse {
  0%, 100% { transform: scale(1) rotate(0deg); filter: drop-shadow(0 0 0 rgba(255,31,31,0.4)); }
  50% { transform: scale(1.1) rotate(6deg); filter: drop-shadow(0 8px 16px rgba(255,31,31,0.4)); }
}

/* Icon Pulse Animation - Enhanced */
@keyframes iconPulse {
  0%, 100% { transform: scale(1) rotate(0deg); filter: drop-shadow(0 0 0 rgba(255,31,31,0.4)); }
  50% { transform: scale(1.1) rotate(6deg); filter: drop-shadow(0 8px 16px rgba(255,31,31,0.4)); }
}

.contact-info-card:hover .card-icon {
  animation: iconPulse 0.6s cubic-bezier(0.34,1.56,0.64,1);
}

/* Contact card entrance animations */
.contact-info-card.reveal {
  animation: floatCard 0.8s cubic-bezier(0.16,1,0.3,1) backwards !important;
}
.contact-info-card.reveal.reveal-delay-1 { animation-delay: 0.15s !important; }
.contact-info-card.reveal.reveal-delay-2 { animation-delay: 0.3s !important; }
.contact-info-card.reveal.reveal-delay-3 { animation-delay: 0.45s !important; }
.contact-info-card.reveal.reveal-delay-4 { animation-delay: 0.6s !important; }
.contact-info-card.reveal.reveal-delay-5 { animation-delay: 0.75s !important; }

/* Form Input Enhancement */
input:focus, select:focus, textarea:focus {
  animation: inputFocus 0.4s cubic-bezier(0.16,1,0.3,1) !important;
}

@keyframes inputFocus {
  from { box-shadow: 0 0 0 rgba(255,31,31,0.1); transform: scale(0.999); }
  to { box-shadow: 0 0 20px rgba(255,31,31,0.2); transform: scale(1); }
}

/* Button Ripple and Scale Effect */
.btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1) !important;
}

.btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 24px rgba(255,31,31,0.3) !important;
  letter-spacing: 1px !important;
}

.btn:active {
  transform: translateY(0) !important;
  box-shadow: 0 4px 8px rgba(255,31,31,0.2) !important;
}

.btn-arrow {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* Step Cards Animation */
.step-item {
  animation: slideUp 0.7s cubic-bezier(0.16,1,0.3,1) backwards;
}

.step-item:nth-child(1) { animation-delay: 0.15s; }
.step-item:nth-child(2) { animation-delay: 0.25s; }
.step-item:nth-child(3) { animation-delay: 0.35s; }
.step-item:nth-child(4) { animation-delay: 0.45s; }

@keyframes slideUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

/* NEED HELP Section Animation */
.need-help-section {
  animation: slideInRight 0.8s cubic-bezier(0.16,1,0.3,1) 0.6s both !important;
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Step Number Animation */
.step-num {
  animation: numberCountIn 0.6s cubic-bezier(0.16,1,0.3,1) backwards;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1) !important;
}

.step-item:nth-child(1) .step-num { animation-delay: 0.3s; }
.step-item:nth-child(2) .step-num { animation-delay: 0.4s; }
.step-item:nth-child(3) .step-num { animation-delay: 0.5s; }
.step-item:nth-child(4) .step-num { animation-delay: 0.6s; }

@keyframes numberCountIn {
  from { opacity: 0; transform: scale(0) rotate(-180deg); }
  to { opacity: 1; transform: scale(1) rotate(0deg); }
}

.step-item:hover .step-num {
  transform: scale(1.15) rotate(10deg) !important;
  box-shadow: 0 0 20px rgba(255,31,31,0.4) !important;
}

/* Stat Cards Enhanced Animation */
@keyframes statFloat {
  from { opacity: 0; transform: translateY(40px) rotateX(-10deg); }
  to { opacity: 1; transform: translateY(0) rotateX(0deg); }
}

.stats-grid-item:nth-child(1) { animation: statFloat 0.8s cubic-bezier(0.16,1,0.3,1) 0.5s both; }
.stats-grid-item:nth-child(2) { animation: statFloat 0.8s cubic-bezier(0.16,1,0.3,1) 0.65s both; }
.stats-grid-item:nth-child(3) { animation: statFloat 0.8s cubic-bezier(0.16,1,0.3,1) 0.8s both; }

/* Stat Icon Spin */
@keyframes iconSpin {
  from { transform: rotate(0deg) scale(1); }
  to { transform: rotate(360deg) scale(1.2); }
}

/* Form Container Entrance */
form {
  animation: formAppear 0.8s cubic-bezier(0.16,1,0.3,1) 0.3s both;
}

@keyframes formAppear {
  from { opacity: 0; transform: translateY(30px) scale(0.95); filter: blur(5px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

/* Results Box Entrance */
@keyframes resultsAppear {
  from { opacity: 0; transform: translateY(60px) rotateY(-10deg); }
  to { opacity: 1; transform: translateY(0) rotateY(0deg); }
}

/* Text Fade-In-Up for Description Text */
.section-sub {
  animation: textReveal 0.9s cubic-bezier(0.16,1,0.3,1) 0.4s both;
}

@keyframes textReveal {
  from { opacity: 0; transform: translateY(25px); letter-spacing: 2px; }
  to { opacity: 1; transform: translateY(0); letter-spacing: 0.5px; }
}

/* Eyebrow Label Entrance */
.section-eyebrow {
  animation: eyebrowSlide 0.7s cubic-bezier(0.16,1,0.3,1) both;
}

@keyframes eyebrowSlide {
  from { opacity: 0; transform: translateX(-20px) scaleX(0.8); }
  to { opacity: 1; transform: translateX(0) scaleX(1); }
}

/* Title Animation */
.section-title {
  animation: titleBounce 0.9s cubic-bezier(0.34,1.56,0.64,1) 0.1s both;
}

@keyframes titleBounce {
  from { opacity: 0; transform: translateY(50px) scale(0.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Hover State for Form Fields */
input:hover:not(:focus),
select:hover:not(:focus),
textarea:hover:not(:focus) {
  border-color: rgba(255,31,31,0.25) !important;
  transform: translateY(-1px);
}

/* Select Hover Animation */
select:hover {
  animation: formHoverPulse 0.3s ease;
}

@keyframes formHoverPulse {
  0%, 100% { transform: scale(1) translateY(0); }
  50% { transform: scale(1.01) translateY(-1px); }
}

/* Footer Link Hover Animation */
footer a {
  position: relative;
  transition: color 0.3s cubic-bezier(0.16,1,0.3,1);
}

footer a::before {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width 0.3s cubic-bezier(0.16,1,0.3,1);
}

footer a:hover::before {
  width: 100%;
}

/* Phone Number Highlight on Hover */
a[href^="tel:"],
a[href^="mailto:"] {
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
  position: relative;
}

a[href^="tel:"]:hover,
a[href^="mailto:"]:hover {
  color: var(--orange) !important;
  text-shadow: 0 0 10px rgba(255,31,31,0.5);
}

/* Decorative Orb Animation */
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(20px, -30px); }
  50% { transform: translate(0, -15px); }
  75% { transform: translate(-20px, -30px); }
}

/* Text Underline Animation */
.reveal a {
  position: relative;
  transition: color 0.3s cubic-bezier(0.16,1,0.3,1);
}

.reveal a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width 0.4s cubic-bezier(0.16,1,0.3,1);
}

.reveal a:hover::after {
  width: 100%;
}

/* ─── CUSTOM SCROLLBAR STYLING ──────────────────────────── */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(255,31,31,0.03);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--orange), #FF4545);
  border-radius: 10px;
  transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #FF4545, var(--orange));
  box-shadow: 0 0 10px rgba(255,31,31,0.3);
}

/* ─── RESPONSIVE UTILITIES & CLASSES ──────────────── */
/* Fluid Typography - scales smoothly across all screen sizes */
.fluid-h1 { font-size: clamp(2rem, 8vw, 4.5rem); line-height: 1.1; }
.fluid-h2 { font-size: clamp(1.6rem, 6vw, 3.5rem); line-height: 1.2; }
.fluid-h3 { font-size: clamp(1.2rem, 4vw, 2.5rem); line-height: 1.3; }
.fluid-body { font-size: clamp(0.9rem, 1.5vw, 1.1rem); }
.fluid-sm { font-size: clamp(0.8rem, 1.2vw, 0.95rem); }

/* Responsive Spacing - padding & margins scale with viewport */
.pad-responsive { padding: clamp(1rem, 6vw, 3rem); }
.pad-responsive-lg { padding: clamp(2rem, 10vw, 5rem); }
.gap-responsive { gap: clamp(1rem, 4vw, 2.5rem); }
.gap-responsive-lg { gap: clamp(1.5rem, 6vw, 3rem); }

/* Responsive Container */
.container-fluid {
  width: 100%;
  max-width: 100%;
  padding-left: clamp(1rem, 3vw, 2.5rem);
  padding-right: clamp(1rem, 3vw, 2.5rem);
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Grids */
.grid-auto { 
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(250px, 35vw, 350px), 1fr));
  gap: clamp(1rem, 3vw, 2rem);
}
.grid-2col-responsive {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 4vw, 2.5rem);
}
.grid-3col-responsive {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(200px, 25vw, 300px), 1fr));
  gap: clamp(1rem, 3vw, 2rem);
}

/* Responsive Visibility */
@media (max-width: 768px) {
  .hide-mobile { display: none !important; }
  .text-center-mobile { text-align: center; }
  .flex-mobile { display: flex; flex-direction: column; }
}

@media (min-width: 769px) {
  .show-mobile { display: none !important; }
}

/* ─── NEED HELP BAR ──────────────────────────────────── */
.need-help-bar {
  margin-top: 5rem;
  text-align: center;
  padding: clamp(2.5rem,4vw,4rem);
  background: linear-gradient(135deg, rgba(255,31,31,0.08), rgba(255,31,31,0.03), rgba(0,0,0,0.15));
  border: 2px solid rgba(255,31,31,0.25);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
  position: relative;
  overflow: hidden;
}
.need-help-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,31,31,0.1) 0%, transparent 50%, rgba(255,31,31,0.05) 100%);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.need-help-bar:hover {
  border-color: rgba(255,31,31,0.45);
  box-shadow: 0 20px 60px rgba(255,31,31,0.25), inset 0 1px 0 rgba(255,255,255,0.1);
  background: linear-gradient(135deg, rgba(255,31,31,0.12), rgba(255,31,31,0.05), rgba(0,0,0,0.1));
  transform: translateY(-4px);
}
.need-help-bar:hover::before {
  opacity: 1;
}
.need-help-bar a:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 35px rgba(255,31,31,0.5) !important;
}

/* ─── RESPONSIVE MEDIA QUERIES ────────────────────── */
@media (max-width: 900px) {
  nav { padding: 0 1.5rem; }
  .nav-toggle { display: inline-flex; }
  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 450;
  }
  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 10px;
    background: rgba(4,6,10,0.97);
    border: 1px solid var(--border2);
    border-radius: 12px;
    backdrop-filter: blur(16px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.45);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .nav-links a {
    display: block;
    text-align: left;
    padding: 11px 12px;
    border-radius: 8px;
  }
  .nav-cta {
    text-align: center !important;
    margin-top: 4px;
  }
  nav.menu-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }
  nav.menu-open + .nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }
  section { padding: 70px 1.5rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .blog-cards-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .article-layout { grid-template-columns: 1fr; padding: 1.5rem; }
  .article-sidebar { position: static; }
  .steps-timeline { grid-template-columns: repeat(3,1fr); }
  .steps-timeline::before { display: none; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .pricing-grid { gap: 1rem; }
  .hero { padding: 0 1.5rem; padding-top: 72px; }
  .hero-h1 { font-size: 4rem; }
  .blog-hero-card { grid-template-columns: 1fr; }
  .blog-hero-img { min-height: 180px; }
  .hero-sub { font-size: 18px; line-height: 1.65; }

  [style*="grid-template-columns:repeat(auto-fit,minmax(340px,1fr))"] {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  [style*="grid-template-columns:repeat(auto-fit,minmax(320px,1fr))"],
  [style*="grid-template-columns:repeat(auto-fit,minmax(320px, 1fr))"] {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  [style*="grid-template-columns:repeat(auto-fit,minmax(240px,1fr))"] {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  img,
  video,
  iframe {
    max-width: 100%;
    height: auto;
  }

  .hero-video {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
  }

  .services-featured-wrap { padding: 2rem !important; }
  .services-featured-grid { grid-template-columns: 1fr !important; gap: 1.5rem !important; }
  .services-featured-title { font-size: 2.6rem !important; }
  .services-featured-stats { grid-template-columns: 1fr 1fr !important; }
  .services-cards-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important; gap: 1.25rem !important; }
  .services-included-wrap { padding: 2rem !important; }
  .services-included-title { font-size: 2rem !important; }
  .services-included-grid { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)) !important; gap: 1rem !important; }
}
@media (max-width: 600px) {
  /* Typography - mobile optimized */
  section { padding: 3rem clamp(1rem, 4vw, 2rem) !important; }
  .section-title { font-size: clamp(2rem, 8vw, 2.8rem) !important; }
  .section-eyebrow { font-size: clamp(10px, 2vw, 12px) !important; }
  .section-sub { font-size: clamp(14px, 3vw, 16px) !important; }
  
  /* Hero section */
  .hero-h1 { font-size: clamp(2.2rem, 9vw, 3.2rem) !important; line-height: 1.1; }
  .hero-sub { font-size: clamp(14px, 2.5vw, 16px); line-height: 1.6; }
  .hero-actions { width: 100%; flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; padding: clamp(12px 16px, 2vw, 14px 20px) !important; }

  /* Grids - all to single column */
  .services-grid { grid-template-columns: 1fr !important; }
  .testimonials-grid { grid-template-columns: 1fr !important; }
  .blog-cards-grid { grid-template-columns: 1fr !important; }
  .contact-cards-grid { grid-template-columns: 1fr !important; }
  .steps-timeline { grid-template-columns: 1fr !important; }
  .steps-grid { grid-template-columns: 1fr !important; }
  .trust-bar { flex-direction: column; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border); }

  /* All auto-fit grids to single column */
  [style*="grid-template-columns:repeat(auto-fit"] {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns:2fr 1fr"],
  [style*="grid-template-columns:1fr 2fr"] {
    grid-template-columns: 1fr !important;
  }

  /* Services section */
  .services-featured-wrap { padding: clamp(1.5rem, 4vw, 2rem) !important; margin-bottom: clamp(1rem, 3vw, 1.5rem) !important; }
  .services-featured-grid { grid-template-columns: 1fr !important; gap: clamp(1rem, 3vw, 1.5rem) !important; }
  .services-featured-title { font-size: clamp(1.8rem, 7vw, 2.6rem) !important; line-height: 1.05 !important; }
  .services-featured-stats { grid-template-columns: 1fr 1fr !important; gap: clamp(0.8rem, 2vw, 1rem) !important; }
  .services-highlighted-stats > div { padding: clamp(1rem, 2vw, 1.5rem) !important; }
  .services-cards-grid { grid-template-columns: 1fr !important; gap: clamp(1rem, 2vw, 1.25rem) !important; }
  .services-included-wrap { padding: clamp(1.5rem, 4vw, 2rem) !important; margin-top: clamp(1rem, 3vw, 1.5rem) !important; }
  .services-included-title { font-size: clamp(1.5rem, 6vw, 2rem) !important; }
  .services-included-grid { grid-template-columns: 1fr !important; gap: clamp(0.75rem, 2vw, 1rem) !important; }

  /* Responsive text */
  p { font-size: clamp(13px, 2.5vw, 15px) !important; }
  a { word-break: break-word; }

  /* Pricing and tools */
  .pricing-grid { grid-template-columns: 1fr !important; }
  .tools-grid { grid-template-columns: 1fr !important; }
  .calculator { padding: clamp(1.5rem, 4vw, 2rem) !important; }

  /* Responsive buttons */
  .btn { padding: clamp(12px 16px, 2vw, 14px 24px) !important; font-size: clamp(13px, 2vw, 15px) !important; }
  .btn-primary { width: 100%; }

  /* Width constraints */
  [style*="min-width:150px"] { min-width: 100% !important; }
  [style*="max-width:900px"] { max-width: 100% !important; }
  [style*="max-width:800px"] { max-width: 100% !important; }
  [style*="max-width:650px"] { max-width: 100% !important; }
}

@media (max-width: 768px) {
  /* Tablet optimizations */
  nav { padding: 0 1rem; height: 60px; }
  section { padding: clamp(2.5rem, 6vw, 3rem) clamp(1rem, 3vw, 2rem); }
  
  .section-title { font-size: clamp(1.8rem, 7vw, 2.8rem) !important; }
  .section-eyebrow { font-size: clamp(10px, 1.8vw, 12px) !important; }
  .section-sub { font-size: clamp(14px, 2.5vw, 16px) !important; }
  
  .hero-h1 { font-size: clamp(2rem, 8vw, 3rem) !important; }
  .hero-sub { font-size: clamp(14px, 2.2vw, 15px) !important; }
  
  /* Tablets get 2-column grids where possible */
  .services-featured-stats { grid-template-columns: 1fr 1fr !important; gap: clamp(0.8rem, 2vw, 1rem) !important; }
  .services-cards-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important; gap: clamp(1rem, 2vw, 1.25rem) !important; }
  
  .btn { padding: clamp(11px 16px, 1.5vw, 13px 20px) !important; font-size: clamp(13px, 1.8vw, 14px) !important; }
}

@media (max-width: 375px) {
  /* Ultra-small screens - strict mobile layout */
  nav { padding: 0 0.75rem !important; }
  section { padding: 3rem clamp(0.75rem, 2vw, 1rem) !important; }
  
  /* Typography - extremely compact */
  .section-title { font-size: clamp(1.5rem, 6vw, 2rem) !important; }
  .section-eyebrow { font-size: 9px !important; letter-spacing: 1.5px !important; }
  .section-sub { font-size: 13px !important; }
  h1, .hero-h1 { font-size: clamp(1.8rem, 7vw, 2.4rem) !important; }
  h2, .hero-h2 { font-size: clamp(1.3rem, 5vw, 1.8rem) !important; }
  h3, .hero-h3 { font-size: clamp(1rem, 4vw, 1.4rem) !important; }
  p { font-size: clamp(12px, 2.2vw, 13px) !important; }
  
  /* Services section - extreme compression */
  .services-featured-wrap { padding: clamp(1rem, 3vw, 1.25rem) !important; margin-bottom: 1rem !important; border-radius: 12px !important; }
  .services-featured-title { font-size: clamp(1.4rem, 5.5vw, 1.8rem) !important; line-height: 1 !important; }
  .services-featured-grid { gap: clamp(0.75rem, 2vw, 1rem) !important; }
  .services-featured-grid p { font-size: 12px !important; line-height: 1.5 !important; margin-bottom: 0.75rem !important; }
  .services-featured-stats { grid-template-columns: 1fr 1fr !important; gap: clamp(0.6rem, 1.5vw, 0.8rem) !important; }
  .services-featured-stats > div { padding: clamp(0.8rem, 2vw, 1rem) !important; border-radius: 10px !important; }
  .services-featured-stats > div > div:nth-child(1) { font-size: clamp(1.8rem, 5vw, 2.2rem) !important; margin-bottom: 0.4rem !important; }
  .services-featured-stats > div > div:nth-child(2) { font-size: 8px !important; }
  .services-featured-stats > div > div:nth-child(3) { font-size: 11px !important; }

  /* Cards and grids */
  .services-cards-grid { grid-template-columns: 1fr !important; gap: clamp(0.75rem, 2vw, 0.9rem) !important; }
  .services-cards-grid .price-card { padding: clamp(1rem, 2.5vw, 1.1rem) !important; border-radius: 12px !important; }
  .services-cards-grid .price-tier { font-size: 14px !important; margin-bottom: 0.5rem !important; }
  .services-cards-grid p { font-size: 12px !important; }
  
  .services-included-wrap { padding: clamp(1rem, 3vw, 1.25rem) !important; margin-top: 1.2rem !important; border-radius: 12px !important; }
  .services-included-title { font-size: clamp(1.3rem, 5vw, 1.6rem) !important; margin-bottom: 1.2rem !important; }
  .services-included-grid { grid-template-columns: 1fr !important; gap: clamp(0.6rem, 2vw, 0.75rem) !important; }
  .services-included-grid > div { padding: clamp(0.8rem, 2vw, 1rem) !important; border-radius: 10px !important; }
  .services-included-grid .card-title { font-size: 11px !important; }
  
  /* Buttons - fill width */
  .btn { 
    width: 100% !important;
    padding: clamp(10px, 2vw, 12px) clamp(12px, 3vw, 16px) !important; 
    font-size: clamp(12px, 2vw, 13px) !important;
    border-radius: 10px !important;
  }
  .btn-primary { justify-content: center !important; }
  
  /* Contact cards */
  .contact-info-card { 
    padding: clamp(1.5rem, 3vw, 2rem) clamp(1rem, 2vw, 1.5rem) !important;
    border-radius: 12px !important;
  }
  .contact-info-card .card-icon { font-size: clamp(32px, 7vw, 40px) !important; margin-bottom: 0.75rem !important; }
  .contact-info-card .card-label { font-size: 9px !important; letter-spacing: 1.5px !important; margin-bottom: 0.5rem !important; }
  .contact-info-card .card-value { font-size: clamp(13px, 2.5vw, 14px) !important; margin-bottom: 0.5rem !important; }
  .contact-info-card .card-sub { font-size: 11px !important; }
  
  /* Forms and inputs */
  input, textarea, select {
    padding: clamp(10px, 2vw, 12px) clamp(12px, 2.5vw, 14px) !important;
    font-size: 14px !important;
    border-radius: 8px !important;
  }
  label { font-size: clamp(12px, 2vw, 13px) !important; margin-bottom: 0.3rem !important; }

  /* Text wrapping and overflow */
  a, p, li, span { word-break: break-word; overflow-wrap: break-word; }
}

@media (hover: none), (pointer: coarse) {
  #cursor,
  #cursor-trail {
    display: none !important;
  }
}
