/* =====================================================
   SendRix - Cold Email Marketing Agency
   Primary: #1A6DFF | Purple: #7B2FBE | Dark: #080C1A
   ===================================================== */

:root {
  --blue:       #1A6DFF;
  --blue-light: #4D8FFF;
  --purple:     #7B2FBE;
  --purple-light:#A855F7;
  --navy:       #0D1540;
  --dark:       #060A1A;
  --dark2:      #0A0F24;
  --dark3:      #0F1630;
  --card-bg:    rgba(255,255,255,0.04);
  --card-border:rgba(255,255,255,0.08);
  --text:       #E2E8F0;
  --text-muted: #94A3B8;
  --grad:       linear-gradient(135deg, #1A6DFF 0%, #7B2FBE 100%);
  --grad-rev:   linear-gradient(135deg, #7B2FBE 0%, #1A6DFF 100%);
  --grad-glow:  linear-gradient(135deg, rgba(26,109,255,0.15) 0%, rgba(123,47,190,0.15) 100%);
  --shadow-blue:0 0 40px rgba(26,109,255,0.3);
  --shadow-card:0 8px 32px rgba(0,0,0,0.4);
  --radius:     16px;
  --radius-lg:  24px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
::selection { background: rgba(26,109,255,0.4); }

/* ── Typography ── */
h1,h2,h3,h4,h5 { font-family: 'Plus Jakarta Sans', 'Inter', sans-serif; font-weight: 700; line-height: 1.2; }
.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,109,255,0.12);
  border: 1px solid rgba(26,109,255,0.3);
  color: var(--blue-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-badge .dot { width:6px; height:6px; border-radius:50%; background:var(--blue); animation: pulse-dot 2s infinite; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 24px rgba(26,109,255,0.4);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content:'';
  position:absolute;
  inset:0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity:0;
  transition:opacity 0.3s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(26,109,255,0.5); color:#fff; }
.btn-primary:hover::before { opacity:1; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4); color:#fff; transform:translateY(-2px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-light);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap 0.3s;
}
.btn-ghost:hover { gap: 12px; color: var(--blue-light); }

/* ── Noise overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  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.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}
#navbar.scrolled {
  background: rgba(6,10,26,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 14px 0;
  box-shadow: 0 4px 32px rgba(0,0,0,0.5);
}
#navbar .navbar-brand img { height: 36px; }
#navbar .nav-link {
  color: rgba(255,255,255,0.75) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 14px !important;
  border-radius: 8px;
  transition: all 0.2s;
}
#navbar .nav-link:hover, #navbar .nav-link.active { color: #fff !important; background: rgba(255,255,255,0.08); }
#navbar .navbar-toggler { border: none; padding: 4px; }
#navbar .navbar-toggler:focus { box-shadow: none; }
#navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.8%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(26,109,255,0.18) 0%, transparent 70%),
              radial-gradient(ellipse 50% 40% at 80% 80%, rgba(123,47,190,0.12) 0%, transparent 60%),
              var(--dark);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,109,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,109,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(26,109,255,0.15), rgba(123,47,190,0.15));
  border: 1px solid rgba(26,109,255,0.3);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease both;
}
.hero-badge .badge-dot { width:8px; height:8px; border-radius:50%; background:#22C55E; box-shadow:0 0 10px rgba(34,197,94,0.5); animation:pulse-dot 2s infinite; }
.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s 0.1s ease both;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s 0.2s ease both;
}
.hero-actions { animation: fadeInUp 0.8s 0.3s ease both; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.4s ease both;
}
.hero-stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.hero-stat-label { font-size: 0.82rem; color: var(--text-muted); margin-top: 2px; }

/* Hero Visual */
.hero-visual { position: relative; animation: fadeInRight 1s 0.3s ease both; }
.hero-email-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255,255,255,0.08);
}
.hero-email-card::before {
  content:'';
  position:absolute;
  top:-1px; left:20px; right:20px;
  height:2px;
  background:var(--grad);
  border-radius:0 0 4px 4px;
}
.email-header { display:flex; align-items:center; gap:10px; margin-bottom:20px; }
.email-avatar { width:40px; height:40px; border-radius:50%; background:var(--grad); display:flex; align-items:center; justify-content:center; font-weight:700; font-size:0.85rem; }
.email-meta { flex:1; }
.email-meta .from { font-size:0.85rem; font-weight:600; }
.email-meta .time { font-size:0.72rem; color:var(--text-muted); }
.email-subject { font-size:0.9rem; font-weight:600; margin-bottom:12px; }
.email-body { font-size:0.8rem; color:var(--text-muted); line-height:1.6; }
.email-body p + p { margin-top:8px; }
.email-cta { margin-top:16px; display:inline-flex; align-items:center; gap:6px; background:var(--grad); color:#fff; padding:10px 20px; border-radius:8px; font-size:0.82rem; font-weight:600; }

.hero-float-card {
  position:absolute;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:14px;
  padding:14px 18px;
  backdrop-filter:blur(20px);
  display:flex;
  align-items:center;
  gap:12px;
  font-size:0.8rem;
  font-weight:600;
  box-shadow:0 8px 32px rgba(0,0,0,0.3);
  animation:float 6s ease-in-out infinite;
}
.hero-float-card.fc-1 { top:-20px; right:-10px; animation-delay:0s; }
.hero-float-card.fc-2 { bottom:30px; right:-30px; animation-delay:2s; }
.hero-float-card.fc-3 { bottom:-10px; left:-20px; animation-delay:4s; }
.float-icon { width:36px; height:36px; border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:1.1rem; }
.float-icon.green  { background:rgba(34,197,94,0.15); }
.float-icon.blue   { background:rgba(26,109,255,0.15); }
.float-icon.purple { background:rgba(123,47,190,0.15); }
.float-value { font-size:1.2rem; font-weight:800; background:var(--grad); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; display:block; line-height:1; }
.float-label { font-size:0.72rem; color:var(--text-muted); font-weight:400; }

/* ============================================================
   LOGOS / TRUSTED BY
   ============================================================ */
#trusted {
  padding: 50px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
}
.trusted-label { font-size:0.78rem; font-weight:600; color:var(--text-muted); text-transform:uppercase; letter-spacing:1px; white-space:nowrap; }
.logos-track {
  display:flex;
  gap:50px;
  align-items:center;
  animation:marquee 30s linear infinite;
  white-space:nowrap;
}
.logo-item {
  font-size:1rem;
  font-weight:700;
  color:rgba(255,255,255,0.25);
  transition:color 0.3s;
  white-space:nowrap;
  padding:0 10px;
}
.logo-item:hover { color:rgba(255,255,255,0.6); }

/* ============================================================
   SERVICES
   ============================================================ */
#services { padding: 100px 0; }
.service-card {
  background:var(--card-bg);
  border:1px solid var(--card-border);
  border-radius:var(--radius-lg);
  padding:36px 32px;
  height:100%;
  transition:all 0.35s ease;
  position:relative;
  overflow:hidden;
}
.service-card::before {
  content:'';
  position:absolute;
  top:0; left:0; right:0;
  height:3px;
  background:var(--grad);
  transform:scaleX(0);
  transition:transform 0.35s ease;
  transform-origin:left;
}
.service-card:hover { transform:translateY(-6px); border-color:rgba(26,109,255,0.25); box-shadow:0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(26,109,255,0.08); }
.service-card:hover::before { transform:scaleX(1); }
.service-icon {
  width:60px; height:60px;
  border-radius:16px;
  background:linear-gradient(135deg, rgba(26,109,255,0.15), rgba(123,47,190,0.15));
  border:1px solid rgba(26,109,255,0.2);
  display:flex; align-items:center; justify-content:center;
  font-size:1.5rem;
  margin-bottom:24px;
  transition:all 0.35s;
}
.service-card:hover .service-icon { background:var(--grad); border-color:transparent; box-shadow:0 0 20px rgba(26,109,255,0.4); }
.service-title { font-size:1.1rem; font-weight:700; margin-bottom:12px; }
.service-desc { font-size:0.875rem; color:var(--text-muted); line-height:1.7; }
.service-link { display:inline-flex; align-items:center; gap:6px; margin-top:20px; font-size:0.82rem; font-weight:600; color:var(--blue-light); transition:gap 0.3s; }
.service-card:hover .service-link { gap:10px; }

/* ============================================================
   STATS
   ============================================================ */
#stats { padding:80px 0; }
.stats-wrap {
  background:linear-gradient(135deg, rgba(26,109,255,0.08), rgba(123,47,190,0.08));
  border:1px solid rgba(26,109,255,0.15);
  border-radius:var(--radius-lg);
  padding:60px 40px;
  position:relative;
  overflow:hidden;
}
.stats-wrap::before {
  content:'';
  position:absolute;
  top:-60px; left:50%;
  transform:translateX(-50%);
  width:300px; height:200px;
  background:radial-gradient(ellipse, rgba(26,109,255,0.15), transparent);
  pointer-events:none;
}
.stat-item { text-align:center; }
.stat-number {
  font-size:clamp(2rem,4vw,3.2rem);
  font-weight:800;
  background:var(--grad);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  display:block;
  line-height:1;
  margin-bottom:8px;
}
.stat-desc { font-size:0.875rem; color:var(--text-muted); }
.stat-divider { width:1px; background:rgba(255,255,255,0.08); height:60px; margin:auto; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
#process { padding:100px 0; }
.process-step {
  display:flex;
  gap:28px;
  align-items:flex-start;
  padding:32px;
  background:var(--card-bg);
  border:1px solid var(--card-border);
  border-radius:var(--radius-lg);
  transition:all 0.35s;
  position:relative;
  height:100%;
}
.process-step:hover { border-color:rgba(26,109,255,0.3); transform:translateY(-4px); box-shadow:0 20px 40px rgba(0,0,0,0.3); }
.step-number {
  width:52px; height:52px;
  flex-shrink:0;
  background:var(--grad);
  border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  font-size:1.1rem;
  font-weight:800;
  color:#fff;
  box-shadow:0 4px 20px rgba(26,109,255,0.3);
}
.step-content h4 { font-size:1rem; font-weight:700; margin-bottom:8px; }
.step-content p { font-size:0.85rem; color:var(--text-muted); line-height:1.7; }
.process-connector {
  width:2px;
  height:40px;
  background:linear-gradient(to bottom, rgba(26,109,255,0.5), rgba(123,47,190,0.2));
  margin:0 auto;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
#why { padding:100px 0; }
.why-visual {
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
}
.why-center-card {
  width:300px;
  padding:32px;
  background:linear-gradient(135deg, rgba(26,109,255,0.12), rgba(123,47,190,0.12));
  border:1px solid rgba(26,109,255,0.25);
  border-radius:var(--radius-lg);
  text-align:center;
  position:relative;
  z-index:2;
}
.why-orbit {
  position:absolute;
  width:420px; height:420px;
  border:1px dashed rgba(26,109,255,0.15);
  border-radius:50%;
  animation:rotate 30s linear infinite;
}
.why-orbit-2 {
  position:absolute;
  width:560px; height:560px;
  border:1px dashed rgba(123,47,190,0.1);
  border-radius:50%;
  animation:rotate 50s linear infinite reverse;
}
.orbit-dot {
  position:absolute;
  width:40px; height:40px;
  border-radius:50%;
  background:var(--dark3);
  border:1px solid rgba(26,109,255,0.3);
  display:flex; align-items:center; justify-content:center;
  font-size:1rem;
}
.orbit-dot:nth-child(1)  { top:-20px; left:calc(50% - 20px); }
.orbit-dot:nth-child(2)  { top:calc(50% - 20px); right:-20px; }
.orbit-dot:nth-child(3)  { bottom:-20px; left:calc(50% - 20px); }
.orbit-dot:nth-child(4)  { top:calc(50% - 20px); left:-20px; }

.feature-item {
  display:flex;
  gap:16px;
  padding:20px 0;
  border-bottom:1px solid rgba(255,255,255,0.05);
}
.feature-item:last-child { border-bottom:none; }
.feature-check {
  width:32px; height:32px;
  flex-shrink:0;
  background:rgba(34,197,94,0.12);
  border-radius:8px;
  display:flex; align-items:center; justify-content:center;
  color:#22C55E;
  font-size:0.85rem;
  margin-top:2px;
}
.feature-text h5 { font-size:0.95rem; font-weight:700; margin-bottom:4px; }
.feature-text p { font-size:0.82rem; color:var(--text-muted); line-height:1.6; }

/* ============================================================
   PRICING
   ============================================================ */
#pricing { padding:100px 0; }
.pricing-card {
  background:var(--card-bg);
  border:1px solid var(--card-border);
  border-radius:var(--radius-lg);
  padding:40px 36px;
  height:100%;
  transition:all 0.35s;
  position:relative;
  overflow:hidden;
}
.pricing-card.popular {
  background:linear-gradient(135deg, rgba(26,109,255,0.1), rgba(123,47,190,0.1));
  border-color:rgba(26,109,255,0.4);
  transform:translateY(-8px);
  box-shadow:var(--shadow-blue);
}
.pricing-card:hover { transform:translateY(-6px); box-shadow:0 20px 60px rgba(0,0,0,0.4); }
.pricing-card.popular:hover { transform:translateY(-12px); }
.popular-badge {
  display:inline-block;
  background:var(--grad);
  color:#fff;
  font-size:0.72rem;
  font-weight:700;
  padding:4px 14px;
  border-radius:50px;
  margin-bottom:20px;
  text-transform:uppercase;
  letter-spacing:0.5px;
}
.pricing-plan { font-size:0.8rem; font-weight:600; color:var(--text-muted); text-transform:uppercase; letter-spacing:1px; margin-bottom:8px; }
.pricing-price {
  font-size:3rem;
  font-weight:800;
  line-height:1;
  margin-bottom:4px;
}
.pricing-price sup { font-size:1.2rem; font-weight:700; vertical-align:top; margin-top:8px; display:inline-block; }
.pricing-price .period { font-size:0.9rem; font-weight:500; color:var(--text-muted); }
.pricing-desc { font-size:0.85rem; color:var(--text-muted); margin-bottom:28px; margin-top:8px; }
.pricing-features { list-style:none; padding:0; margin-bottom:32px; }
.pricing-features li {
  display:flex; align-items:center; gap:10px;
  padding:9px 0;
  border-bottom:1px solid rgba(255,255,255,0.05);
  font-size:0.875rem;
}
.pricing-features li:last-child { border-bottom:none; }
.pricing-features li .fi { color:#22C55E; flex-shrink:0; }
.pricing-features li .fi.x { color:#EF4444; }
.pricing-features li.muted { color:var(--text-muted); }
.pricing-divider { border-color:rgba(255,255,255,0.06); margin:24px 0; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials { padding:100px 0; }
.testi-card {
  background:var(--card-bg);
  border:1px solid var(--card-border);
  border-radius:var(--radius-lg);
  padding:36px 32px;
  height:100%;
  transition:all 0.35s;
  position:relative;
}
.testi-card:hover { transform:translateY(-4px); border-color:rgba(26,109,255,0.2); box-shadow:0 20px 40px rgba(0,0,0,0.3); }
.testi-quote { font-size:2rem; line-height:1; color:var(--blue); margin-bottom:16px; font-family:Georgia,serif; }
.testi-text { font-size:0.9rem; color:var(--text-muted); line-height:1.8; margin-bottom:24px; font-style:italic; }
.testi-author { display:flex; align-items:center; gap:14px; }
.testi-avatar {
  width:48px; height:48px;
  border-radius:50%;
  background:var(--grad);
  display:flex; align-items:center; justify-content:center;
  font-weight:700;
  font-size:1rem;
  flex-shrink:0;
}
.testi-name { font-weight:700; font-size:0.9rem; }
.testi-role { font-size:0.78rem; color:var(--text-muted); }
.testi-stars { color:#FBBF24; font-size:0.75rem; margin-top:4px; }

/* ============================================================
   FAQ
   ============================================================ */
#faq { padding:100px 0; }
.faq-item {
  background:var(--card-bg);
  border:1px solid var(--card-border);
  border-radius:var(--radius);
  margin-bottom:12px;
  overflow:hidden;
  transition:border-color 0.3s;
}
.faq-item.open { border-color:rgba(26,109,255,0.3); }
.faq-question {
  width:100%;
  background:none;
  border:none;
  padding:22px 28px;
  color:#fff;
  font-size:0.95rem;
  font-weight:600;
  text-align:left;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  transition:color 0.3s;
}
.faq-question:hover { color:var(--blue-light); }
.faq-icon {
  width:28px; height:28px;
  border-radius:8px;
  background:rgba(26,109,255,0.12);
  border:1px solid rgba(26,109,255,0.2);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
  transition:all 0.3s;
  font-size:0.9rem;
  color:var(--blue-light);
}
.faq-item.open .faq-icon { background:var(--grad); border-color:transparent; transform:rotate(45deg); color:#fff; }
.faq-answer {
  padding:0 28px;
  max-height:0;
  overflow:hidden;
  transition:all 0.35s ease;
}
.faq-answer p { padding-bottom:22px; font-size:0.875rem; color:var(--text-muted); line-height:1.8; }
.faq-item.open .faq-answer { max-height:300px; }

/* ============================================================
   CTA SECTION
   ============================================================ */
#cta { padding:100px 0; }
.cta-wrap {
  background:linear-gradient(135deg, rgba(26,109,255,0.12), rgba(123,47,190,0.15));
  border:1px solid rgba(26,109,255,0.2);
  border-radius:24px;
  padding:80px 60px;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.cta-wrap::before {
  content:'';
  position:absolute;
  top:-100px; left:50%;
  transform:translateX(-50%);
  width:500px; height:300px;
  background:radial-gradient(ellipse, rgba(26,109,255,0.15), transparent);
  pointer-events:none;
}
.cta-glow {
  position:absolute;
  bottom:-80px; right:-80px;
  width:300px; height:300px;
  background:radial-gradient(circle, rgba(123,47,190,0.12), transparent);
  pointer-events:none;
}
.cta-title { font-size:clamp(2rem,4vw,3rem); font-weight:800; margin-bottom:16px; }
.cta-sub { font-size:1rem; color:var(--text-muted); max-width:500px; margin:0 auto 36px; }
.cta-form {
  display:flex;
  gap:12px;
  max-width:480px;
  margin:0 auto;
  flex-wrap:wrap;
  justify-content:center;
}
.cta-form input {
  flex:1;
  min-width:220px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:50px;
  padding:14px 24px;
  color:#fff;
  font-size:0.9rem;
  outline:none;
  transition:border-color 0.3s;
}
.cta-form input::placeholder { color:rgba(255,255,255,0.4); }
.cta-form input:focus { border-color:rgba(26,109,255,0.5); }
.cta-note { font-size:0.78rem; color:var(--text-muted); margin-top:16px; }

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  padding:70px 0 0;
  border-top:1px solid rgba(255,255,255,0.06);
}
.footer-logo img { height:32px; margin-bottom:16px; }
.footer-desc { font-size:0.875rem; color:var(--text-muted); line-height:1.7; max-width:280px; }
.footer-social { display:flex; gap:10px; margin-top:20px; }
.social-btn {
  width:38px; height:38px;
  border-radius:10px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.08);
  display:flex; align-items:center; justify-content:center;
  color:var(--text-muted);
  font-size:0.85rem;
  transition:all 0.3s;
}
.social-btn:hover { background:var(--blue); border-color:var(--blue); color:#fff; transform:translateY(-3px); }
.footer-heading { font-size:0.8rem; font-weight:700; color:#fff; text-transform:uppercase; letter-spacing:0.8px; margin-bottom:20px; }
.footer-links { list-style:none; padding:0; }
.footer-links li + li { margin-top:10px; }
.footer-links a { font-size:0.875rem; color:var(--text-muted); transition:all 0.2s; }
.footer-links a:hover { color:#fff; padding-left:4px; }
.footer-contact-item { display:flex; align-items:center; gap:10px; font-size:0.875rem; color:var(--text-muted); margin-bottom:10px; }
.footer-contact-item i { color:var(--blue-light); width:16px; text-align:center; }
.footer-bottom {
  border-top:1px solid rgba(255,255,255,0.06);
  padding:20px 0;
  margin-top:50px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:12px;
}
.footer-bottom p { font-size:0.8rem; color:var(--text-muted); }
.footer-bottom-links { display:flex; gap:20px; }
.footer-bottom-links a { font-size:0.78rem; color:var(--text-muted); transition:color 0.2s; }
.footer-bottom-links a:hover { color:#fff; }

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section-header { margin-bottom:60px; }
.section-title { font-size:clamp(1.8rem,4vw,2.8rem); font-weight:800; margin-bottom:16px; }
.section-sub { font-size:1rem; color:var(--text-muted); max-width:520px; }

/* ============================================================
   FLOATING / BACK TO TOP
   ============================================================ */
#back-top {
  position:fixed;
  bottom:30px; right:30px;
  width:46px; height:46px;
  background:var(--grad);
  border:none;
  border-radius:12px;
  color:#fff;
  font-size:1rem;
  cursor:pointer;
  display:none;
  align-items:center;
  justify-content:center;
  z-index:500;
  transition:all 0.3s;
  box-shadow:0 4px 20px rgba(26,109,255,0.4);
}
#back-top.show { display:flex; }
#back-top:hover { transform:translateY(-3px); box-shadow:0 8px 28px rgba(26,109,255,0.5); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp   { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInDown { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInRight{ from { opacity:0; transform:translateX(40px); } to { opacity:1; transform:translateX(0); } }
@keyframes float      { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-12px); } }
@keyframes rotate     { from { transform:rotate(0deg); } to { transform:rotate(360deg); } }
@keyframes marquee    { 0% { transform:translateX(0); } 100% { transform:translateX(-50%); } }
@keyframes pulse-dot  { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.6; transform:scale(0.8); } }

/* Reveal on scroll */
.reveal {
  opacity:0;
  transform:translateY(30px);
  transition:opacity 0.6s ease, transform 0.6s 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; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .stat-divider { display:none; }
  .hero-visual { margin-top:50px; }
  .why-orbit, .why-orbit-2 { display:none; }
  .cta-wrap { padding:50px 30px; }
}
@media (max-width: 767px) {
  .hero-stats { gap:24px; }
  .hero-float-card.fc-2, .hero-float-card.fc-3 { display:none; }
  .pricing-card.popular { transform:none; }
  .pricing-card.popular:hover { transform:translateY(-6px); }
}
@media (max-width: 575px) {
  #hero { padding:100px 0 60px; }
  .process-step { flex-direction:column; }
  .footer-bottom { flex-direction:column; text-align:center; }
}
