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

:root {
  --orange:       #FF9000;
  --orange-dark:  #CC7400;
  --orange-light: #FFB347;
  --orange-glow:  rgba(255, 144, 0, 0.18);

  --bg:           #111111;
  --bg-card:      #1E1E1E;
  --bg-elevated:  #252525;
  --bg-hover:     #2E2E2E;

  --text:         #FFFFFF;
  --text-muted:   #AAAAAA;
  --text-faint:   #666666;

  --border:       rgba(255,255,255,0.08);
  --border-hover: rgba(255,144,0,0.4);

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 40px rgba(255,144,0,0.25);

  --transition: 0.22s ease;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ===========================
   UTILITIES
=========================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }

.highlight {
  color: var(--orange);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  background: var(--orange-glow);
  color: var(--orange);
  border: 1px solid rgba(255,144,0,0.3);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: all var(--transition);
  border: 1.5px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: #000;
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-light);
  border-color: var(--orange-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(255,144,0,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: transparent;
}
.btn-ghost:hover { color: var(--text); }

.btn-lg { padding: 14px 32px; font-size: 1rem; border-radius: var(--radius-md); }

.w-full { width: 100%; justify-content: center; }

/* ===========================
   NAVBAR
=========================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(17,17,17,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.navbar.scrolled {
  background: rgba(17,17,17,0.97);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.logo span { color: var(--orange); }


.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
  transition: all var(--transition);
}
.nav-links a:hover { color: var(--text); background: var(--bg-hover); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border);
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-link {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-weight: 500;
  transition: all var(--transition);
}
.mobile-link:hover { background: var(--bg-hover); color: var(--text); }
.mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  padding: 160px 0 120px;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(255,144,0,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 28px;
}
.hero-logo-img {
  width: 160px;
  height: auto;
}
.badge-dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hero-note {
  font-size: 0.82rem;
  color: var(--text-faint);
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 0;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 40px;
}
.stat strong {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.stat span {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Floating cards */
.floating-cards {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 0;
}
.float-card {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-card);
  animation: float 6s ease-in-out infinite;
}
.float-card:nth-child(2) { animation-delay: -2s; }
.float-card:nth-child(3) { animation-delay: -4s; }

.fc1 { top: 22%; left: 3%; }
.fc2 { top: 15%; right: 3%; }
.fc3 { bottom: 20%; right: 5%; }

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
.fc-icon {
  font-size: 1.4rem;
  width: 40px; height: 40px;
  background: var(--orange-glow);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.fc-title { font-size: 0.85rem; font-weight: 600; }
.fc-sub   { font-size: 0.75rem; color: var(--text-muted); }

/* ===========================
   TRUSTED
=========================== */
.trusted {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trusted-label {
  text-align: center;
  color: var(--text-faint);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.trusted-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.brand-logo {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-faint);
  letter-spacing: -0.02em;
  transition: color var(--transition);
}
.brand-logo:hover { color: var(--text-muted); }

/* ===========================
   FEATURES
=========================== */
.features { background: var(--bg); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
  position: relative;
}
.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255,144,0,0.1);
}
.feature-card.featured {
  border-color: rgba(255,144,0,0.35);
  background: linear-gradient(145deg, #1E1E1E, #1a1400);
}
.feature-badge {
  position: absolute;
  top: -12px; right: 20px;
  background: var(--orange);
  color: #000;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.feature-icon {
  width: 56px; height: 56px;
  background: var(--orange-glow);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  margin-bottom: 20px;
}
.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===========================
   HOW IT WORKS
=========================== */
.how-it-works { background: var(--bg-card); }
.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
.step {
  flex: 1;
  max-width: 300px;
  text-align: center;
  padding: 32px 24px;
}
.step-num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--orange);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 16px;
}
.step h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.step p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.step-arrow {
  font-size: 2rem;
  color: var(--orange);
  opacity: 0.4;
  margin-top: 48px;
  flex-shrink: 0;
}

/* ===========================
   SERVICES
=========================== */
.services { background: var(--bg); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: transparent;
  transition: background var(--transition);
}
.service-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(255,144,0,0.1);
}
.service-card:hover::before { background: var(--orange); }

.service-card.service-featured {
  border-color: var(--orange);
  background: linear-gradient(160deg, #1E1E1E 0%, #1a1200 100%);
  transform: scale(1.03);
}
.service-card.service-featured:hover { transform: scale(1.03) translateY(-6px); }
.service-card.service-featured::before { background: var(--orange); }

.service-hot-badge {
  position: absolute;
  top: 18px; right: 18px;
  background: rgba(255, 60, 60, 0.15);
  border: 1px solid rgba(255, 60, 60, 0.35);
  color: #ff5c5c;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.live-dot {
  width: 6px; height: 6px;
  background: #ff5c5c;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.service-icon {
  width: 52px; height: 52px;
  background: var(--orange-glow);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}

.service-label {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.2;
}

.service-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.check { color: var(--orange); font-weight: 700; }
.x { color: var(--text-faint); }

/* ===========================
   TESTIMONIALS
=========================== */
.testimonials { background: var(--bg-card); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}
.testi-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}
.stars {
  color: var(--orange);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testi-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar {
  width: 42px; height: 42px;
  background: var(--orange-glow);
  border: 1.5px solid rgba(255,144,0,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange);
  flex-shrink: 0;
}
.testi-author strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 2px;
}
.testi-author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ===========================
   FAQ
=========================== */
.faq { background: var(--bg); }
.faq-container { max-width: 760px; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: var(--border-hover); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  text-align: left;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--orange); }
.faq-icon {
  font-size: 1.4rem;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform var(--transition);
  font-weight: 300;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 24px 22px;
}
.faq-item.open .faq-answer { display: block; }
.faq-answer p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ===========================
   CTA BANNER
=========================== */
.cta-banner {
  background: linear-gradient(135deg, #1a1000 0%, #0d0d0d 50%, #1a0800 100%);
  border-top: 1px solid rgba(255,144,0,0.2);
  border-bottom: 1px solid rgba(255,144,0,0.2);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(255,144,0,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-inner h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
}
.cta-inner p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background: #0d0d0d;
  border-top: 1px solid var(--border);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 64px;
}
.footer-brand .logo { display: inline-block; margin-bottom: 16px; font-size: 1.4rem; }
.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 260px;
  margin-bottom: 24px;
  line-height: 1.6;
}
.socials { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: all var(--transition);
}
.social-btn:hover { border-color: var(--orange); color: var(--orange); }

.footer-col h4 {
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--orange); }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-faint);
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 0.82rem;
  color: var(--text-faint);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--text-muted); }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid  { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
  .service-card.service-featured { transform: scale(1); }
  .testi-grid    { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }

  .float-card { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  /* Navbar */
  .nav-links  { display: none; }
  .nav-actions { display: none; }
  .hamburger  { display: flex; }

  /* Hero */
  .hero { padding: 120px 0 80px; }
  .hero-stats { gap: 0; padding: 16px 0; }
  .stat { padding: 8px 20px; }
  .stat strong { font-size: 1.4rem; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; }

  /* Steps */
  .steps {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .step-arrow { transform: rotate(90deg); margin: 0; }
  .step { max-width: 100%; width: 100%; }

  /* Services */
  .service-grid { grid-template-columns: 1fr; max-width: 100%; }
  .service-bundle { flex-direction: column; text-align: center; gap: 16px; }
  .service-bundle .btn { width: 100%; justify-content: center; }

  /* Testi */
  .testi-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 56px 0; }

  .hero { padding: 100px 0 64px; }
  .hero-stats {
    flex-direction: column;
    gap: 8px;
    padding: 20px 24px;
  }
  .stat-divider { width: 80%; height: 1px; }

  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; justify-content: center; }

  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn { width: 100%; justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { flex-direction: column; gap: 12px; align-items: center; }

  .section-header { margin-bottom: 40px; }
  .trusted-logos { gap: 24px; }
}
