*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --red: #e02020;
  --red-dark: #b01010;
  --red-light: #ff4444;
  --red-glow: rgba(224, 32, 32, 0.35);
  --glass-bg: rgba(255,255,255,0.06);
  --glass-border: rgba(255,255,255,0.12);
  --glass-red: rgba(224,32,32,0.15);
  --glass-red-border: rgba(224,32,32,0.3);
  --gray-100: #f5f5f5;
  --gray-200: #e8e8e8;
  --gray-300: #d0d0d0;
  --gray-400: #999;
  --gray-500: #666;
  --gray-700: #333;
  --font-main: 'Manrope', sans-serif;
  --font-display: 'DM Serif Display', serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-main); background: var(--white); color: var(--black); overflow-x: hidden; }
body.menu-open { overflow: hidden; }

/* ─── NAVBAR (index.html style) ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  padding: 0 48px; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 48px; width: 48px; border-radius: 8px; object-fit: contain; flex-shrink: 0; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-logo-name { color: #ffffff; font-size: 15px; font-weight: 800; letter-spacing: 0.5px; font-family: 'Manrope', sans-serif; }
.nav-logo-tag { color: rgba(255,255,255,0.45); font-size: 10px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 13px; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; transition: color 0.2s; display: flex; align-items: center; gap: 4px; }
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.btn-icon { width: 42px; height: 42px; border-radius: 50%; background: var(--red); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s, transform 0.2s; }
.btn-icon:hover { background: var(--red-dark); transform: scale(1.05); }
.btn-icon svg { width: 16px; height: 16px; stroke: #fff; }
.btn-discuss { background: var(--red); color: #fff; border: none; padding: 12px 26px; border-radius: 50px; font-size: 13px; font-weight: 700; letter-spacing: 0.5px; cursor: pointer; transition: background 0.2s, transform 0.2s; text-transform: uppercase; text-decoration: none; display: inline-flex; align-items: center; }
.btn-discuss:hover { background: var(--red-dark); transform: translateY(-1px); }

/* ===== HAMBURGER (index.html style) ===== */
.hamburger { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 40px; height: 40px; background: transparent; border: 1.5px solid rgba(255,255,255,0.2); border-radius: 8px; cursor: pointer; padding: 0; transition: border-color 0.2s; flex-shrink: 0; z-index: 1100; position: relative; }
.hamburger:hover { border-color: var(--red); }
.hamburger span { display: block; width: 20px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s ease; transform-origin: center; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== MOBILE BACKDROP ===== */
.mobile-menu-backdrop { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.5); z-index: 1050; opacity: 0; transition: opacity 0.3s ease; }
.mobile-menu-backdrop.open { display: block; opacity: 1; }

/* ===== MOBILE DRAWER (index.html style) ===== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 85%; max-width: 320px;
  background: #ffffff; z-index: 1100;
  display: flex; flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 4px 0 48px rgba(0,0,0,0.18);
  overflow-y: auto; overflow-x: hidden;
  height: 100%; min-height: 100vh;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; border-bottom: 1px solid #f0f0f0;
  flex-shrink: 0; background: #fff;
}
.mobile-drawer-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.mobile-drawer-logo img { height: 32px; width: 32px; border-radius: 6px; object-fit: contain; }
.mobile-drawer-logo-name { color: #111; font-size: 12px; font-weight: 800; }
.mobile-drawer-close {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1.5px solid #ddd; background: #f5f5f5;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; flex-shrink: 0;
}
.mobile-drawer-close svg { width: 12px; height: 12px; stroke: #555; }
.mobile-nav-links {
  list-style: none; display: block;
  padding: 0; margin: 0; flex: 1; width: 100%;
}
.mobile-nav-links li {
  display: block; width: 100%; border-bottom: 1px solid #f2f2f2;
}
.mobile-nav-links li a {
  display: flex; align-items: center; justify-content: space-between;
  color: #1a1a1a; text-decoration: none;
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.8px; text-transform: uppercase;
  padding: 16px 16px; width: 100%;
  transition: color 0.2s, background 0.2s;
}
.mobile-nav-links li a:hover,
.mobile-nav-links li a.active { color: #e82b2b; background: #fff5f5; }
.mn-plus {
  width: 28px; height: 28px; border-radius: 6px;
  border: 1.5px solid #e0e0e0; display: flex;
  align-items: center; justify-content: center;
  flex-shrink: 0; background: #f7f7f7;
  font-size: 18px; font-weight: 300; color: #555; line-height: 1;
  transition: all 0.2s;
}
.mobile-nav-links li a:hover .mn-plus,
.mobile-nav-links li a.active .mn-plus { border-color: #e82b2b; background: #e82b2b; color: #fff; }
.mobile-menu-footer {
  padding: 16px; border-top: 1px solid #f0f0f0;
  flex-shrink: 0; background: #fff;
}
.mobile-contact-btn {
  background: #e82b2b; color: #fff; text-decoration: none;
  padding: 14px 20px; border-radius: 50px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.8px;
  text-transform: uppercase; text-align: center; display: block;
  transition: background 0.2s;
}
.mobile-contact-btn:hover { background: #c41e1e; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background: var(--black);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: 120px 48px 80px;
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridShift 20s linear infinite;
}
@keyframes gridShift {
  from { background-position: 0 0, 0 0; }
  to   { background-position: 60px 60px, 60px 60px; }
}
.orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; animation: orbFloat 8s ease-in-out infinite; }
.orb1 { width: 600px; height: 600px; background: rgba(224,32,32,0.12); top: -150px; right: -150px; animation-delay: 0s; }
.orb2 { width: 500px; height: 500px; background: rgba(224,32,32,0.08); bottom: 0; left: -100px; animation-delay: -4s; }
.orb3 { width: 300px; height: 300px; background: rgba(224,32,32,0.06); top: 40%; left: 50%; transform: translateX(-50%); animation-delay: -2s; }
@keyframes orbFloat { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-40px) scale(1.05); } }
.scan-line { position: absolute; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(224,32,32,0.4), transparent); animation: scanMove 6s ease-in-out infinite; }
@keyframes scanMove { 0%{top:0%;opacity:0} 10%{opacity:1} 90%{opacity:1} 100%{top:100%;opacity:0} }
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 960px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; border: 1px solid var(--glass-red-border); border-radius: 50px; padding: 8px 20px; margin-bottom: 36px; animation: fadeUp 0.6s ease both; backdrop-filter: blur(8px); background: var(--glass-red); }
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red-light); animation: blink 2s ease infinite; box-shadow: 0 0 8px var(--red-light); }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }
.eyebrow-text { color: rgba(255,255,255,0.8); font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; }
.hero-title { margin-bottom: 28px; }
.hero-title-main { display: block; font-family: var(--font-display); font-size: clamp(52px, 7vw, 96px); color: #fff; line-height: 1.0; letter-spacing: -2px; animation: fadeUp 0.7s 0.15s ease both; opacity: 0; }
.hero-title-sub { display: block; font-family: var(--font-display); font-size: clamp(48px, 6.5vw, 88px); color: var(--red-light); line-height: 1.0; letter-spacing: -2px; animation: fadeUp 0.7s 0.3s ease both; opacity: 0; font-style: italic; text-shadow: 0 0 60px rgba(224,32,32,0.5); }
.hero-desc { color: rgba(255,255,255,0.55); font-size: 17px; font-weight: 400; max-width: 600px; margin: 0 auto 48px; line-height: 1.8; animation: fadeUp 0.7s 0.45s ease both; opacity: 0; }
.hero-cta-row { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; animation: fadeUp 0.7s 0.6s ease both; opacity: 0; }
.btn-primary { background: var(--red); color: #fff; border: none; padding: 15px 36px; border-radius: 50px; font-size: 14px; font-weight: 700; letter-spacing: 0.5px; cursor: pointer; transition: all 0.25s; text-transform: uppercase; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; box-shadow: 0 0 30px rgba(224,32,32,0.4), 0 4px 20px rgba(224,32,32,0.3); }
.btn-primary:hover { background: var(--red-light); transform: translateY(-2px); box-shadow: 0 0 50px rgba(224,32,32,0.6), 0 8px 30px rgba(224,32,32,0.4); }
.btn-ghost { background: var(--glass-bg); color: rgba(255,255,255,0.8); border: 1px solid var(--glass-border); padding: 15px 32px; border-radius: 50px; font-size: 14px; font-weight: 600; letter-spacing: 0.5px; cursor: pointer; transition: all 0.25s; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; backdrop-filter: blur(8px); }
.btn-ghost:hover { border-color: var(--red-light); color: #fff; background: var(--glass-red); box-shadow: 0 0 20px rgba(224,32,32,0.2); }
.hero-stats { display: flex; align-items: center; justify-content: center; gap: 48px; margin-top: 72px; flex-wrap: wrap; animation: fadeUp 0.7s 0.75s ease both; opacity: 0; }
.hero-stat { text-align: center; }
.hero-stat-num { font-size: 36px; font-weight: 900; color: #fff; letter-spacing: -1px; line-height: 1; }
.hero-stat-label { color: rgba(255,255,255,0.4); font-size: 12px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; margin-top: 6px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }
.scroll-indicator { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; animation: fadeUp 1s 1s ease both; opacity: 0; cursor: pointer; }
.scroll-indicator span { font-size: 11px; color: rgba(255,255,255,0.3); letter-spacing: 2px; text-transform: uppercase; }
.scroll-arrow { width: 24px; height: 24px; border-right: 1.5px solid rgba(224,32,32,0.5); border-bottom: 1.5px solid rgba(224,32,32,0.5); transform: rotate(45deg); animation: bounceArrow 1.5s ease infinite; }
@keyframes bounceArrow { 0%,100%{transform:rotate(45deg) translateY(0)} 50%{transform:rotate(45deg) translateY(6px)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(32px)} to{opacity:1;transform:translateY(0)} }

/* ─── SECTIONS COMMON ─── */
section { padding: 100px 48px; }
.section-label { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--red); margin-bottom: 16px; }
.section-title { font-family: var(--font-display); font-size: clamp(32px, 4vw, 56px); font-weight: 400; line-height: 1.1; letter-spacing: -1px; margin-bottom: 20px; color: var(--black); }
.section-desc { color: var(--gray-500); font-size: 16px; line-height: 1.75; max-width: 600px; }

/* ─── MARQUEE STRIP ─── */
.marquee-section { background: var(--black); padding: 28px 0; border-top: 1px solid rgba(224,32,32,0.2); border-bottom: 1px solid rgba(224,32,32,0.2); overflow: hidden; position: relative; }
.marquee-section::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,10,10,1) 0%, transparent 10%, transparent 90%, rgba(10,10,10,1) 100%); z-index: 2; pointer-events: none; }
.marquee-track { display: flex; gap: 0; width: max-content; animation: marquee 25s linear infinite; }
.marquee-item { display: flex; align-items: center; gap: 20px; padding: 0 48px; white-space: nowrap; font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.3); }
.marquee-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--red); flex-shrink: 0; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ─── FEATURES ─── */
.features-section { background: #fafafa; padding: 100px 48px; }
.features-header { max-width: 600px; margin-bottom: 72px; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--gray-200); border: 2px solid var(--gray-200); border-radius: 20px; overflow: hidden; }
.feature-card { background: #fff; padding: 40px 36px; transition: background 0.3s, transform 0.3s; position: relative; overflow: hidden; }
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--red-dark), var(--red-light)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover { background: #fff8f8; }
.feature-num { font-size: 11px; font-weight: 700; letter-spacing: 2px; color: var(--gray-300); text-transform: uppercase; margin-bottom: 24px; }
.feature-icon { width: 52px; height: 52px; background: linear-gradient(135deg, var(--red-dark), var(--red-light)); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; transition: transform 0.3s, box-shadow 0.3s; box-shadow: 0 4px 16px rgba(224,32,32,0.25); }
.feature-card:hover .feature-icon { transform: scale(1.1) rotate(-5deg); box-shadow: 0 8px 24px rgba(224,32,32,0.4); }
.feature-icon svg { width: 22px; height: 22px; stroke: #fff; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.feature-name { font-size: 20px; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.3px; }
.feature-desc { color: var(--gray-500); font-size: 14px; line-height: 1.7; }

/* ─── HOW IT WORKS ─── */
.hiw-section { background: var(--black); padding: 100px 48px; }
.hiw-section .section-label { color: var(--red); }
.hiw-section .section-title { color: #fff; }
.hiw-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-top: 72px; position: relative; }
.hiw-steps::before { content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, rgba(224,32,32,0.3), transparent); }
.hiw-step { text-align: center; position: relative; }
.step-circle { width: 56px; height: 56px; border-radius: 50%; border: 1px solid rgba(224,32,32,0.3); background: var(--glass-red); display: flex; align-items: center; justify-content: center; margin: 0 auto 28px; font-size: 18px; font-weight: 800; color: var(--red-light); position: relative; z-index: 1; transition: all 0.3s; backdrop-filter: blur(8px); }
.hiw-step:hover .step-circle { background: var(--red); color: #fff; border-color: var(--red); box-shadow: 0 0 30px var(--red-glow); }
.step-title { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.step-desc { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.65; }

/* ─── PRICING ─── */
.pricing-section { background: #fff; padding: 100px 48px; }
.pricing-header { text-align: center; margin-bottom: 52px; }
.pricing-header .section-desc { margin: 0 auto; }
.billing-toggle { display: inline-flex; align-items: center; background: var(--gray-100); border-radius: 50px; padding: 4px; margin: 32px auto 56px; gap: 0; position: relative; left: 50%; transform: translateX(-50%); }
.toggle-btn { padding: 10px 28px; border-radius: 50px; border: none; background: transparent; font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.25s; color: var(--gray-500); font-family: var(--font-main); letter-spacing: 0.3px; }
.toggle-btn.active { background: var(--red); color: #fff; box-shadow: 0 0 20px rgba(224,32,32,0.3); }
.save-badge { display: inline-block; background: var(--red); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: 1px; padding: 3px 8px; border-radius: 50px; margin-left: 8px; vertical-align: middle; }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.price-card { border: 1.5px solid var(--gray-200); border-radius: 20px; padding: 36px 28px; transition: all 0.3s; position: relative; overflow: hidden; display: flex; flex-direction: column; background: #fff; }
.price-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--red-dark), var(--red-light)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.price-card:hover::after { transform: scaleX(1); }
.price-card:hover { border-color: var(--red); transform: translateY(-6px); box-shadow: 0 24px 60px rgba(224,32,32,0.12); }
.price-card.featured { background: var(--black); border-color: var(--red); color: #fff; box-shadow: 0 0 40px rgba(224,32,32,0.25); }
.price-card.featured:hover { transform: translateY(-8px); box-shadow: 0 32px 80px rgba(224,32,32,0.35); }
.price-card.featured::after { transform: scaleX(1); }
.popular-badge { position: absolute; top: 20px; right: 20px; background: var(--red); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: 1px; padding: 4px 10px; border-radius: 50px; text-transform: uppercase; box-shadow: 0 0 12px rgba(224,32,32,0.4); }
.price-plan { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 12px; }
.price-card.featured .price-plan { color: var(--red-light); }
.price-name { font-size: 22px; font-weight: 800; margin-bottom: 4px; letter-spacing: -0.3px; }
.price-target { font-size: 13px; color: var(--gray-400); margin-bottom: 28px; }
.price-card.featured .price-target { color: rgba(255,255,255,0.45); }
.price-amount { margin-bottom: 32px; }
.price-currency { font-size: 20px; font-weight: 700; vertical-align: top; margin-top: 8px; display: inline-block; color: var(--red); }
.price-num { font-size: 52px; font-weight: 900; letter-spacing: -2px; line-height: 1; }
.price-period { font-size: 13px; color: var(--gray-400); margin-top: 4px; }
.price-card.featured .price-period { color: rgba(255,255,255,0.4); }
.price-features { list-style: none; margin-bottom: 36px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.price-features li { font-size: 13px; color: var(--gray-500); display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.price-card.featured .price-features li { color: rgba(255,255,255,0.6); }
.price-features li::before { content: ''; width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0; margin-top: 1px; background-color: rgba(224,32,32,0.08); border: 1px solid rgba(224,32,32,0.2); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23e02020' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M3 8l3 3 7-7'/%3E%3C/svg%3E"); background-size: 10px; background-repeat: no-repeat; background-position: center; }
.price-card.featured .price-features li::before { background-color: rgba(224,32,32,0.2); border-color: rgba(224,32,32,0.4); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23ff4444' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M3 8l3 3 7-7'/%3E%3C/svg%3E"); }
.price-cta { padding: 14px; border-radius: 12px; border: none; cursor: pointer; font-size: 13px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; font-family: var(--font-main); transition: all 0.25s; }
.price-cta-outline { background: transparent; border: 1.5px solid rgba(224,32,32,0.3); color: var(--red); }
.price-cta-outline:hover { background: var(--red); color: #fff; border-color: var(--red); box-shadow: 0 0 20px rgba(224,32,32,0.3); }
.price-cta-solid { background: var(--red); color: #fff; box-shadow: 0 0 20px rgba(224,32,32,0.3); }
.price-cta-solid:hover { background: var(--red-light); box-shadow: 0 0 30px rgba(224,32,32,0.5); }

/* ─── WHO USES ─── */
.who-section { background: #fafafa; padding: 100px 48px; }
.who-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-top: 64px; }
.who-group-title { font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--gray-200); }
.who-cards { display: flex; flex-direction: column; gap: 16px; }
.who-card { background: #fff; border: 1.5px solid var(--gray-200); border-radius: 16px; padding: 24px; display: flex; align-items: flex-start; gap: 18px; transition: all 0.3s; cursor: default; }
.who-card:hover { border-color: var(--red); transform: translateX(4px); box-shadow: 0 8px 24px rgba(224,32,32,0.08); }
.who-icon { width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: rgba(224,32,32,0.08); border: 1px solid rgba(224,32,32,0.15); transition: all 0.3s; }
.who-card:hover .who-icon { background: rgba(224,32,32,0.15); border-color: rgba(224,32,32,0.3); }
.who-icon svg { width: 22px; height: 22px; stroke: var(--red); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.who-card-title { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.who-card-desc { font-size: 13px; color: var(--gray-500); line-height: 1.6; }
.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.industry-tile { background: #fff; border: 1.5px solid var(--gray-200); border-radius: 14px; padding: 24px 16px; text-align: center; transition: all 0.3s; cursor: default; display: flex; flex-direction: column; align-items: center; }
.industry-tile:hover { border-color: var(--red); background: var(--red); box-shadow: 0 8px 24px rgba(224,32,32,0.25); }
.industry-tile:hover .industry-label { color: #fff; }
.industry-tile:hover .industry-sub { color: rgba(255,255,255,0.6); }
.industry-tile:hover .industry-icon svg { stroke: #fff; }
.industry-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(224,32,32,0.08); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; transition: background 0.3s; }
.industry-tile:hover .industry-icon { background: rgba(255,255,255,0.15); }
.industry-icon svg { width: 20px; height: 20px; stroke: var(--red); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: stroke 0.3s; }
.industry-label { font-size: 13px; font-weight: 700; color: var(--black); transition: color 0.3s; }
.industry-sub { font-size: 11px; color: var(--gray-400); margin-top: 3px; transition: color 0.3s; }

/* ─── WHY US ─── */
.why-section { background: var(--black); padding: 100px 48px; }
.why-section .section-label { color: var(--red); }
.why-section .section-title { color: #fff; }
.why-section .section-desc { color: rgba(255,255,255,0.4); }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: rgba(255,255,255,0.04); border-radius: 20px; overflow: hidden; margin-top: 64px; }
.why-card { background: #0d0d0d; padding: 48px 40px; position: relative; overflow: hidden; transition: background 0.3s; border: 1px solid transparent; }
.why-card:hover { background: #111; border-color: rgba(224,32,32,0.15); }
.why-card-num { font-size: 11px; font-weight: 700; letter-spacing: 2px; color: rgba(224,32,32,0.3); text-transform: uppercase; margin-bottom: 28px; }
.why-card-icon { width: 56px; height: 56px; border-radius: 16px; background: var(--glass-red); border: 1px solid var(--glass-red-border); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; transition: all 0.3s; }
.why-card:hover .why-card-icon { background: rgba(224,32,32,0.2); box-shadow: 0 0 24px rgba(224,32,32,0.2); }
.why-card-icon svg { width: 24px; height: 24px; stroke: var(--red-light); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.why-card-title { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 14px; letter-spacing: -0.3px; }
.why-card-desc { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.75; }
.why-card-line { position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--red), transparent); transform: scaleX(0); transform-origin: center; transition: transform 0.5s ease; }
.why-card:hover .why-card-line { transform: scaleX(1); }

/* ─── FOUNDER QUOTE ─── */
.quote-section { background: #f7f7f7; padding: 80px 48px; }
.quote-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.quote-mark { font-family: var(--font-display); font-size: 120px; color: rgba(224,32,32,0.15); line-height: 0.6; display: block; margin-bottom: 24px; }
.quote-text { font-family: var(--font-display); font-size: clamp(20px, 2.5vw, 30px); font-style: italic; color: var(--black); line-height: 1.5; letter-spacing: -0.3px; margin-bottom: 32px; }
.quote-author { font-size: 14px; font-weight: 700; color: var(--red); letter-spacing: 1px; text-transform: uppercase; }

/* ─── FAQ ─── */
.faq-section { background: #fff; padding: 100px 48px; }
.faq-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-question { width: 100%; padding: 22px 0; background: none; border: none; cursor: pointer; text-align: left; font-family: var(--font-main); font-size: 16px; font-weight: 600; color: var(--black); display: flex; align-items: center; justify-content: space-between; gap: 20px; transition: color 0.2s; }
.faq-question:hover { color: var(--red); }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--gray-300); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.3s; }
.faq-icon svg { width: 12px; height: 12px; stroke: var(--gray-500); transition: transform 0.3s; }
.faq-item.open .faq-icon { background: var(--red); border-color: var(--red); box-shadow: 0 0 12px rgba(224,32,32,0.3); }
.faq-item.open .faq-icon svg { stroke: #fff; transform: rotate(45deg); }
.faq-answer { overflow: hidden; max-height: 0; transition: max-height 0.4s ease, padding 0.3s ease; font-size: 14px; color: var(--gray-500); line-height: 1.75; }
.faq-item.open .faq-answer { max-height: 200px; padding-bottom: 20px; }

/* ─── CTA ─── */
.cta-section { background: var(--black); padding: 120px 48px; text-align: center; position: relative; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse at center, rgba(224,32,32,0.08) 0%, transparent 70%); }
.cta-section .section-title { color: #fff; margin-bottom: 24px; }
.cta-section .section-desc { color: rgba(255,255,255,0.45); margin: 0 auto 48px; }
.cta-badges { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; margin-top: 36px; }
.cta-badge { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.4); }
.cta-badge-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--red); }

/* ─── FOOTER ─── */
.site-footer { background: #0a0a0a; padding: 70px 48px 0; border-top: 1px solid rgba(224,32,32,0.1); }
.footer-top { display: flex; gap: 60px; margin-bottom: 56px; align-items: flex-start; }
.footer-brand { max-width: 320px; }
.footer-logo-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo-row img { height: 48px; width: auto; border-radius: 6px; }
.footer-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.footer-logo-name { color: #fff; font-size: 16px; font-weight: 800; letter-spacing: 0.3px; }
.footer-logo-tag { color: rgba(255,255,255,0.35); font-size: 11px; font-weight: 500; letter-spacing: 1px; }
.footer-brand-desc { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.7; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; flex: 1; }
.footer-col-title { color: var(--red); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.35); font-size: 13px; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--red-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 24px 0; display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { color: rgba(255,255,255,0.25); font-size: 12px; }
.footer-bottom a { color: rgba(255,255,255,0.25); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.5); }

/* ─── SCROLL REVEAL ─── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── SCROLL UP ─── */
.scroll-up { position: fixed; bottom: 32px; right: 32px; width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid rgba(224,32,32,0.4); background: rgba(10,10,10,0.8); backdrop-filter: blur(8px); cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 999; transition: all 0.2s; opacity: 0; pointer-events: none; }
.scroll-up.show { opacity: 1; pointer-events: auto; }
.scroll-up:hover { background: var(--red); border-color: var(--red); box-shadow: 0 0 20px rgba(224,32,32,0.4); }
.scroll-up svg { width: 18px; height: 18px; stroke: rgba(255,255,255,0.7); }

@keyframes shimmer { 0% { transform: translateX(-100%); } 100% { transform: translateX(200%); } }
.glass-shimmer { position: relative; overflow: hidden; }
.glass-shimmer::after { content: ''; position: absolute; top: 0; left: 0; width: 50%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent); animation: shimmer 3s ease infinite; }

/* ─── RESPONSIVE ─── */
@media(max-width: 1100px) {
  nav { padding: 0 24px; }
  section, .hero, .features-section, .who-section, .why-section, .faq-section, .cta-section, .quote-section, .pricing-section, .hiw-section { padding-left: 24px; padding-right: 24px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .hiw-steps { grid-template-columns: repeat(2, 1fr); }
  .hiw-steps::before { display: none; }
}
@media(max-width: 768px) {
  nav { padding: 0 16px; height: 60px; }
  .nav-links { display: none; }
  .nav-logo img { height: 36px; width: 36px; }
  .nav-logo { gap: 8px; }
  .nav-logo-name { font-size: 12px; letter-spacing: 0; }
  .nav-logo-tag { display: none; }
  .btn-icon { display: none; }
  .btn-discuss { display: none; }
  .hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .who-layout { grid-template-columns: 1fr; gap: 40px; }
  .why-grid { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; }
  .hero-stats { gap: 28px; }
  .stat-divider { display: none; }
  .footer-top { flex-direction: column; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .hiw-steps { grid-template-columns: 1fr 1fr; }
  .hero-title-main { font-size: 46px; }
  .hero-title-sub { font-size: 42px; }
}
@media(max-width: 400px) {
  .hero-title-main { font-size: 36px; }
  .hero-title-sub { font-size: 32px; }
}
