/* ══════════════════════════════════════════════════════════════
   SA Telecom — Dark Red SaaS Landing Page Styles
   ══════════════════════════════════════════════════════════════ */

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

:root {
  --bg:        #000814;
  --bg2:       #001D3D;
  --bg3:       #002855;
  --surface:   #003566;
  --surface2:  #004080;
  --border:    rgba(255,255,255,0.1);
  --border2:   rgba(255,195,0,0.3);
  --accent:    #FFC300;
  --accent-hover: #FFD60A;
  --accent-glow:  rgba(255,195,0,0.4);
  --accent-glow2: rgba(255,195,0,0.15);
  --text:      #ffffff;
  --text2:     #b8c5d6;
  --text3:     #8a9bb0;
  --radius:    14px;
  --radius-sm: 8px;
  --trans:     cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Scrollbar ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2a2a2a; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ── Utility ──────────────────────────────────────────────────*/
.red { color: var(--accent); }
.gradient-text {
  background: linear-gradient(135deg, #FFC300 0%, #FFD60A 60%, #FFC300 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer { to { background-position: 200% center; } }

/* ── Buttons ─────────────────────────────────────────────────*/
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--accent);
  color: #000814;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.25s var(--trans);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.25s;
}
.btn-primary:hover { background: var(--accent-hover); box-shadow: 0 0 20px var(--accent-glow), 0 4px 16px rgba(255,195,0,0.3); transform: translateY(-1px); }
.btn-primary:hover::before { opacity: 1; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: 1px solid var(--border);
  transition: all 0.25s var(--trans);
  cursor: pointer;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); box-shadow: 0 0 16px var(--accent-glow2); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  color: var(--text2);
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: color 0.2s;
  border: none;
  cursor: pointer;
}
.btn-ghost:hover { color: var(--text); }

.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-glow { box-shadow: 0 0 30px var(--accent-glow), 0 0 60px rgba(255,195,0,0.2); animation: pulse-glow 2.5s ease-in-out infinite; }
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px var(--accent-glow), 0 0 40px rgba(255,195,0,0.2); }
  50%       { box-shadow: 0 0 35px var(--accent-glow), 0 0 80px rgba(255,195,0,0.35); }
}

/* ══════════════════════════════════════════════ NAV */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(0,8,20,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  background: rgba(0,8,20,0.95);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* Dropdown Menu */
.nav-dropdown {
  position: relative;
}
.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}
.dropdown-toggle svg {
  transition: transform 0.3s var(--trans);
}
.nav-dropdown:hover .dropdown-toggle svg {
  transform: rotate(180deg);
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  margin-top: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s var(--trans), transform 0.3s var(--trans), visibility 0.3s;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  color: var(--text);
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s;
}
.dropdown-menu a:hover {
  background: rgba(255,195,0,0.1);
  color: var(--accent);
}

/* Mobile Dropdown */
.mobile-dropdown {
  position: relative;
}
.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.mobile-arrow {
  font-size: 0.7rem;
  transition: transform 0.3s var(--trans);
}
.mobile-dropdown.active .mobile-arrow {
  transform: rotate(180deg);
}
.mobile-dropdown-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--trans);
  padding-left: 16px;
}
.mobile-dropdown.active .mobile-dropdown-content {
  max-height: 1000px;
}
.mobile-dropdown-content a {
  padding: 12px 16px;
  font-size: 0.9rem;
  opacity: 0.9;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}
.logo-icon { color: var(--accent); font-size: 1.4rem; }
.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
}
.nav-links a {
  color: var(--text2);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 6px;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.nav-links a:hover { color: var(--text); }

/* Dropdown Menu */
.nav-dropdown { position: relative; }
.dropdown-toggle { display: flex; align-items: center; gap: 4px; }
.dropdown-toggle svg { transition: transform 0.2s; }
.nav-dropdown:hover .dropdown-toggle svg { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 240px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s var(--trans);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  z-index: 1001;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: var(--text2);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
}
.dropdown-menu a:hover {
  background: var(--bg2);
  color: var(--accent);
}

.nav-actions { display: flex; align-items: center; gap: 8px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  background: rgba(9,9,9,0.97);
  backdrop-filter: blur(20px);
  gap: 4px;
  border-top: 1px solid var(--border);
}
.mobile-menu a {
  color: var(--text2);
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 6px;
  font-weight: 500;
}
.mobile-menu a:hover { color: var(--text); background: var(--surface); }
.mobile-cta { margin-top: 8px; text-align: center; background: var(--red) !important; color: #fff !important; }
.mobile-menu.open { display: flex; }

/* ══════════════════════════════════════════════ HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}
#particleCanvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(255,195,0,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: hero-breathe 6s ease-in-out infinite;
}
@keyframes hero-breathe {
  0%, 100% { opacity: 0.8; transform: translateX(-50%) scale(1); }
  50%       { opacity: 1;   transform: translateX(-50%) scale(1.08); }
}
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255,195,0,0.1);
  border: 1px solid rgba(255,195,0,0.25);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #FFD60A;
  margin-bottom: 24px;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: dot-pulse 1.5s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,195,0,0.7); }
  50%       { box-shadow: 0 0 0 5px rgba(255,195,0,0); }
}
.hero-title {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero-subtitle {
  color: var(--text2);
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; align-items: center; gap: 24px; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; }
.stat-label { font-size: 0.75rem; color: var(--text3); text-transform: uppercase; letter-spacing: 0.08em; }
.stat-divider { width: 1px; height: 36px; background: var(--border); }

/* ── Dashboard Card ──────────────────────────────────────────*/
.hero-visual { position: relative; }
.dashboard-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  backdrop-filter: blur(20px);
  box-shadow: 0 0 60px rgba(255,195,0,0.08), 0 32px 64px rgba(0,0,0,0.5);
  animation: float-card 5s ease-in-out infinite;
}
@keyframes float-card {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
.dash-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.dash-dots { display: flex; gap: 6px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red    { background: var(--accent); }
.dot-yellow { background: #f59e0b; }
.dot-green  { background: #22c55e; }
.dash-title { font-size: 0.78rem; color: var(--text3); font-weight: 500; }
.dash-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.metric-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  transition: border-color 0.3s;
}
.glow-card { border-color: var(--border2); box-shadow: 0 0 20px rgba(255,195,0,0.08); }
.metric-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text3);
  flex-shrink: 0;
}
.red-icon { background: rgba(255,195,0,0.15); color: var(--accent); }
.metric-val { font-size: 1.05rem; font-weight: 700; letter-spacing: -0.02em; }
.metric-lbl { font-size: 0.7rem; color: var(--text3); }
.metric-badge {
  position: absolute;
  top: 10px; right: 10px;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 100px;
}
.up { background: rgba(34,197,94,0.15); color: #4ade80; }

.dash-chart { margin-bottom: 16px; }
.chart-label { font-size: 0.72rem; color: var(--text3); margin-bottom: 10px; }
.chart-bars { display: flex; align-items: flex-end; gap: 6px; height: 70px; }
.bar-wrap { flex: 1; height: 100%; display: flex; align-items: flex-end; }
.bar {
  width: 100%;
  height: var(--h);
  background: rgba(255,255,255,0.06);
  border-radius: 4px 4px 0 0;
  transition: height 1s var(--trans);
}
.bar.active { background: linear-gradient(180deg, var(--accent), var(--accent-hover)); box-shadow: 0 0 10px var(--accent-glow); }

.dash-modules { display: flex; gap: 8px; }
.module {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  color: var(--text3);
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 10px;
}
.active-module { border-color: var(--border2); color: var(--text2); }
.module-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.module-dot.red    { background: var(--accent); box-shadow: 0 0 6px var(--accent-glow); }
.module-dot.green  { background: #22c55e; }
.module-dot.yellow { background: #f59e0b; }

.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  background: rgba(0,8,20,0.95);
  border: 1px solid var(--border2);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text2);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4), 0 0 20px rgba(255,195,0,0.12);
  white-space: nowrap;
}
.badge-1 { bottom: -20px; left: -40px; animation: float-badge1 4s ease-in-out infinite; }
.badge-2 { top: 20px; right: -30px; animation: float-badge2 4.5s ease-in-out infinite 0.5s; }
@keyframes float-badge1 {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%       { transform: translateY(-8px) rotate(0deg); }
}
@keyframes float-badge2 {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50%       { transform: translateY(-6px) rotate(0deg); }
}

/* ── Scroll Indicator ─────────────────────────────────────── */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text3);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 1;
  animation: fade-in-up 1.5s 1.2s both;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  animation: scroll-line-anim 2s ease-in-out infinite;
}
@keyframes scroll-line-anim {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ══════════════════════════════════════════════ TICKER */
.ticker-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
  padding: 14px 0;
}
.ticker {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: ticker-scroll 30s linear infinite;
  width: max-content;
}
.ticker span { font-size: 0.8rem; color: var(--text3); font-weight: 500; }
.ticker .sep { color: var(--accent); opacity: 0.6; }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ══════════════════════════════════════════════ SECTION COMMONS */
.section-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.services, .features, .pricing { padding: 100px 0; }
.services { background: var(--bg); }
.features  { background: var(--bg2); }
.pricing   { background: var(--bg); }

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
}
.section-tag {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(255,195,0,0.1);
  border: 1px solid rgba(255,195,0,0.25);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.section-header p { color: var(--text2); font-size: 1rem; line-height: 1.7; }

/* ══════════════════════════════════════════════ SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.service-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.3s var(--trans), border-color 0.3s, box-shadow 0.3s;
  overflow: hidden;
  cursor: default;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--border2);
  box-shadow: 0 0 30px rgba(255,195,0,0.1), 0 16px 32px rgba(0,0,0,0.3);
}
.service-card:hover .card-glow { opacity: 1; }
.card-glow {
  position: absolute;
  bottom: -40px; right: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255,195,0,0.2) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255,195,0,0.1);
  border: 1px solid rgba(255,195,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
  transition: box-shadow 0.3s;
}
.service-card:hover .service-icon { box-shadow: 0 0 16px rgba(255,195,0,0.3); }
.service-icon svg { width: 20px; height: 20px; }
.service-card h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 8px; }
.service-card p  { font-size: 0.83rem; color: var(--text2); line-height: 1.6; }

/* ══════════════════════════════════════════════ FEATURES */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s, transform 0.3s var(--trans);
}
.feature-item:hover { border-color: var(--border2); transform: translateY(-3px); }
.feature-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255,195,0,0.1);
  border: 1px solid rgba(255,195,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.feature-icon-wrap svg { width: 22px; height: 22px; }
.feature-item h3 { font-size: 1rem; font-weight: 600; }
.feature-item p  { font-size: 0.85rem; color: var(--text2); line-height: 1.7; }

/* ══════════════════════════════════════════════ PRICING */
.pricing-category {
  margin-bottom: 80px;
}
.pricing-category:last-child {
  margin-bottom: 0;
}
.category-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}
.category-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--text);
}
.category-header p {
  font-size: 0.95rem;
  color: var(--text2);
  line-height: 1.7;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 24px;
  transition: transform 0.3s var(--trans), border-color 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: var(--border2);
  box-shadow: 0 0 40px rgba(255,195,0,0.1), 0 20px 40px rgba(0,0,0,0.3);
}
.featured-plan {
  border-color: rgba(255,195,0,0.35) !important;
  box-shadow: 0 0 40px rgba(255,195,0,0.12), 0 0 0 1px rgba(255,195,0,0.1);
  background: linear-gradient(160deg, rgba(255,195,0,0.05) 0%, var(--surface) 50%);
}
.featured-plan:hover {
  box-shadow: 0 0 60px rgba(255,195,0,0.2), 0 24px 48px rgba(0,0,0,0.3);
  transform: translateY(-8px) scale(1.015);
}
.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #000814;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 0 16px var(--accent-glow);
  white-space: nowrap;
}
.plan-name { font-size: 0.85rem; font-weight: 600; color: var(--text3); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.plan-price { font-size: 2.2rem; font-weight: 700; letter-spacing: -0.03em; margin-bottom: 20px; }
.price-num  { font-size: 2.4rem; }
.custom-price { font-size: 1.8rem; }
.price-period { font-size: 1rem; color: var(--text3); font-weight: 400; }
.plan-desc { font-size: 0.84rem; color: var(--text2); line-height: 1.6; margin-bottom: 24px; }
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  min-height: 140px;
}
.plan-features li { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--text2); }
.check  { color: var(--accent); font-weight: 700; }
.muted  { color: var(--text3); }
.plan-btn { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════════ CTA */
.cta-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: var(--bg2);
}
.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(255,195,0,0.15) 0%, transparent 70%);
  pointer-events: none;
  animation: hero-breathe 5s ease-in-out infinite;
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.cta-content p { color: var(--text2); font-size: 1.05rem; margin-bottom: 40px; }
.cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ══════════════════════════════════════════════ FOOTER */
.footer {
  background: #000510;
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 64px;
  padding-bottom: 56px;
}
.footer-brand p { font-size: 0.85rem; color: var(--text3); line-height: 1.7; margin-top: 14px; max-width: 280px; }
.footer-logo { margin-bottom: 4px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text3);
  text-decoration: none;
  transition: all 0.25s;
}
.social-link svg { width: 15px; height: 15px; }
.social-link:hover { border-color: var(--accent); color: var(--accent); box-shadow: 0 0 12px var(--accent-glow2); }
.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text); margin-bottom: 4px; }
.footer-col a { font-size: 0.84rem; color: var(--text3); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text3);
}

/* ══════════════════════════════════════════════ SCROLL ANIMATIONS */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 1;
  transition: opacity 0.7s var(--trans), transform 0.7s var(--trans);
}
.reveal-up    { transform: translateY(0); }
.reveal-left  { transform: translateX(0); }
.reveal-right { transform: translateX(0); }

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}
[style*="--delay"] { transition-delay: var(--delay, 0s); }

/* ══════════════════════════════════════════════ FADE-IN-UP */
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════ RESPONSIVE */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .pricing-card:last-child { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }

  .hero-container { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-subtitle  { margin: 0 auto 36px; }
  .hero-buttons   { justify-content: center; }
  .hero-stats     { justify-content: center; }
  .hero-visual    { display: none; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid  { grid-template-columns: 1fr; }
  .pricing-card:last-child { grid-column: auto; }

  .footer-container { grid-template-columns: 1fr; gap: 40px; }
  .footer-links     { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom    { flex-direction: column; gap: 8px; text-align: center; }

  .floating-badge { display: none; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .footer-links  { grid-template-columns: 1fr 1fr; }
  .hero-title    { font-size: 2rem; }
  .btn-lg        { padding: 13px 24px; font-size: 0.95rem; }
}
