/* ╔══════════════════════════════════════════════════════╗
   ║  MG POS — Main Stylesheet (css/style.css)            ║
   ║  Created by MG-Mobiles © 2021                        ║
   ║                                                      ║
   ║  Table of Contents:                                  ║
   ║   1. Design Tokens (colors, fonts, spacing)          ║
   ║   2. CSS Reset & Base                                ║
   ║   3. Utility Classes                                 ║
   ║   4. Loader                                          ║
   ║   5. 3D Canvas Background                           ║
   ║   6. Navigation                                      ║
   ║   7. Hero Section                                    ║
   ║   8. Marquee Strip                                   ║
   ║   9. Features Section                                ║
   ║  10. Screenshots Section                             ║
   ║  11. Shortcuts Section                               ║
   ║  12. Poster Break                                    ║
   ║  13. Pricing Section                                 ║
   ║  14. About Section                                   ║
   ║  15. CTA Section                                     ║
   ║  16. Footer                                          ║
   ║  17. Scroll Reveal Animations                        ║
   ║  18. Responsive (Mobile)                             ║
   ╚══════════════════════════════════════════════════════╝ */


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   1. DESIGN TOKENS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
:root {
  /* — Color Palette — */
  --green:        #2ECC8A;   /* Primary brand green   */
  --green-dark:   #1A9E65;   /* Darker green shade    */
  --green-light:  #4EDDAA;   /* Lighter green tint    */
  --green-glow:   rgba(46, 204, 138, 0.20);
  --green-glow-s: rgba(46, 204, 138, 0.08);

  --bg:           #080D18;   /* Deepest background    */
  --bg-2:         #0C1220;   /* Cards & surfaces      */
  --bg-3:         #111827;   /* Elevated surfaces     */
  --bg-4:         #162030;   /* Hover states          */

  --white:        #FFFFFF;
  --text:         #E2EAF4;   /* Body text             */
  --muted:        #7A90A8;   /* Secondary text        */
  --dim:          #3A5060;   /* Tertiary/disabled     */
  --border:       rgba(46, 204, 138, 0.14);
  --border-dim:   rgba(255, 255, 255, 0.06);

  /* — Typography — */
  --font-display: 'Space Grotesk', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  /* — Spacing — */
  --section-pad:  clamp(80px, 10vw, 140px);
  --container:    1200px;
  --radius:       16px;
  --radius-sm:    8px;
  --radius-lg:    24px;

  /* — Shadows — */
  --shadow-card:  0 4px 32px rgba(0,0,0,0.5), 0 0 0 1px var(--border);
  --shadow-glow:  0 0 60px var(--green-glow);
  --shadow-btn:   0 8px 32px rgba(46, 204, 138, 0.35);

  /* — Transitions — */
  --ease:  cubic-bezier(0.16, 1, 0.3, 1);
  --fast:  0.18s var(--ease);
  --slow:  0.45s var(--ease);
}


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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   3. UTILITIES
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.text-green { color: var(--green); }

.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--white);
  margin-bottom: 20px;
}

.section-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 60px;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 100px;
  box-shadow: var(--shadow-btn);
  transition: transform var(--fast), box-shadow var(--fast), filter var(--fast);
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 40px rgba(46, 204, 138, 0.5);
  filter: brightness(1.1);
}
.btn-primary.large { font-size: 17px; padding: 18px 40px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 100px;
  border: 1px solid var(--border-dim);
  transition: border-color var(--fast), color var(--fast), transform var(--fast);
}
.btn-ghost:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-1px);
}
.btn-ghost.large { font-size: 17px; padding: 18px 40px; }
.btn-ghost.full-width,
.btn-primary.full-width { width: 100%; justify-content: center; }

kbd {
  font-family: var(--font-mono);
  font-size: 11px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2px 7px;
  color: var(--green);
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   4. LOADER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.loader-logo {
  width: 80px;
  height: 80px;
  border-radius: 22px;
  animation: loader-pulse 1.4s ease-in-out infinite;
}
@keyframes loader-pulse {
  0%, 100% { transform: scale(1);    opacity: 1; }
  50%       { transform: scale(1.08); opacity: 0.8; }
}
.loader-bar {
  width: 200px;
  height: 3px;
  background: var(--bg-3);
  border-radius: 100px;
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green-dark), var(--green-light));
  border-radius: 100px;
  animation: loader-fill 2s ease forwards;
}
@keyframes loader-fill {
  from { width: 0%; }
  to   { width: 100%; }
}
.loader-text {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 2px;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   5. 3D CANVAS BACKGROUND
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#three-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   6. NAVIGATION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--slow), backdrop-filter var(--slow), border-color var(--slow);
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(8, 13, 24, 0.85);
  backdrop-filter: blur(20px);
  border-color: var(--border-dim);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px clamp(20px, 5vw, 60px);
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  flex-shrink: 0;
}
.nav-logo img { width: 36px; height: 36px; border-radius: 10px; }
.nav-logo strong { color: var(--green); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--fast);
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 10px 22px;
  border-radius: 100px;
  flex-shrink: 0;
  transition: box-shadow var(--fast), transform var(--fast);
}
.nav-cta:hover {
  box-shadow: var(--shadow-btn);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--fast);
}
.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;
  background: var(--bg-2);
  border-top: 1px solid var(--border-dim);
  padding: 20px clamp(20px, 5vw, 60px);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 16px; }
.mobile-menu a { font-size: 16px; font-weight: 500; color: var(--text); }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   7. HERO SECTION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 140px clamp(20px, 5vw, 80px) 80px;
  max-width: calc(var(--container) + 120px);
  margin: 0 auto;
  z-index: 1;
}

/* Ambient glows */
.glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.glow-1 {
  top: -100px; left: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(46,204,138,0.12) 0%, transparent 70%);
}
.glow-2 {
  top: 40%; right: -50px;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(46,204,138,0.08) 0%, transparent 70%);
}
.glow-3 {
  bottom: 0; left: 40%;
  width: 400px; height: 400px;
  background: radial-gradient(ellipse, rgba(46,204,138,0.06) 0%, transparent 70%);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 100px;
  background: var(--green-glow-s);
  width: fit-content;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(52px, 7vw, 88px);
  line-height: 1.0;
  letter-spacing: -3px;
  display: flex;
  flex-direction: column;
}
.line-white { color: var(--white); }
.line-green { color: var(--green); }

.hero-sub {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
}
.hero-sub strong { color: var(--white); font-weight: 600; }

.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; }

.hero-stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 20px 0;
  border-top: 1px solid var(--border-dim);
}
.stat { text-align: center; padding: 0 24px; }
.stat:first-child { padding-left: 0; }
.stat-val {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--green);
}
.stat-label {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.5px;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border-dim);
}

/* Hero screen */
.hero-screen-wrap {
  position: relative;
  z-index: 2;
  transform-style: preserve-3d;
  perspective: 1000px;
}
.screen-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(ellipse, var(--green-glow) 0%, transparent 70%);
  border-radius: 24px;
  pointer-events: none;
  animation: screen-glow-pulse 3s ease-in-out infinite;
}
@keyframes screen-glow-pulse {
  0%, 100% { opacity: 0.7; }
  50%       { opacity: 1; }
}
.screen-chrome {
  background: #0C1525;
  border-radius: 12px 12px 0 0;
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-bottom: none;
  display: flex;
  align-items: center;
  gap: 12px;
}
.chrome-dots { display: flex; gap: 7px; }
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot-red    { background: #FF5F57; }
.dot-yellow { background: #FFBD2E; }
.dot-green  { background: #28C840; }
.chrome-title {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  margin: 0 auto;
}
.hero-screen-img {
  width: 100%;
  border-radius: 0 0 12px 12px;
  border: 1px solid var(--border);
  display: block;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dim);
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--dim), transparent);
  animation: scroll-bounce 2s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%       { transform: scaleY(0.6); opacity: 0.4; }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   8. MARQUEE STRIP
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.marquee-strip {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
  background: var(--bg-2);
  padding: 16px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--muted);
}
.marquee-track span { padding: 0 20px; }
.marquee-track .sep { color: var(--green); padding: 0 4px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-strip:hover .marquee-track { animation-play-state: paused; }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   9. FEATURES SECTION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#features {
  position: relative;
  z-index: 1;
  padding: var(--section-pad) 0;
  text-align: center;
}
#features .section-label,
#features .section-title { margin-left: auto; margin-right: auto; }
#features .section-title { max-width: 700px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 60px;
  text-align: left;
}

.feat-card {
  background: var(--bg-2);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color var(--slow), transform var(--slow), box-shadow var(--slow);
  cursor: default;
}
.feat-card:hover {
  border-color: var(--green);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 0 1px var(--border);
}

.feat-icon-wrap {
  width: 52px; height: 52px;
  background: var(--green-glow-s);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feat-icon { font-size: 24px; }

.feat-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}
.feat-card p { font-size: 14px; color: var(--muted); line-height: 1.65; flex: 1; }

.feat-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--green);
  background: var(--green-glow-s);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 100px;
  width: fit-content;
  text-transform: uppercase;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   10. SCREENSHOTS SECTION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#screens {
  position: relative;
  z-index: 1;
  padding: var(--section-pad) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
}

.screen-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
}
.stab {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid var(--border-dim);
  background: var(--bg);
  transition: all var(--fast);
  cursor: pointer;
}
.stab:hover { border-color: var(--green); color: var(--green); }
.stab.active {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-btn);
}

.screen-display {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}

.screen-device {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 0 1px var(--border);
  transition: transform var(--slow);
}
.screen-device:hover { transform: scale(1.01); }

.device-chrome {
  background: #0A1020;
  border-bottom: 1px solid var(--border-dim);
}
.chrome-bar {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.chrome-url {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--dim);
  margin: 0 auto;
}

.device-screen img {
  width: 100%;
  display: block;
  transition: opacity 0.3s ease;
}

.screen-caption {
  padding: 20px 0;
}
.screen-caption h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.screen-caption p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   11. SHORTCUTS SECTION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#shortcuts {
  position: relative;
  z-index: 1;
  padding: var(--section-pad) 0;
}

.keys-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.key-card {
  background: var(--bg-2);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color var(--fast), transform var(--fast);
}
.key-card:hover { border-color: var(--border); transform: translateY(-3px); }

.key-combo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.key-combo kbd {
  font-size: 14px;
  padding: 6px 14px;
  border-radius: 8px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--green);
  font-weight: 700;
}
.key-combo span { color: var(--muted); font-size: 14px; }

.key-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   12. POSTER BREAK
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#poster-break {
  position: relative;
  z-index: 1;
  padding: var(--section-pad) clamp(20px, 5vw, 60px);
}

.poster-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 60px 120px rgba(0,0,0,0.7), 0 0 0 1px var(--border);
}
.poster-img {
  width: 100%;
  display: block;
  filter: brightness(0.5);
  transition: filter var(--slow);
}
.poster-wrap:hover .poster-img { filter: brightness(0.4); }

.poster-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  text-align: center;
  padding: 40px;
}
.poster-overlay h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -2px;
  line-height: 1.05;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   13. PRICING SECTION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#pricing {
  position: relative;
  z-index: 1;
  padding: var(--section-pad) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
  text-align: center;
}
#pricing .section-label,
#pricing .section-title,
#pricing .section-sub { margin-left: auto; margin-right: auto; }

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  text-align: left;
  align-items: start;
}

.price-card {
  background: var(--bg-3);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: border-color var(--slow), transform var(--slow);
}
.price-card:hover { border-color: var(--border); transform: translateY(-4px); }
.price-card.featured {
  border-color: var(--green);
  background: linear-gradient(160deg, rgba(46,204,138,0.08) 0%, var(--bg-3) 60%);
  transform: scale(1.03);
}
.price-card.featured:hover { transform: scale(1.03) translateY(-4px); }

.price-popular {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: var(--shadow-btn);
}

.price-tier {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
}
.price-amount {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -1px;
}
.featured .price-amount { color: var(--green); }
.price-desc { font-size: 14px; color: var(--muted); line-height: 1.5; }

.price-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.price-features li { font-size: 14px; color: var(--text); }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   14. ABOUT SECTION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#about {
  position: relative;
  z-index: 1;
  padding: var(--section-pad) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-text p { font-size: 16px; color: var(--muted); line-height: 1.75; }
.about-text strong { color: var(--white); }
.tagline-brand {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--green) !important;
  letter-spacing: -0.5px;
}
.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.abadge {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--muted);
  background: var(--bg-2);
  border: 1px solid var(--border-dim);
  padding: 6px 14px;
  border-radius: 100px;
}

.about-logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.about-logo-icon {
  width: 140px;
  height: 140px;
  border-radius: 38px;
  box-shadow: 0 30px 80px rgba(46, 204, 138, 0.3);
}
.about-logo-mg {
  max-width: 320px;
  opacity: 0.85;
  filter: brightness(1.2);
}

/* floating animation */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
.floating { animation: float 4s ease-in-out infinite; }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   15. CTA SECTION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#cta {
  position: relative;
  z-index: 1;
  padding: var(--section-pad) 0;
  text-align: center;
  overflow: hidden;
}
.glow-cta {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(46,204,138,0.14) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(60px);
}

.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -2px;
  line-height: 1.05;
}
.cta-headline em { font-style: normal; }

.cta-sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 500px;
}

.cta-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

.cta-note {
  font-size: 13px;
  color: var(--dim);
  text-align: center;
  line-height: 1.8;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   16. FOOTER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#footer {
  position: relative;
  z-index: 1;
  background: var(--bg-2);
  border-top: 1px solid var(--border-dim);
  padding: 60px 0 40px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-brand img { width: 42px; height: 42px; border-radius: 12px; }
.footer-name {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
}
.footer-name strong { color: var(--green); }
.footer-by { font-size: 11px; color: var(--dim); }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.footer-nav a {
  font-size: 14px;
  color: var(--muted);
  transition: color var(--fast);
}
.footer-nav a:hover { color: var(--green); }

.footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px 0;
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
  margin-bottom: 28px;
}
.footer-tags span {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--dim);
  letter-spacing: 1px;
  padding: 6px 16px;
  background: var(--bg-3);
  border-radius: 100px;
  border: 1px solid var(--border-dim);
}
.footer-tags strong { color: var(--muted); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 12px; color: var(--dim); }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   17. SCROLL REVEAL ANIMATIONS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   18. RESPONSIVE (Mobile / Tablet)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1024px) {
  #hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
    padding-top: 120px;
  }
  .hero-content { align-items: center; }
  .hero-sub { text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-screen-wrap { max-width: 600px; margin: 0 auto; }
  .scroll-indicator { display: none; }

  .screen-display { grid-template-columns: 1fr; }
  .about-grid      { grid-template-columns: 1fr; }
  .about-logos     { order: -1; }
}

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

  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-4px); }

  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .marquee-track { animation: none; }
}
