/* =====================================================
   RAYATECH LLC — Main Stylesheet
   Digital Marketing Agency | Denver, CO
   Colors: Orange #F97316 | Light Green #4ADE80
   ===================================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --primary:        #F97316;
  --primary-dark:   #C2410C;
  --primary-light:  #FDBA74;
  --secondary:      #4ADE80;
  --secondary-dark: #16A34A;
  --secondary-light:#BBF7D0;
  --dark:           #0A0F1E;
  --dark-alt:       #111827;
  --dark-card:      #1A2235;
  --dark-card2:     #1F2D40;
  --text:           #94A3B8;
  --text-light:     #CBD5E1;
  --light:          #F1F5F9;
  --white:          #FFFFFF;
  --border:         rgba(255,255,255,0.08);
  --border-hover:   rgba(249,115,22,0.4);
  --gradient-hero:  linear-gradient(135deg, #0A0F1E 0%, #111827 50%, #0A0F1E 100%);
  --gradient-orange:linear-gradient(135deg, #F97316, #C2410C);
  --gradient-green: linear-gradient(135deg, #4ADE80, #16A34A);
  --gradient-mixed: linear-gradient(135deg, #F97316 0%, #C2410C 40%, #16A34A 100%);
  --shadow-orange:  0 20px 60px rgba(249,115,22,0.2);
  --shadow-green:   0 20px 60px rgba(74,222,128,0.15);
  --shadow-card:    0 8px 40px rgba(0,0,0,0.3);
  --radius:         16px;
  --radius-sm:      8px;
  --radius-xs:      4px;
  --transition:     all 0.35s cubic-bezier(0.4,0,0.2,1);
  --font-heading:   'Poppins', sans-serif;
  --font-body:      'Inter', sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  background-color: var(--dark);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--white);
  line-height: 1.2;
  font-weight: 700;
}

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-light); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
input, textarea, select { font-family: var(--font-body); }

/* --- Utility Classes --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 60px 0; }

.text-center { text-align: center; }
.text-orange { color: var(--primary); }
.text-green  { color: var(--secondary); }
.text-white  { color: var(--white); }
.text-muted  { color: var(--text); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.badge-orange { background: rgba(249,115,22,0.15); color: var(--primary); border: 1px solid rgba(249,115,22,0.3); }
.badge-green  { background: rgba(74,222,128,0.1);  color: var(--secondary); border: 1px solid rgba(74,222,128,0.25); }

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.15;
}
.section-title span { background: var(--gradient-orange); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-title .green { background: var(--gradient-green); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.section-desc {
  font-size: 18px;
  color: var(--text);
  max-width: 620px;
  line-height: 1.8;
}
.section-desc.center { margin: 0 auto; }

.divider {
  width: 60px; height: 4px;
  background: var(--gradient-orange);
  border-radius: 100px;
  margin: 20px 0 32px;
}
.divider.center { margin: 20px auto 32px; }
.divider.green { background: var(--gradient-green); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-orange);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 80px rgba(249,115,22,0.35);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--secondary);
  border-color: var(--secondary);
}
.btn-secondary:hover {
  background: var(--secondary);
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-green);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-lg { padding: 18px 44px; font-size: 17px; }
.btn-sm { padding: 10px 22px; font-size: 13px; }

/* =====================================================
   NAVIGATION
   ===================================================== */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}
#site-header.scrolled {
  background: rgba(10,15,30,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 40px rgba(0,0,0,0.4);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  max-width: 1300px;
  margin: 0 auto;
}
.nav-logo img { height: 45px; width: auto; }
.nav-logo { display: flex; align-items: center; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-menu li a {
  display: block;
  padding: 8px 16px;
  color: var(--text-light);
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-menu li a:hover::after,
.nav-menu li.current-menu-item a::after { transform: translateX(-50%) scaleX(1); }
.nav-menu li a:hover { color: var(--white); }
.nav-menu li.current-menu-item a { color: var(--primary); }

.nav-cta { margin-left: 16px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?w=1920&q=90');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,15,30,0.97) 0%, rgba(17,24,39,0.92) 60%, rgba(10,15,30,0.85) 100%);
}
.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  animation: floatOrb 8s ease-in-out infinite;
}
.orb-1 { width: 500px; height: 500px; background: var(--primary); top: -100px; right: -100px; animation-delay: 0s; }
.orb-2 { width: 400px; height: 400px; background: var(--secondary); bottom: -100px; left: -100px; animation-delay: -4s; }
.orb-3 { width: 300px; height: 300px; background: var(--primary-dark); top: 50%; left: 50%; animation-delay: -2s; }

@keyframes floatOrb {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}
.hero-content {}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(249,115,22,0.12);
  border: 1px solid rgba(249,115,22,0.35);
  border-radius: 100px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeInUp 0.6s ease forwards;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--secondary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.hero-title {
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
  animation: fadeInUp 0.7s ease 0.1s both;
}
.hero-title .gradient-text {
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-title .green-text {
  background: var(--gradient-green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 18px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 500px;
  animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeInUp 0.7s ease 0.3s both;
}

.hero-stats {
  display: flex;
  gap: 40px;
  animation: fadeInUp 0.7s ease 0.4s both;
}
.hero-stat { }
.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  display: block;
}
.hero-stat-num span { color: var(--primary); }
.hero-stat-label { font-size: 13px; color: var(--text); }

.hero-visual {
  position: relative;
  animation: fadeInRight 0.8s ease 0.2s both;
}
.hero-card-main {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(10px);
}
.hero-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.hero-card-icon {
  width: 44px; height: 44px;
  background: var(--gradient-orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.hero-card-title { font-size: 16px; font-weight: 600; color: var(--white); }
.hero-card-sub { font-size: 12px; color: var(--text); }

.hero-chart {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 120px;
  margin-bottom: 20px;
}
.chart-bar {
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: var(--dark-card2);
  position: relative;
  transition: var(--transition);
}
.chart-bar.active { background: var(--gradient-orange); }
.chart-bar.green  { background: var(--gradient-green); }

.hero-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.metric-card {
  background: var(--dark-card2);
  border-radius: 12px;
  padding: 16px;
}
.metric-val {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}
.metric-val.orange { color: var(--primary); }
.metric-val.green  { color: var(--secondary); }
.metric-label { font-size: 12px; color: var(--text); margin-top: 4px; }

.hero-float-badge {
  position: absolute;
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-card);
  animation: floatBadge 4s ease-in-out infinite;
}
.hero-float-badge.tl { top: -30px; left: -30px; animation-delay: -2s; }
.hero-float-badge.br { bottom: -30px; right: -30px; }

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* =====================================================
   CLIENTS / TRUST BAR
   ===================================================== */
.trust-bar {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--dark-alt);
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.trust-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
}
.trust-logos {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-logo {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: var(--transition);
}
.trust-logo:hover { color: var(--primary); }

/* =====================================================
   SERVICES SECTION
   ===================================================== */
.services-section {
  background: var(--dark);
  position: relative;
}
.services-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.service-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-orange);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-8px);
  box-shadow: var(--shadow-orange);
}
.service-card:hover::before { opacity: 0.05; }

.service-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
  position: relative;
}
.service-icon.orange { background: rgba(249,115,22,0.15); }
.service-icon.green  { background: rgba(74,222,128,0.12); }

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}
.service-card p { font-size: 15px; color: var(--text); line-height: 1.7; margin-bottom: 20px; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}
.service-card:hover .service-link { gap: 10px; }
.service-card:nth-child(even) .service-link { color: var(--secondary); }

/* =====================================================
   STATS SECTION
   ===================================================== */
.stats-section {
  background: var(--dark-alt);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1920&q=80') center/cover;
  opacity: 0.03;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.stat-item {
  text-align: center;
  padding: 60px 24px;
  border-right: 1px solid var(--border);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 20%; right: 20%;
  height: 2px;
  background: var(--gradient-orange);
  border-radius: 2px;
  opacity: 0;
  transition: var(--transition);
}
.stat-item:hover::before { opacity: 1; }

.stat-num {
  font-family: var(--font-heading);
  font-size: 54px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-num .plus { color: var(--primary); }
.stat-num .green { color: var(--secondary); }
.stat-label { font-size: 15px; color: var(--text); font-weight: 500; }

/* =====================================================
   WHY CHOOSE US
   ===================================================== */
.why-section { background: var(--dark); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-image-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}
.why-image-wrap img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: 24px;
}
.why-image-badge {
  position: absolute;
  bottom: 32px;
  left: 32px;
  background: rgba(10,15,30,0.92);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-hover);
  border-radius: 16px;
  padding: 20px 24px;
}
.why-image-badge .big { font-size: 32px; font-weight: 800; color: var(--primary); display: block; }
.why-image-badge .small { font-size: 13px; color: var(--text); }

.why-features { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
.why-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.why-feature:hover { border-color: var(--border-hover); transform: translateX(8px); }
.why-feature-icon {
  width: 48px; height: 48px;
  min-width: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.why-feature-icon.orange { background: rgba(249,115,22,0.15); }
.why-feature-icon.green  { background: rgba(74,222,128,0.12); }
.why-feature-content h4 { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.why-feature-content p  { font-size: 14px; color: var(--text); line-height: 1.6; }

/* =====================================================
   PROCESS SECTION
   ===================================================== */
.process-section {
  background: var(--dark-alt);
  text-align: center;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0.3;
}
.process-step {
  padding: 0 20px;
  position: relative;
}
.process-num {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--dark-card);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.process-step:hover .process-num {
  background: var(--gradient-orange);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: var(--shadow-orange);
}
.process-step:nth-child(even) .process-num { color: var(--secondary); }
.process-step:nth-child(even):hover .process-num {
  background: var(--gradient-green);
  color: var(--dark);
  border-color: var(--secondary);
  box-shadow: var(--shadow-green);
}
.process-step h3 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.process-step p  { font-size: 14px; color: var(--text); line-height: 1.6; }

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials-section { background: var(--dark); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.testimonial-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover { border-color: var(--border-hover); transform: translateY(-6px); box-shadow: var(--shadow-orange); }
.testimonial-card:nth-child(even):hover { border-color: rgba(74,222,128,0.3); box-shadow: var(--shadow-green); }

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}
.star { color: var(--primary); font-size: 18px; }

.testimonial-text {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 28px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-hover);
}
.author-name { font-size: 15px; font-weight: 600; color: var(--white); }
.author-role { font-size: 13px; color: var(--text); }

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta-section {
  background: var(--dark-alt);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.06;
  filter: blur(80px);
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -200px;
  width: 500px; height: 500px;
  background: var(--secondary);
  border-radius: 50%;
  opacity: 0.05;
  filter: blur(80px);
}
.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.cta-inner h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; margin-bottom: 20px; }
.cta-inner p  { font-size: 18px; color: var(--text); margin-bottom: 40px; }
.cta-btns { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* =====================================================
   PAGE HERO (Interior Pages)
   ===================================================== */
.page-hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: var(--dark-alt);
}
.page-hero-bg::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(249,115,22,0.12), transparent 70%);
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(36px, 5vw, 60px); font-weight: 900; margin-bottom: 20px; }
.page-hero p  { font-size: 18px; color: var(--text); max-width: 600px; margin: 0 auto; }

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--primary); }
.breadcrumb span { color: var(--text); }

/* =====================================================
   ABOUT PAGE
   ===================================================== */
.about-story {
  background: var(--dark);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 24px;
}
.about-img-accent {
  position: absolute;
  top: -20px; right: -20px;
  width: 200px; height: 200px;
  background: var(--gradient-orange);
  border-radius: 24px;
  opacity: 0.08;
  z-index: -1;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 60px;
}
.mv-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
  transition: var(--transition);
}
.mv-card:hover { border-color: var(--border-hover); transform: translateY(-6px); }
.mv-card:nth-child(2):hover { border-color: rgba(74,222,128,0.3); }
.mv-icon { font-size: 48px; margin-bottom: 20px; }
.mv-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 14px; }
.mv-card p  { font-size: 15px; color: var(--text); line-height: 1.7; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.team-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  text-align: center;
}
.team-card:hover { border-color: var(--border-hover); transform: translateY(-8px); box-shadow: var(--shadow-orange); }
.team-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.team-info { padding: 24px 20px; }
.team-name { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.team-role { font-size: 13px; color: var(--primary); font-weight: 600; margin-bottom: 12px; }
.team-social { display: flex; justify-content: center; gap: 10px; }
.team-social a {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--dark-card2);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: var(--text);
  transition: var(--transition);
}
.team-social a:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.value-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
}
.value-card:hover { border-color: rgba(74,222,128,0.3); transform: translateY(-6px); box-shadow: var(--shadow-green); }
.value-icon { font-size: 40px; margin-bottom: 18px; }
.value-card h3 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.value-card p  { font-size: 14px; color: var(--text); line-height: 1.7; }

/* =====================================================
   PRICING PAGE
   ===================================================== */
.pricing-section { background: var(--dark); }

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 40px 0;
}
.toggle-label { font-size: 15px; font-weight: 600; color: var(--text); }
.toggle-label.active { color: var(--white); }
.toggle-switch {
  width: 56px; height: 28px;
  background: var(--dark-card2);
  border: 1px solid var(--border);
  border-radius: 100px;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}
.toggle-switch.on { background: var(--primary); border-color: var(--primary); }
.toggle-knob {
  position: absolute;
  top: 3px; left: 3px;
  width: 20px; height: 20px;
  background: var(--white);
  border-radius: 50%;
  transition: var(--transition);
}
.toggle-switch.on .toggle-knob { left: calc(100% - 23px); }
.save-badge {
  background: rgba(74,222,128,0.15);
  color: var(--secondary);
  border: 1px solid rgba(74,222,128,0.3);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 600;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.pricing-card.popular {
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--dark-card) 0%, rgba(249,115,22,0.06) 100%);
  box-shadow: var(--shadow-orange);
  transform: scale(1.05);
}
.popular-badge {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-orange);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 24px;
  border-radius: 0 0 12px 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.pricing-name { font-size: 14px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--primary); margin-bottom: 16px; }
.pricing-card.pro .pricing-name { color: var(--primary); }
.pricing-price { margin-bottom: 8px; }
.price-amount {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.price-amount .dollar { font-size: 28px; vertical-align: top; margin-top: 10px; display: inline-block; }
.price-period { font-size: 15px; color: var(--text); margin-bottom: 24px; }
.pricing-desc { font-size: 15px; color: var(--text); line-height: 1.7; margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid var(--border); }
.pricing-features { list-style: none; margin-bottom: 36px; display: flex; flex-direction: column; gap: 14px; }
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-light);
}
.pricing-features li::before {
  content: '✓';
  width: 22px; height: 22px;
  background: rgba(74,222,128,0.15);
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.pricing-features li.no { color: var(--text); opacity: 0.5; }
.pricing-features li.no::before {
  content: '✕';
  background: rgba(255,255,255,0.05);
  color: var(--text);
}
.pricing-card .btn { width: 100%; justify-content: center; }

.pricing-guarantee {
  text-align: center;
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text);
  font-size: 15px;
}
.guarantee-icon { font-size: 28px; }

.pricing-faq { background: var(--dark-alt); }
.faq-grid { margin-top: 48px; display: flex; flex-direction: column; gap: 16px; }
.faq-item {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--border-hover); }
.faq-question {
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
}
.faq-toggle { font-size: 24px; color: var(--primary); transition: var(--transition); }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  padding: 0 28px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 28px 24px; }

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.contact-section { background: var(--dark); }
.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.contact-info-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
  transition: var(--transition);
}
.contact-info-card:hover { border-color: var(--border-hover); transform: translateY(-6px); box-shadow: var(--shadow-orange); }
.contact-info-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(249,115,22,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
}
.contact-info-card:nth-child(2) .contact-info-icon { background: rgba(74,222,128,0.1); }
.contact-info-card h3 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.contact-info-card p, .contact-info-card a { font-size: 15px; color: var(--text); }
.contact-info-card a:hover { color: var(--primary); }

.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-form-wrap {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 24px; }
.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--dark-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--white);
  font-size: 15px;
  transition: var(--transition);
  outline: none;
}
.form-textarea { resize: vertical; min-height: 140px; }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.12);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text); }
.form-select option { background: var(--dark-alt); }
.form-submit { width: 100%; justify-content: center; font-size: 16px; padding: 16px; }

.contact-map-side {}
.map-placeholder {
  width: 100%;
  height: 300px;
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 32px;
}
.map-placeholder iframe { width: 100%; height: 100%; border: none; filter: invert(90%) hue-rotate(180deg); }

.hours-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.hours-card h3 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 20px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--text); }
.hours-time { color: var(--white); font-weight: 500; }
.hours-time.closed { color: var(--text); }

/* =====================================================
   LEGAL PAGES (Privacy, Refund)
   ===================================================== */
.legal-section { background: var(--dark); }
.legal-wrap {
  max-width: 820px;
  margin: 0 auto;
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 60px;
}
.legal-wrap h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin: 36px 0 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.legal-wrap h2:first-child { border-top: none; margin-top: 0; padding-top: 0; }
.legal-wrap p  { font-size: 15px; color: var(--text); line-height: 1.9; margin-bottom: 16px; }
.legal-wrap ul { margin: 12px 0 20px 24px; }
.legal-wrap ul li { font-size: 15px; color: var(--text); line-height: 1.8; margin-bottom: 8px; list-style: disc; }
.legal-wrap a  { color: var(--primary); }
.legal-updated { font-size: 13px; color: var(--text); margin-bottom: 36px; padding-bottom: 36px; border-bottom: 1px solid var(--border); }

/* =====================================================
   FOOTER
   ===================================================== */
#site-footer {
  background: var(--dark-alt);
  border-top: 1px solid var(--border);
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding: 80px 0 60px;
}
.footer-brand img { height: 42px; margin-bottom: 20px; }
.footer-brand p { font-size: 15px; color: var(--text); line-height: 1.8; margin-bottom: 24px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--dark-card);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: var(--text);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); color: var(--white); border-color: var(--primary); transform: translateY(-3px); }

.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: var(--text); transition: var(--transition); }
.footer-links a:hover { color: var(--primary); padding-left: 6px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.fc-icon { font-size: 18px; margin-top: 2px; }
.fc-text { font-size: 14px; color: var(--text); line-height: 1.6; }
.fc-text a { color: var(--text); }
.fc-text a:hover { color: var(--primary); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 14px; color: var(--text); }
.footer-copy span { color: var(--primary); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 13px; color: var(--text); }
.footer-legal a:hover { color: var(--primary); }

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   FORM MESSAGE
   ===================================================== */
.form-message {
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 24px;
  line-height: 1.6;
}
.form-message.success {
  background: rgba(74,222,128,0.12);
  border: 1px solid rgba(74,222,128,0.4);
  color: var(--secondary);
}
.form-message.error {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.35);
  color: #FCA5A5;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .process-grid::before { display: none; }
}

@media (max-width: 900px) {
  .hero-grid  { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .why-grid   { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-main-grid { grid-template-columns: 1fr; }
  .pricing-card.popular { transform: scale(1); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-menu, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu-open .nav-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 80px; left: 0; right: 0;
    background: rgba(10,15,30,0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
  }
  .mobile-menu-open .nav-cta { display: block; padding: 0 24px 24px; }
  .mobile-menu-open .nav-cta { position: fixed; top: auto; left: 0; right: 0; background: rgba(10,15,30,0.98); }

  .services-grid { grid-template-columns: 1fr; }
  .stats-grid    { grid-template-columns: 1fr; }
  .stat-item     { border-right: none !important; }
  .mv-grid       { grid-template-columns: 1fr; }
  .values-grid   { grid-template-columns: 1fr; }
  .team-grid     { grid-template-columns: 1fr 1fr; }
  .pricing-grid  { grid-template-columns: 1fr; }
  .contact-info-cards { grid-template-columns: 1fr; }
  .testimonials-grid  { grid-template-columns: 1fr; }
  .process-grid  { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .footer-main   { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .legal-wrap    { padding: 36px 24px; }
  .hero-stats    { gap: 24px; }
  .trust-inner   { flex-direction: column; align-items: center; text-align: center; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .btn-lg    { padding: 14px 28px; font-size: 15px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
}
