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

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: linear-gradient(135deg, #0a0f1a 0%, #111827 50%, #0a0f1a 100%);
  color: #f9fafb;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}

a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; background: none; border: none; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }

::selection {
  background: rgba(245, 158, 11, 0.3);
  color: white;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0a0f1a; }
::-webkit-scrollbar-thumb { background: #374151; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #4b5563; }

/* =====================
   UTILITY CLASSES
   ===================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px)  { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.text-gradient {
  background: linear-gradient(to right, #fbbf24, #eab308, #d97706);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass {
  background: rgba(17, 24, 39, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.glass-light {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.glow-amber    { box-shadow: 0 0 40px rgba(245, 158, 11, 0.3); }
.glow-amber-sm { box-shadow: 0 0 20px rgba(245, 158, 11, 0.2); }

/* =====================
   ANIMATIONS
   ===================== */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-20px); }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(245, 158, 11, 0.3); }
  50%       { box-shadow: 0 0 40px rgba(245, 158, 11, 0.6); }
}
@keyframes slide-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scale-in {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0) translateX(-50%); }
  50%       { transform: translateY(-8px) translateX(-50%); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}

.animate-float      { animation: float 6s ease-in-out infinite; }
.animate-pulse-glow { animation: pulse-glow 2s ease-in-out infinite; }
.animate-slide-up   { animation: slide-up 0.6s ease-out forwards; }
.animate-fade-in    { animation: fade-in 0.8s ease-out forwards; }
.animate-scale-in   { animation: scale-in 0.5s ease-out forwards; }
.animate-bounce     { animation: bounce 1.5s ease-in-out infinite; }
.animate-spin       { animation: spin 1s linear infinite; }
.animate-pulse      { animation: pulse 2s ease-in-out infinite; }

/* Scroll-reveal (JS toggled) */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* =====================
   NAVIGATION
   ===================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(17, 24, 39, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: none;
  animation: fade-in 0.4s ease-out;
}
#navbar.visible { display: block; }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-brand {
  font-size: 1.25rem;
  font-weight: 700;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) { .nav-links { display: flex; } }

.nav-links button {
  color: #d1d5db;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links button:hover { color: #fbbf24; }

.btn-nav {
  background: linear-gradient(to right, #f59e0b, #eab308);
  color: #111827 !important;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  transition: opacity 0.2s;
}
.btn-nav:hover { opacity: 0.9; }

.nav-hamburger {
  display: block;
  color: #d1d5db;
  font-size: 1.5rem;
}
@media (min-width: 768px) { .nav-hamburger { display: none; } }

.mobile-menu {
  display: none;
  background: rgba(17, 24, 39, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 0.5rem 1rem 1rem;
}
.mobile-menu.open { display: block; }
.mobile-menu button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.625rem 0.75rem;
  color: #d1d5db;
  border-radius: 0.375rem;
  transition: color 0.2s, background 0.2s;
  font-size: 0.9rem;
}
.mobile-menu button:hover { color: #fbbf24; background: rgba(255,255,255,0.05); }
.mobile-menu .btn-nav { margin-top: 0.5rem; text-align: center; }

/* =====================
   BADGE
   ===================== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #f59e0b;
  animation: pulse 2s ease-in-out infinite;
}
.badge-amber {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(245,158,11,0.3);
  color: #fbbf24;
}
.badge-red {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(239,68,68,0.3);
  color: #f87171;
}
.badge-green {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(34,197,94,0.3);
  color: #4ade80;
}
.badge-purple {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(168,85,247,0.3);
  color: #c084fc;
}

/* =====================
   BUTTONS
   ===================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(to right, #f59e0b, #eab308);
  color: #111827;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 0.875rem 2rem;
  border-radius: 0.625rem;
  transition: all 0.2s;
  box-shadow: 0 0 20px rgba(245,158,11,0.2);
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn-primary:hover {
  background: linear-gradient(to right, #fbbf24, #facc15);
  box-shadow: 0 0 40px rgba(245,158,11,0.3);
  transform: translateY(-1px);
}
.btn-primary i { transition: transform 0.2s; }
.btn-primary:hover i { transform: translateX(4px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(245,158,11,0.5);
  color: #fbbf24;
  font-weight: 600;
  font-size: 1.125rem;
  padding: 0.875rem 2rem;
  border-radius: 0.625rem;
  transition: all 0.2s;
  cursor: pointer;
  font-family: inherit;
  background: transparent;
}
.btn-outline:hover { background: rgba(245,158,11,0.1); }

/* =====================
   HERO SECTION
   ===================== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0f1a 0%, #1a1f2e 50%, #0f172a 100%);
}

.hero-blob-1 {
  position: absolute;
  top: 25%; left: 25%;
  width: 384px; height: 384px;
  background: rgba(245,158,11,0.1);
  border-radius: 50%;
  filter: blur(80px);
  animation: float 6s ease-in-out infinite;
}
.hero-blob-2 {
  position: absolute;
  bottom: 25%; right: 25%;
  width: 320px; height: 320px;
  background: rgba(234,179,8,0.1);
  border-radius: 50%;
  filter: blur(80px);
  animation: float 6s ease-in-out infinite;
  animation-delay: 3s;
}
.hero-blob-3 {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: rgba(245,158,11,0.05);
  border-radius: 50%;
  filter: blur(80px);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px);
  background-size: 50px 50px;
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 5rem 0;
}

.hero-grid-layout {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid-layout { grid-template-columns: 1fr 1fr; }
}

/* Hero Left */
.hero-left { display: flex; flex-direction: column; gap: 2rem; }

.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: #9ca3af;
  max-width: 36rem;
  line-height: 1.75;
}
.hero-subtitle span { color: #fbbf24; font-weight: 600; }

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) { .hero-cta-group { flex-direction: row; } }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #9ca3af;
  font-size: 0.875rem;
}
.trust-item i { color: #f59e0b; font-size: 1.1rem; }
.trust-item strong { color: #fff; }

/* Hero Right - Card */
.hero-card-wrapper { position: relative; }

.hero-card {
  background: rgba(17, 24, 39, 0.7);
  backdrop-filter: blur(12px);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid rgba(245,158,11,0.2);
  box-shadow: 0 0 20px rgba(245,158,11,0.2);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.stat-box {
  text-align: center;
  padding: 1rem;
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.05);
}
.stat-value { font-size: 1.75rem; font-weight: 700; }
.stat-label { font-size: 0.7rem; color: #9ca3af; margin-top: 0.25rem; }

.visual-area {
  position: relative;
  height: 192px;
  border-radius: 0.75rem;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(245,158,11,0.2), rgba(234,179,8,0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.pulse-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ring-outer {
  width: 128px; height: 128px;
  border-radius: 50%;
  border: 2px solid rgba(245,158,11,0.3);
  display: flex; align-items: center; justify-content: center;
  animation: pulse 2s ease-in-out infinite;
}
.ring-mid {
  width: 96px; height: 96px;
  border-radius: 50%;
  border: 2px solid rgba(245,158,11,0.5);
  display: flex; align-items: center; justify-content: center;
}
.ring-inner {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(to right, #f59e0b, #eab308);
  display: flex; align-items: center; justify-content: center;
  color: #111827;
  font-size: 1.5rem;
}
.float-badge {
  position: absolute;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
}
.float-badge-green { top: 1rem; left: 1rem; background: rgba(34,197,94,0.2); color: #4ade80; }
.float-badge-amber { bottom: 1rem; right: 1rem; background: rgba(245,158,11,0.2); color: #fbbf24; }

.progress-bars { display: flex; flex-direction: column; gap: 0.75rem; }
.progress-row { }
.progress-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}
.progress-header span:first-child { color: #9ca3af; }
.progress-header span:last-child  { color: #fbbf24; }
.progress-track {
  height: 8px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.1);
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(to right, #f59e0b, #eab308);
  border-radius: 9999px;
}

.hero-deco-1 {
  position: absolute;
  top: -1rem; right: -1rem;
  width: 96px; height: 96px;
  background: rgba(245,158,11,0.2);
  border-radius: 50%;
  filter: blur(24px);
}
.hero-deco-2 {
  position: absolute;
  bottom: -1rem; left: -1rem;
  width: 128px; height: 128px;
  background: rgba(234,179,8,0.2);
  border-radius: 50%;
  filter: blur(24px);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 1.5s ease-in-out infinite;
}
.scroll-mouse {
  width: 24px; height: 40px;
  border-radius: 9999px;
  border: 2px solid rgba(245,158,11,0.5);
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
}
.scroll-dot {
  width: 4px; height: 8px;
  background: #f59e0b;
  border-radius: 9999px;
  animation: pulse 2s ease-in-out infinite;
}

/* =====================
   SECTIONS SHARED
   ===================== */
section { position: relative; padding: 6rem 0; overflow: hidden; }

.section-header { text-align: center; margin-bottom: 4rem; }
.section-title {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
}
.section-subtitle {
  font-size: 1.125rem;
  color: #9ca3af;
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.75;
}

/* =====================
   PROBLEM SECTION
   ===================== */
#problem {
  background: linear-gradient(to bottom, transparent, rgba(239,68,68,0.05), transparent);
}

.problems-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px)  { .problems-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .problems-grid { grid-template-columns: repeat(3, 1fr); } }

.problem-card {
  position: relative;
  padding: 1.5rem;
  border-radius: 1rem;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.problem-card:hover {
  border-color: rgba(239,68,68,0.3);
  background: rgba(239,68,68,0.05);
}
.problem-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 0.75rem;
  background: rgba(239,68,68,0.1);
  display: flex; align-items: center; justify-content: center;
  color: #f87171;
  font-size: 1.25rem;
  transition: background 0.2s;
}
.problem-card:hover .problem-icon { background: rgba(239,68,68,0.2); }
.problem-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.problem-card:hover h3 { color: #fca5a5; }
.problem-card p { color: #9ca3af; font-size: 0.875rem; line-height: 1.6; }

.problem-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  background: linear-gradient(135deg, transparent, rgba(239,68,68,0.1));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.problem-card:hover::after { opacity: 1; }

.problem-cta-box {
  margin-top: 4rem;
  text-align: center;
}
.problem-cta-inner {
  display: inline-block;
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  background: rgba(17, 24, 39, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(245,158,11,0.2);
  font-size: 1.125rem;
  color: #d1d5db;
}
.problem-cta-inner .accent { color: #fbbf24; font-weight: 600; }
.problem-cta-inner .white  { color: #fff; font-weight: 600; }

/* =====================
   SOLUTION SECTION
   ===================== */
#solution {
  background: linear-gradient(to bottom, transparent, rgba(245,158,11,0.05), transparent);
}

.solution-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}
@media (min-width: 1024px) { .solution-grid { grid-template-columns: 1fr 1fr; } }

/* Solution Visual Card */
.sol-card {
  background: rgba(17, 24, 39, 0.7);
  backdrop-filter: blur(12px);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid rgba(245,158,11,0.2);
}

.flow-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.flow-box {
  flex: 1;
  padding: 1rem;
  border-radius: 0.75rem;
}
.flow-box-amber {
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.3);
}
.flow-box-green {
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
}
.flow-box .label {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.flow-box-amber .label { color: #fbbf24; }
.flow-box-green .label { color: #4ade80; }
.flow-box .sub { font-size: 0.75rem; color: #9ca3af; }

.flow-arrow { color: #f59e0b; font-size: 1.1rem; }
.flow-arrow-green { color: #22c55e; font-size: 1.1rem; }

.flow-divider {
  display: flex;
  justify-content: center;
  margin: 0.5rem 0 1rem;
}
.flow-line {
  width: 1px; height: 2rem;
  background: rgba(245,158,11,0.3);
}

.sol-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.sol-stat {
  padding: 1rem;
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.05);
  text-align: center;
}
.sol-stat-value { font-size: 1.5rem; font-weight: 700; }
.sol-stat-label { font-size: 0.75rem; color: #9ca3af; margin-top: 0.25rem; }

/* Solution Features List */
.features-list { display: flex; flex-direction: column; gap: 1rem; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s;
}
.feature-item:hover {
  border-color: rgba(245,158,11,0.3);
  background: rgba(245,158,11,0.05);
}
.feature-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 0.5rem;
  background: rgba(245,158,11,0.1);
  display: flex; align-items: center; justify-content: center;
  color: #fbbf24;
  font-size: 1rem;
  transition: background 0.2s;
}
.feature-item:hover .feature-icon { background: rgba(245,158,11,0.2); }
.feature-item h3 {
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.25rem;
  transition: color 0.2s;
  font-size: 0.95rem;
}
.feature-item:hover h3 { color: #fcd34d; }
.feature-item p { color: #9ca3af; font-size: 0.8rem; line-height: 1.5; }

.solution-note {
  text-align: center;
  color: #9ca3af;
  font-size: 1rem;
}
.solution-note span { color: #fff; }

/* =====================
   BENEFITS SECTION
   ===================== */
#benefits {
  background: linear-gradient(to bottom, transparent, rgba(34,197,94,0.05), transparent);
}

.benefits-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px)  { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .benefits-grid { grid-template-columns: repeat(3, 1fr); } }

.benefit-card {
  position: relative;
  padding: 1.5rem;
  border-radius: 1rem;
  background: rgba(17, 24, 39, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s;
}
.benefit-card:hover {
  border-color: rgba(34,197,94,0.3);
  background: rgba(34,197,94,0.05);
}
.benefit-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  background: linear-gradient(135deg, transparent, rgba(34,197,94,0.1));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.benefit-card:hover::after { opacity: 1; }

.benefit-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.benefit-icon {
  width: 48px; height: 48px;
  border-radius: 0.75rem;
  background: rgba(34,197,94,0.1);
  display: flex; align-items: center; justify-content: center;
  color: #4ade80;
  font-size: 1.25rem;
  transition: background 0.2s;
}
.benefit-card:hover .benefit-icon { background: rgba(34,197,94,0.2); }
.benefit-stat { text-align: right; }
.benefit-stat-value { font-size: 1.5rem; font-weight: 700; }
.benefit-stat-label { font-size: 0.7rem; color: #6b7280; }

.benefit-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.benefit-card:hover h3 { color: #86efac; }
.benefit-card p { color: #9ca3af; font-size: 0.875rem; line-height: 1.6; }

.benefits-quote {
  margin-top: 4rem;
  text-align: center;
}
.benefits-quote-inner {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  background: rgba(17, 24, 39, 0.7);
  border: 1px solid rgba(245,158,11,0.2);
  font-size: 1.125rem;
  color: #d1d5db;
}
.benefits-quote-inner i { color: #f59e0b; font-size: 1.5rem; flex-shrink: 0; }
.benefits-quote-inner strong { color: #fff; }
.benefits-quote-inner .accent { color: #fbbf24; font-weight: 600; }

/* =====================
   ABOUT SECTION
   ===================== */
#about {
  background: linear-gradient(to bottom, transparent, rgba(59,130,246,0.05), transparent);
}

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }

/* About Card */
.about-card {
  background: rgba(17, 24, 39, 0.7);
  backdrop-filter: blur(12px);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid rgba(245,158,11,0.2);
}
.about-profile {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.about-avatar {
  width: 96px; height: 96px;
  border-radius: 1rem;
  background: linear-gradient(135deg, #f59e0b, #eab308);
  display: flex; align-items: center; justify-content: center;
  color: #111827;
  font-size: 1.875rem;
  font-weight: 700;
  flex-shrink: 0;
  overflow: hidden;
}
.about-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.about-name { font-size: 1.5rem; font-weight: 700; color: #fff; }
.about-title { color: #fbbf24; margin-top: 0.25rem; }
.about-stars { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.5rem; }
.about-stars .stars { display: flex; }
.about-stars .stars i { color: #f59e0b; font-size: 0.875rem; }
.about-stars span { color: #9ca3af; font-size: 0.875rem; }

.about-quote-box { position: relative; margin-bottom: 2rem; }
.about-quote-icon {
  position: absolute;
  top: -0.5rem; left: -0.5rem;
  color: rgba(245,158,11,0.3);
  font-size: 2rem;
}
.about-quote-text {
  color: #d1d5db;
  font-style: italic;
  padding-left: 1.5rem;
  line-height: 1.75;
  font-size: 0.95rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.about-stat {
  text-align: center;
  padding: 1rem;
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.05);
}
.about-stat i { color: #f59e0b; font-size: 1.25rem; display: block; margin-bottom: 0.5rem; }
.about-stat-value { font-size: 1.25rem; font-weight: 700; color: #fff; }
.about-stat-label { font-size: 0.7rem; color: #9ca3af; }

/* About Right */
.about-right { display: flex; flex-direction: column; gap: 1.5rem; }
.about-text { color: #9ca3af; line-height: 1.75; }
.about-text span { color: #fff; font-weight: 600; }

.about-achievements { display: flex; flex-direction: column; gap: 0.75rem; padding-top: 1rem; }
.achievement-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #d1d5db;
  font-size: 0.875rem;
}
.achievement-item i { color: #f59e0b; font-size: 1.1rem; flex-shrink: 0; }

/* =====================
   TESTIMONIALS SECTION
   ===================== */
#testimonials {
  background: linear-gradient(to bottom, transparent, rgba(168,85,247,0.05), transparent);
}

.testimonials-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 42rem;
  margin: 0 auto 3rem;
}
.tstat {
  text-align: center;
  padding: 1rem;
  border-radius: 0.75rem;
  background: rgba(17, 24, 39, 0.7);
  border: 1px solid rgba(255,255,255,0.05);
}
.tstat-value { font-size: 1.75rem; font-weight: 700; }
.tstat-label { font-size: 0.7rem; color: #9ca3af; margin-top: 0.25rem; }

.testimonials-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px)  { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  position: relative;
  padding: 1.5rem;
  border-radius: 1rem;
  background: rgba(17, 24, 39, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s;
}
.testimonial-card:hover {
  border-color: rgba(168,85,247,0.3);
  background: rgba(168,85,247,0.05);
}
.testimonial-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  background: linear-gradient(135deg, transparent, rgba(168,85,247,0.1));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.testimonial-card:hover::after { opacity: 1; }

.t-quote-icon {
  position: absolute;
  top: 1rem; right: 1rem;
  color: rgba(168,85,247,0.2);
  font-size: 2rem;
}
.t-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.t-avatar {
  width: 48px; height: 48px;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #f59e0b, #eab308);
  display: flex; align-items: center; justify-content: center;
  color: #111827;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}
.t-name { font-weight: 600; color: #fff; }
.t-role { color: #9ca3af; font-size: 0.875rem; }
.t-location { color: #6b7280; font-size: 0.75rem; }
.t-stars { display: flex; gap: 2px; margin-bottom: 0.75rem; }
.t-stars i { color: #f59e0b; font-size: 0.875rem; }
.t-text { color: #d1d5db; font-size: 0.875rem; line-height: 1.65; margin-bottom: 1rem; }
.t-result {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
}
.t-result i { color: #4ade80; font-size: 0.875rem; }
.t-result span { color: #4ade80; font-size: 0.875rem; font-weight: 500; }

/* =====================
   CTA SECTION
   ===================== */
#cta {
  background: linear-gradient(to bottom, transparent, rgba(245,158,11,0.1), transparent);
}
.cta-blob {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: rgba(245,158,11,0.1);
  border-radius: 50%;
  filter: blur(80px);
}

.cta-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .cta-grid { grid-template-columns: 1fr 1fr; } }

.cta-left { display: flex; flex-direction: column; gap: 2rem; }
.cta-title {
  font-size: clamp(1.875rem, 3.5vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.cta-benefits { display: flex; flex-direction: column; gap: 0.75rem; }
.cta-benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #d1d5db;
}
.cta-benefit-item i { color: #f59e0b; font-size: 1.1rem; flex-shrink: 0; }

.cta-bonuses {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 1rem;
}
.bonus-box {
  text-align: center;
  padding: 1rem;
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.05);
}
.bonus-box i { color: #f59e0b; font-size: 1.5rem; display: block; margin-bottom: 0.5rem; }
.bonus-box .bonus-title { color: #fff; font-size: 0.875rem; font-weight: 500; }
.bonus-box .bonus-desc  { color: #9ca3af; font-size: 0.7rem; margin-top: 0.25rem; }

.urgency-box {
  padding: 1rem;
  border-radius: 0.75rem;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  text-align: center;
  color: #f87171;
  font-size: 0.875rem;
}
.urgency-box strong { font-weight: 600; }

/* Form */
.cta-form-wrap {
  background: rgba(17, 24, 39, 0.7);
  backdrop-filter: blur(12px);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid rgba(245,158,11,0.2);
  box-shadow: 0 0 20px rgba(245,158,11,0.2);
}
.form-title { font-size: 1.5rem; font-weight: 700; color: #fff; text-align: center; margin-bottom: 0.5rem; }
.form-subtitle { color: #9ca3af; font-size: 0.875rem; text-align: center; margin-bottom: 2rem; }

.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #d1d5db;
  margin-bottom: 0.5rem;
}
.form-group input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.625rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input::placeholder { color: #6b7280; }
.form-group input:focus {
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245,158,11,0.1);
}

.btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(to right, #f59e0b, #eab308);
  color: #111827;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 1rem;
  border-radius: 0.625rem;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
  box-shadow: 0 0 40px rgba(245,158,11,0.3);
  margin-top: 0.5rem;
}
.btn-submit:hover { background: linear-gradient(to right, #fbbf24, #facc15); }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; }
.btn-submit i { transition: transform 0.2s; }
.btn-submit:hover i { transform: translateX(4px); }

.form-note {
  text-align: center;
  color: #6b7280;
  font-size: 0.75rem;
  margin-top: 0.75rem;
}

/* =====================
   SUCCESS DIALOG
   ===================== */
.dialog-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 100;
  align-items: center;
  justify-content: center;
}
.dialog-overlay.open { display: flex; }

.dialog-box {
  background: rgba(17, 24, 39, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 1rem;
  padding: 2.5rem;
  max-width: 28rem;
  width: 90%;
  text-align: center;
  animation: scale-in 0.3s ease-out;
}
.dialog-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(34,197,94,0.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: #22c55e;
}
.dialog-title { font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 0.75rem; }
.dialog-desc { color: #9ca3af; line-height: 1.6; margin-bottom: 1.5rem; }
.btn-dialog {
  width: 100%;
  padding: 0.875rem;
  background: linear-gradient(to right, #f59e0b, #eab308);
  color: #111827;
  font-weight: 700;
  border-radius: 0.625rem;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  transition: opacity 0.2s;
}
.btn-dialog:hover { opacity: 0.9; }

/* =====================
   FOOTER
   ===================== */
footer {
  position: relative;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.5));
}
.footer-inner { position: relative; z-index: 1; }

.footer-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }

.footer-brand-name { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
.footer-brand-desc { color: #9ca3af; line-height: 1.75; margin-bottom: 1.5rem; max-width: 28rem; }

.social-links { display: flex; gap: 1rem; }
.social-link {
  width: 40px; height: 40px;
  border-radius: 0.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: #9ca3af;
  font-size: 1.1rem;
  transition: all 0.2s;
}
.social-link:hover { color: #fbbf24; border-color: rgba(245,158,11,0.3); }

.footer-col h4 { color: #fff; font-weight: 600; margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links button {
  color: #9ca3af;
  font-size: 0.875rem;
  text-align: left;
  transition: color 0.2s;
}
.footer-links button:hover { color: #fbbf24; }

.footer-contact { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #9ca3af;
  font-size: 0.875rem;
}
.contact-item i { color: #f59e0b; width: 16px; text-align: center; }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer-bottom p { color: #6b7280; font-size: 0.875rem; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal button { color: #6b7280; font-size: 0.875rem; transition: color 0.2s; }
.footer-legal button:hover { color: #9ca3af; }

/* =====================
   INTRO VIDEO SECTION
   ===================== */
#intro-video {
  position: relative;
  overflow: hidden;
  /* Sitenin arka planıyla tam uyumlu gradient */
  background: linear-gradient(135deg, #0a0f1a 0%, #111827 50%, #0a0f1a 100%);
}

/* Ambient blob'lar — hero section ile aynı dil */
#intro-video .vid-blob-1 {
  position: absolute;
  top: 10%; left: 5%;
  width: 420px; height: 420px;
  background: rgba(245, 158, 11, 0.07);
  border-radius: 50%;
  filter: blur(90px);
  animation: float 7s ease-in-out infinite;
  pointer-events: none;
}
#intro-video .vid-blob-2 {
  position: absolute;
  bottom: 5%; right: 5%;
  width: 340px; height: 340px;
  background: rgba(234, 179, 8, 0.07);
  border-radius: 50%;
  filter: blur(90px);
  animation: float 8s ease-in-out infinite;
  animation-delay: 3.5s;
  pointer-events: none;
}

/* Hafif grid dokusu — hero ile aynı */
#intro-video .vid-grid {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image:
    linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

/* Üst-alt geçiş fade — bölümleri birbirine bağlar */
#intro-video::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, #0a0f1a, transparent);
  z-index: 1;
  pointer-events: none;
}
#intro-video::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, #0a0f1a, transparent);
  z-index: 1;
  pointer-events: none;
}

#intro-video .container {
  position: relative;
  z-index: 2;
}

/* Video kartı — diğer card'larla aynı glass stili */
.video-wrapper {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  border-radius: 1.25rem;
  overflow: hidden;
  /* Glass efekt */
  background: rgba(17, 24, 39, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(245, 158, 11, 0.2);
  box-shadow:
    0 0 0 1px rgba(245, 158, 11, 0.05),
    0 0 60px rgba(245, 158, 11, 0.18),
    0 32px 80px rgba(0, 0, 0, 0.5);
}

.video-wrapper video {
  display: block;
  width: 100%;
  height: auto;
  /* Video arka planı şeffaf kalır, wrapper'ın glass'ı görünür */
  background: transparent;
}

/* Custom Play Overlay */
.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Sitenin dark tonuyla uyumlu, siyah değil */
  background: rgba(10, 15, 26, 0.55);
  cursor: pointer;
  transition: background 0.3s;
}
.video-overlay:hover { background: rgba(10, 15, 26, 0.35); }
.video-overlay.hidden { display: none; }

.play-btn {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f59e0b, #eab308);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111827;
  font-size: 1.85rem;
  /* Hero'daki glow-amber ile aynı */
  box-shadow: 0 0 40px rgba(245, 158, 11, 0.5);
  transition: transform 0.25s, box-shadow 0.25s;
  padding-left: 6px;
}
.video-overlay:hover .play-btn {
  transform: scale(1.12);
  box-shadow: 0 0 70px rgba(245, 158, 11, 0.75);
}

/* Başlık alanı */
.video-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.video-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}
.video-header p {
  color: #9ca3af;
  font-size: 1.05rem;
}

/* =====================
   RESPONSIVE HELPERS
   ===================== */
@media (max-width: 640px) {
  section { padding: 4rem 0; }
  .section-header { margin-bottom: 2.5rem; }
}
