/* ============================================
   QB DIGITAL SOLUTIONS — STYLESHEET v3.0
   Theme: Black + Neon Orange — Bold Modern
   ============================================ */

/* ===== ROOT VARIABLES ===== */
:root {
  /* Black Palette */
  --navy: #000000;
  --navy-light: #1A1A1A;
  --navy-dark: #000000;
  --navy-50: #F5F5F5;

  /* Neon Orange Palette */
  --orange: #FF5500;
  --orange-light: #FF7733;
  --orange-dark: #CC4400;
  --orange-50: #FFF0EB;

  /* Gold Accent */
  --gold: #FFB627;
  --gold-light: #FFCB57;

  /* Neutrals */
  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;

  /* Text */
  --text-dark: #0F172A;
  --text-body: #334155;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --text-white: #FFFFFF;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(10, 31, 68, 0.05);
  --shadow-sm: 0 2px 8px rgba(10, 31, 68, 0.06);
  --shadow-md: 0 4px 20px rgba(10, 31, 68, 0.08);
  --shadow-lg: 0 8px 40px rgba(10, 31, 68, 0.10);
  --shadow-xl: 0 16px 60px rgba(10, 31, 68, 0.14);
  --shadow-orange: 0 8px 24px rgba(255, 85, 0, 0.4);

  /* Gradients */
  --gradient-navy: linear-gradient(135deg, #000000 0%, #1A1A1A 100%);
  --gradient-orange: linear-gradient(135deg, #FF5500 0%, #FF7733 100%);
  --gradient-hero: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(26, 26, 26, 0.90) 50%, rgba(0, 0, 0, 0.95) 100%);

  /* Typography */
  --font-display: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Layout */
  --container-max: 1280px;
  --container-pad: 0 24px;
  --section-pad: 96px 0;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Transitions */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); background: var(--white); color: var(--text-body); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { border: none; cursor: pointer; font-family: inherit; }

/* ===== CONTAINER ===== */
.container { max-width: var(--container-max); margin: 0 auto; padding: var(--container-pad); }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 { font-family: var(--font-display); color: var(--text-dark); letter-spacing: -0.02em; line-height: 1.2; }
h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.875rem, 3.5vw, 2.75rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1.125rem; font-weight: 600; }

.eyebrow {
  font-family: var(--font-mono); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--orange); display: inline-flex; align-items: center; gap: 8px; margin-bottom: 12px;
}
.eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--orange); border-radius: 2px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
  border-radius: var(--radius-sm); transition: all 0.3s var(--ease);
  position: relative; overflow: hidden; cursor: pointer; white-space: nowrap;
}
.btn-primary { background: var(--orange); color: var(--white); box-shadow: var(--shadow-orange); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255,107,53,0.35); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--gray-200); padding: 12px 26px; }
.btn-outline:hover { border-color: var(--navy); background: var(--navy-50); }
.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

/* ===== TOP BAR ===== */
.topbar { background: var(--navy-dark); padding: 8px 0; color: var(--gray-400); font-size: 0.8rem; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
.topbar-contact { display: flex; gap: 24px; }
.topbar-contact a { display: flex; align-items: center; gap: 6px; color: var(--gray-400); transition: color 0.2s; }
.topbar-contact a:hover { color: var(--orange); }
.topbar-contact svg { width: 14px; height: 14px; }
.topbar-social { display: flex; gap: 12px; }
.topbar-social a { color: var(--gray-400); transition: color 0.2s; font-size: 0.85rem; }
.topbar-social a:hover { color: var(--orange); }

/* ===== NAVIGATION ===== */
.navbar { position: sticky; top: 0; z-index: 1000; background: var(--white); border-bottom: 1px solid var(--gray-100); transition: box-shadow 0.3s; }
.navbar.scrolled { box-shadow: var(--shadow-sm); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; max-width: var(--container-max); margin: 0 auto; padding: 0 24px; height: 72px; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo svg { height: 40px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 28px; }
.nav-link { font-size: 0.9rem; font-weight: 500; color: var(--gray-700); position: relative; transition: color 0.2s; padding: 4px 0; }
.nav-link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--orange); border-radius: 2px; transition: width 0.3s var(--ease); }
.nav-link:hover { color: var(--navy); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--navy); font-weight: 600; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger { display: flex; align-items: center; gap: 4px; cursor: pointer; }
.nav-dropdown-trigger svg { width: 12px; height: 12px; transition: transform 0.3s; }
.nav-dropdown:hover .nav-dropdown-trigger svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius-md); padding: 12px; min-width: 360px;
  box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden;
  transition: all 0.3s var(--ease);
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-item { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: var(--radius-sm); font-size: 0.85rem; color: var(--gray-700); transition: all 0.2s; }
.dropdown-item:hover { background: var(--navy-50); color: var(--navy); }
.dropdown-item-icon { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; background: var(--orange-50); border-radius: 8px; flex-shrink: 0; }
.dropdown-item-icon svg { width: 16px; height: 16px; color: var(--orange); }

.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-phone { font-size: 0.85rem; font-weight: 600; color: var(--navy); display: flex; align-items: center; gap: 6px; }
.nav-phone svg { width: 15px; height: 15px; color: var(--orange); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s var(--ease); }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero { position: relative; overflow: hidden; background: var(--navy); }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }
.hero-overlay { position: absolute; inset: 0; background: var(--gradient-hero); }
.hero-content { position: relative; z-index: 2; max-width: var(--container-max); margin: 0 auto; padding: 100px 24px 100px; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center; }
.hero-text { color: var(--white); }
.hero-eyebrow {
  font-family: var(--font-mono); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold);
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 20px;
  padding: 6px 16px; background: rgba(255, 182, 39, 0.1); border: 1px solid rgba(255, 182, 39, 0.3);
  border-radius: 100px;
}
.hero-eyebrow .dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulseDot 2s ease-in-out infinite; }
@keyframes pulseDot { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.5); opacity: 0.5; } }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 .accent { color: var(--orange); }
.hero-subtext { font-size: 1.1rem; color: var(--gray-300); max-width: 520px; margin-bottom: 32px; line-height: 1.7; }
.hero-stats { display: grid; grid-template-columns: repeat(4, auto); gap: 32px; margin-bottom: 36px; }
.stat-item { text-align: left; }
.stat-value { font-family: var(--font-display); font-size: 1.75rem; font-weight: 800; color: var(--white); display: block; }
.stat-label { font-size: 0.75rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 2px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero Visual */
.hero-visual { position: relative; }
.hero-card {
  background: rgba(255, 255, 255, 0.08); backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12); border-radius: var(--radius-lg);
  padding: 24px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.hero-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.hero-card-title { font-family: var(--font-display); font-size: 0.85rem; font-weight: 600; color: var(--white); }
.hero-card-dots { display: flex; gap: 5px; }
.hero-card-dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, 0.2); }
.hero-card-dots span:first-child { background: var(--orange); }
.hero-card-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.hero-metric { background: rgba(255, 255, 255, 0.05); border-radius: var(--radius-sm); padding: 14px; }
.hero-metric .val { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; color: var(--orange); }
.hero-metric .lbl { font-size: 0.7rem; color: var(--gray-400); margin-top: 2px; }
.hero-chart { background: rgba(255, 255, 255, 0.03); border-radius: var(--radius-sm); padding: 16px; height: 120px; position: relative; overflow: hidden; }
.hero-chart svg { width: 100%; height: 100%; }
.chart-path { fill: none; stroke: var(--orange); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.chart-area { fill: url(#heroChartGrad); }
.hero-toast {
  background: rgba(255, 85, 0, 0.15); border: 1px solid rgba(255, 85, 0, 0.3);
  border-radius: var(--radius-sm); padding: 10px 14px; display: flex; align-items: center; gap: 10px;
  font-size: 0.8rem; color: var(--white); margin-top: 12px;
}
.hero-toast .check { width: 24px; height: 24px; background: var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; color: var(--white); flex-shrink: 0; }

/* ===== TRUST BAR ===== */
.trust-bar { background: var(--gray-50); padding: 40px 0; border-bottom: 1px solid var(--gray-100); }
.trust-text { font-size: 0.85rem; color: var(--text-muted); text-align: center; margin-bottom: 20px; font-weight: 500; }
.logo-marquee { overflow: hidden; position: relative; mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.logo-track { display: flex; gap: 48px; animation: scrollLogos 30s linear infinite; align-items: center; }
@keyframes scrollLogos { to { transform: translateX(-50%); } }
.logo-item { font-family: var(--font-display); font-weight: 600; font-size: 1rem; color: var(--gray-400); white-space: nowrap; transition: color 0.3s; }
.logo-item:hover { color: var(--navy); }
.featured-strip { margin-top: 20px; display: flex; justify-content: center; gap: 24px; font-size: 0.75rem; color: var(--text-muted); }
.featured-strip span { padding: 5px 14px; background: var(--gray-100); border-radius: 100px; font-weight: 500; }

/* ===== SECTION GENERAL ===== */
section { position: relative; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { font-size: 1.05rem; color: var(--text-muted); line-height: 1.7; }
.section-alt { background: var(--gray-50); }

/* ===== SERVICES GRID ===== */
.services { padding: var(--section-pad); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white); border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--gray-100); transition: all 0.4s var(--ease);
  box-shadow: var(--shadow-xs);
}
.service-card:hover { border-color: var(--gray-200); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card-image { height: 180px; overflow: hidden; position: relative; }
.service-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.service-card:hover .service-card-image img { transform: scale(1.06); }
.service-card-icon {
  position: absolute; bottom: -20px; left: 20px; z-index: 2;
  width: 48px; height: 48px; background: var(--white); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
}
.service-card-icon svg { width: 22px; height: 22px; color: var(--orange); }
.service-card-body { padding: 32px 24px 24px; }
.service-card-body h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--text-dark); }
.service-card-body p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.service-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; font-weight: 600; color: var(--orange); transition: gap 0.2s; }
.service-link:hover { gap: 10px; }
.services-cta { text-align: center; margin-top: 48px; }

/* ===== PROCESS ===== */
.process { padding: var(--section-pad); background: var(--gray-50); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 36px; left: 12%; right: 12%; height: 2px; background: linear-gradient(90deg, var(--orange), var(--gold), var(--orange)); opacity: 0.2; }
.step-card { text-align: center; }
.step-number {
  width: 72px; height: 72px; margin: 0 auto 20px; background: var(--white);
  border: 2px solid var(--orange); border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  color: var(--orange); position: relative; z-index: 1; transition: all 0.3s var(--ease);
}
.step-card:hover .step-number { background: var(--orange); color: var(--white); transform: scale(1.08); box-shadow: var(--shadow-orange); }
.step-card h3 { margin-bottom: 8px; font-size: 1.05rem; }
.step-card p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 12px; line-height: 1.6; }
.step-duration { font-family: var(--font-mono); font-size: 0.7rem; font-weight: 600; color: var(--orange); padding: 3px 10px; background: var(--orange-50); border-radius: 100px; }
.success-metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px; padding: 40px; background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--gray-100); box-shadow: var(--shadow-sm); }
.metric-block { text-align: center; }
.metric-block .value { font-family: var(--font-display); font-size: 2.25rem; font-weight: 800; color: var(--navy); display: block; }
.metric-block .label { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }

/* ===== CASE STUDY ===== */
.case-study { padding: var(--section-pad); }
.case-card { display: grid; grid-template-columns: 1fr 1fr; gap: 0; background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--gray-100); box-shadow: var(--shadow-md); }
.case-image { height: 100%; min-height: 360px; overflow: hidden; position: relative; }
.case-image img { width: 100%; height: 100%; object-fit: cover; }
.case-image-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,31,68,0.7), rgba(10,31,68,0.3)); display: flex; align-items: center; justify-content: center; }
.case-image-overlay .badge { text-align: center; color: var(--white); }
.case-image-overlay .badge .icon { font-size: 2.5rem; margin-bottom: 8px; }
.case-image-overlay .badge h4 { color: var(--white); font-size: 1.1rem; }
.case-image-overlay .badge p { font-size: 0.85rem; color: var(--gray-300); }
.case-details { padding: 48px 40px; }
.case-details h3 { font-size: 1.35rem; margin-bottom: 20px; line-height: 1.3; }
.case-results { display: grid; gap: 10px; margin-bottom: 28px; }
.case-result { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text-body); }
.case-result .check { width: 22px; height: 22px; background: var(--orange-50); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 0.7rem; flex-shrink: 0; }
.case-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: var(--section-pad); background: var(--navy); position: relative; overflow: hidden; }
.testimonials::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,107,53,0.06) 1px, transparent 1px); background-size: 32px 32px; }
.testimonials .section-header h2 { color: var(--white); }
.testimonials .section-header p { color: var(--gray-400); }
.testimonials .eyebrow { color: var(--orange); }
.testimonials .eyebrow::before { background: var(--orange); }
.testimonial-slider { position: relative; max-width: 760px; margin: 0 auto; overflow: hidden; }
.testimonial-track { display: flex; transition: transform 0.5s var(--ease); }
.testimonial-card { min-width: 100%; padding: 40px; background: rgba(255,255,255,0.05); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); text-align: center; }
.stars { display: flex; justify-content: center; gap: 3px; margin-bottom: 20px; }
.stars span { color: var(--gold); font-size: 1.1rem; }
.testimonial-quote { font-size: 1.05rem; color: var(--gray-200); line-height: 1.7; margin-bottom: 28px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 14px; }
.author-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--gradient-orange); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; color: var(--white); font-size: 1.1rem; }
.author-name { font-family: var(--font-display); font-weight: 600; color: var(--white); font-size: 0.95rem; }
.author-title { font-size: 0.8rem; color: var(--gray-400); }
.testimonial-dots { display: flex; justify-content: center; gap: 6px; margin-top: 24px; }
.dot-btn { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.2); cursor: pointer; transition: all 0.3s; border: none; }
.dot-btn.active { background: var(--orange); width: 28px; border-radius: 4px; }
.testimonial-summary { display: flex; justify-content: center; gap: 40px; margin-top: 32px; flex-wrap: wrap; }
.summary-item { text-align: center; color: var(--gray-400); font-size: 0.85rem; }
.summary-item strong { display: block; font-family: var(--font-display); font-size: 1.35rem; color: var(--orange); margin-bottom: 2px; }

/* ===== FAQ ===== */
.faqs { padding: var(--section-pad); background: var(--gray-50); }
.faq-list { max-width: 780px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { background: var(--white); border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--gray-100); transition: all 0.3s var(--ease); }
.faq-item.active { border-color: var(--orange); box-shadow: var(--shadow-sm); }
.faq-question { padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; color: var(--text-dark); gap: 16px; }
.faq-icon-wrap { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; background: var(--orange-50); border-radius: 8px; transition: all 0.3s; flex-shrink: 0; }
.faq-item.active .faq-icon-wrap { background: var(--orange); }
.faq-icon-wrap svg { width: 16px; height: 16px; color: var(--orange); transition: all 0.3s; }
.faq-item.active .faq-icon-wrap svg { color: var(--white); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer-inner { padding: 0 24px 20px; color: var(--text-muted); line-height: 1.7; font-size: 0.9rem; }
.faqs-cta { text-align: center; margin-top: 40px; display: flex; justify-content: center; gap: 12px; }

/* ===== CTA BANNER ===== */
.cta-banner { padding: 80px 0; background: var(--gray-50); }
.cta-box { background: var(--gradient-navy); border-radius: var(--radius-xl); padding: 56px 48px; text-align: center; position: relative; overflow: hidden; }
.cta-box::before { content: ''; position: absolute; top: -50%; right: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(255,107,53,0.15), transparent 60%); border-radius: 50%; }
.cta-box h2 { color: var(--white); margin-bottom: 12px; position: relative; z-index: 1; }
.cta-box p { font-size: 1.05rem; color: var(--gray-300); margin-bottom: 32px; position: relative; z-index: 1; }
.cta-form { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; max-width: 640px; margin: 0 auto; position: relative; z-index: 1; }
.cta-form input, .cta-form select { padding: 14px 18px; border: 2px solid rgba(255,255,255,0.1); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 0.9rem; background: rgba(255,255,255,0.05); color: var(--white); transition: border-color 0.3s; }
.cta-form input::placeholder { color: var(--gray-400); }
.cta-form input:focus, .cta-form select:focus { outline: none; border-color: var(--orange); }
.cta-form select option { color: var(--text-dark); }
.cta-form .full-width { grid-column: 1 / -1; }
.cta-privacy { font-size: 0.75rem; color: var(--gray-400); margin-top: 12px; position: relative; z-index: 1; }
.cta-privacy a { color: var(--orange); text-decoration: underline; }

/* ===== FOOTER ===== */
.footer { background: var(--navy-dark); color: var(--gray-400); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 56px; }
.footer-brand .footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand .footer-logo svg { height: 40px; width: auto; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; margin-bottom: 20px; max-width: 300px; }
.footer-contact { display: grid; gap: 10px; font-size: 0.825rem; }
.footer-contact a { display: flex; align-items: center; gap: 8px; color: var(--gray-400); transition: color 0.2s; }
.footer-contact a:hover { color: var(--orange); }
.footer-contact svg { width: 14px; height: 14px; color: var(--orange); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-icon { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.05); border-radius: 8px; color: var(--gray-400); transition: all 0.3s; font-size: 0.85rem; }
.social-icon:hover { background: var(--orange); color: var(--white); transform: translateY(-2px); }
.footer-col h4 { color: var(--white); font-size: 0.875rem; margin-bottom: 16px; font-weight: 600; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { font-size: 0.825rem; color: var(--gray-400); transition: color 0.2s; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.75rem; color: var(--gray-500); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a:hover { color: var(--orange); }

/* ===== PRICING TABLE ===== */
.pricing { padding: var(--section-pad); background: var(--white); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1080px; margin: 0 auto; }
.pricing-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 36px 28px; position: relative; transition: all 0.3s var(--ease); }
.pricing-card:hover { border-color: var(--orange); box-shadow: var(--shadow-lg); }
.pricing-card.featured { border-color: var(--orange); border-width: 2px; box-shadow: var(--shadow-md); }
.pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--orange); color: var(--white); font-size: 0.7rem; font-weight: 600; padding: 4px 14px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.05em; }
.pricing-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.pricing-desc { font-size: 0.825rem; color: var(--text-muted); margin-bottom: 20px; }
.pricing-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.pricing-price .amount { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; color: var(--text-dark); }
.pricing-price .period { font-size: 0.85rem; color: var(--text-muted); }
.pricing-meta { font-size: 0.75rem; color: var(--text-light); margin-bottom: 24px; }
.pricing-features { display: grid; gap: 10px; margin-bottom: 28px; }
.pricing-feature { display: flex; align-items: flex-start; gap: 8px; font-size: 0.85rem; color: var(--text-body); }
.pricing-feature svg { width: 16px; height: 16px; color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.pricing-cta { width: 100%; justify-content: center; }

/* ===== PAGE HERO (Inner Pages) ===== */
.page-hero { background: var(--navy); padding: 120px 0 60px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,107,53,0.06) 1px, transparent 1px); background-size: 32px 32px; }
.page-hero-content { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; padding: 0 24px; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { font-size: 1.1rem; color: var(--gray-300); line-height: 1.7; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; font-size: 0.8rem; color: var(--gray-400); margin-top: 20px; }
.breadcrumb a { color: var(--orange); }
.breadcrumb span { color: var(--gray-500); }

/* ===== SERVICE PAGE ===== */
.service-page { padding: var(--section-pad); }
.service-content { max-width: 760px; margin: 0 auto; }
.service-content h2 { font-size: 1.5rem; margin: 40px 0 16px; }
.service-content p { font-size: 1rem; color: var(--text-body); line-height: 1.8; margin-bottom: 16px; }
.service-content ul { display: grid; gap: 10px; margin: 20px 0; }
.service-content li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.95rem; color: var(--text-body); }
.service-content li svg { width: 18px; height: 18px; color: var(--orange); flex-shrink: 0; margin-top: 2px; }

/* ===== ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: all 0.6s var(--ease); }
.reveal.active { 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; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 460px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-steps::before { display: none; }
  .case-card { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
}
@media (max-width: 768px) {
  :root { --section-pad: 64px 0; }
  .topbar { display: none; }
  .nav-menu {
    position: fixed; top: 0; right: -100%; width: 85%; max-width: 380px; height: 100vh;
    background: var(--white); flex-direction: column; align-items: flex-start;
    padding: 80px 24px 40px; gap: 16px; transition: right 0.4s var(--ease);
    box-shadow: -8px 0 32px rgba(0,0,0,0.1); overflow-y: auto;
  }
  .nav-menu.active { right: 0; }
  .nav-toggle { display: flex; }
  .nav-cta .btn { display: none; }
  .nav-phone { display: none; }
  .nav-dropdown-menu { position: static; transform: none; opacity: 1; visibility: visible; background: var(--gray-50); border: none; box-shadow: none; padding: 8px; grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .success-metrics { grid-template-columns: 1fr 1fr; padding: 28px; }
  .cta-form { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .testimonial-card { padding: 28px 20px; }
  .case-details { padding: 32px 24px; }
  .cta-box { padding: 36px 24px; }
}
@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .success-metrics { grid-template-columns: 1fr; }
  .testimonial-summary { flex-direction: column; gap: 12px; }
}

/* ===== COOKIE CONSENT ===== */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: #000000; border-top: 1px solid #FF5500;
  padding: 16px 24px; display: flex; align-items: center; justify-content: space-between;
  gap: 20px; transform: translateY(100%); transition: transform 0.4s var(--ease);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.2);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner-text { font-size: 0.85rem; color: #94A3B8; flex: 1; }
.cookie-banner-text a { color: #FF5500; text-decoration: underline; }
.cookie-banner-buttons { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-banner-buttons button { padding: 8px 20px; font-size: 0.85rem; font-weight: 600; border-radius: 8px; cursor: pointer; font-family: var(--font-body); }
.cookie-accept { background: #FF5500; color: #fff; border: none; }
.cookie-accept:hover { background: #CC4400; }
.cookie-decline { background: transparent; color: #94A3B8; border: 1px solid #475569; }
.cookie-decline:hover { color: #fff; border-color: #fff; }
@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; text-align: center; }
  .cookie-banner-buttons { width: 100%; justify-content: center; }
}
