/* ============================================
   Reset & Base Styles
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #16a34a;
  --primary-dark: #15803d;
  --primary-light: #22c55e;
  --secondary-color: #10b981;
  --accent-color: #059669;
  --text-dark: #1a5f3f;
  --text-light: #6b7280;
  --bg-light: #f0fdf4;
  --bg-white: #ffffff;
  --border-color: #d1fae5;
  --gradient-1: linear-gradient(135deg, #16a34a 0%, #10b981 100%);
  --gradient-2: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  --gradient-3: linear-gradient(135deg, #10b981 0%, #059669 100%);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(22, 163, 74, 0.2);
  --shadow-xl: 0 20px 25px -5px rgba(22, 163, 74, 0.2);
}

html {
  scroll-behavior: smooth;
}

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

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

@media (max-width: 640px) {
  .container {
    padding: 0 15px;
  }
}

/* ============================================
   Breadcrumbs
   ============================================ */
.breadcrumbs {
  display: none; /* Hidden on homepage - only show on subpages */
  background: var(--bg-light);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  z-index: 998;
  margin-top: 0;
}

.breadcrumb-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
}

.breadcrumb-list li {
  display: flex;
  align-items: center;
}

.breadcrumb-list li:not(:last-child)::after {
  content: "›";
  margin-left: 0.5rem;
  color: var(--text-light);
}

.breadcrumb-list a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-list a:hover {
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .breadcrumbs {
    display: none;
  }
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform: translateY(0) !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.navbar.hidden {
  /* Navbar should always be visible - this class is no longer used */
  transform: translateY(0) !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

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

.logo a {
  display: inline-block;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.logo a:hover {
  transform: scale(1.05);
}

.logo img {
  height: 95px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Make logo background transparent */
.logo-transparent {
  mix-blend-mode: multiply;
  background: transparent;
}

.logo {
  background: transparent;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.2s ease;
}

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

.btn-nav {
  background: var(--gradient-1);
  color: white !important;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 2px 6px rgba(16, 185, 129, 0.2);
}

.btn-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(16, 185, 129, 0.3);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.2s ease;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  margin-top: 80px;
  padding: 2.5rem 0 0;
  background: linear-gradient(180deg, var(--bg-light) 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* Adjust hero margin when breadcrumbs are visible */
body:has(.breadcrumbs) .hero {
  margin-top: 120px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 1.5rem 0;
}

@media (max-width: 968px) {
  .hero-content {
    gap: 2rem;
  }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

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

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.store-badge {
  height: 70px !important;
  width: 200px !important;
  object-fit: contain;
  transition: transform 0.2s ease;
  border-radius: 10px;
  display: block;
}

.store-badge:hover {
  transform: scale(1.05);
}

/* Ensure all store badges are same size */
.hero-cta .btn img,
.download-buttons .btn img {
  display: block !important;
  height: 70px !important;
  width: 200px !important;
  object-fit: contain !important;
  max-width: 200px !important;
}

.hero-trial {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

/* Trust Badges */
.trust-section {
  margin-top: 2rem;
}

.trust-badges {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: all 0.2s ease;
}

.trust-item:hover {
  border-color: var(--primary-color);
  background: var(--bg-light);
}

.social-proof {
  text-align: center;
  padding: 0.875rem;
  background: var(--bg-light);
  border-radius: 8px;
}

.proof-text {
  color: var(--text-dark);
  font-size: 0.95rem;
  margin: 0;
}

.proof-text strong {
  color: var(--primary-color);
  font-weight: 700;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.hero-image img {
  object-fit: contain;
}

.hero-app-image {
  max-width: 90%;
  width: auto;
  height: auto;
  max-height: 600px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(22, 163, 74, 0.2);
  animation: float 4s ease-in-out infinite;
  display: block;
  transition: transform 0.3s ease;
}

.hero-app-image:hover {
  transform: scale(1.02);
}

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

/* Fade in animation for sections */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeInUp 0.6s ease-out;
}

.hero-wave {
  margin-top: 2.5rem;
  color: var(--bg-light);
}

.hero-wave svg {
  width: 100%;
  height: auto;
  display: block;
  fill: var(--bg-light);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1.5;
}

/* Store badge buttons - larger */
.hero-cta .btn,
.download-buttons .btn {
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.hero-cta .btn:hover,
.download-buttons .btn:hover {
  transform: none;
  box-shadow: none;
}

.btn-primary {
  background: var(--gradient-1);
  color: white;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* Store badge buttons - no green background, just the image */
.hero-cta .btn,
.download-buttons .btn {
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: inline-block;
  line-height: 0;
}

.hero-cta .btn:hover,
.download-buttons .btn:hover {
  transform: scale(1.05);
  box-shadow: none !important;
  background: transparent !important;
}

.btn-secondary {
  background: var(--bg-white);
  color: var(--primary-color);
  border: 1.5px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-1px);
}

/* ============================================
   Comparison Table
   ============================================ */
.comparison {
  background: var(--bg-white);
  padding: 3.5rem 0 2rem;
}

.comparison-table-wrapper {
  margin-top: 2rem;
}

.comparison-table {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-collapse: collapse;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.comparison-table thead {
  background: var(--gradient-1);
  color: white;
}

.comparison-table th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 700;
  font-size: 1rem;
}

.comparison-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-dark);
  font-size: 0.95rem;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr:hover {
  background: var(--bg-light);
}

.comparison-bad {
  color: rgba(255, 255, 255, 0.9) !important;
  background: rgba(239, 68, 68, 0.1);
}

.comparison-good {
  color: rgba(255, 255, 255, 0.9) !important;
  background: rgba(16, 185, 129, 0.1);
}

.comparison-table tbody .comparison-bad {
  color: #dc2626 !important;
  background: rgba(239, 68, 68, 0.05);
}

.comparison-table tbody .comparison-good {
  color: #059669 !important;
  background: rgba(16, 185, 129, 0.05);
}

.comparison-table .checkmark {
  color: #22c55e;
  font-weight: 700;
  font-size: 1.1em;
  margin-left: 0.5rem;
  display: inline-block;
}

/* Mobile: Cards statt Tabelle */
@media (max-width: 768px) {
  .comparison-table-wrapper {
    display: none;
  }

  .comparison-mobile {
    display: block;
  }

  .comparison-card {
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-md);
  }

  .comparison-card-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color);
  }

  .comparison-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
  }

  .comparison-row:last-child {
    border-bottom: none;
  }

  .comparison-label {
    font-weight: 600;
    color: var(--text-dark);
    flex: 0 0 40%;
  }

  .comparison-value {
    flex: 1;
    text-align: right;
    font-size: 0.9rem;
  }

  .comparison-value.bad {
    color: #dc2626;
  }

  .comparison-value.good {
    color: #059669;
    font-weight: 600;
  }

  .checkmark {
    color: #22c55e;
    font-weight: 700;
    font-size: 1.2em;
    margin-left: 0.5rem;
    display: inline-block;
  }

  .trust-badges {
    flex-direction: column;
    gap: 0.75rem;
  }

  .trust-item {
    padding: 0.625rem 1rem;
    font-size: 0.85rem;
  }

  .footer-seo-text {
    max-width: 100%;
    font-size: 0.8rem;
  }

  .faq-question {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
  }

  .faq-question span:first-child {
    padding-right: 0.75rem;
    font-size: 0.95rem;
  }

  .faq-answer {
    padding: 0 1.5rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 1.5rem 1.25rem 1.5rem;
  }

  .faq-answer p {
    font-size: 0.9rem;
  }

  .faq-icon {
    width: 28px;
    height: 28px;
    font-size: 1.1rem;
    flex-shrink: 0;
  }

  .pricing-badge {
    font-size: 0.75rem;
    padding: 0.5rem 1.25rem;
    top: -12px;
  }

  .pricing-card h3 {
    font-size: 1.75rem;
  }

  .pricing-features {
    margin-bottom: 1.5rem;
  }

  .pricing-features li {
    font-size: 1rem;
    padding: 0.625rem 0;
  }

  .pricing-note {
    font-size: 0.8rem;
    margin-top: 1.25rem;
  }
}

.comparison-mobile {
  display: none;
}

@media (max-width: 768px) {
  .comparison-table-wrapper {
    display: none;
  }

  .comparison-mobile {
    display: block;
  }
}

/* ============================================
   Section Styles
   ============================================ */
section {
  padding: 3rem 0;
}

/* Hero to Features: less space */
.features {
  padding-top: 0;
}

/* Other sections: more space */
.technology,
.coming-soon,
.testimonials,
.pricing,
.download,
.faq {
  padding: 3.5rem 0;
}

@media (max-width: 640px) {
  section {
    padding: 2rem 0;
  }

  .technology,
  .coming-soon,
  .testimonials,
  .pricing,
  .download,
  .faq {
    padding: 2.5rem 0;
  }
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3.5rem;
}

.section-header h2 {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: var(--text-dark);
  line-height: 1.2;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .section-header {
    margin-bottom: 2.5rem;
  }

  .section-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .section-header p {
    font-size: 1rem;
  }
}

/* ============================================
   Features Section
   ============================================ */
.features {
  background: var(--bg-white);
  padding-top: 0;
  padding-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.feature-card {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid var(--border-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(22, 163, 74, 0.15);
  border-color: var(--primary-color);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

/* Feature images removed - keeping styles for potential future use */
.feature-image {
  display: none;
}

.feature-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
  line-height: 1.3;
}

.feature-content p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1rem;
}

/* ============================================
   How It Works Section
   ============================================ */
.how-it-works {
  background: var(--bg-white);
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-color),
    transparent
  );
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 768px) {
  .how-it-works-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.how-it-works-step {
  background: linear-gradient(
    135deg,
    var(--bg-white) 0%,
    rgba(34, 197, 94, 0.02) 100%
  );
  border-radius: 24px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  border: 2px solid rgba(34, 197, 94, 0.1);
  overflow: hidden;
}

.how-it-works-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.how-it-works-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(34, 197, 94, 0.15);
  border-color: var(--primary-color);
}

.how-it-works-step:hover::before {
  transform: scaleX(1);
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--gradient-1);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  font-weight: 800;
  margin: 0 auto 1.75rem;
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.25);
  transition: all 0.3s ease;
  position: relative;
}

.step-number::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(34, 197, 94, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.how-it-works-step:hover .step-number {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.35);
}

.how-it-works-step:hover .step-number::after {
  opacity: 1;
}

.how-it-works-step h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
  line-height: 1.3;
}

.how-it-works-step p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 1rem;
}

/* ============================================
   Technology & Security Section
   ============================================ */
.technology {
  background: var(--bg-light);
  padding: 3.5rem 0;
}

.technology-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .technology-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .technology-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.technology-card {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(34, 197, 94, 0.15);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 280px;
}

.technology-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-color);
}

.technology-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.25rem;
  background: rgba(34, 197, 94, 0.12);
  border-radius: 14px;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem;
  flex-shrink: 0;
}

.technology-icon svg {
  width: 36px;
  height: 36px;
}

.technology-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.875rem;
  color: var(--text-dark);
  line-height: 1.4;
}

.technology-card p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.9rem;
  flex-grow: 1;
}

.security-details {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  max-width: 800px;
  margin: 0 auto;
}

.security-details h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.security-details ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.security-details li {
  padding: 0.75rem 0;
  color: var(--text-dark);
  font-size: 1.125rem;
  border-bottom: 1px solid var(--border-color);
}

.security-details li:last-child {
  border-bottom: none;
}

.security-note {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--primary-color);
}

.security-note strong {
  color: var(--text-dark);
}

.security-support {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.security-support a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

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

/* ============================================
   Coming Soon Section
   ============================================ */
.coming-soon {
  background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.coming-soon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.coming-soon-card {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 2px dashed var(--border-color);
  position: relative;
  transition: all 0.3s ease;
}

.coming-soon-card:hover {
  border-color: var(--primary-color);
  border-style: solid;
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(22, 163, 74, 0.15);
  background: linear-gradient(
    135deg,
    var(--bg-white) 0%,
    rgba(34, 197, 94, 0.02) 100%
  );
}

.badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--gradient-2);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.coming-soon-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
  line-height: 1.3;
}

.coming-soon-card p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1rem;
}

.wishlist-cta {
  background: var(--gradient-1);
  border-radius: 24px;
  padding: 3.5rem 3rem;
  text-align: center;
  color: white;
  margin-top: 4rem;
  box-shadow: 0 10px 40px rgba(22, 163, 74, 0.25);
  position: relative;
  overflow: hidden;
}

.wishlist-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
}

.wishlist-content {
  position: relative;
  z-index: 1;
}

.wishlist-content h3 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.wishlist-content p {
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  line-height: 1.8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.wishlist-cta .btn-secondary {
  background: white;
  color: var(--primary-color);
  border: none;
}

.wishlist-cta .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.9);
}

/* ============================================
   Gallery Section
   ============================================ */
.gallery {
  background: var(--bg-light);
  padding: 5rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.2s ease;
  aspect-ratio: 16/10;
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.2s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 2rem 1.5rem 1.5rem;
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay p {
  font-weight: 600;
  font-size: 1.125rem;
  margin: 0;
}

/* ============================================
   Pricing Section
   ============================================ */
.pricing {
  background: var(--bg-white);
  padding: 3.5rem 0;
}

.pricing-card {
  max-width: 550px;
  margin: 0 auto;
  background: var(--bg-white);
  border-radius: 24px;
  padding: 3.5rem 3rem;
  box-shadow: 0 10px 40px rgba(22, 163, 74, 0.15);
  border: 2px solid var(--border-color);
  position: relative;
  text-align: center;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(22, 163, 74, 0.2);
  border-color: var(--primary-color);
}

.pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-1);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
}

.pricing-card h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.pricing-price {
  margin-bottom: 2rem;
}

.price-amount {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary-color);
  display: block;
}

.price-period {
  font-size: 1rem;
  color: var(--text-light);
  display: block;
  margin-top: 0.5rem;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}

.pricing-features li {
  padding: 0.75rem 0;
  color: var(--text-dark);
  font-size: 1.125rem;
  border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-note {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--text-light);
  font-style: italic;
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials {
  background: var(--bg-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid var(--border-color);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 4rem;
  color: var(--primary-color);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(22, 163, 74, 0.15);
  border-color: var(--primary-color);
}

.stars {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.testimonial-text {
  font-size: 1.125rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

/* ============================================
   Download Section
   ============================================ */
.download {
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
  position: relative;
  overflow: hidden;
}

.download::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-1);
}

.download-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.download-text h2 {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: var(--text-dark);
  line-height: 1.2;
}

.download-text p {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.download-buttons {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.download-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.download-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
}

/* ============================================
   FAQ Section
   ============================================ */
.faq {
  background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
}

.faq-item {
  background: white;
  border-radius: 16px;
  border: 2px solid var(--border-color);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
  border-color: var(--primary-color);
  box-shadow: 0 4px 16px rgba(22, 163, 74, 0.15);
  transform: translateY(-2px);
}

.faq-item.active {
  border-color: var(--primary-color);
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.2);
  background: linear-gradient(135deg, white 0%, var(--bg-light) 100%);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  transition: all 0.2s ease;
  position: relative;
}

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

.faq-question span:first-child {
  flex: 1;
  padding-right: 1rem;
}

.faq-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
  border-radius: 50%;
  color: var(--primary-color);
  font-size: 1.25rem;
  font-weight: 300;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--gradient-1);
  color: white;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 2rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1rem;
  margin: 0;
  padding-top: 0.5rem;
}

/* ============================================
   Legal Pages
   ============================================ */
.legal-page {
  margin-top: 80px;
  padding: 4rem 0;
  background: var(--bg-white);
  min-height: calc(100vh - 80px);
}

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

.legal-content h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.legal-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.legal-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.legal-content p {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
  color: var(--text-dark);
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-content a {
  color: var(--primary-color);
  text-decoration: underline;
  transition: color 0.2s ease;
}

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

.legal-back {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--border-color);
  text-align: center;
}

.legal-back .btn-primary {
  background: var(--text-dark);
  color: white;
  border: 2px solid var(--text-dark);
}

.legal-back .btn-primary:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.logo a {
  display: inline-block;
  text-decoration: none;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--text-dark);
  color: white;
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 4rem;
  margin-bottom: 2rem;
}

.footer-logo img {
  height: 95px;
  width: auto;
  max-width: 100%;
  margin-bottom: 1rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  opacity: 0.9;
  object-fit: contain;
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}

.footer-seo-text {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
  max-width: 300px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-column h4 {
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

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

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

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

.footer-bottom a:hover {
  color: white;
  text-decoration: underline;
}

/* ============================================
   Scroll to Top Button
   ============================================ */
.scroll-to-top {
  position: fixed !important;
  bottom: 30px !important;
  right: 30px !important;
  width: 60px !important;
  height: 60px !important;
  background: var(--gradient-1) !important;
  color: white !important;
  border: none !important;
  border-radius: 50% !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 6px 25px rgba(22, 163, 74, 0.5) !important;
  z-index: 99999 !important;
  transition: all 0.3s ease !important;
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  pointer-events: none;
  visibility: hidden;
}

.scroll-to-top.visible {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
  pointer-events: auto !important;
  visibility: visible !important;
}

.scroll-emoji {
  font-size: 24px;
  line-height: 1;
  position: absolute;
}

.scroll-to-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.scroll-to-top svg {
  width: 24px;
  height: 24px;
  opacity: 0;
}

.scroll-to-top:active {
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .scroll-to-top {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
  }

  .scroll-to-top svg {
    width: 20px;
    height: 20px;
  }
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 968px) {
  .hero {
    margin-top: 60px;
  }

  /* Overlay when menu is open */
  body.menu-open::before {
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    animation: fadeIn 0.2s ease;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  .nav-menu {
    position: fixed;
    right: -100%;
    top: 0;
    height: 100vh;
    width: 280px;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.1);
    padding: 5rem 0 2rem;
    z-index: 1000;
    transition: right 0.3s ease;
    text-align: left;
    overflow-y: auto;
    border-left: 1px solid var(--border-color);
  }

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

  .nav-menu li {
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .nav-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    width: 100%;
    text-align: left;
  }

  .nav-menu .btn-nav {
    margin: 0.5rem 1.5rem;
    display: block;
    width: calc(100% - 3rem);
    text-align: center;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

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

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
    padding: 1.5rem 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-app-image {
    max-width: 85%;
    max-height: 400px;
  }

  .hero-image {
    order: -1;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .download-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .technology-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    margin: 0 1rem;
    padding: 2rem;
  }

  .feature-card,
  .coming-soon-card,
  .testimonial-card {
    padding: 1.75rem 1.5rem;
  }

  .testimonial-card::before {
    font-size: 3rem;
    top: 0.75rem;
    left: 1.25rem;
  }

  .stars {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  .testimonial-author {
    font-size: 0.875rem;
  }

  .badge {
    font-size: 0.75rem;
    padding: 0.375rem 0.875rem;
    top: -10px;
    right: 15px;
  }

  .coming-soon-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.875rem;
  }

  .coming-soon-card p {
    font-size: 0.95rem;
  }

  .feature-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.875rem;
  }

  .feature-content p {
    font-size: 0.95rem;
  }

  .wishlist-cta {
    padding: 2rem 1.5rem;
    margin-top: 2rem;
  }

  .wishlist-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  .wishlist-content p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .download-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .download-text p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .download-buttons {
    gap: 0.75rem;
    margin-top: 1rem;
  }

  .contact-left h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }

  .contact-left p {
    font-size: 1rem;
  }

  .contact-email-link {
    padding: 1.25rem 1.5rem;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .contact-email-icon {
    width: 40px;
    height: 40px;
  }

  .email-emoji {
    font-size: 1.5rem;
  }

  .contact-email-text {
    flex-direction: column;
    gap: 0.25rem;
  }

  .contact-label {
    font-size: 0.875rem;
  }

  .contact-address {
    font-size: 1rem;
  }

  .comparison-card {
    padding: 1.5rem 1.25rem;
    margin-bottom: 1.25rem;
  }

  .comparison-card-title {
    font-size: 1rem;
    margin-bottom: 0.875rem;
  }

  .comparison-row {
    padding: 0.625rem 0;
    flex-direction: column;
    gap: 0.5rem;
  }

  .comparison-label {
    flex: 1;
    font-size: 0.875rem;
  }

  .comparison-value {
    text-align: left;
    font-size: 0.875rem;
  }

  .how-it-works-step {
    padding: 2rem 1.5rem;
  }

  .step-number {
    width: 70px;
    height: 70px;
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .how-it-works-step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.875rem;
  }

  .how-it-works-step p {
    font-size: 0.95rem;
  }

  .pricing-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
  }

  .pricing-features li {
    font-size: 1rem;
    padding: 0.625rem 0;
  }

  .technology-card {
    padding: 2rem 1.5rem;
    min-height: auto;
  }

  .technology-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }

  .technology-icon svg {
    width: 32px;
    height: 32px;
  }

  .technology-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
  }

  .technology-card p {
    font-size: 0.875rem;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 1.5rem 0 0;
    margin-top: 60px;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }

  .hero-trial {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
  }

  .trust-section {
    margin-top: 1.5rem;
  }

  .trust-badges {
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }

  .trust-item {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    text-align: center;
  }

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

  .proof-text {
    font-size: 0.9rem;
  }

  .store-badge {
    height: 60px !important;
    width: 180px !important;
    max-width: 180px !important;
  }

  .hero-cta .btn img,
  .download-buttons .btn img {
    height: 60px !important;
    width: 180px !important;
    max-width: 180px !important;
  }

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

  .section-header {
    margin-bottom: 2rem;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .section-header p {
    font-size: 0.95rem;
  }

  .features-grid,
  .coming-soon-grid,
  .testimonials-grid,
  .technology-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-cta,
  .download-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .logo img {
    height: 80px;
  }

  .footer-logo img {
    height: 80px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
  }

  .footer-seo-text {
    font-size: 0.75rem;
    max-width: 100%;
  }

  .technology,
  .pricing,
  .testimonials {
    padding: 2rem 0;
  }

  .legal-page {
    padding: 2rem 0;
  }

  .feature-content h3,
  .coming-soon-card h3 {
    font-size: 1.25rem;
  }

  .feature-content p,
  .coming-soon-card p {
    font-size: 0.95rem;
  }

  .pricing-card {
    padding: 1.5rem;
  }

  .price-amount {
    font-size: 2.5rem;
  }

  .testimonial-text {
    font-size: 1rem;
  }

  .container {
    padding: 0 15px;
  }
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
  background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
  padding: 3.5rem 0;
  position: relative;
}

.contact-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--bg-white);
  padding: 3.5rem 3rem;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(22, 163, 74, 0.1);
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.contact-content:hover {
  box-shadow: 0 15px 50px rgba(22, 163, 74, 0.15);
  border-color: var(--primary-color);
}

.contact-left {
  text-align: left;
}

.contact-left h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-dark);
  line-height: 1.2;
}

.contact-left p {
  margin: 0;
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1.125rem;
}

.contact-right {
  display: flex;
  justify-content: flex-end;
}

.contact-email-link {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--gradient-1);
  padding: 1.5rem 2rem;
  border-radius: 16px;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
  min-width: 280px;
  justify-content: flex-start;
}

.contact-email-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(22, 163, 74, 0.4);
  background: var(--gradient-2);
}

.contact-email-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  flex-shrink: 0;
}

.email-emoji {
  font-size: 28px;
  line-height: 1;
}

.contact-email-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-label {
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-address {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
}

@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 2rem;
  }

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

  .contact-left h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }

  .contact-left p {
    font-size: 1rem;
  }

  .contact-right {
    justify-content: center;
  }

  .contact-email-link {
    min-width: 100%;
    justify-content: center;
    padding: 1.5rem 1.5rem;
  }

  .contact-email-icon {
    width: 44px;
    height: 44px;
  }

  .email-emoji {
    font-size: 1.75rem;
  }
}

@media (max-width: 640px) {
  .contact-content {
    padding: 2rem 1.5rem;
  }

  .contact-left h2 {
    font-size: 1.75rem;
  }

  .contact-email-link {
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
  }

  .contact-email-text {
    flex-direction: column;
    gap: 0.25rem;
    align-items: center;
  }

  .contact-label {
    font-size: 0.875rem;
  }

  .contact-address {
    font-size: 1rem;
  }
}
