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

:root {
  --red: #CC0000;
  --red-dark: #990000;
  --gold: #D4AF37;
  --gold-light: #E8C84A;
  --dark: #0A0A0A;
  --dark-card: #111111;
  --dark-lighter: #141414;
  --dark-alt: #0D0D0D;
  --gray: #888888;
  --gray-light: #BBBBBB;
  --white: #F5F5F5;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Poppins', var(--font);
  --max-w: 1200px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 120px 0; }

/* Subtle noise texture overlay for sections */
.why-section,
.testimonials-section,
.about-section {
  position: relative;
}
.why-section::after,
.testimonials-section::after,
.about-section::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.5'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 18px 40px; border-radius: 6px; font-weight: 700; font-size: 0.95rem;
  text-transform: uppercase; letter-spacing: 1.5px; cursor: pointer; border: none;
  transition: all var(--transition); text-decoration: none;
  position: relative; overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn:hover::before { opacity: 1; }
.btn-primary {
  background: var(--red); color: #fff;
  box-shadow: 0 4px 20px rgba(204,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.1);
}
.btn-primary:hover {
  background: #dd1111; transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(204,0,0,0.45); color: #fff;
}
.btn-gold {
  background: var(--gold); color: var(--dark);
  box-shadow: 0 4px 20px rgba(212,175,55,0.3);
  font-weight: 800;
}
.btn-gold:hover {
  background: var(--gold-light); transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(212,175,55,0.4); color: var(--dark);
}
.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(212,175,55,0.6);
}
.btn-outline:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.btn-sm { padding: 12px 24px; font-size: 0.8rem; }
.btn-lg { padding: 22px 52px; font-size: 1.05rem; letter-spacing: 2px; }

/* ===== SECTION HEADINGS ===== */
.section-label {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 4px; color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 20px;
}
.section-title span { color: var(--red); }
.section-title-lg {
  font-size: clamp(2.2rem, 5vw, 3.2rem); margin-bottom: 20px; line-height: 1.1;
}
.section-title-lg span { color: var(--red); }
.section-subtitle {
  font-size: 1.1rem; color: var(--gray-light); max-width: 600px;
  margin: 0 auto 48px; line-height: 1.7;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0; transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(10,10,10,0.95); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212,175,55,0.1); padding: 8px 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { width: 250px; height: auto; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  color: var(--gray-light); font-size: 0.85rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 1px; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--red); transition: width var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { margin-left: 8px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span {
  display: block; width: 28px; height: 3px; background: var(--white);
  margin: 5px 0; border-radius: 2px; transition: all var(--transition);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center; position: relative;
  padding: 140px 0 100px; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 60%, rgba(204,0,0,0.08) 0%, transparent 50%);
}
.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(204,0,0,0.1); border: 1px solid rgba(204,0,0,0.25);
  border-radius: 100px; padding: 8px 20px; font-size: 0.75rem; font-weight: 600;
  color: var(--red); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 28px;
}
.hero-badge .dot {
  width: 8px; height: 8px; background: var(--red); border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
.hero h1 {
  font-size: clamp(2.8rem, 6.5vw, 4.5rem); line-height: 1.05; margin-bottom: 28px;
  font-weight: 900; letter-spacing: -1px;
}
.hero h1 .highlight { color: var(--red); }
.hero h1 .gold { color: var(--gold); }
.hero-sub {
  font-size: 1.15rem; color: var(--gray-light); margin-bottom: 44px;
  line-height: 1.8; max-width: 560px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero floating stats */
.hero-stats {
  position: absolute; right: 40px; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 20px; z-index: 2;
}
.hero-stat-card {
  background: rgba(17,17,17,0.85); border: 1px solid rgba(212,175,55,0.15);
  border-radius: 12px; padding: 24px 28px; backdrop-filter: blur(10px);
  animation: floatUp 3s ease-in-out infinite;
}
.hero-stat-card:nth-child(2) { animation-delay: 1s; }
.hero-stat-card:nth-child(3) { animation-delay: 2s; }
@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-stat-number {
  font-size: 2.5rem; font-weight: 900; font-family: var(--font-display);
}
.hero-stat-number.red { color: var(--red); }
.hero-stat-number.gold { color: var(--gold); }
.hero-stat-label {
  font-size: 0.75rem; color: var(--gray); text-transform: uppercase;
  letter-spacing: 1px; margin-top: 4px;
}

/* ===== VIDEO HERO SECTION (right after hero) ===== */
.video-hero-section {
  background: var(--dark-alt);
  padding: 100px 0 80px;
  border-top: 1px solid rgba(212,175,55,0.08);
}
.video-hero-header {
  margin-bottom: 48px;
}
.video-hero-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem); line-height: 1.15; margin-bottom: 12px;
}
.video-hero-header h2 span { color: var(--red); }
.video-hero-sub {
  font-size: 1.1rem; color: var(--gray-light);
}
.video-hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
.video-hero-card {
  background: var(--dark-card); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px; overflow: hidden; transition: all var(--transition);
}
.video-hero-card-full {
  grid-column: 1 / -1; max-width: 50%; margin: 0 auto;
}
.video-hero-card:hover {
  border-color: rgba(212,175,55,0.25);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.video-hero-card .video-wrapper video {
  width: 100%; height: auto; display: block; min-height: 300px; object-fit: cover;
}

/* ===== SOCIAL PROOF BAR ===== */
.social-proof {
  background: var(--dark-lighter); border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04); padding: 28px 0;
}
.proof-inner {
  display: flex; align-items: center; justify-content: center; gap: 56px;
  flex-wrap: wrap;
}
.proof-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.9rem; color: var(--gray-light);
}
.proof-icon {
  width: 40px; height: 40px; background: rgba(204,0,0,0.1);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}

/* ===== HOW IT WORKS - SPLIT LAYOUT ===== */
.how-it-works {
  background: var(--dark);
}
.hiw-split {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start;
}
.hiw-left { position: sticky; top: 120px; }
.hiw-desc {
  font-size: 1.05rem; color: var(--gray-light); line-height: 1.8; margin-top: 16px;
}
.hiw-right {
  display: flex; flex-direction: column; gap: 28px;
}
.step-card {
  display: flex; gap: 24px; align-items: flex-start;
  background: var(--dark-card); border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px; padding: 36px 32px;
  transition: all var(--transition);
}
.step-card:hover {
  border-color: rgba(204,0,0,0.25);
  transform: translateX(8px);
}
.step-number {
  width: 52px; height: 52px; min-width: 52px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 800;
  box-shadow: 0 6px 20px rgba(204,0,0,0.25);
}
.step-body {}
.step-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step-card p { color: var(--gray-light); font-size: 0.95rem; line-height: 1.7; }

/* ===== WHY KENAZ - BENTO LAYOUT ===== */
.why-section {
  background: var(--dark-lighter);
  z-index: 1;
}
.why-header {
  max-width: 700px; margin-bottom: 56px;
}
.why-bento {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}
.why-card-large {
  grid-row: 1 / 3;
  background: linear-gradient(160deg, rgba(204,0,0,0.06), rgba(212,175,55,0.04));
  border: 1px solid rgba(204,0,0,0.15);
  border-radius: 20px; padding: 48px 40px;
  display: flex; flex-direction: column; justify-content: center;
}
.why-card-large h3 { font-size: 1.5rem; margin-bottom: 20px; color: var(--gold); }
.why-card-large p { color: var(--gray-light); font-size: 1rem; line-height: 1.8; }
.why-card {
  background: var(--dark-card); border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px; padding: 32px 28px; transition: all var(--transition);
}
.why-card:hover {
  border-color: rgba(204,0,0,0.2); transform: translateY(-3px);
}
.why-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.why-card p { color: var(--gray-light); font-size: 0.9rem; line-height: 1.7; }

/* ===== RESULTS GALLERY ===== */
.results-section {
  background: var(--dark);
}
.results-header {
  max-width: 600px; margin-bottom: 56px;
}
.results-sub {
  font-size: 1.05rem; color: var(--gray-light); line-height: 1.7; margin-top: 16px;
}
.results-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.result-card {
  background: var(--dark-card); border: 1px solid rgba(255,255,255,0.05);
  border-radius: 14px; overflow: hidden; transition: all var(--transition);
  cursor: pointer;
}
.result-card:hover {
  transform: translateY(-6px); border-color: rgba(212,175,55,0.25);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.result-card img {
  width: 100%; height: 280px; object-fit: cover; object-position: top;
}
.result-card .result-info {
  padding: 16px 20px; text-align: left;
}
.result-card .result-boost {
  font-size: 1.4rem; font-weight: 800; color: var(--gold);
  font-family: var(--font-display);
}
.result-card .result-desc {
  font-size: 0.8rem; color: var(--gray); margin-top: 4px;
}

/* ===== TESTIMONIALS - STAGGERED LAYOUT ===== */
.testimonials-section {
  background: var(--dark-lighter);
  z-index: 1;
}
.testimonials-header {
  margin-bottom: 56px;
}
.testimonials-stagger {
  display: flex; flex-direction: column; gap: 32px;
}
.testimonial-card-wide {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 0;
  background: var(--dark-card); border: 1px solid rgba(255,255,255,0.05);
  border-radius: 20px; overflow: hidden;
  transition: all var(--transition);
}
.testimonial-card-wide:hover {
  border-color: rgba(204,0,0,0.2);
}
.testimonial-card-wide.testimonial-reverse {
  grid-template-columns: 1.5fr 1fr;
}
.testimonial-card-wide.testimonial-reverse .testimonial-media {
  order: 2;
}
.testimonial-card-wide.testimonial-reverse .testimonial-content {
  order: 1;
}
.testimonial-media {
  width: 100%; height: 100%; min-height: 200px;
}
.testimonial-media img {
  width: 100%; height: 100%; object-fit: cover;
}
.testimonial-content {
  padding: 36px 40px; display: flex; flex-direction: column; justify-content: center;
}
.testimonial-stars {
  color: var(--gold); font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px;
}
.testimonial-text {
  color: var(--gray-light); font-size: 1.05rem; line-height: 1.8;
  font-style: italic;
}
.testimonial-author {
  margin-top: 16px; font-weight: 600; font-size: 0.85rem; color: var(--white);
}

/* Video wrapper with play button overlay */
.video-wrapper {
  position: relative; width: 100%; overflow: hidden;
}
.video-wrapper video {
  width: 100%; height: auto; display: block; object-fit: cover;
}
.video-play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 72px; height: 72px; background: rgba(0,0,0,0.5);
  border: none; border-radius: 50%; cursor: pointer;
  z-index: 2; transition: all var(--transition);
  padding: 0; display: flex; align-items: center; justify-content: center;
}
.video-play-btn svg { width: 72px; height: 72px; }
.video-play-btn:hover { background: rgba(204,0,0,0.7); transform: translate(-50%, -50%) scale(1.1); }
.video-wrapper.playing .video-play-btn { opacity: 0; pointer-events: none; }


/* ===== ABOUT - ASYMMETRIC SPLIT ===== */
.about-section {
  background: var(--dark);
  z-index: 1;
}
.about-split {
  display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 80px; align-items: center;
}
.about-content h2 {
  font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 24px;
}
.about-content h2 span { color: var(--red); }
.about-content p { color: var(--gray-light); margin-bottom: 16px; line-height: 1.8; font-size: 1.05rem; }
.about-highlights {
  display: flex; gap: 20px; margin-top: 36px;
}
.about-highlight {
  background: var(--dark-card); border-radius: 14px; padding: 24px 20px;
  border: 1px solid rgba(255,255,255,0.05); flex: 1; text-align: center;
}
.about-highlight .num {
  font-size: 2rem; font-weight: 900; color: var(--red);
  font-family: var(--font-display);
}
.about-highlight .label {
  font-size: 0.75rem; color: var(--gray); text-transform: uppercase;
  letter-spacing: 1px; margin-top: 4px;
}
.about-visual {}
.about-image-inner {
  background: linear-gradient(160deg, rgba(204,0,0,0.08), rgba(212,175,55,0.05));
  border-radius: 20px; padding: 48px 36px; text-align: center;
  border: 1px solid rgba(212,175,55,0.1);
}
.about-image-inner img { border-radius: 12px; margin: 0 auto; max-height: 100px; }
.about-image-text {
  margin-top: 24px; font-size: 1.4rem; font-weight: 700;
  font-family: var(--font-display);
}
.about-image-text span { color: var(--gold); }

/* ===== FAQ - SPLIT LAYOUT ===== */
.faq-section { background: var(--dark-lighter); }
.faq-split {
  display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 80px; align-items: start;
}
.faq-left {
  position: sticky; top: 120px;
}
.faq-left p {
  color: var(--gray-light); font-size: 1.05rem; line-height: 1.7; margin-top: 16px;
}
.faq-grid { }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06); overflow: hidden;
}
.faq-question {
  width: 100%; background: none; border: none; color: var(--white);
  font-size: 1rem; font-weight: 600; padding: 24px 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  text-align: left; font-family: var(--font);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  font-size: 1.5rem; color: var(--red); transition: transform var(--transition);
  min-width: 24px; text-align: center;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.active .faq-answer {
  max-height: 300px;
}
.faq-answer p {
  padding-bottom: 24px; color: var(--gray-light); line-height: 1.7; font-size: 0.95rem;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--red);
  padding: 100px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 50%, rgba(212,175,55,0.15) 100%);
}
.cta-banner h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem); margin-bottom: 16px; position: relative;
  font-weight: 900;
}
.cta-banner p {
  font-size: 1.2rem; color: rgba(255,255,255,0.85); margin-bottom: 40px;
  position: relative;
}
.cta-banner .btn { position: relative; }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-card); border-top: 1px solid rgba(255,255,255,0.04);
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 48px;
}
.footer-brand img { width: 180px; margin-bottom: 16px; }
.footer-brand p { color: var(--gray); font-size: 0.9rem; line-height: 1.7; }
.footer-col h4 {
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 3px;
  color: var(--gold); margin-bottom: 20px;
}
.footer-col a {
  display: block; color: var(--gray); font-size: 0.9rem; padding: 6px 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04); padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { color: var(--gray); font-size: 0.8rem; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 40px; height: 40px; background: rgba(255,255,255,0.04);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: var(--gray); font-size: 1.1rem; transition: all var(--transition);
}
.footer-socials a svg { width: 20px; height: 20px; }
.footer-socials a:hover {
  background: var(--red); color: var(--gold);
}

/* ===== PAGE HEADER (inner pages) ===== */
.page-header {
  padding: 160px 0 80px; position: relative;
  background: var(--dark);
}
.page-header h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); margin-bottom: 16px; }
.page-header h1 span { color: var(--red); }
.page-header p { color: var(--gray-light); font-size: 1.1rem; max-width: 560px; line-height: 1.7; }
.breadcrumb {
  font-size: 0.85rem; color: var(--gray); margin-bottom: 20px;
}
.breadcrumb a { color: var(--gray); }
.breadcrumb a:hover { color: var(--gold); }

/* ===== ABOUT PAGE ===== */
.bio-section { padding: 80px 0; }
.bio-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.bio-sidebar {
  background: var(--dark-card); border-radius: 20px; padding: 40px;
  border: 1px solid rgba(212,175,55,0.1); position: sticky; top: 100px;
}
.bio-sidebar img { max-height: 80px; margin: 0 auto 24px; }
.bio-sidebar h3 { text-align: center; font-size: 1.3rem; margin-bottom: 8px; }
.bio-sidebar .bio-role {
  text-align: center; color: var(--gold); font-size: 0.9rem; margin-bottom: 24px;
}
.bio-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.bio-stat {
  background: rgba(255,255,255,0.03); border-radius: 12px; padding: 16px; text-align: center;
}
.bio-stat .num { font-size: 1.5rem; font-weight: 800; color: var(--red); }
.bio-stat .label { font-size: 0.75rem; color: var(--gray); text-transform: uppercase; }
.bio-content h2 { font-size: 1.8rem; margin-bottom: 16px; }
.bio-content h2 span { color: var(--red); }
.bio-content p { color: var(--gray-light); margin-bottom: 20px; line-height: 1.8; }

.mission-section {
  background: var(--dark-lighter); padding: 80px 0;
}
.mission-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.mission-card {
  background: var(--dark-card); border-radius: 20px; padding: 40px;
  border: 1px solid rgba(255,255,255,0.04); text-align: center;
}
.mission-card .icon { font-size: 2.5rem; margin-bottom: 20px; }
.mission-card h3 { margin-bottom: 12px; font-size: 1.15rem; }
.mission-card p { color: var(--gray-light); font-size: 0.9rem; line-height: 1.7; }

/* ===== SERVICES PAGE ===== */
.services-overview { padding: 80px 0; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.service-card {
  background: var(--dark-card); border: 1px solid rgba(255,255,255,0.05);
  border-radius: 20px; padding: 40px; transition: all var(--transition);
}
.service-card:hover {
  border-color: rgba(204,0,0,0.25); transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.service-card .icon {
  width: 64px; height: 64px; background: rgba(204,0,0,0.1);
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin-bottom: 24px;
}
.service-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.service-card p { color: var(--gray-light); font-size: 0.9rem; line-height: 1.7; }
.service-card ul { margin-top: 16px; }
.service-card ul li {
  padding: 6px 0; color: var(--gray-light); font-size: 0.9rem;
  padding-left: 20px; position: relative;
}
.service-card ul li::before {
  content: ''; position: absolute; left: 0; top: 14px;
  width: 8px; height: 8px; background: var(--red); border-radius: 50%;
}

.process-section { background: var(--dark-lighter); padding: 80px 0; }
.process-timeline { max-width: 700px; margin: 48px auto 0; }
.process-step {
  display: flex; gap: 24px; padding-bottom: 40px; position: relative;
}
.process-step:not(:last-child)::before {
  content: ''; position: absolute; left: 27px; top: 56px; bottom: 0;
  width: 2px; background: rgba(204,0,0,0.15);
}
.process-step-num {
  width: 56px; height: 56px; min-width: 56px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 800; z-index: 1;
}
.process-step-content h3 { font-size: 1.15rem; margin-bottom: 8px; }
.process-step-content p { color: var(--gray-light); font-size: 0.9rem; line-height: 1.7; }

.difference-section { padding: 80px 0; }
.diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.diff-card {
  border-radius: 20px; padding: 40px;
}
.diff-card.them {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
}
.diff-card.us {
  background: rgba(204,0,0,0.06); border: 1px solid rgba(204,0,0,0.15);
}
.diff-card h3 { font-size: 1.3rem; margin-bottom: 24px; }
.diff-card h3.red { color: var(--red); }
.diff-card li {
  padding: 10px 0; color: var(--gray-light); font-size: 0.95rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding-left: 28px; position: relative;
}
.diff-card li::before {
  position: absolute; left: 0; font-size: 1rem;
}
.diff-card.them li::before { content: '\2717'; color: var(--gray); }
.diff-card.us li::before { content: '\2713'; color: var(--red); }

/* ===== CONTACT PAGE ===== */
.contact-section { padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-form {
  background: var(--dark-card); border-radius: 20px; padding: 48px;
  border: 1px solid rgba(255,255,255,0.05);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.85rem; font-weight: 600; color: var(--gray-light);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; padding: 14px 18px; color: var(--white); font-size: 1rem;
  font-family: var(--font); transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none; border-color: var(--red);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select option { background: var(--dark); }

.contact-info {}
.contact-info-card {
  background: var(--dark-card); border-radius: 16px; padding: 28px;
  border: 1px solid rgba(255,255,255,0.05); margin-bottom: 16px;
  display: flex; gap: 16px; align-items: flex-start;
}
.contact-info-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: rgba(204,0,0,0.1); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.contact-info-card h4 { font-size: 1rem; margin-bottom: 4px; }
.contact-info-card p { color: var(--gray-light); font-size: 0.9rem; }
.contact-info-card a { color: var(--gold); }

.calendly-section {
  background: var(--dark-lighter); padding: 80px 0; text-align: center;
}
.calendly-embed {
  max-width: 800px; margin: 40px auto 0; border-radius: 16px; overflow: hidden;
  background: var(--white);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,0.92);
  z-index: 9999; display: none; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90vw; max-height: 90vh; border-radius: 12px;
  box-shadow: 0 0 60px rgba(0,0,0,0.8);
}
.lightbox-close {
  position: absolute; top: 24px; right: 24px; width: 48px; height: 48px;
  background: rgba(255,255,255,0.1); border: none; border-radius: 50%;
  color: var(--white); font-size: 1.5rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.lightbox-close:hover { background: var(--red); }

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-stats { display: none; }
  .hiw-split { grid-template-columns: 1fr; gap: 48px; }
  .hiw-left { position: static; }
  .why-bento { grid-template-columns: 1fr; }
  .why-card-large { grid-row: auto; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-card-wide { grid-template-columns: 1fr; }
  .testimonial-card-wide.testimonial-reverse { grid-template-columns: 1fr; }
  .testimonial-card-wide.testimonial-reverse .testimonial-media { order: 0; }
  .testimonial-card-wide.testimonial-reverse .testimonial-content { order: 0; }
  .about-split { grid-template-columns: 1fr; gap: 48px; }
  .faq-split { grid-template-columns: 1fr; gap: 48px; }
  .faq-left { position: static; }
  .video-hero-grid { grid-template-columns: 1fr; }
  .video-hero-card-full { max-width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .bio-grid { grid-template-columns: 1fr; }
  .bio-sidebar { position: static; }
  .services-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section-pad { padding: 80px 0; }
  .nav-logo img { width: 180px; }
  .nav-links { display: none; }
  .nav-links.active {
    display: flex; flex-direction: column; position: absolute;
    top: 100%; left: 0; right: 0; background: rgba(10,10,10,0.98);
    padding: 24px; gap: 20px; border-bottom: 1px solid rgba(212,175,55,0.1);
  }
  .nav-toggle { display: block; }
  .nav-cta { margin-left: 0; }
  .hero { min-height: auto; padding: 140px 0 80px; }
  .hero h1 { font-size: 2.4rem; }
  .hero-sub { font-size: 1.05rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .video-hero-section { padding: 60px 0; }
  .video-hero-card .video-wrapper video { min-height: 200px; }
  .video-play-btn { width: 56px; height: 56px; }
  .video-play-btn svg { width: 56px; height: 56px; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .about-highlights { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .proof-inner { gap: 24px; }
  .contact-form { padding: 32px 24px; }
  .bio-stats { grid-template-columns: 1fr; }
  .testimonial-content { padding: 24px; }
}

@media (max-width: 480px) {
  .results-grid { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }
  .btn { padding: 16px 28px; font-size: 0.85rem; }
  .btn-lg { padding: 18px 36px; font-size: 0.95rem; }
}
