/* ========================================
   Trade Manager MT5 — Premium Landing Page
   ======================================== */

/* CSS Custom Properties */
:root {
  --gold: #D4A826;
  --gold-light: #f0d060;
  --gold-gradient: linear-gradient(135deg, #D4A826, #f0d060);
  --navy-deep: #0d1b2a;
  --navy-medium: #1b2d4a;
  --bg-dark: #060a13;
  --surface: #0d1422;
  --border: #1a2744;
  --green: #22c55e;
  --red: #ef4444;
  --text-primary: #f0f0f0;
  --text-secondary: #8899aa;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;
}

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--bg-dark);
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 4px;
}

::selection {
  background: var(--gold);
  color: #000;
}

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

ul { list-style: none; }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Gold Gradient Text */
.gold-gradient-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #000;
}
.btn-gold:hover {
  filter: brightness(1.15);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 168, 38, 0.3);
  text-decoration: none;
  color: #000;
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: #000;
  text-decoration: none;
}

.btn-dark {
  background: #000;
  color: var(--gold);
  border: 2px solid var(--gold);
  font-size: 1.1rem;
  padding: 16px 40px;
}
.btn-dark:hover {
  background: var(--gold);
  color: #000;
  text-decoration: none;
}

.btn-large {
  padding: 18px 48px;
  font-size: 1.15rem;
}

/* Section Titles */
.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.15rem;
  margin-bottom: 48px;
}

/* ========== NAVIGATION ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(6, 10, 19, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  text-decoration: none;
  display: flex;
  gap: 6px;
}
.nav-logo:hover { text-decoration: none; }
.logo-gold { color: var(--gold); }
.logo-white { color: var(--text-primary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--gold-gradient);
  color: #000 !important;
  padding: 8px 20px !important;
  border-radius: 6px;
  font-weight: 700 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  filter: brightness(1.15);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== IMAGE STYLES ========== */
.hero-img {
  width: 100%;
  max-width: 900px;
  border-radius: 12px;
  border: 1px solid rgba(212, 168, 38, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  margin: 2rem auto;
  display: block;
}

.step-img, .gallery-img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(212, 168, 38, 0.3);
  transition: transform 0.3s ease;
}

.step-img:hover, .gallery-img:hover {
  transform: scale(1.02);
  border-color: rgba(212, 168, 38, 0.6);
}

.nav-logo img {
  vertical-align: middle;
  margin-right: 4px;
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 120px 0 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--navy-deep) 50%, var(--bg-dark) 100%);
  overflow: hidden;
}

.hero-bg-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    repeating-linear-gradient(
      135deg,
      transparent,
      transparent 200px,
      rgba(212, 168, 38, 0.03) 200px,
      rgba(212, 168, 38, 0.03) 201px
    );
  animation: bgShift 20s linear infinite;
  pointer-events: none;
}

@keyframes bgShift {
  0% { transform: translateX(0) translateY(0); }
  100% { transform: translateX(100px) translateY(100px); }
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.trust-badges {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 40px;
}
.trust-badges strong {
  color: var(--text-primary);
}
.trust-badges p {
  margin-bottom: 4px;
}

.hero-image {
  max-width: 800px;
  margin: 0 auto;
}

.stats-bar {
  background: rgba(13, 20, 34, 0.9);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
  margin-top: 48px;
}

.stats-bar-inner {
  display: flex;
  justify-content: space-around;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 16px;
}

.stat-item {
  text-align: center;
  min-width: 120px;
}

.stat-number {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-suffix {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  color: var(--gold);
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* ========== PROBLEM / SOLUTION ========== */
.problem-solution {
  padding: 100px 0;
}

.ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.ps-column {
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.ps-problems {
  background: rgba(239, 68, 68, 0.05);
  border-color: rgba(239, 68, 68, 0.2);
}

.ps-solutions {
  background: rgba(34, 197, 94, 0.05);
  border-color: rgba(34, 197, 94, 0.2);
}

.ps-heading {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.ps-heading-red { color: var(--red); }
.ps-heading-green { color: var(--green); }

.ps-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  font-size: 1rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.ps-list li:last-child { border-bottom: none; }

.ps-icon {
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.ps-icon-red { color: var(--red); }
.ps-icon-green { color: var(--green); }

/* ========== FEATURES ========== */
.features {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--navy-deep) 100%);
}

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

.feature-card {
  background: rgba(13, 20, 34, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(212, 168, 38, 0.1);
}

.feature-icon {
  margin-bottom: 20px;
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.feature-card ul {
  list-style: none;
}

.feature-card li {
  color: var(--text-secondary);
  font-size: 0.95rem;
  padding: 6px 0;
  padding-left: 16px;
  position: relative;
}

.feature-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* ========== HOW IT WORKS ========== */
.how-it-works {
  padding: 100px 0;
}

.steps-timeline {
  display: flex;
  gap: 24px;
  margin-top: 48px;
  position: relative;
}

.steps-timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 40px;
  right: 40px;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.step {
  flex: 1;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #000;
  font-family: var(--font-mono);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
}

.step-content {
  text-align: center;
}

.step-content h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.step-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

/* ========== BREACH SECTION ========== */
.breach-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--navy-deep) 50%, var(--bg-dark) 100%);
}

.breach-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
}

.flow-step {
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
}

.flow-gold { background: var(--gold); color: #000; }
.flow-blue { background: #2563eb; color: #fff; }
.flow-orange { background: #f59e0b; color: #000; }
.flow-green { background: var(--green); color: #000; }
.flow-bright-green { background: #4ade80; color: #000; }

.flow-arrow {
  color: var(--text-secondary);
  font-size: 1.5rem;
}

.breach-explanation {
  max-width: 800px;
  margin: 0 auto 32px;
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
}

.breach-callout {
  max-width: 700px;
  margin: 0 auto 40px;
  padding: 24px;
  border: 2px solid var(--gold);
  border-radius: 12px;
  background: rgba(212, 168, 38, 0.05);
  text-align: center;
  color: var(--text-secondary);
}

.breach-callout strong {
  color: var(--gold);
}

.breach-image {
  max-width: 700px;
  margin: 0 auto;
}

/* ========== GALLERY ========== */
.gallery {
  padding: 100px 0;
}

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

.gallery-item {
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.03);
}

.gallery-item .img-placeholder {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color 0.3s ease;
}

.gallery-item:hover .img-placeholder {
  border-color: var(--gold);
}

.gallery-caption {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 12px;
}

/* ========== IMAGE PLACEHOLDERS ========== */
.img-placeholder {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.img-placeholder .placeholder-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
  text-align: center;
  padding: 20px;
  z-index: 1;
}

.img-placeholder img + .placeholder-text {
  display: none;
}

.img-placeholder-fallback .placeholder-text {
  display: block !important;
}

/* ========== TICKER ========== */
.ticker-section {
  padding: 32px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.ticker-wrapper {
  overflow: hidden;
  width: 100%;
}

.ticker-track {
  display: flex;
  gap: 24px;
  white-space: nowrap;
  animation: tickerScroll 30s linear infinite;
  width: max-content;
}

.ticker-track span {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}

.ticker-dot {
  color: var(--text-secondary) !important;
  font-weight: 400 !important;
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========== PRICING ========== */
.pricing {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--navy-deep) 50%, var(--bg-dark) 100%);
}

.pricing-card {
  max-width: 480px;
  margin: 48px auto 0;
  background: var(--surface);
  border: 2px solid var(--gold);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
}

.pricing-badge {
  display: inline-block;
  background: var(--gold-gradient);
  color: #000;
  padding: 6px 20px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.pricing-product {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 24px;
}

.pricing-features {
  text-align: left;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.check-gold {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.pricing-price {
  margin-bottom: 24px;
}

.price-amount {
  font-family: var(--font-mono);
  font-size: 3.5rem;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-label {
  display: block;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 4px;
}

.pricing-trust {
  margin-top: 20px;
  color: var(--text-secondary);
  font-size: 0.85rem;
}
.pricing-trust p {
  margin: 4px 0;
}

/* ========== FAQ ========== */
.faq {
  padding: 100px 0;
}

.faq-list {
  max-width: 800px;
  margin: 48px auto 0;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item:hover,
.faq-item.active {
  border-color: var(--gold);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: var(--surface);
  border: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(212, 168, 38, 0.05);
}

.faq-icon {
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ========== CTA BANNER ========== */
.cta-banner {
  padding: 80px 0;
  background: var(--gold-gradient);
  text-align: center;
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: #000;
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(0,0,0,0.7);
  font-size: 1.15rem;
  margin-bottom: 32px;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.footer-col p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-col h4 {
  color: var(--text-primary);
  font-size: 1rem;
  margin-bottom: 16px;
  font-weight: 700;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul a {
  color: var(--text-secondary);
  font-size: 0.9rem;
}
.footer-col ul a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 40px;
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin: 4px 0;
}

.footer-disclaimer {
  font-size: 0.8rem !important;
  max-width: 700px;
  margin: 8px auto 0 !important;
  line-height: 1.6;
}

/* ========== LEGAL PAGES ========== */
.legal-page {
  padding: 120px 0 80px;
  min-height: 100vh;
}

.legal-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 8px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legal-meta {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin: 36px 0 12px;
  color: var(--gold);
}

.legal-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul {
  margin: 12px 0 16px 24px;
  list-style: disc;
}

.legal-content li {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 6px;
}

/* ========== LIGHTBOX ========== */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox.open {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 2001;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 12px;
  border: 2px solid var(--gold);
}

/* ========== 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);
}

/* Stagger delay for feature cards */
.features-grid .feature-card:nth-child(1) { transition-delay: 0s; }
.features-grid .feature-card:nth-child(2) { transition-delay: 0.1s; }
.features-grid .feature-card:nth-child(3) { transition-delay: 0.2s; }
.features-grid .feature-card:nth-child(4) { transition-delay: 0.3s; }
.features-grid .feature-card:nth-child(5) { transition-delay: 0.4s; }
.features-grid .feature-card:nth-child(6) { transition-delay: 0.5s; }

/* ========== RESPONSIVE ========== */

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-timeline {
    flex-direction: column;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .steps-timeline::before {
    top: 0;
    bottom: 0;
    left: 28px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
  }

  .step-number {
    margin: 0;
    flex-shrink: 0;
  }

  .step-content {
    text-align: left;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--surface);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 24px;
    transition: right 0.3s ease;
    border-left: 1px solid var(--border);
  }

  .nav-links.open {
    right: 0;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .ps-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .breach-flow {
    flex-direction: column;
    align-items: center;
  }

  .flow-arrow {
    transform: rotate(90deg);
  }

  .pricing-card {
    padding: 32px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cta-banner h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .stats-bar-inner {
    flex-direction: column;
    gap: 20px;
  }

  .pricing-card {
    margin-top: 32px;
  }

  .price-amount {
    font-size: 2.5rem;
  }
}
