:root {
  /* Dark Theme Colors */
  --primary: #3B82F6;
  --primary-light: #60A5FA;
  --primary-dark: #2563EB;
  --secondary: #FF8400;
  --text-dark: #F8FAFC;
  --text-medium: #CBD5E1;
  --text-light: #94A3B8;
  --bg: #0F172A;
  --bg-off-white: #1E293B;
  --bg-gray: #334155;
  --bg-dark: #020617;
  --footer-bg: #0b1121;
  --footer-accent: #1d4ed8;

  /* Common Shared Variables */
  --success: #36B37E;
  --danger: #FF5630;
  --warning: #FFAB00;
  --info: #00B8D9;
  --border-radius-sm: 4px;
  --border-radius: 8px;
  --border-radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.2);
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.25);
  --transition: all 0.3s ease;
  --transition-slow: all 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--bg);
  overflow-x: hidden;
  transition: var(--transition);
}

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
}

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

a:hover {
  color: var(--primary-light);
}

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
}

/* Utility Classes */
.mobile-hidden {
  display: none;
}

@media (min-width: 768px) {
  .mobile-hidden {
    display: inline-flex;
  }
}

/* Noise Overlay */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%23a0aec0' fill-opacity='0.05' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E");
  opacity: 0.4;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(15, 23, 42, 0.8); /* Dark mode default */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 100;
  box-shadow: var(--shadow-sm);
  padding: 16px 0;
  transition: var(--transition);
}

body.light-theme .header {
  background-color: rgba(255, 255, 255, 0.8);
}

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

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

.logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
}

.logo-container h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.nav ul {
  display: none;
}

.nav.active ul {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  background-color: var(--bg);
  box-shadow: var(--shadow);
  padding: 20px;
  gap: 16px;
  z-index: 100;
  transition: var(--transition);
}

.nav ul a {
  color: var(--text-dark);
  font-weight: 500;
}

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

.cta-button {
  background-color: var(--primary);
  color: white;
  padding: 10px 20px;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
}

.cta-button:hover {
  background-color: var(--primary-dark);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
  align-items: flex-end;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-dark);
  margin-bottom: 5px;
  transition: var(--transition);
}

.menu-toggle span:nth-child(2) {
  width: 75%;
}

.menu-toggle span:last-child {
  margin-bottom: 0;
  width: 50%;
}

.menu-toggle.active span:first-child {
  transform: rotate(45deg) translate(5px, 5px);
  width: 100%;
}

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

.menu-toggle.active span:last-child {
  transform: rotate(-45deg) translate(8px, -8px);
  width: 100%;
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
  
  .nav ul {
    display: flex;
    align-items: center;
    gap: 32px;
  }
}

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

.hero::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  z-index: 1;
}

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

.hero-content {
  max-width: 600px;
}

.hero-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--text-dark);
  position: relative;
  display: inline-block;
}

.hero-content h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

.hero-content p {
  font-size: 1.1rem;
  color: var(--text-medium);
  margin-bottom: 30px;
  max-width: 500px;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.hero-note {
  color: var(--text-light);
  font-size: 0.9rem;
}

.hero-image {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-slow);
  transform: perspective(1000px) rotateY(5deg);
}

.hero-image:hover {
  transform: perspective(1000px) rotateY(0);
  box-shadow: var(--shadow-lg);
}

.lifestyle-image {
  border-radius: var(--border-radius-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
  transition: var(--transition-slow);
}

.hero-image:hover .lifestyle-image {
  transform: scale(1.05);
}

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

@media (min-width: 768px) {
  .hero .container {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }
  
  .hero-content {
    flex: 1;
  }
  
  .hero-image {
    flex: 1;
    animation: float 6s ease-in-out infinite;
  }
  
  .hero-content h2 {
    font-size: 3rem;
  }
}

/* Section Headers */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  position: relative;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  color: var(--text-dark);
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

.section-header p {
  color: var(--text-medium);
  font-size: 1.1rem;
  margin-top: 20px;
}

/* Features Section */
.features {
  padding: 100px 0;
  background-color: var(--bg-off-white);
  position: relative;
  z-index: 1;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.feature-card {
  background-color: var(--bg);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-dark), transparent);
  opacity: 0;
  z-index: -1;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
  opacity: 0.05;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--border-radius);
  background-color: rgba(59, 130, 246, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--primary);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
  background-color: rgba(59, 130, 246, 0.15);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

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

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

@media (min-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Compliance Section */
.compliance {
  padding: 100px 0;
  background-color: var(--bg-off-white);
  position: relative;
}

.compliance-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.compliance-content h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--text-dark);
  position: relative;
  display: inline-block;
}

.compliance-content h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

.compliance-content p {
  font-size: 1.1rem;
  color: var(--text-medium);
  margin: 24px 0;
}

.compliance-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.compliance-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  color: var(--text-dark);
  transition: var(--transition);
}

.compliance-list li:hover {
  transform: translateX(5px);
}

.check-icon {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: white;
  margin-right: 14px;
  flex-shrink: 0;
}

.check-icon::before,
.check-icon::after {
  display: none;
}

.compliance-image {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-slow);
  transform: perspective(1000px) rotateY(-5deg);
}

.compliance-image:hover {
  transform: perspective(1000px) rotateY(0);
}

.compliance-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  transition: var(--transition-slow);
}

.compliance-image:hover .compliance-img {
  transform: scale(1.05);
}

@media (min-width: 768px) {
  .compliance-grid {
    flex-direction: row;
    align-items: center;
  }
  
  .compliance-content {
    flex: 1;
    padding-right: 60px;
  }
  
  .compliance-image {
    flex: 1;
  }
}

/* Download Section */
.download {
  padding: 100px 0;
  background-color: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.download::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(59, 130, 246, 0.08), transparent 70%);
  z-index: 0;
}

.download-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.download-content h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.download-content p {
  font-size: 1.1rem;
  color: var(--text-medium);
  margin-bottom: 40px;
}

.app-store-badge {
  transition: var(--transition);
  display: inline-block;
}

.app-store-badge:hover {
  transform: translateY(-5px) scale(1.02);
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.2));
}

/* Highlight Free Trial */
.trial-badge {
  display: inline-block;
  background-color: var(--bg-off-white);
  color: var(--text-dark);
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  margin-top: 24px;
  box-shadow: var(--shadow-sm);
}

.trial-badge span {
  color: var(--primary);
}

/* Contact Section - Updated */
.contact {
  padding: 100px 0;
  background-color: var(--bg-off-white);
  position: relative;
}

.contact-container {
  max-width: 600px;
  margin: 0 auto;
}

.contact-info {
  margin-bottom: 24px;
  padding: 15px;
  border-radius: var(--border-radius);
  background-color: rgba(59, 130, 246, 0.1);
  border-left: 4px solid var(--primary);
}

.contact-info p {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.5;
}

.contact-info a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 500;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
  background-color: var(--bg);
  padding: 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form:hover {
  box-shadow: var(--shadow-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-medium);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.form-group label .required {
  color: white;
  font-weight: 700;
  margin-left: 4px;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 14px 16px;
  border: 1px solid var(--bg-gray);
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  background-color: var(--bg-off-white);
  color: var(--text-dark);
}

.form-group textarea::placeholder {
  color: var(--text-light);
  font-size: 0.9rem;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23CBD5E1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

.form-group select option {
  background-color: var(--bg);
  color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Error state for form fields */
.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select {
  border-color: #e74c3c;
  background-color: rgba(231, 76, 60, 0.05);
  box-shadow: none;
}

.form-group.has-error label {
  color: #e74c3c;
}

.form-group.has-error input:focus,
.form-group.has-error textarea:focus,
.form-group.has-error select:focus {
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.submit-btn {
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 16px 24px;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  flex: 1;
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition);
}

.submit-btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.submit-btn:hover::before {
  left: 100%;
  transition: 0.7s;
}

/* Loading state for submit button */
.submit-btn.loading {
  background-image: linear-gradient(45deg, var(--primary) 25%, var(--primary-dark) 25%, var(--primary-dark) 50%, var(--primary) 50%, var(--primary) 75%, var(--primary-dark) 75%, var(--primary-dark) 100%);
  background-size: 20px 20px;
  animation: moveBackground 1s linear infinite;
  cursor: wait;
}

.submit-btn.loading::before {
  display: none;
}

@keyframes moveBackground {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 20px 20px;
  }
}

/* Contact Form Messages - Updated */
.contact-message {
  padding: 30px;
  border-radius: var(--border-radius);
  margin-bottom: 30px;
  animation: slideDown 0.5s ease forwards;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border-width: 1px;
  border-style: solid;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.success-message {
  background-color: rgba(54, 179, 126, 0.1);
  border-color: rgba(54, 179, 126, 0.3);
}

.error-message {
  background-color: rgba(231, 76, 60, 0.1);
  border-color: rgba(231, 76, 60, 0.3);
}

.message-content {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.message-content svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.success-message svg {
  color: #27ae60;
}

.error-message svg {
  color: #e74c3c;
}

.message-content h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.message-content p {
  color: var(--text-medium);
  font-size: 0.95rem;
  margin-bottom: 10px;
  line-height: 1.6;
}

.countdown-timer {
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
  margin-top: 15px;
  padding-top: 10px;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
}

#countdown {
  font-weight: bold;
  color: #27ae60;
  font-size: 1.1rem;
}

.contact-info {
  background-color: rgba(59, 130, 246, 0.08);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 30px;
  border-left: 4px solid var(--primary);
}

.contact-info p {
  color: var(--text-medium);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

.contact-info a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.contact-info a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Footer - Updated Colors */
.footer {
  background-color: var(--footer-bg);
  color: white;
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, var(--footer-accent), transparent 70%);
  opacity: 0.12;
  z-index: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

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

.footer-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  margin: 0 0 10px 0;
}

.footer-brand p {
  margin-bottom: 20px;
  line-height: 1.6;
  text-align: left;
}

.footer-brand .footer-app-badge {
  margin-top: 20px;
  text-align: left;
}

.footer-contact p {
  text-align: left;
  margin-bottom: 15px;
}

.footer h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: white;
  position: relative;
  display: block;
  text-align: left;
  min-width: 120px;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(59, 130, 246, 0.3);
}

.footer-links, 
.footer-contact {
  text-align: left;
  min-width: 180px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  text-align: left;
}

.footer-links a, 
.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  position: relative;
  display: inline-block;
  min-width: 180px;
  text-align: left;
}

.footer-links a::before,
.footer-contact a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: var(--transition);
}

.footer-links a:hover::before,
.footer-contact a:hover::before {
  width: 100%;
}

.footer-links a:hover, 
.footer-contact a:hover {
  color: white;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* Improved mobile design */
@media (max-width: 767px) {
  .hero {
    padding: 60px 0 80px;
  }
  
  .hero-content h2 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .features, 
  .compliance, 
  .download, 
  .contact {
    padding: 70px 0;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .section-header p {
    font-size: 1rem;
  }
  
  .feature-card {
    padding: 24px;
  }
  
  .feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
  }
  
  .feature-icon svg {
    width: 22px;
    height: 22px;
  }
  
  .feature-card h3 {
    font-size: 1.1rem;
  }
  
  .contact-form {
    padding: 30px 20px;
  }
  
  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 12px 14px;
    font-size: 0.95rem;
  }
  
  .submit-btn {
    padding: 14px 20px;
    font-size: 0.95rem;
  }
  
  .footer {
    padding: 60px 0 20px;
  }
  
  .footer-grid {
    gap: 30px;
  }
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .footer-links, 
  .footer-contact,
  .footer-brand {
    text-align: left;
    align-items: flex-start;
  }

  .footer-brand .footer-app-badge {
    text-align: left;
  }
}

/* Very small screens adjustments */
@media (max-width: 380px) {
  .hero-content h2 {
    font-size: 1.8rem;
  }
  
  .app-store-badge img {
    max-width: 180px;
  }
  
  .trial-badge {
    font-size: 0.8rem;
    padding: 8px 16px;
  }
  
  .feature-card {
    padding: 20px;
  }
  
  .contact-form {
    padding: 24px 16px;
  }
  
  .form-group label {
    font-size: 0.85rem;
  }
  
  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
  
  .submit-btn {
    padding: 12px 16px;
    font-size: 0.9rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

.delay-5 {
  animation-delay: 0.5s;
}

/* Responsive Rules */
@media (max-width: 480px) {
  .section-header h2 {
    font-size: 1.75rem;
  }
  
  .hero-content h2 {
    font-size: 2rem;
  }
  
  .compliance-content h2,
  .download-content h2 {
    font-size: 1.75rem;
  }

  .contact-form {
    padding: 25px;
  }
}

/* Fallback when JS is disabled */
@media (max-width: 767px) {
  .nav:not(.active) ul {
    display: none;
  }
}

.footer-brand p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-app-badge {
  margin-top: 20px;
}

/* Animation for the hearts in the footer */
@keyframes heartbeat {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.footer-bottom svg {
  animation: heartbeat 1.5s infinite;
  color: #FF5630;
  margin: 0 3px;
  vertical-align: middle;
}

/* Improved animation performance */
@media (prefers-reduced-motion: reduce) {
  .fade-in-up,
  .hero-image,
  .feature-card:hover,
  .footer-bottom svg,
  .submit-btn:hover::before {
    animation: none;
    transition: none;
  }
}

/* Platform Badges */
.platforms-badge {
  display: inline-block;
  background-color: var(--bg-off-white);
  color: var(--text-medium);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.9rem;
  margin-top: 16px;
  box-shadow: var(--shadow-sm);
}

.platforms-badge span {
  color: var(--primary);
  font-weight: 600;
}

/* Footer Updates */
.footer-credits {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  margin-top: 10px;
  font-style: italic;
}

/* Platform information on mobile */
@media (max-width: 480px) {
  .platforms-badge {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}

/* Style updates for Privacy and Terms pages */
.privacy-page,
.terms-page {
  background-color: var(--bg);
  color: var(--text-dark);
  margin: 0;
  padding: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
}

.privacy-header,
.terms-header {
  background-color: var(--bg-off-white);
  padding: 60px 0 30px;
  text-align: center;
  position: relative;
}

.privacy-header h1,
.terms-header h1 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.privacy-header h1::after,
.terms-header h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--primary);
  border-radius: 2px;
}

.privacy-content,
.terms-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 20px;
}

.privacy-content h2,
.terms-content h2 {
  font-size: 1.5rem;
  margin: 40px 0 20px;
  color: var(--primary);
}

.privacy-content h3,
.terms-content h3 {
  font-size: 1.2rem;
  margin: 30px 0 15px;
  color: var(--text-dark);
}

.privacy-content p,
.terms-content p {
  margin-bottom: 20px;
  color: var(--text-medium);
  font-size: 1rem;
}

.privacy-content ul,
.terms-content ul,
.privacy-content ol,
.terms-content ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

.privacy-content li,
.terms-content li {
  margin-bottom: 10px;
  color: var(--text-medium);
}

.privacy-content a,
.terms-content a {
  color: var(--primary);
  text-decoration: underline;
}

.privacy-content a:hover,
.terms-content a:hover {
  color: var(--primary-light);
}

.privacy-footer,
.terms-footer,
.footer {
  background-color: var(--footer-bg);
  text-align: center;
  padding: 40px 0;
}

.policy-date {
  font-style: italic;
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 30px 0;
  text-align: center;
}

.back-to-home {
  display: inline-block;
  margin-top: 30px;
  padding: 10px 24px;
  background-color: var(--primary);
  color: white;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.back-to-home:hover {
  transform: translateY(-3px);
  background-color: var(--primary-dark);
  color: white;
  box-shadow: var(--shadow);
}

/* Add improved Instagram icon in contact section */
.footer-social {
  margin-top: 15px;
}

.contact-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 50%;
  color: white;
}

.contact-social-link svg {
  width: 24px;
  height: 24px;
}

.contact-social-link:hover {
  background: var(--primary);
}

/* Actieknoppen voor privacy en terms pagina's */
.action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background-color: var(--primary);
  color: white;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: none;
  transition: var(--transition);
  margin: 10px;
  min-width: 200px;
}

.action-button:hover {
  background-color: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.action-button.back-home {
  background-color: var(--bg-off-white);
  color: var(--text-dark);
}

.action-button.back-home:hover {
  background-color: var(--bg-gray);
}

.action-button.view-terms,
.action-button.view-privacy {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  font-weight: 600;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.action-button.view-terms::before,
.action-button.view-privacy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
  transition: transform 0.4s ease;
}

.action-button.view-terms:hover,
.action-button.view-privacy:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(38, 84, 209, 0.4);
}

.action-button.view-terms:hover::before,
.action-button.view-privacy:hover::before {
  transform: translateY(-100%);
}

.privacy-actions,
.terms-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 50px;
  margin-bottom: 50px;
}

@media (min-width: 768px) {
  .privacy-actions,
  .terms-actions {
    flex-direction: row;
    justify-content: center;
  }
}

/* Verwijder oude action button stijlen */
/* .terms-link,
.privacy-link {
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.terms-link::before,
.privacy-link::before {
  content: '';
  width: 6px;
  height: 6px;
  background-color: var(--primary);
  border-radius: 50%;
  display: inline-block;
} */

/* Verwijder oude back to home stijl */
/* .back-to-home {
  display: inline-block;
  padding: 10px 24px;
  background-color: var(--bg-off-white);
  color: var(--text-dark);
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.back-to-home:hover {
  background-color: var(--bg-gray);
  transform: translateY(-3px);
} */

/* Verwijder light theme overrides */
/* body.light-theme .header {
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

body.light-theme .header h1,
body.light-theme .nav ul a,
body.light-theme .menu-toggle span {
  color: var(--text-dark);
}

body.light-theme .logo {
  filter: none;
}

body.light-theme .menu-toggle span {
  background-color: var(--text-dark);
} */

/* Enhanced Privacy & Terms Page Styles */
.privacy-nav,
.terms-nav {
  position: sticky;
  top: 80px;
  max-width: 300px;
  width: 100%;
  margin-right: 40px;
  flex-shrink: 0;
  display: none;
}

.privacy-nav-container,
.terms-nav-container {
  background-color: var(--bg-off-white);
  border-radius: var(--border-radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.privacy-nav-container h4,
.terms-nav-container h4 {
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.privacy-nav-container ul,
.terms-nav-container ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.privacy-nav-container a,
.terms-nav-container a {
  color: var(--text-medium);
  font-size: 0.9rem;
  transition: var(--transition);
  display: block;
  padding: 5px 0;
}

.privacy-nav-container a:hover,
.terms-nav-container a:hover {
  color: var(--primary);
  transform: translateX(3px);
}

.privacy-sections,
.terms-sections {
  max-width: 800px;
  width: 100%;
}

.privacy-content,
.terms-content {
  display: flex;
  max-width: 1140px;
  margin: 0 auto;
  padding: 60px 20px;
}

.privacy-section,
.terms-section {
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}

.privacy-section h2,
.terms-section h2 {
  position: relative;
  margin-bottom: 25px;
  color: var(--primary);
  display: inline-block;
}

.privacy-section h2::after,
.terms-section h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 1.5px;
}

.section-content {
  color: var(--text-medium);
}

.section-content ul, 
.section-content ol {
  margin: 20px 0;
  padding-left: 20px;
}

.section-content li {
  margin-bottom: 12px;
}

.section-content .subsection {
  margin: 30px 0;
}

.section-content .subsection h3 {
  margin-bottom: 15px;
  color: var(--text-dark);
}

.info-box {
  background-color: rgba(59, 130, 246, 0.08);
  border-left: 4px solid var(--primary);
  padding: 20px;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  margin: 25px 0;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.info-box .info-icon {
  flex-shrink: 0;
  color: var(--primary);
}

.info-box p {
  margin: 0;
}

.highlight-box {
  background-color: rgba(54, 179, 126, 0.08);
  border-radius: var(--border-radius);
  padding: 20px;
  margin: 25px 0;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.highlight-box svg {
  flex-shrink: 0;
  color: var(--success);
}

.highlight-box h4 {
  margin-bottom: 8px;
  color: var(--text-dark);
}

.highlight-box p {
  margin: 0;
}

.contact-box {
  background-color: var(--bg-off-white);
  border-radius: var(--border-radius);
  padding: 20px;
  margin: 25px 0;
}

.rights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 25px 0;
}

.right-item {
  background-color: var(--bg-off-white);
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.right-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.right-item h4 {
  margin-bottom: 8px;
  color: var(--primary);
}

.right-item p {
  margin: 0;
  font-size: 0.9rem;
}

/* Action buttons for privacy and terms pages */
.action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background-color: var(--primary);
  color: white;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: none;
  transition: var(--transition);
  margin: 10px;
  min-width: 200px;
}

.action-button:hover {
  background-color: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.action-button.back-home {
  background-color: var(--bg-off-white);
  color: var(--text-dark);
}

.action-button.back-home:hover {
  background-color: var(--bg-gray);
}

.action-button.view-terms,
.action-button.view-privacy {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.privacy-actions,
.terms-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 50px 0;
}

@media (min-width: 768px) {
  .privacy-actions,
  .terms-actions {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 992px) {
  .privacy-nav,
  .terms-nav {
    display: block;
  }
  
  .privacy-content,
  .terms-content {
    flex-direction: row;
  }
  
  .privacy-header h1,
  .terms-header h1 {
    font-size: 2.8rem;
  }
  
  .rights-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .privacy-actions,
  .terms-actions {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .rights-grid {
    grid-template-columns: 1fr;
  }
  
  .policy-date {
    font-size: 0.85rem;
  }
  
  .privacy-section h2,
  .terms-section h2 {
    font-size: 1.6rem;
  }
}

/* Match footer styles in privacy and terms pages */
.footer {
  background-color: var(--footer-bg);
  color: white;
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, var(--footer-accent), transparent 70%);
  opacity: 0.12;
  z-index: 0;
}

/* Layout update for privacy and terms pages */
.privacy-header,
.terms-header {
  padding: 120px 0 60px;
  text-align: center;
  background-color: var(--bg);
  position: relative;
}

.privacy-header::after,
.terms-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--primary), transparent);
  opacity: 0.2;
}

.privacy-header h1,
.terms-header h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.privacy-header p,
.terms-header p {
  color: var(--text-medium);
  font-size: 1.1rem;
  margin-bottom: 0;
}

.policy-date {
  display: inline-block;
  margin-top: 20px;
  padding: 6px 16px;
  background-color: var(--bg-off-white);
  border-radius: 20px;
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Override for social icons in footer */
.footer-contact .contact-social-link {
  min-width: auto;
  width: 45px;
  height: 45px;
  margin-top: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  border-radius: 50%;
}

.footer-contact .contact-social-link::before {
  display: none;
}

.footer-contact .contact-social-link svg {
  width: 24px;
  height: 24px;
}

/* App Store Button Styles */
.app-store-button {
    display: inline-flex;
    align-items: center;
    background-color: #000;
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-top: 10px;
    min-width: 170px;
}

.app-store-button:hover {
    background-color: #333;
}

.app-store-icon {
    margin-right: 8px;
}

.app-store-text {
    display: flex;
    flex-direction: column;
}

.app-store-download {
    font-size: 0.7rem;
    font-weight: 400;
}

.app-store-name {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.2;
}

/* Footer Title Underline */
.footer-title {
    margin-bottom: 0.5rem;
}

.footer-title-underline {
    height: 2px;
    width: 50px;
    background-color: #0056d6;
    margin-bottom: 1rem;
}

/* Pricing Section */
.pricing {
  padding: 100px 0;
  position: relative;
  background-color: var(--bg);
  overflow: hidden;
}

.pricing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 10%, rgba(59, 130, 246, 0.05), transparent 40%),
             radial-gradient(circle at 90% 90%, rgba(59, 130, 246, 0.05), transparent 40%);
  z-index: 0;
}

.pricing-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

.pricing-card {
  background-color: var(--bg);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow);
  border: 1px solid var(--bg-gray);
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border: 2px solid var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured:hover {
  transform: translateY(-12px);
}

.pricing-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: var(--primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  z-index: 2;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-badge.alt {
  background-color: var(--primary);
}

.pricing-header {
  padding: 30px 25px;
  background-color: var(--bg-off-white);
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.pricing-price {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  font-weight: 700;
}

.pricing-price .currency {
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-right: 2px;
  align-self: flex-start;
  margin-top: 5px;
}

.pricing-price .amount {
  font-size: 3rem;
  line-height: 1;
  color: var(--primary);
  margin-right: 3px;
  letter-spacing: -1px;
}

.pricing-card.featured .pricing-price .amount {
  color: var(--primary);
}

.pricing-card:last-child .pricing-price .amount {
  color: var(--primary);
}

.pricing-price .period {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 400;
  align-self: flex-end;
  margin-bottom: 5px;
}

.pricing-save {
    display: inline-flex;
    background-color: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 8px 0 12px;
    min-width: 80px;
    height: 24px;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    overflow: hidden;
}

.pricing-save.alt {
    background-color: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    min-width: 80px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    overflow: hidden;
}

/* Ensure the savings percentage spans don't get too large */
#yearly-savings, #lifetime-savings {
    display: inline-block;
    min-width: 20px;
    text-align: center;
}

.pricing-description {
  font-size: 0.9rem;
  color: var(--text-light);
}

.pricing-body {
  padding: 30px 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pricing-features {
  margin-bottom: 30px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  color: var(--text-medium);
  font-size: 0.95rem;
}

.pricing-features .check-icon {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: white;
  margin-right: 14px;
  flex-shrink: 0;
}

.pricing-button {
  display: block;
  background-color: var(--primary);
  color: white;
  text-align: center;
  padding: 16px 20px;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  border: none;
  box-shadow: var(--shadow-sm);
  margin-top: auto;
}

.pricing-button:hover {
  background-color: var(--primary-dark);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.pricing-button.featured {
  background-color: var(--primary);
  color: white;
  position: relative;
  overflow: hidden;
}

.pricing-button.alt {
  background-color: var(--primary);
  color: white;
}

.location-selector {
  margin-top: 45px;
  text-align: center;
  background-color: var(--bg);
  padding: 30px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--bg-gray);
}

.location-info {
  margin-bottom: 20px;
}

.location-info p {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.location-info span {
  font-weight: 600;
  color: var(--primary);
}

.location-info small {
  color: var(--text-light);
  font-size: 0.85rem;
}

.country-select-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.country-select-container label {
  color: var(--text-medium);
  font-size: 0.9rem;
  font-weight: 500;
}

.custom-select {
  appearance: none;
  padding: 14px 16px;
  padding-right: 40px;
  border-radius: var(--border-radius);
  background-color: var(--bg-off-white);
  border: 1px solid var(--bg-gray);
  color: var(--text-dark);
  width: 100%;
  max-width: 300px;
  cursor: pointer;
  outline: none;
  transition: var(--transition);
  font-size: 0.95rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23CBD5E1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}

.custom-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.custom-select option {
  background-color: var(--bg);
  color: var(--text-dark);
  padding: 10px;
}

@media (min-width: 992px) {
  .pricing-container {
    flex-direction: row;
    align-items: stretch;
  }
  
  .pricing-card {
    flex: 1;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .pricing-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .pricing-card {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
  
  .pricing-card:last-child {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 768px) {
  .country-select-container {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  
  .custom-select {
    margin-left: 10px;
  }
}

@media (max-width: 767px) {
  .pricing {
    padding: 60px 0;
  }
  
  .pricing-container {
    margin-top: 30px;
    gap: 20px;
  }
  
  /* Ensure vertical order: Monthly, Yearly, Lifetime */
  .pricing-card {
    order: 0; /* Reset order */
  }
  
  .pricing-card:nth-child(1) { /* Monthly */
    order: 1;
  }
  
  .pricing-card:nth-child(2) { /* Yearly */
    order: 2;
  }
  
  .pricing-card:nth-child(3) { /* Lifetime */
    order: 3;
  }
  
  .pricing-card.featured {
    transform: scale(1);
    margin: 0;
    border-width: 2px;
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-8px);
  }
  
  .location-info p {
    font-size: 0.95rem;
  }
  
  .location-info small {
    font-size: 0.8rem;
  }
  
  .pricing-header {
    padding: 25px 20px;
  }
  
  .pricing-body {
    padding: 25px 20px;
  }
  
  .pricing-title {
    font-size: 1.2rem;
  }
  
  .pricing-price .amount {
    font-size: 2.8rem;
  }
}

@media (max-width: 480px) {
  .pricing {
    padding: 50px 0;
  }
  
  .pricing-container {
    gap: 20px;
  }
  
  .pricing-title {
    font-size: 1.15rem;
  }
  
  .pricing-price .amount {
    font-size: 2.5rem;
  }
  
  .pricing-features li {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }
  
  .pricing-button {
    font-size: 0.9rem;
    padding: 14px 15px;
  }
  
  .country-select-container {
    flex-direction: column;
    width: 100%;
  }
  
  .custom-select {
    max-width: 100%;
    width: 100%;
    margin-left: 0;
  }
  
  .location-selector {
    padding: 25px 20px;
  }
}

/* Form buttons container */
.form-buttons {
  display: flex;
  gap: 15px;
  margin-top: 16px;
}

/* Reset button */
.reset-btn {
  background-color: #64748b;
  color: white;
  border: none;
  padding: 16px 24px;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.reset-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition);
}

.reset-btn:hover {
  background-color: #475569;
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.reset-btn:hover::before {
  left: 100%;
  transition: 0.7s;
}