/* ================================================
   ALPHA LINK PRO - Main Stylesheet
   Design: LuckyManeFX inspired
   Colors: Red #E31524 | Dark #1B1D2E | White/Light sections
   ================================================ */

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

/* ---- CSS Variables ---- */
:root {
  --red: #E31524;
  --red-dark: #B8101D;
  --red-glow: rgba(227, 21, 36, 0.35);
  --dark: #1B1D2E;
  --dark2: #13152A;
  --dark3: #0E1020;
  --white: #FFFFFF;
  --light: #F5F6FA;
  --light2: #EBEBEB;
  --text-dark: #1A1A2A;
  --text-gray: #555555;
  --text-light: #AAAAAA;
  --font: 'Poppins', sans-serif;
  --transition: all 0.3s ease;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-red: 0 6px 28px rgba(227,21,36,0.35);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text-dark); background: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font); border: none; outline: none; }
input, textarea, select { font-family: var(--font); outline: none; border: none; }

/* ---- Hexagon Background Patterns ---- */
.hex-light {
  background-color: var(--light);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Crect width='56' height='100' fill='%23f5f6fa'/%3E%3Cpath d='M28 66L0 50V17L28 1l28 16v33L28 66zm0-5.6l22.4-13V22.6L28 9.6 5.6 22.6v24.8L28 60.4z' fill='%23000' fill-opacity='0.04'/%3E%3C/svg%3E");
}
.hex-dark {
  background-color: var(--dark);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Crect width='56' height='100' fill='%231b1d2e'/%3E%3Cpath d='M28 66L0 50V17L28 1l28 16v33L28 66zm0-5.6l22.4-13V22.6L28 9.6 5.6 22.6v24.8L28 60.4z' fill='%23fff' fill-opacity='0.04'/%3E%3C/svg%3E");
}
.hex-dark2 {
  background-color: var(--dark2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Crect width='56' height='100' fill='%2313152a'/%3E%3Cpath d='M28 66L0 50V17L28 1l28 16v33L28 66zm0-5.6l22.4-13V22.6L28 9.6 5.6 22.6v24.8L28 60.4z' fill='%23fff' fill-opacity='0.05'/%3E%3C/svg%3E");
}

/* ================================================================
   COMPONENTS
   ================================================================ */

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px; border-radius: 50px; font-size: 15px; font-weight: 600;
  transition: var(--transition); cursor: pointer; position: relative; overflow: hidden;
}
.btn-red {
  background: var(--red); color: var(--white);
  box-shadow: 0 4px 16px rgba(227,21,36,0.25);
}
.btn-red:hover {
  background: var(--red-dark); transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}
.btn-red::after {
  content: ''; position: absolute; inset: 0; border-radius: 50px;
  box-shadow: 0 0 0 0 var(--red-glow); animation: pulse-ring 2s ease-out infinite;
}
.btn-dark {
  background: var(--dark); color: var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.btn-dark:hover { background: #2a2d45; transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--red); border: 2px solid var(--red);
}
.btn-outline:hover { background: var(--red); color: var(--white); transform: translateY(-2px); }
.btn-white {
  background: var(--white); color: var(--red); font-weight: 700;
}
.btn-white:hover { background: #f0f0f0; transform: translateY(-2px); }
.btn-sm { padding: 9px 20px; font-size: 13px; }
.btn-lg { padding: 16px 40px; font-size: 16px; }

/* ---- Pulse ring animation on primary CTA ---- */
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 var(--red-glow); }
  70% { box-shadow: 0 0 0 14px rgba(227,21,36,0); }
  100% { box-shadow: 0 0 0 0 rgba(227,21,36,0); }
}

/* ---- Blink animation (for online indicators etc.) ---- */
@keyframes blink {
  0%, 100% { opacity: 1; } 50% { opacity: 0.2; }
}
@keyframes blink-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.6); }
  50% { box-shadow: 0 0 0 6px rgba(16,185,129,0); }
}
.blink { animation: blink 1.4s ease-in-out infinite; }
.live-dot {
  display: inline-block; width: 10px; height: 10px; border-radius: 50%;
  background: #10B981; margin-right: 6px;
  animation: blink-dot 1.5s ease-out infinite;
}

/* ---- Section Labels ---- */
.section-label {
  font-size: 14px; font-weight: 600; color: var(--red); text-transform: uppercase;
  letter-spacing: 1px; display: block; margin-bottom: 10px;
}
.section-heading {
  font-size: clamp(26px, 4vw, 40px); font-weight: 800; color: var(--text-dark);
  line-height: 1.2; margin-bottom: 16px;
}
.section-heading-white {
  font-size: clamp(26px, 4vw, 40px); font-weight: 800; color: var(--white);
  line-height: 1.2; margin-bottom: 16px;
}
.section-subtext {
  font-size: 15px; color: var(--text-gray); line-height: 1.7; max-width: 600px;
}
.section-subtext-white { color: rgba(255,255,255,0.75); }

/* ---- Container ---- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }

/* ---- Red Circle Icon ---- */
.icon-circle {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--red); display: flex; align-items: center; justify-content: center;
  color: white; font-size: 20px; flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(227,21,36,0.3);
  transition: var(--transition);
}
.icon-circle-light {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(227,21,36,0.12); display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 20px; flex-shrink: 0; transition: var(--transition);
}
.icon-circle:hover, .icon-circle-light:hover {
  transform: scale(1.1); box-shadow: 0 6px 20px rgba(227,21,36,0.4);
}

/* ================================================================
   TOP INFO BAR
   ================================================================ */
.top-bar {
  background: var(--dark2); color: rgba(255,255,255,0.85);
  padding: 10px 0; font-size: 13px;
}
.top-bar .container {
  display: flex; align-items: center; justify-content: space-between;
}
.top-bar-left { display: flex; align-items: center; gap: 20px; }
.top-bar-left a { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.85); transition: var(--transition); }
.top-bar-left a:hover { color: var(--red); }
.top-bar-right { display: flex; align-items: center; gap: 14px; }
.top-bar-right a {
  color: rgba(255,255,255,0.7); font-size: 15px; transition: var(--transition);
  width: 30px; height: 30px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
}
.top-bar-right a:hover { color: var(--white); background: rgba(255,255,255,0.1); }

/* ================================================================
   NAVBAR
   ================================================================ */
.navbar {
  background: var(--white); padding: 0 0; position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07); transition: var(--transition);
}
.navbar .container {
  display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-text .logo-name { font-size: 18px; font-weight: 800; color: var(--text-dark); }
.nav-logo-text .logo-name span { color: var(--red); }
.nav-logo-text .logo-sub { font-size: 10px; font-weight: 500; color: var(--text-gray); letter-spacing: 2px; text-transform: uppercase; }
.logo-icon {
  width: 42px; height: 42px; background: var(--red); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; color: white;
  font-size: 20px; font-weight: 900; box-shadow: 0 4px 12px rgba(227,21,36,0.3);
}

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 8px 14px; font-size: 14px; font-weight: 500; color: var(--text-dark);
  border-radius: 6px; transition: var(--transition); position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--red); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: 2px; left: 14px; right: 14px;
  height: 2px; background: var(--red); border-radius: 2px;
}

.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-register {
  font-size: 14px; font-weight: 500; color: var(--text-dark);
  padding: 8px 14px; border-radius: 6px; transition: var(--transition);
}
.nav-register:hover { color: var(--red); }
.nav-login {
  background: var(--red); color: var(--white); padding: 10px 26px;
  border-radius: 50px; font-size: 14px; font-weight: 600;
  box-shadow: 0 4px 14px rgba(227,21,36,0.25); transition: var(--transition);
}
.nav-login:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: var(--shadow-red); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  width: 24px; height: 2px; background: var(--text-dark);
  border-radius: 2px; transition: var(--transition);
}

/* Mobile nav */
.nav-mobile {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 9999; flex-direction: column;
  padding: 30px 24px;
}
.nav-mobile.open { display: flex; }
.nav-mobile-close {
  align-self: flex-end; font-size: 24px; cursor: pointer;
  color: var(--text-dark); margin-bottom: 30px;
}
.nav-mobile-links { display: flex; flex-direction: column; gap: 4px; }
.nav-mobile-links a {
  padding: 14px 16px; font-size: 16px; font-weight: 500; color: var(--text-dark);
  border-radius: 8px; transition: var(--transition); border-bottom: 1px solid var(--light2);
}
.nav-mobile-links a:hover { color: var(--red); background: rgba(227,21,36,0.05); }
.nav-mobile-actions { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }

/* ================================================================
   ANNOUNCEMENT BAR
   ================================================================ */
.announce-bar {
  background: var(--dark); color: rgba(255,255,255,0.8);
  text-align: center; padding: 9px 20px; font-size: 13px; font-weight: 500;
}
.announce-bar span { color: var(--red); font-weight: 700; margin: 0 6px; }

/* ================================================================
   LIVE PRICE TICKER
   ================================================================ */
/* ─── LIVE PRICE TICKER ─────────────────────────────────────── */
.ticker-section {
  background: linear-gradient(90deg, #070910 0%, #0d0f1e 40%, #0d0f1e 60%, #070910 100%);
  padding: 0;
  overflow: hidden;
  position: relative;
  z-index: 10;
}
.ticker-glow-line {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(227,21,36,0.7) 25%, rgba(99,102,241,0.7) 75%, transparent 100%);
}
.ticker-glow-line--bottom {
  background: linear-gradient(90deg, transparent 0%, rgba(99,102,241,0.4) 25%, rgba(227,21,36,0.4) 75%, transparent 100%);
}
.ticker-wrapper {
  display: flex;
  align-items: stretch;
  height: 46px;
}
.ticker-label-box {
  display: flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, var(--red) 0%, #a50e1a 100%);
  color: white;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0 20px 0 16px;
  flex-shrink: 0;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
  position: relative;
  z-index: 2;
}
.ticker-live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 6px rgba(255,255,255,0.9);
  animation: blink-dot 1.1s ease-in-out infinite;
}
.ticker-mask {
  flex: 1;
  overflow: hidden;
  position: relative;
}
/* fade edges */
.ticker-mask::before,
.ticker-mask::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 1;
  pointer-events: none;
}
.ticker-mask::before { left: 0;  background: linear-gradient(to right, #0d0f1e, transparent); }
.ticker-mask::after  { right: 0; background: linear-gradient(to left,  #0d0f1e, transparent); }

.ticker-track {
  display: inline-flex;
  align-items: center;
  height: 46px;
  animation: ticker-scroll 55s linear infinite;
  white-space: nowrap;
  will-change: transform;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Individual item ── */
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 22px;
  border-right: 1px solid rgba(255,255,255,0.05);
  font-size: 13px;
  height: 46px;
  position: relative;
  cursor: default;
}
.ticker-item:hover { background: rgba(255,255,255,0.03); }

/* Type badge */
.ticker-badge {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 3px;
  line-height: 1.4;
}
.ticker-badge.synth  { background: rgba(227,21,36,0.18); color: #ff4d5e; border: 1px solid rgba(227,21,36,0.25); }
.ticker-badge.crypto { background: rgba(245,158,11,0.15); color: #fbbf24; border: 1px solid rgba(245,158,11,0.2); }
.ticker-badge.forex  { background: rgba(99,102,241,0.15); color: #818cf8; border: 1px solid rgba(99,102,241,0.2); }

/* Name */
.ticker-name {
  color: rgba(255,255,255,0.55);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* Price */
.ticker-price {
  color: white;
  font-weight: 700;
  font-size: 13.5px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.2px;
  min-width: 72px;
  display: inline-block;
}

/* Change */
.ticker-change {
  font-size: 11.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  min-width: 58px;
}
.ticker-change.up   { color: #10B981; }
.ticker-change.down { color: #F87171; }

/* ── Real-time flash animations ── */
@keyframes flash-green {
  0%   { color: white;   text-shadow: none; }
  15%  { color: #10B981; text-shadow: 0 0 14px rgba(16,185,129,0.9), 0 0 28px rgba(16,185,129,0.4); }
  100% { color: white;   text-shadow: none; }
}
@keyframes flash-red {
  0%   { color: white;   text-shadow: none; }
  15%  { color: #F87171; text-shadow: 0 0 14px rgba(248,113,113,0.9), 0 0 28px rgba(248,113,113,0.4); }
  100% { color: white;   text-shadow: none; }
}
@keyframes pop {
  0%,100% { transform: scale(1);    }
  30%     { transform: scale(1.08); }
}
.price-flash-up {
  animation: flash-green 1.2s ease, pop 0.4s ease;
}
.price-flash-down {
  animation: flash-red 1.2s ease, pop 0.4s ease;
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.hero {
  background: var(--white); overflow: hidden;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 560px;
}
.hero-left {
  background: var(--dark2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Crect width='56' height='100' fill='%2313152a'/%3E%3Cpath d='M28 66L0 50V17L28 1l28 16v33L28 66zm0-5.6l22.4-13V22.6L28 9.6 5.6 22.6v24.8L28 60.4z' fill='%23fff' fill-opacity='0.05'/%3E%3C/svg%3E");
  padding: 60px 50px; display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.hero-quote {
  font-size: clamp(20px, 3vw, 26px); font-weight: 800; color: white;
  line-height: 1.4; margin-bottom: 30px;
  animation: slideInLeft 0.8s ease both;
}
.hero-quote::before {
  content: '\201C'; font-size: 80px; color: var(--red); line-height: 0;
  position: absolute; top: 80px; left: 40px; opacity: 0.6;
  font-family: Georgia, serif;
}
.hero-author {
  font-family: 'Brush Script MT', cursive;
  font-size: 22px; color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
}
.hero-social {
  font-size: 13px; color: rgba(255,255,255,0.5);
  display: flex; align-items: center; gap: 6px;
}
.hero-play {
  width: 80px; height: 80px; border-radius: 50%; background: var(--red);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 28px; cursor: pointer;
  box-shadow: 0 0 0 0 var(--red-glow);
  animation: play-pulse 2s ease-out infinite;
  transition: var(--transition); margin-top: 30px;
}
@keyframes play-pulse {
  0% { box-shadow: 0 0 0 0 rgba(227,21,36,0.5); }
  70% { box-shadow: 0 0 0 20px rgba(227,21,36,0); }
  100% { box-shadow: 0 0 0 0 rgba(227,21,36,0); }
}
.hero-play:hover { transform: scale(1.1); }
.hero-chart-bg {
  position: absolute; bottom: 0; right: 0; left: 0; height: 120px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 80 L40 60 L80 70 L120 40 L160 55 L200 30 L240 45 L280 20 L320 35 L360 15 L400 25 L400 120 L0 120Z' fill='rgba(227,21,36,0.1)'/%3E%3Cpath d='M0 80 L40 60 L80 70 L120 40 L160 55 L200 30 L240 45 L280 20 L320 35 L360 15 L400 25' fill='none' stroke='%23E31524' stroke-width='2' opacity='0.5'/%3E%3C/svg%3E") no-repeat bottom;
  background-size: cover; opacity: 0.7;
}

.hero-right {
  background: var(--white); padding: 60px 50px;
  display: flex; flex-direction: column; justify-content: center;
  animation: slideInRight 0.8s ease both;
}
.hero-features { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.hero-feature-item { display: flex; align-items: flex-start; gap: 14px; }
.hero-feature-item .icon-circle-light { width: 44px; height: 44px; font-size: 18px; }
.hero-feature-item h4 { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 2px; }
.hero-feature-item p { font-size: 13px; color: var(--text-gray); }
.hero-cta-row { margin-top: 32px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ================================================================
   SERVICES SECTION
   ================================================================ */
.services-section { padding: 80px 0; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px;
}
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--light2); overflow: hidden;
  box-shadow: var(--shadow); transition: var(--transition); position: relative;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 16px 48px rgba(0,0,0,0.12); }
.service-card-image {
  width: 100%; height: 220px; object-fit: cover;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.service-card-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.7) 100%);
}
.service-card-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--red); color: white; font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 20px; text-transform: uppercase;
}
.service-img-placeholder {
  width: 100%; height: 220px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #1a1c30 0%, #0e1020 100%); position: relative;
}
.service-img-placeholder i { font-size: 60px; color: rgba(255,255,255,0.15); }
.service-card-icon-wrap {
  display: flex; justify-content: center; margin-top: -26px; position: relative; z-index: 2;
}
.service-card-icon-wrap .icon-circle { width: 52px; height: 52px; font-size: 22px; }
.service-card-body { padding: 20px 24px 28px; text-align: center; }
.service-card-title { font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.service-card-sub { font-size: 13px; color: var(--red); font-weight: 600; margin-bottom: 10px; }
.service-card-desc { font-size: 13px; color: var(--text-gray); line-height: 1.65; }

/* ================================================================
   WHY CHOOSE US SECTION
   ================================================================ */
.why-section { overflow: hidden; }
.why-inner {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 500px;
}
.why-left {
  padding: 70px 60px 70px 40px;
  display: flex; flex-direction: column; justify-content: center;
}
.why-features { margin-top: 30px; display: flex; flex-direction: column; gap: 24px; }
.why-feature { display: flex; align-items: flex-start; gap: 16px; }
.why-feature .icon-circle { width: 48px; height: 48px; font-size: 18px; flex-shrink: 0; }
.why-feature h4 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.why-feature p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; }
.why-right {
  background: var(--dark);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Crect width='56' height='100' fill='%231b1d2e'/%3E%3Cpath d='M28 66L0 50V17L28 1l28 16v33L28 66zm0-5.6l22.4-13V22.6L28 9.6 5.6 22.6v24.8L28 60.4z' fill='%23fff' fill-opacity='0.06'/%3E%3C/svg%3E");
  padding: 50px 40px; display: flex; flex-direction: column; justify-content: center; gap: 20px;
}
.why-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); padding: 24px; transition: var(--transition);
}
.why-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(227,21,36,0.4); }
.why-card h4 { font-size: 16px; font-weight: 700; color: white; margin-bottom: 6px; }
.why-card p { font-size: 13px; color: rgba(255,255,255,0.6); }
.why-card .tag { display: inline-block; background: var(--red); color: white; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 10px; margin-top: 8px; }

/* ================================================================
   STATS SECTION
   ================================================================ */
.stats-section { padding: 60px 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.stat-item {
  padding: 40px 20px; text-align: center; border-right: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.03); }
.stat-number {
  font-size: clamp(32px, 5vw, 50px); font-weight: 900; color: var(--red);
  line-height: 1; margin-bottom: 8px;
  text-shadow: 0 0 30px rgba(227,21,36,0.4);
}
.stat-label { font-size: 14px; color: rgba(255,255,255,0.75); font-weight: 500; }

/* ================================================================
   HOW IT WORKS / STEPS
   ================================================================ */
.steps-section { padding: 80px 0; }
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 60px;
  position: relative;
}
.steps-grid::before {
  content: ''; position: absolute; top: 55px; left: 20%; right: 20%;
  height: 2px; border-top: 2px dashed var(--red);
  background: transparent; z-index: 0;
}
.step-item { text-align: center; position: relative; z-index: 1; }
.step-circle-outer {
  width: 100px; height: 100px; border-radius: 50%;
  border: 2px dashed var(--red); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  animation: spin-slow 20s linear infinite;
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.step-circle-inner {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--red); display: flex; align-items: center; justify-content: center;
  flex-direction: column; color: white;
  box-shadow: 0 4px 20px rgba(227,21,36,0.4);
  animation: spin-slow 20s linear infinite reverse;
}
.step-number { font-size: 22px; font-weight: 900; line-height: 1; }
.step-text { font-size: 9px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.step-title { font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.step-desc { font-size: 13px; color: var(--text-gray); line-height: 1.65; }

/* ================================================================
   PRICING SECTION
   ================================================================ */
.pricing-section { padding: 80px 0; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 50px;
}
.pricing-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 2px solid var(--light2); padding: 36px 28px;
  transition: var(--transition); position: relative; overflow: hidden;
  box-shadow: var(--shadow);
}
.pricing-card:hover { transform: translateY(-8px); border-color: var(--red); box-shadow: var(--shadow-red); }
.pricing-card.popular {
  border-color: var(--red); background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
  transform: scale(1.03);
}
.pricing-card.popular:hover { transform: scale(1.03) translateY(-8px); }
.popular-badge {
  position: absolute; top: 0; right: 28px;
  background: var(--red); color: white; font-size: 11px; font-weight: 700;
  padding: 5px 14px; border-radius: 0 0 10px 10px; text-transform: uppercase;
}
.pricing-plan { font-size: 13px; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.pricing-price { font-size: 42px; font-weight: 900; color: var(--text-dark); margin-bottom: 4px; line-height: 1; }
.pricing-price sup { font-size: 18px; vertical-align: super; }
.pricing-period { font-size: 13px; color: var(--text-gray); margin-bottom: 24px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-dark); }
.pricing-features li i { color: var(--red); font-size: 14px; }
.pricing-features li.disabled { color: var(--text-light); text-decoration: line-through; }
.pricing-features li.disabled i { color: var(--text-light); }
.pricing-divider { border: none; border-top: 1px solid var(--light2); margin: 20px 0; }

/* ================================================================
   TESTIMONIALS / RESULTS
   ================================================================ */
.testimonials-section { padding: 80px 0; }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px;
}
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 28px;
  border: 1px solid var(--light2); box-shadow: var(--shadow); transition: var(--transition);
}
.testimonial-card:hover { border-color: var(--red); transform: translateY(-4px); }
.testimonial-rating { color: #F59E0B; font-size: 14px; margin-bottom: 14px; }
.testimonial-text { font-size: 14px; color: var(--text-gray); line-height: 1.7; margin-bottom: 18px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--red); display: flex; align-items: center; justify-content: center;
  color: white; font-size: 16px; font-weight: 700; flex-shrink: 0;
}
.testimonial-name { font-size: 14px; font-weight: 700; color: var(--text-dark); }
.testimonial-loc { font-size: 12px; color: var(--text-gray); }
.testimonial-result { font-size: 13px; color: #10B981; font-weight: 600; margin-top: 4px; }

/* ================================================================
   CTA BANNER
   ================================================================ */
.cta-section { padding: 70px 0; }
.cta-inner {
  border-radius: 20px; padding: 60px 50px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  display: flex; align-items: center; justify-content: space-between; gap: 30px;
  position: relative; overflow: hidden;
}
.cta-inner::before {
  content: ''; position: absolute; top: -50px; right: -50px;
  width: 250px; height: 250px; border-radius: 50%;
  background: radial-gradient(circle, rgba(227,21,36,0.2), transparent 70%);
}
.cta-text h2 { font-size: clamp(22px, 3vw, 32px); font-weight: 800; color: white; margin-bottom: 10px; }
.cta-text p { font-size: 15px; color: rgba(255,255,255,0.7); max-width: 500px; }
.cta-buttons { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* ================================================================
   FOOTER
   ================================================================ */
.footer { padding: 60px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.footer-desc { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 260px; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 14px; transition: var(--transition);
}
.footer-social:hover { background: var(--red); border-color: var(--red); color: white; transform: translateY(-2px); }
.footer-col h4 { font-size: 15px; font-weight: 700; color: white; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--red); border-radius: 2px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.55); transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-col ul li a:hover { color: var(--red); padding-left: 4px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contact-item i { color: var(--red); font-size: 15px; margin-top: 1px; flex-shrink: 0; }
.footer-contact-item span { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.5; }
.footer-contact-item a { font-size: 13px; color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-contact-item a:hover { color: var(--red); }
.footer-bottom {
  text-align: center; padding: 20px;
  font-size: 13px; color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: var(--red); }
.footer-bottom a:hover { text-decoration: underline; }

/* ================================================================
   AUTH PAGES
   ================================================================ */
.auth-page {
  min-height: 100vh; display: flex;
}
.auth-left {
  width: 45%; background: var(--dark2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Crect width='56' height='100' fill='%2313152a'/%3E%3Cpath d='M28 66L0 50V17L28 1l28 16v33L28 66zm0-5.6l22.4-13V22.6L28 9.6 5.6 22.6v24.8L28 60.4z' fill='%23fff' fill-opacity='0.05'/%3E%3C/svg%3E");
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 60px 50px; position: relative; overflow: hidden;
}
.auth-left-content { text-align: center; max-width: 360px; }
.auth-left h2 { font-size: 28px; font-weight: 800; color: white; margin-bottom: 14px; }
.auth-left p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 30px; }
.auth-left-stats { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
.auth-stat { text-align: center; }
.auth-stat .num { font-size: 26px; font-weight: 900; color: var(--red); }
.auth-stat .lbl { font-size: 11px; color: rgba(255,255,255,0.5); }
.auth-right {
  flex: 1; background: var(--white); display: flex; align-items: center; justify-content: center;
  padding: 60px 40px;
}
.auth-form-box { width: 100%; max-width: 420px; }
.auth-form-box h2 { font-size: 26px; font-weight: 800; color: var(--text-dark); margin-bottom: 6px; }
.auth-form-box p { font-size: 14px; color: var(--text-gray); margin-bottom: 30px; }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.form-control {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--light2);
  border-radius: var(--radius); font-size: 14px; color: var(--text-dark);
  background: var(--white); transition: var(--transition);
}
.form-control:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(227,21,36,0.1); }
.form-control::placeholder { color: var(--text-light); }
.input-icon-wrap { position: relative; }
.input-icon-wrap .form-control { padding-left: 44px; }
.input-icon-wrap .input-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--text-light); font-size: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-check { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.form-check input { width: 16px; height: 16px; accent-color: var(--red); }
.form-check label { font-size: 13px; color: var(--text-gray); }
.form-check a { color: var(--red); font-weight: 600; }
.auth-divider { text-align: center; position: relative; margin: 20px 0; }
.auth-divider::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: var(--light2); }
.auth-divider span { position: relative; background: white; padding: 0 12px; font-size: 12px; color: var(--text-light); }
.auth-switch { text-align: center; margin-top: 20px; font-size: 14px; color: var(--text-gray); }
.auth-switch a { color: var(--red); font-weight: 600; }
.auth-switch a:hover { text-decoration: underline; }
.forgot-link { display: block; text-align: right; font-size: 13px; color: var(--red); margin-top: 6px; font-weight: 500; }
.btn-full { width: 100%; justify-content: center; }
.auth-back-link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; color: var(--text-gray); margin-bottom: 28px; transition: var(--transition); }
.auth-back-link:hover { color: var(--red); }

/* ================================================================
   PAGE HERO (inner pages)
   ================================================================ */
.page-hero {
  padding: 70px 0;
  background: var(--dark2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Crect width='56' height='100' fill='%2313152a'/%3E%3Cpath d='M28 66L0 50V17L28 1l28 16v33L28 66zm0-5.6l22.4-13V22.6L28 9.6 5.6 22.6v24.8L28 60.4z' fill='%23fff' fill-opacity='0.05'/%3E%3C/svg%3E");
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}
.page-hero h1 { font-size: clamp(28px, 4vw, 44px); font-weight: 900; color: white; margin-bottom: 10px; }
.page-hero p { font-size: 15px; color: rgba(255,255,255,0.65); max-width: 500px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 14px; }
.breadcrumb a { font-size: 13px; color: rgba(255,255,255,0.5); transition: var(--transition); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { color: rgba(255,255,255,0.3); font-size: 12px; }
.breadcrumb .current { font-size: 13px; color: var(--red); font-weight: 600; }

/* ================================================================
   CART / CHECKOUT
   ================================================================ */
.checkout-page { padding: 60px 0; background: var(--light); min-height: 60vh; }
.checkout-grid { display: grid; grid-template-columns: 1fr 380px; gap: 28px; }
.checkout-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow); border: 1px solid var(--light2);
}
.checkout-card h3 { font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 24px; padding-bottom: 14px; border-bottom: 1px solid var(--light2); }
.order-summary-item { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--light2); font-size: 14px; }
.order-summary-item:last-child { border-bottom: none; }
.order-total { font-size: 16px; font-weight: 700; color: var(--text-dark); }
.order-total .amount { color: var(--red); font-size: 22px; }

/* ================================================================
   PAYMENT SUCCESS / FAILED
   ================================================================ */
.payment-result { min-height: 70vh; display: flex; align-items: center; justify-content: center; padding: 60px 20px; }
.payment-result-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 60px 50px;
  text-align: center; max-width: 480px; width: 100%; box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.result-icon { width: 90px; height: 90px; border-radius: 50%; margin: 0 auto 24px; display: flex; align-items: center; justify-content: center; font-size: 36px; }
.result-success { background: rgba(16,185,129,0.1); color: #10B981; }
.result-failed { background: rgba(239,68,68,0.1); color: #EF4444; }
.payment-result-card h2 { font-size: 26px; font-weight: 800; color: var(--text-dark); margin-bottom: 12px; }
.payment-result-card p { font-size: 15px; color: var(--text-gray); margin-bottom: 30px; line-height: 1.6; }

/* ================================================================
   FAQ PAGE
   ================================================================ */
.faq-section { padding: 80px 0; }
.faq-list { max-width: 800px; margin: 50px auto 0; }
.faq-item {
  background: var(--white); border-radius: var(--radius); margin-bottom: 12px;
  border: 1px solid var(--light2); overflow: hidden; transition: var(--transition);
}
.faq-item.open { border-color: var(--red); box-shadow: 0 4px 20px rgba(227,21,36,0.1); }
.faq-question {
  padding: 20px 24px; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-size: 15px; font-weight: 600; color: var(--text-dark);
  transition: var(--transition);
}
.faq-item.open .faq-question { color: var(--red); }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 14px; transition: var(--transition); }
.faq-item.open .faq-icon { background: var(--red); color: white; transform: rotate(45deg); }
.faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; }
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 20px; }
.faq-answer p { font-size: 14px; color: var(--text-gray); line-height: 1.7; }

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-page { padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info { display: flex; flex-direction: column; gap: 24px; margin-top: 20px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-info-item .icon-circle { width: 44px; height: 44px; font-size: 18px; flex-shrink: 0; }
.contact-info-item h4 { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { font-size: 14px; color: var(--text-gray); transition: var(--transition); }
.contact-info-item a:hover { color: var(--red); }
.contact-form-card { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); border: 1px solid var(--light2); }
textarea.form-control { resize: vertical; min-height: 130px; padding-top: 13px; }

/* ================================================================
   TERMS / PRIVACY
   ================================================================ */
.legal-page { padding: 60px 0; }
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { font-size: 22px; font-weight: 800; color: var(--text-dark); margin: 32px 0 12px; }
.legal-content h3 { font-size: 18px; font-weight: 700; color: var(--text-dark); margin: 24px 0 10px; }
.legal-content p { font-size: 15px; color: var(--text-gray); line-height: 1.8; margin-bottom: 14px; }
.legal-content ul { margin-left: 20px; margin-bottom: 14px; }
.legal-content ul li { font-size: 15px; color: var(--text-gray); line-height: 1.8; list-style: disc; }
.legal-updated { font-size: 13px; color: var(--text-light); margin-bottom: 28px; }

/* ================================================================
   ABOUT PAGE
   ================================================================ */
.about-owner { padding: 80px 0; }
.about-owner-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-owner-img {
  position: relative; border-radius: 20px; overflow: hidden;
  background: linear-gradient(135deg, var(--dark), var(--dark2));
  min-height: 420px; display: flex; align-items: center; justify-content: center;
}
.about-owner-img::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: var(--red);
}
.about-owner-placeholder { font-size: 80px; color: rgba(255,255,255,0.1); }
.about-values { padding: 80px 0; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.value-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px 24px;
  border: 1px solid var(--light2); text-align: center; transition: var(--transition);
}
.value-card:hover { border-color: var(--red); transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.08); }
.value-card .icon-circle { margin: 0 auto 16px; }
.value-card h4 { font-size: 17px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.value-card p { font-size: 13px; color: var(--text-gray); line-height: 1.65; }

/* ================================================================
   SCROLL ANIMATIONS
   ================================================================ */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ================================================================
   ALERT / NOTICE BOXES
   ================================================================ */
.alert { padding: 14px 18px; border-radius: var(--radius); font-size: 14px; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.alert-success { background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.2); color: #047857; }
.alert-error { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.2); color: #DC2626; }
.alert-info { background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.2); color: #2563EB; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .checkout-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .why-left { padding: 50px 40px 50px 20px; }
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-left { padding: 50px 24px; min-height: 320px; }
  .hero-right { padding: 40px 24px; }
  .why-inner { grid-template-columns: 1fr; }
  .why-left { padding: 50px 24px; }
  .why-right { padding: 40px 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.popular { transform: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-owner-inner { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; padding: 40px 28px; }
  .footer-grid { grid-template-columns: 1fr; }
  .auth-page { flex-direction: column; }
  .auth-left { width: 100%; padding: 40px 24px; }
  .auth-right { padding: 40px 24px; }
  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .top-bar-left { flex-direction: column; gap: 4px; align-items: flex-start; }
  .section-pad { padding: 50px 0; }
  .hero-quote::before { font-size: 50px; top: 30px; left: 20px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .cta-buttons { flex-direction: column; }
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .hero-cta-row .btn { justify-content: center; }
}
