/* Custom Style System for Zippl Landing Page */

/* =============================================================================
   1. CSS Reset & Variables
   ============================================================================= */
:root {
  /* Colors */
  --bg-darker: #0b0f19;
  --bg-dark: #0f172a;
  --bg-card: rgba(30, 41, 59, 0.7);
  --border-card: rgba(255, 255, 255, 0.08);
  
  --primary: #7c3aed; /* Zippl Violet */
  --primary-hover: #630ed4;
  --primary-glow: rgba(124, 58, 237, 0.4);
  
  --secondary: #3b82f6; /* Accent Blue */
  --secondary-hover: #2563eb;
  --secondary-glow: rgba(59, 130, 246, 0.35);
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dark: #0f172a;
  
  --white: #ffffff;
  
  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Layout */
  --container-max-width: 1200px;
  --header-height: 80px;
  
  /* Shadows */
  --shadow-neon-green: 0 0 25px rgba(124, 58, 237, 0.3);
  --shadow-neon-blue: 0 0 25px rgba(59, 130, 246, 0.25);
  --shadow-card-hover: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
}

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

html {
  scroll-behavior: smooth;
}

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

/* =============================================================================
   2. Typography & Core Layout
   ============================================================================= */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.neon-badge {
  background-color: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.3);
  color: var(--primary);
  box-shadow: 0 0 15px rgba(124, 58, 237, 0.1);
}

.info-badge {
  background-color: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: var(--secondary);
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.1);
}

/* =============================================================================
   3. Buttons
   ============================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  text-align: center;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.9rem;
}

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

.btn-primary:hover {
  background-color: var(--primary-hover);
  box-shadow: var(--shadow-neon-green);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-main);
  backdrop-filter: blur(5px);
}

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

.btn-download {
  padding: 12px 24px;
  border-radius: 12px;
  background-color: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-main);
  text-align: left;
  justify-content: flex-start;
  gap: 16px;
  min-width: 220px;
}

.btn-download i {
  font-size: 1.8rem;
  transition: transform 0.3s ease;
}

.btn-download .btn-dl-text {
  display: flex;
  flex-direction: column;
}

.btn-download .btn-dl-sub {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

.btn-download .btn-dl-main {
  font-size: 1.1rem;
  font-weight: 700;
}

.btn-download:hover {
  transform: translateY(-3px);
  background-color: #334155;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.btn-download.win-btn:hover i {
  color: var(--secondary);
  transform: scale(1.1);
}

.btn-download.apk-btn:hover i {
  color: var(--primary);
  transform: scale(1.1);
}

/* =============================================================================
   4. Header & Navigation
   ============================================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.site-header.scrolled {
  background-color: rgba(11, 15, 25, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  height: 70px;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-main);
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  display: block;
  object-fit: cover;
  box-shadow: 0 0 12px rgba(124, 58, 237, 0.35);
}

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

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

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

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

.mobile-toggle {
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.4rem;
  cursor: pointer;
  display: none;
}

/* =============================================================================
   5. Hero Section
   ============================================================================= */
.hero-section {
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 80px;
  position: relative;
  background-image: radial-gradient(circle at 10% 20%, rgba(124, 58, 237, 0.06) 0%, transparent 60%),
                    radial-gradient(circle at 90% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 60%);
}

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

.hero-title {
  font-size: 3.2rem;
  line-height: 1.15;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--white) 30%, var(--text-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
}

.trust-avatars {
  display: flex;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #1e293b;
  border: 2px solid var(--bg-darker);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.9rem;
  margin-left: -8px;
}

.avatar:first-child {
  margin-left: 0;
}

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

.hero-visual {
  position: relative;
}

.visual-wrapper {
  position: relative;
  border-radius: 16px;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.visual-glow-1 {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: var(--primary-glow);
  filter: blur(70px);
  z-index: -1;
}

.visual-glow-2 {
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: var(--secondary-glow);
  filter: blur(70px);
  z-index: -1;
}

.mockup-img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

/* Floating Cards in Hero */
.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background-color: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-card);
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  animation: float 6s ease-in-out infinite;
}

.floating-card i {
  font-size: 1.3rem;
}

.floating-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
}

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

.floating-card-1 {
  top: 15%;
  left: -15%;
  animation-delay: 0s;
}

.floating-card-2 {
  bottom: 12%;
  right: -10%;
  animation-delay: 3s;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* =============================================================================
   6. Statistics Section
   ============================================================================= */
.stats-section {
  padding: 40px 0;
  background-color: rgba(255, 255, 255, 0.01);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-card h3 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 6px;
  background: linear-gradient(135deg, var(--primary) 30%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* =============================================================================
   7. Features Grid Section
   ============================================================================= */
.features-section {
  padding: 100px 0;
  background-color: var(--bg-dark);
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px auto;
}

.section-subtitle {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 18px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
}

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

.feature-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 40px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.15);
  background-color: rgba(30, 41, 59, 0.9);
  box-shadow: var(--shadow-card-hover);
}

.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 24px;
}

.bg-emerald-light { background-color: rgba(16, 185, 129, 0.1); }
.text-emerald { color: #10b981; }

.bg-blue-light { background-color: rgba(59, 130, 246, 0.1); }
.text-blue { color: var(--secondary); }

.bg-purple-light { background-color: rgba(139, 92, 246, 0.1); }
.text-purple { color: #8b5cf6; }

.bg-amber-light { background-color: rgba(245, 158, 11, 0.1); }
.text-amber { color: #f59e0b; }

.bg-pink-light { background-color: rgba(236, 72, 153, 0.1); }
.text-pink { color: #ec4899; }

.bg-indigo-light { background-color: rgba(99, 102, 241, 0.1); }
.text-indigo { color: #6366f1; }

.feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* =============================================================================
   8. GST & Profit Calculator Section
   ============================================================================= */
.calculator-section {
  padding: 100px 0;
  background-image: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.calculator-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background-color: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.calculator-tabs {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background-color: rgba(15, 23, 42, 0.5);
}

.calc-tab-btn {
  flex: 1;
  padding: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
}

.calc-tab-btn:hover {
  color: var(--text-main);
  background-color: rgba(255, 255, 255, 0.02);
}

.calc-tab-btn.active {
  color: var(--primary);
}

.calc-tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary);
  box-shadow: 0 0 10px var(--primary);
}

.calculator-body {
  padding: 40px;
}

.calc-panel {
  display: none;
}

.calc-panel.active {
  display: block;
  animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  background-color: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(124, 58, 237, 0.15);
}

.radio-group {
  display: flex;
  gap: 20px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  cursor: pointer;
}

.radio-label input {
  accent-color: var(--primary);
  width: 16px;
  height: 16px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  cursor: pointer;
  color: var(--text-muted);
}

.checkbox-label input {
  accent-color: var(--primary);
  width: 16px;
  height: 16px;
}

.calc-results {
  background-color: #0b0f19;
  border-radius: 12px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.result-header {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 12px;
}

.result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.result-row.split-tax {
  display: flex;
  margin-bottom: 18px;
}

.split-col {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.split-col span:first-child {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.result-val {
  color: var(--text-main);
  font-weight: 600;
  font-size: 1.15rem;
}

.font-sm {
  font-size: 0.95rem;
}

.result-row.highlight {
  border-top: 1px dashed rgba(255, 255, 255, 0.15);
  padding-top: 20px;
  margin-bottom: 0;
  color: var(--text-main);
  font-weight: 600;
}

.result-row.highlight .result-val {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 700;
}

/* =============================================================================
   9. Business Network (Market Connect) Section
   ============================================================================= */
.network-section {
  padding: 100px 0;
  background-color: var(--bg-darker);
}

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

.network-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
}

.network-node-map {
  position: relative;
  width: 100%;
  height: 100%;
}

.network-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #1e293b;
  border: 1px solid var(--border-card);
  border-radius: 50%;
  color: var(--text-main);
  z-index: 2;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.network-node span {
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 6px;
  white-space: nowrap;
  position: absolute;
  bottom: -22px;
}

.network-node i {
  font-size: 1.2rem;
}

.network-node:hover {
  transform: scale(1.1);
  background-color: #334155;
}

.center-node {
  width: 80px;
  height: 80px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--primary);
  color: var(--white);
  border-color: rgba(124, 58, 237, 0.4);
  box-shadow: 0 0 30px rgba(124, 58, 237, 0.4);
}

.center-node i {
  font-size: 1.8rem;
}

.center-node:hover {
  background-color: var(--primary-hover);
  transform: translate(-50%, -50%) scale(1.05);
}

.node-1 { top: 15%; left: 15%; width: 60px; height: 60px; }
.node-2 { top: 15%; left: 75%; width: 60px; height: 60px; }
.node-3 { top: 70%; left: 10%; width: 60px; height: 60px; }
.node-4 { top: 70%; left: 75%; width: 60px; height: 60px; }

.network-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.network-lines line {
  stroke: rgba(255,255,255,0.06);
  stroke-width: 2px;
  stroke-dasharray: 6 4;
}

.network-content .section-title {
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.network-bullets {
  list-style: none;
  margin-top: 30px;
}

.network-bullets li {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  font-size: 1.05rem;
  align-items: flex-start;
}

.network-bullets i {
  font-size: 1.25rem;
  margin-top: 3px;
}

.network-bullets strong {
  color: var(--text-main);
}

/* =============================================================================
   10. FAQ Accordion Section
   ============================================================================= */
.faq-section {
  padding: 100px 0;
  background-color: var(--bg-dark);
}

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

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 8px;
}

.faq-trigger {
  width: 100%;
  padding: 24px 8px;
  background: none;
  border: none;
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-trigger:hover {
  color: var(--primary);
}

.faq-trigger i {
  font-size: 1rem;
  transition: transform 0.3s ease;
  color: var(--text-muted);
}

.faq-item.active .faq-trigger i {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 8px;
}

.faq-content p {
  color: var(--text-muted);
  font-size: 0.98rem;
  padding-bottom: 24px;
}

/* =============================================================================
   11. Call to Action / Download Section
   ============================================================================= */
.cta-section {
  padding: 100px 0;
  background-image: radial-gradient(circle at 50% 50%, rgba(124, 58, 237, 0.05) 0%, transparent 60%);
}

.cta-card {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 24px;
  padding: 80px 40px;
  text-align: center;
  background-color: var(--bg-card);
  border: 1px solid var(--border-card);
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  z-index: -1;
  filter: blur(50px);
}

.cta-card h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--white) 30%, var(--text-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-card p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px auto;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
}

.cta-footer-note {
  font-size: 0.85rem !important;
  margin-bottom: 0 !important;
  color: var(--text-muted) !important;
}

/* =============================================================================
   12. Footer Section
   ============================================================================= */
.site-footer {
  background-color: var(--bg-darker);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0 40px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

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

.footer-brand .logo {
  margin-bottom: 20px;
}

.brand-tagline {
  margin-bottom: 24px;
  max-width: 280px;
  line-height: 1.5;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  font-size: 1rem;
}

.social-links a:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-links-col h4 {
  font-size: 1.05rem;
  color: var(--text-main);
  margin-bottom: 20px;
}

.footer-links-col a {
  display: block;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

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

.footer-links-col p {
  margin-bottom: 16px;
  line-height: 1.5;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form .form-control {
  padding: 10px 14px;
  font-size: 0.9rem;
}

.newsletter-form .btn {
  padding: 0 20px;
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: center;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  max-width: 700px;
}

/* =============================================================================
   13. Responsive Adaptability
   ============================================================================= */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .hero-trust {
    justify-content: center;
  }
  
  .hero-visual {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .floating-card-1 {
    left: -5%;
  }
  
  .floating-card-2 {
    right: -5%;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .network-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .site-header {
    height: 70px;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--bg-darker);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    transform: translateY(-150%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }
  
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
  }
  
  .hero-title {
    font-size: 2.4rem;
  }
  
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .calc-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .download-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================================================
   14. UPI QR Simulator Custom Styles
   ============================================================================= */
.qr-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--white);
  padding: 16px;
  border-radius: 16px;
  width: 212px;
  height: 212px;
  margin: 0 auto 16px auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.qr-img {
  width: 180px;
  height: 180px;
  display: block;
}

.qr-explanation {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
  display: block;
}

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

.margin-top-sm {
  margin-top: 12px;
}

/* =============================================================================
   15. Legal Pages (Terms / Privacy)
   ============================================================================= */
.legal-section {
  padding: calc(var(--header-height) + 60px) 0 100px 0;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.legal-updated {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.legal-content h2 {
  font-size: 1.35rem;
  margin: 36px 0 14px 0;
  color: var(--text-main);
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
  margin-bottom: 14px;
}

.legal-content ul {
  padding-left: 22px;
  margin-bottom: 14px;
}

.legal-content a {
  color: var(--primary);
}

.legal-note {
  background-color: var(--bg-card);
  border: 1px solid var(--border-card);
  border-left: 3px solid #f59e0b;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 36px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
  color: var(--primary);
  font-weight: 600;
}
