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

:root {
  --bg-body: #f8fafc;
  --bg-card: rgba(255, 255, 255, 0.75);
  --border-card: rgba(15, 23, 42, 0.08);
  --border-glow: rgba(6, 182, 212, 0.2);
  --text-primary: #0f172a;
  --text-secondary: #334155;
  --text-muted: #64748b;
  --accent-cyan: #06b6d4;
  --accent-cyan-rgb: 6, 182, 212;
  --accent-purple: #8b5cf6;
  --accent-green: #10b981;
  --accent-gold: #f59e0b;
  
  --gradient-primary: linear-gradient(135deg, #06b6d4 0%, #8b5cf6 100%);
  --gradient-hover: linear-gradient(135deg, #0891b2 0%, #7c3aed 100%);
  --gradient-dark: linear-gradient(180deg, rgba(248, 250, 252, 0) 0%, rgba(248, 250, 252, 1) 100%);
}

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

body {
  background-color: var(--bg-body);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Home Background Image setup */
.home-bg {
  background-color: var(--bg-body);
}

/* Layout Elements */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 0;
}

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(15, 23, 42, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #ffffff;
}

.logo span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo img {
  width: 40px;
  height: 40px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #ffffff;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hamburger {
  display: none;
}

/* Lang Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 14px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-decoration: none;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
}

.lang-switcher .flag-icon {
  font-size: 1.1rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.lang-switcher img {
  width: 18px;
  height: 12px;
  object-fit: cover;
  border-radius: 2px;
}

/* Header CTA Button Override */
.header-cta {
  background: linear-gradient(135deg, #ff0f39, #d00027) !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 0 15px rgba(255, 15, 57, 0.5) !important;
  padding: 10px 24px !important;
  border-radius: 30px !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  transition: all 0.3s ease !important;
}

.header-cta:hover {
  background: linear-gradient(135deg, #ff2a51, #e6002e) !important;
  box-shadow: 0 0 25px rgba(255, 15, 57, 0.75) !important;
  transform: translateY(-2px) !important;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  border: none;
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.25);
}

.btn-primary:hover {
  background: var(--gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(6, 182, 212, 0.4);
}

.btn-secondary {
  background: rgba(15, 23, 42, 0.05);
  color: var(--text-primary);
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.btn-secondary:hover {
  background: rgba(15, 23, 42, 0.1);
  transform: translateY(-2px);
}

.btn-wa {
  background: linear-gradient(135deg, var(--accent-green) 0%, #059669 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.25);
}

.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(16, 185, 129, 0.4);
}

.hero {
  padding: 140px 0 24px 0;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, var(--bg-body) 100%), url('hero.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hero-glass-card {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(6, 182, 212, 0.15);
  border-radius: 24px;
  padding: 60px 50px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.05);
}

@media (max-width: 768px) {
  .hero-glass-card {
    padding: 40px 20px;
  }
}

.hero-tag {
  display: inline-block;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  color: var(--accent-cyan);
  font-weight: 600;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 24px;
  background: linear-gradient(to right, var(--text-primary), var(--text-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 40px auto;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 60px;
}

/* Stats Row */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 40px;
}

.stat-item h3 {
  font-size: 2.2rem;
  color: var(--accent-cyan);
}

.stat-item p {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Section Common */
.section-header {
  text-align: center;
  margin-bottom: 24px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Glassmorphism Cards */
.grid {
  display: grid;
  gap: 30px;
}

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

.card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(6, 182, 212, 0.25);
  box-shadow: 0 12px 30px rgba(6, 182, 212, 0.12);
}

/* Feature Cards */
.feature-card .icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(6, 182, 212, 0.1);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
}

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

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

/* Pricing Toggle Wrapper */
.pricing-toggle-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  gap: 16px;
}

.toggle-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.toggle-label.active {
  color: var(--text-primary);
}

.pricing-toggle {
  position: relative;
  width: 200px;
  height: 44px;
  background: rgba(15, 23, 42, 0.05);
  border: 1px solid rgba(15, 23, 42, 0.1);
  padding: 4px;
  border-radius: 30px;
  display: flex;
  cursor: pointer;
}

.toggle-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-secondary);
  z-index: 2;
  transition: color 0.3s ease;
}

.toggle-btn.active {
  color: #ffffff;
}

.toggle-slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 95px;
  height: 36px;
  background: var(--gradient-primary);
  border-radius: 30px;
  z-index: 1;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 4px 20px rgba(14, 165, 233, 0.35);
}

.toggle-active-2 .toggle-slider {
  left: 100px;
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pricing-card {
  position: relative;
  background: rgba(13, 18, 30, 0.95);
  backdrop-filter: blur(16px);
  border: 2px solid rgba(6, 182, 212, 0.15);
  border-radius: 24px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.15), 0 0 24px rgba(6, 182, 212, 0.08);
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-cyan);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.25), 0 0 40px rgba(6, 182, 212, 0.15);
}

.pricing-card.popular {
  border-color: var(--accent-cyan);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.25), 0 0 50px rgba(6, 182, 212, 0.2);
}

.pricing-card.popular::before {
  content: "MEST POPULÄR";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: white;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.pricing-header h3 {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price {
  font-size: 3.5rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  margin-bottom: 6px;
  display: flex;
  align-items: baseline;
  color: #ffffff;
}

.price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  margin-left: 6px;
}

.pricing-features {
  list-style: none;
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.pricing-features li ion-icon {
  color: var(--accent-cyan);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.pricing-features li.disabled {
  opacity: 0.4;
}

.pricing-features li.disabled ion-icon {
  color: var(--text-muted);
}

.pricing-card .btn {
  width: 100%;
  margin-top: auto;
}

.pricing-card .btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.pricing-card .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.plan-toggle {
  width: 240px !important;
}

.plan-toggle .toggle-slider {
  width: 115px !important;
}

.toggle-active-2.plan-toggle .toggle-slider {
  left: 120px !important;
}

.plan-toggle-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

.device-selector-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.device-selector-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.device-buttons {
  display: flex;
  gap: 8px;
  background: rgba(15, 23, 42, 0.05);
  padding: 4px;
  border-radius: 30px;
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.device-btn {
  padding: 8px 20px;
  border: none;
  border-radius: 24px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  background: transparent;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.device-btn.active {
  background: var(--gradient-primary);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.25);
}

.device-btn:hover:not(.active) {
  background: rgba(15, 23, 42, 0.08);
  color: var(--text-primary);
}

/* FAQ Accordion */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 30px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  user-select: none;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 30px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
}

.faq-item.active {
  border-color: rgba(6, 182, 212, 0.25);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 24px;
}

.faq-icon {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
  color: var(--accent-cyan);
}

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

/* Geotargeting Section */
.geosection {
  background: linear-gradient(180deg, var(--bg-body) 0%, rgba(255, 255, 255, 0.4) 50%, var(--bg-body) 100%);
  padding: 30px 0;
}

.geo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  align-items: center;
}

.geo-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.geo-content p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.geo-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.geo-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}

.geo-list li ion-icon {
  color: var(--accent-cyan);
}

/* Footer */
footer {
  background: #0d1557;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 0;
  color: rgba(255, 255, 255, 0.85);
}

.footer-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.footer-left .logo {
  color: #ffffff !important;
}

.footer-left p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 16px;
  margin-bottom: 24px;
  max-width: 480px;
}

.footer-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 28px;
  transition: color 0.2s ease;
}

.footer-email ion-icon {
  color: var(--accent-cyan);
  font-size: 1.2rem;
}

.footer-email:hover {
  color: #ffffff;
}

.btn-wa-footer {
  background: #25d366 !important;
  color: #ffffff !important;
  border-radius: 30px !important;
  padding: 12px 28px !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  text-decoration: none !important;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3) !important;
  transition: all 0.3s ease !important;
}

.btn-wa-footer:hover {
  background: #20ba5a !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5) !important;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  justify-content: center;
}

.footer-links-inline {
  display: flex;
  gap: 12px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.footer-links-inline a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links-inline a:hover {
  color: #ffffff;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin-bottom: 24px;
}

.payment-methods {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.payment-card {
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
}

.payment-card.visa {
  background: #1a1f71;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-style: italic;
}

.payment-card.mc {
  background: #222222;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-card.paypal {
  background: #003087;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-card.applepay {
  background: #ffffff;
  color: #000000;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-weight: 800;
}

.payment-card.btc {
  background: #f7931a;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Floating WhatsApp Widget */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Preloader styles */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--bg-body);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(6, 182, 212, 0.1);
  border-radius: 50%;
  border-top-color: var(--accent-cyan);
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

.preloader-flag {
  font-size: 2rem;
  animation: bounce 2s infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

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

/* Mobile Responsive Adjustments */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header-container {
    display: grid;
    grid-template-areas: 
      "logo right"
      "nav nav";
    grid-template-columns: 1fr auto;
    gap: 10px 0;
    padding: 12px 4%;
  }
  
  .logo {
    grid-area: logo;
    justify-self: start;
    font-size: 1.3rem;
  }
  
  .logo img {
    width: 32px;
    height: 32px;
  }
  
  nav {
    grid-area: nav;
    display: block !important;
    position: static !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    width: 100%;
  }
  
  nav ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
  }
  
  nav a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    padding: 0;
  }
  
  .header-right {
    grid-area: right;
    justify-self: end;
    display: flex !important;
    gap: 10px;
  }
  
  .header-cta {
    display: inline-flex !important;
    padding: 8px 16px !important;
    font-size: 0.8rem !important;
  }
  
  .lang-switcher {
    padding: 5px 10px !important;
    font-size: 0.75rem !important;
  }
  
  .hamburger {
    display: none !important;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .hero-ctas {
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 340px;
    margin: 0 auto 40px auto;
  }
  
  .hero-ctas .btn {
    width: 100%;
  }
  
  .stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    display: grid;
    max-width: 320px;
    margin: 0 auto;
  }
  
  .grid-3 {
    grid-template-columns: 1fr;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-card {
    max-width: 380px;
    margin: 0 auto;
    width: 100%;
  }
  
  .geo-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .geo-list {
    align-items: center;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .footer-left {
    align-items: center;
    text-align: center;
  }
  
  .footer-left p {
    margin: 16px auto 24px auto;
  }
  
  .footer-right {
    align-items: center;
    text-align: center;
  }
  
  .footer-links-inline {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 12px;
  }
  
  .footer-copyright {
    text-align: center;
  }
  
  .payment-methods {
    justify-content: center;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 50px;
  text-align: left;
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-grid .hero-ctas {
    justify-content: center !important;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-grid .stats-row {
    justify-content: center !important;
  }
  .hero-grid .stat-item {
    text-align: center !important;
  }
}


