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

/* --- Design Tokens / CSS Variables --- */
:root {
  --font-inter: 'Inter', sans-serif;
  --font-outfit: 'Outfit', sans-serif;

  /* HSL Color Palette */
  --primary-hsl: 166, 100%, 24%;      /* Emerald Cameroon Green #007A5E */
  --secondary-hsl: 353, 85%, 44%;    /* Crimson Cameroon Red #CE1126 */
  --accent-hsl: 40, 68%, 62%;        /* Premium Champagne Gold #DFB15B */
  
  --primary: hsl(var(--primary-hsl));
  --secondary: hsl(var(--secondary-hsl));
  --accent: hsl(var(--accent-hsl));

  /* Dark Theme Palette (No borders, glass, neon glows) */
  --background: #080b11;
  --bg-card: rgba(15, 23, 42, 0.45);
  --bg-card-hover: rgba(30, 41, 59, 0.6);
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #64748b;
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 12px 36px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.6);
  --shadow-glow-primary: 0 0 50px rgba(0, 122, 94, 0.25);
  --shadow-glow-accent: 0 0 50px rgba(223, 177, 91, 0.15);

  --border-radius: 20px;
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Base & Reset Styles --- */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  border: 0; /* Strictly follow design system: no borders */
  outline: none;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-inter);
  color: var(--text-secondary);
  background-color: var(--background);
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(0, 122, 94, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(223, 177, 91, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(206, 17, 38, 0.03) 0%, transparent 60%);
  background-attachment: fixed;
  background-size: cover;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

/* --- Reusable Components (Following AGENTS.md rules) --- */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-inter);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  gap: 8px;
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
}

.btn-primary:hover {
  background: hsl(var(--primary-hsl), 90%);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 122, 94, 0.4);
}

.btn-accent {
  background: var(--accent);
  color: #080b11;
}

.btn-accent:hover {
  background: hsl(var(--accent-hsl), 90%);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(223, 177, 91, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* Glass Panels (No borders!) */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  padding: 32px;
  transition: var(--transition-smooth);
}

.glass-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Store Badge Buttons */
.store-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #111827;
  padding: 10px 20px;
  border-radius: 10px;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  min-width: 165px;
}

.store-badge:hover {
  background: #1f2937;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.store-badge svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.store-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.store-badge-sub {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.store-badge-main {
  font-size: 0.95rem;
  color: #fff;
  font-weight: 600;
}

/* --- Layout & Sections --- */

/* Header / Navbar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-smooth);
}

header.scrolled {
  padding: 12px 0;
  background: rgba(8, 11, 17, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 10px;
}

.logo-text {
  font-family: var(--font-outfit);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}

.logo-text span {
  color: var(--primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

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

.nav-links a {
  font-family: var(--font-inter);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-cta {
  display: flex;
  align-items: center;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition-fast);
}

/* Hero Section */
.hero {
  padding: 180px 0 100px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(0, 122, 94, 0.1);
  color: var(--primary);
  font-family: var(--font-inter);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-content h1 {
  font-family: var(--font-outfit);
  font-size: 3.8rem;
  line-height: 1.15;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: -0.04em;
}

.hero-content h1 span.gradient-text-green {
  background: linear-gradient(135deg, #10b981 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content h1 span.gradient-text-gold {
  background: linear-gradient(135deg, var(--accent) 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-mockup-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Glowing Neon Orb behind Phone Mockup */
.hero-mockup-wrapper::before {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 122, 94, 0.25) 0%, rgba(223, 177, 91, 0.1) 50%, transparent 70%);
  z-index: 1;
  filter: blur(20px);
  animation: floatOrb 8s infinite alternate ease-in-out;
}

/* Pure CSS App Mockup Phone */
.phone-mockup {
  position: relative;
  width: 290px;
  height: 580px;
  background: #0f172a;
  border-radius: 40px;
  box-shadow: 
    0 0 0 12px #1e293b,
    0 20px 50px rgba(0, 0, 0, 0.8),
    0 0 30px rgba(0, 122, 94, 0.15);
  z-index: 2;
  overflow: hidden;
  animation: floatPhone 6s infinite ease-in-out;
  display: flex;
  flex-direction: column;
}

/* Speaker notch */
.phone-mockup::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 20px;
  background: #1e293b;
  border-radius: 10px;
  z-index: 10;
}

/* Phone screen content layout */
.phone-screen {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 45px 16px 20px;
  background: #090d16;
  color: #fff;
  font-family: var(--font-inter);
}

.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.phone-profile {
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
}

.phone-user {
  font-size: 0.7rem;
  font-weight: 600;
}

.phone-location {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(0, 122, 94, 0.15);
  padding: 4px 8px;
  border-radius: 20px;
  font-size: 0.65rem;
  color: var(--primary);
  font-weight: 700;
  animation: pulseIndicator 2.5s infinite ease-in-out;
}

.phone-title {
  font-family: var(--font-outfit);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.phone-search {
  background: #1e293b;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.phone-section-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.phone-card-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.phone-card {
  background: #111827;
  padding: 10px;
  border-radius: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.phone-card-img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0, 122, 94, 0.25) 0%, rgba(223, 177, 91, 0.25) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.phone-card-info {
  flex: 1;
}

.phone-card-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.phone-card-meta {
  font-size: 0.6rem;
  color: var(--text-muted);
}

.phone-card-badge {
  font-size: 0.55rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 6px;
  background: rgba(0, 122, 94, 0.2);
  color: var(--primary);
}

.phone-card-badge.gold {
  background: rgba(223, 177, 91, 0.2);
  color: var(--accent);
}

.phone-nav {
  margin-top: auto;
  background: #111827;
  padding: 10px 16px;
  border-radius: 16px;
  display: flex;
  justify-content: space-around;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
}

.phone-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--text-muted);
  cursor: pointer;
}

.phone-nav-item.active {
  color: var(--primary);
}

.phone-nav-icon {
  font-size: 1rem;
}

.phone-nav-label {
  font-size: 0.55rem;
  font-weight: 500;
}

/* Sections Common */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  font-family: var(--font-inter);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-outfit);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}

.section-title span {
  color: var(--primary);
}

/* Interactive Tabs Section */
.tabs-section {
  background: rgba(15, 23, 42, 0.2);
  position: relative;
}

.tabs-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.tab-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px;
  background: rgba(15, 23, 42, 0.4);
  padding: 6px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.tab-btn {
  flex: 1;
  max-width: 250px;
  background: transparent;
  color: var(--text-secondary);
  font-family: var(--font-inter);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.tab-btn:hover {
  color: var(--text-primary);
}

.tab-btn.active[data-tab="customer"] {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 122, 94, 0.3);
}

.tab-btn.active[data-tab="merchant"] {
  background: var(--accent);
  color: #080b11;
  box-shadow: 0 4px 15px rgba(223, 177, 91, 0.3);
}

.tab-content {
  position: relative;
  min-height: 400px;
}

.tab-pane {
  display: none;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.tab-pane.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  opacity: 1;
  transform: translateY(0);
}

.tab-text h3 {
  font-family: var(--font-outfit);
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.tab-text h3 span {
  color: var(--primary);
}

.tab-text h3.merchant-heading span {
  color: var(--accent);
}

.tab-text p {
  color: var(--text-secondary);
  margin-bottom: 30px;
  font-size: 1.05rem;
}

.feature-bullets {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.feature-bullet {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.bullet-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0, 122, 94, 0.15);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.bullet-icon.gold {
  background: rgba(223, 177, 91, 0.15);
  color: var(--accent);
}

.bullet-text h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.bullet-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.tab-visual {
  display: flex;
  justify-content: center;
}

.tab-glass-panel {
  width: 100%;
  max-width: 400px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.tab-glass-panel::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  filter: blur(30px);
  z-index: 0;
}

.customer-panel::before {
  background: rgba(0, 122, 94, 0.2);
}

.merchant-panel::before {
  background: rgba(223, 177, 91, 0.2);
}

.tab-visual-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.tab-visual-metric {
  font-family: var(--font-outfit);
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}

.tab-visual-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}

/* Key Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.feature-card {
  padding: 36px 30px;
}

.feature-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-card-icon {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1) rotate(5deg);
}

.feature-card.gold-card:hover .feature-card-icon {
  background: var(--accent);
  color: #080b11;
}

.feature-card-title {
  font-family: var(--font-outfit);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.feature-card-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* FAQ Section */
.faq-wrapper {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  background: var(--bg-card-hover);
}

.faq-question {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question h4 {
  font-family: var(--font-outfit);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
}

.faq-icon {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--text-muted);
  transition: background-color 0.3s ease;
}

/* Plus sign */
.faq-icon::before {
  top: 6px;
  left: 0;
  width: 14px;
  height: 2px;
}

.faq-icon::after {
  top: 0;
  left: 6px;
  width: 2px;
  height: 14px;
}

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

.faq-item.active .faq-icon::before,
.faq-item.active .faq-icon::after {
  background: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
  padding: 0 24px 24px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Call to Action Banner */
.cta-banner {
  padding: 80px 0;
}

.cta-glass-panel {
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at top right, rgba(0, 122, 94, 0.15) 0%, transparent 60%),
              radial-gradient(circle at bottom left, rgba(223, 177, 91, 0.08) 0%, transparent 60%),
              var(--bg-card);
  box-shadow: var(--shadow-glow-primary);
}

.cta-glass-panel h2 {
  font-family: var(--font-outfit);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.cta-glass-panel p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

/* Footer */
footer {
  background: #04060a;
  padding: 80px 0 40px;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 16px;
  max-width: 280px;
  line-height: 1.6;
}

.footer-col h5 {
  font-family: var(--font-outfit);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05); /* minimal line divider */
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-legal a:hover {
  color: var(--text-primary);
}

/* --- Scroll Animation Classes --- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Delay modifiers */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

/* --- CSS Keyframes Animations --- */
@keyframes floatPhone {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -20px) scale(1.15); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes pulseIndicator {
  0% { opacity: 0.8; box-shadow: 0 0 0 0 rgba(0, 122, 94, 0.4); }
  70% { opacity: 1; box-shadow: 0 0 0 8px rgba(0, 122, 94, 0); }
  100% { opacity: 0.8; box-shadow: 0 0 0 0 rgba(0, 122, 94, 0); }
}

/* --- Responsive Adjustments --- */

@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  .tab-pane.active {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .tab-visual {
    order: -1;
  }
}

@media (max-width: 768px) {
  /* Mobile menu active overlay */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #090d16;
    flex-direction: column;
    padding: 100px 40px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
    z-index: 999;
  }

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

  .nav-menu {
    gap: 0;
  }

  .nav-cta {
    display: none; /* Hide top CTA on mobile navbar */
  }

  .nav-toggle {
    display: flex;
    z-index: 1000;
  }

  /* Hamburger transform when menu open */
  .nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero {
    padding: 140px 0 60px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
