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

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

/* Skip Navigation Link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--primary-color);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: 600;
  z-index: 10000;
  border-radius: 0 0 0.5rem 0;
  transition: top 0.3s ease;
  transform: translateY(-100%);
  opacity: 0;
}

.skip-link:focus {
  top: 0;
  transform: translateY(0);
  opacity: 1;
  outline: 3px solid var(--primary-light);
  outline-offset: 2px;
}

/* Enhanced Focus Styles */
*:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 3px;
  border-radius: 4px;
}

.nav-links a:focus-visible {
  outline: 2px solid var(--primary-light);
  outline-offset: 4px;
}

.mobile-menu-toggle:focus-visible {
  outline: 2px solid var(--primary-light);
  outline-offset: 4px;
  border-radius: 8px;
}

.mobile-menu-close:focus-visible {
  outline: 2px solid var(--primary-light);
  outline-offset: 3px;
}

.mobile-nav-links a:focus-visible {
  outline: 3px solid var(--primary-light);
  outline-offset: 2px;
  background: rgba(16, 185, 129, 0.15);
}

:root {
  --primary-color: #10B981;
  --primary-dark: #059669;
  --primary-light: #34D399;
  --secondary-color: #8B5CF6;
  --accent-color: #10B981;
  --accent-light: #34D399;
  --success-color: #059669;
  --text-dark: #111827;
  --text-medium: #374151;
  --text-light: #6b7280;
  --text-muted: #9CA3AF;
  --bg-light: #f8fafc;
  --bg-subtle: #f1f5f9;
  --white: #ffffff;
  --border-color: #e2e8f0;
  --gradient: #10B981;
  --gradient-subtle: rgba(16, 185, 129, 0.05);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 40px rgba(10, 126, 164, 0.15);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.7;
  color: var(--text-dark);
  background: linear-gradient(180deg, #4b5563 0%, #374151 50%, #1f2937 100%);
  background-attachment: fixed;
  background-size: cover;
  font-feature-settings: 'cv11', 'ss01';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

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

.navbar {
  background: linear-gradient(180deg, #4b5563 0%, #374151 100%);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

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

.logo {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.025em;
  transition: opacity 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo::before {
  content: '';
  width: 40px;
  height: 40px;
  background: #1e1b4b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo:hover {
  opacity: 0.9;
}

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

.nav-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a::after {
  display: none;
}

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

.nav-links li:last-child a {
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 0.5rem 1.25rem;
  border-radius: 0.25rem;
  color: #a3e635;
}

.nav-links li:last-child a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  transition: transform 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.05);
}

.hamburger-line {
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

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

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu-toggle.active {
  opacity: 0;
  pointer-events: none;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(180deg, #4b5563 0%, #374151 50%, #1f2937 100%);
  backdrop-filter: blur(20px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  overflow-y: auto;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  transform: translateY(-20px);
  transition: transform 0.4s ease;
  max-width: 600px;
  margin: 0 auto;
}

.mobile-menu-overlay.active .mobile-menu-content {
  transform: translateY(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(16, 185, 129, 0.3);
  background: transparent;
}

.mobile-logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.025em;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-logo::before {
  content: '🍃';
  width: 48px;
  height: 48px;
  background: #10b981;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.mobile-menu-close {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
  position: relative;
  width: 44px;
  height: 44px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.close-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 3px;
  background: var(--white);
  transform: translate(-50%, -50%) rotate(45deg);
}

.close-icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 3px;
  background: var(--white);
  transform: rotate(-90deg);
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 1rem;
  flex: 1;
}

.mobile-nav-links li {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.mobile-menu-overlay.active .mobile-nav-links li {
  opacity: 1;
  transform: translateX(0);
}

.mobile-nav-links li:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-nav-links li:nth-child(2) {
  transition-delay: 0.15s;
}

.mobile-nav-links li:nth-child(3) {
  transition-delay: 0.2s;
}

.mobile-nav-links li:nth-child(4) {
  transition-delay: 0.25s;
}

.mobile-nav-links li:nth-child(5) {
  transition-delay: 0.3s;
}

.mobile-nav-links a {
  display: block;
  color: var(--white);
  text-decoration: none;
  font-size: 1.75rem;
  font-weight: 700;
  padding: 1.25rem 1.5rem;
  letter-spacing: -0.02em;
  transition: all 0.3s ease;
  position: relative;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.mobile-nav-links a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #10b981;
  border-radius: 12px 0 0 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav-links a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(16, 185, 129, 0.3);
  transform: translateX(4px);
}

.mobile-nav-links a:hover::before {
  opacity: 1;
}

.mobile-nav-links li:last-child a {
  color: var(--white);
  margin-top: 1.5rem;
  padding: 1.25rem 2rem;
  background: rgba(16, 185, 129, 0.15);
  border: 2px solid rgba(16, 185, 129, 0.4);
  border-radius: 12px;
  text-align: center;
  font-size: 1.5rem;
  position: relative;
  overflow: hidden;
}

.mobile-nav-links li:last-child a::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: left 0.5s ease;
}

.mobile-nav-links li:last-child a:hover {
  transform: translateX(0) translateY(-2px);
  background: rgba(16, 185, 129, 0.25);
  border-color: rgba(16, 185, 129, 0.6);
}

.mobile-nav-links li:last-child a:hover::before {
  left: 100%;
}

.hero {
  background: transparent;
  color: var(--white);
  padding: 10rem 0 6rem;
  text-align: left;
  position: relative;
  overflow: visible;
  min-height: 100vh;
}

.hero::before {
  display: none;
}

/* Decorative Blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(0px);
}

.hero-blob-1 {
  display: none;
}

.hero-blob-2 {
  display: none;
}

@keyframes blob-float {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  33% {
    transform: translate(30px, -30px) rotate(5deg);
  }

  66% {
    transform: translate(-20px, 20px) rotate(-5deg);
  }
}

/* Decorative Lines */
.hero-lines {
  position: absolute;
  pointer-events: none;
}

.hero-lines-left {
  bottom: 0;
  left: 0;
  width: 350px;
  height: 350px;
  background: url("data:image/svg+xml,%3Csvg width='350' height='350' viewBox='0 0 350 350' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.15)' stroke-width='2'%3E%3Ccircle cx='0' cy='350' r='100'/%3E%3Ccircle cx='0' cy='350' r='150'/%3E%3Ccircle cx='0' cy='350' r='200'/%3E%3Ccircle cx='0' cy='350' r='250'/%3E%3Ccircle cx='0' cy='350' r='300'/%3E%3C/g%3E%3C/svg%3E") no-repeat;
}

.hero-lines-right {
  bottom: 0;
  right: 0;
  width: 350px;
  height: 350px;
  background: url("data:image/svg+xml,%3Csvg width='350' height='350' viewBox='0 0 350 350' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.1)' stroke-width='2'%3E%3Ccircle cx='350' cy='350' r='100'/%3E%3Ccircle cx='350' cy='350' r='150'/%3E%3Ccircle cx='350' cy='350' r='200'/%3E%3Ccircle cx='350' cy='350' r='250'/%3E%3C/g%3E%3C/svg%3E") no-repeat;
}

/* Hero Grid Layout */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-phone {
  order: -1;
}

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

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
}

.hero-title-bold {
  font-style: italic;
  font-weight: 900;
  color: var(--white);
  display: block;
}

.hero-title-light {
  font-weight: 400;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.9);
  display: block;
  margin-top: 0.25rem;
}

.gradient-text {
  background: linear-gradient(135deg, #fff 0%, #fde68a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* Hero Logo Badge */
.hero-logo-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-logo-badge .logo-icon {
  width: 60px;
  height: 60px;
  background: #10b981;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

.hero-logo-badge .logo-text {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.85;
  max-width: 450px;
  line-height: 1.8;
  font-weight: 400;
  font-style: italic;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}

/* Green App Store Button */
.btn-appstore {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.5rem;
  background: linear-gradient(180deg, #84cc16 0%, #65a30d 100%);
  border-radius: 0.5rem;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.btn-appstore:hover {
  transform: translateY(-2px);
}

.btn-appstore .btn-icon {
  font-size: 1.5rem;
}

.btn-appstore .btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.btn-appstore .btn-text-small {
  font-size: 0.625rem;
  font-weight: 400;
  opacity: 0.9;
}

.btn-appstore .btn-text-large {
  font-size: 1rem;
  font-weight: 700;
}

/* Social Media Buttons */
.btn-social {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: linear-gradient(180deg, #38bdf8 0%, #0ea5e9 100%);
  border-radius: 0.5rem;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.btn-social:hover {
  transform: translateY(-2px);
}

.btn-social.btn-twitter {
  background: linear-gradient(180deg, #38bdf8 0%, #0ea5e9 100%);
}

.btn-social.btn-share {
  background: linear-gradient(180deg, #a78bfa 0%, #8b5cf6 100%);
}

.btn-social.btn-share:hover {}

/* Hero Buttons Container */
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.hero-buttons-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-tagline {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.5rem;
}

/* Gold Outline Button (kept for phone mockup) */
.btn-outline-gold {
  display: inline-block;
  padding: 0.625rem 1.75rem;
  border: 2px solid #fbbf24;
  border-radius: 2rem;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  background: transparent;
}

.btn-outline-gold:hover {
  background: rgba(251, 191, 36, 0.15);
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
}

.btn-outline-gold.btn-small {
  padding: 0.5rem 1.25rem;
  font-size: 0.625rem;
}

/* Scroll Indicator */
.scroll-indicator {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.scroll-indicator .chevron {
  display: block;
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255, 255, 255, 0.5);
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  transform: rotate(45deg);
  animation: chevron-bounce 2s infinite;
}

.scroll-indicator .chevron:nth-child(2) {
  animation-delay: 0.2s;
  margin-top: -10px;
}

@keyframes chevron-bounce {

  0%,
  100% {
    opacity: 0.3;
    transform: rotate(45deg) translateY(0);
  }

  50% {
    opacity: 1;
    transform: rotate(45deg) translateY(5px);
  }
}

/* Phone Mockup */
.hero-phone {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-frame {
  width: 380px;
  height: 280px;
  background: linear-gradient(180deg, #1f2937 0%, #111827 100%);
  border-radius: 20px;
  padding: 12px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
  position: relative;
}

.phone-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: #374151;
  border-radius: 50%;
  z-index: 5;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  border-radius: 10px;
  display: flex;
  overflow: hidden;
  position: relative;
}

.phone-notch {
  display: none;
}

.phone-sidebar {
  width: 100px;
  background: #1e293b;
  padding: 1rem 0.75rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.phone-sidebar-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  border-radius: 0.25rem;
  margin-bottom: 0.25rem;
  font-size: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.phone-sidebar-item.active {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
}

.phone-main {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0.75rem;
}

.phone-card {
  background: #10B981;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.phone-content {
  display: none;
}

.phone-logo {
  display: none;
}

.phone-content h3 {
  display: none;
}

.phone-content p {
  display: none;
}

.phone-scroll-indicator {
  display: none;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  letter-spacing: -0.01em;
}

.btn-primary {
  background-color: var(--white);
  color: var(--primary-color);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-primary:focus-visible {
  outline: 3px solid var(--primary-light);
  outline-offset: 4px;
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-large {
  padding: 1.125rem 2.75rem;
  font-size: 1.0625rem;
  border-radius: 0.875rem;
}

.section-title {
  font-size: 2.75rem;
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
}

.section-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 3.5rem;
  line-height: 1.7;
}

.features {
  padding: 7rem 0;
  background: transparent;
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2.25rem;
  border-radius: 1.25rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #10B981;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

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

.feature-icon {
  font-size: 2.75rem;
  margin-bottom: 1.25rem;
  display: inline-block;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--white);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  font-size: 0.9375rem;
}

.about {
  padding: 7rem 0;
  background: transparent;
}

.about-content {
  max-width: 750px;
  margin: 0 auto;
}

.about-content p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.75rem;
  line-height: 1.85;
}

.about-content h2 {
  font-size: 1.5rem;
  color: var(--text-dark);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.cta-section {
  background: rgba(16, 185, 129, 0.15);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: 2.75rem;
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.cta-section p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.92;
  font-weight: 400;
}

.footer {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 4rem 0 1.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.footer-section p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  line-height: 1.6;
}

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

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.footer-section a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.legal-page {
  padding: 8rem 0 6rem;
  background: transparent;
  min-height: 100vh;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.legal-content h1 {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  color: var(--white);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.legal-content .last-updated {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem;
  font-style: normal;
  font-size: 0.9375rem;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--white);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.legal-content h3 {
  font-size: 1.125rem;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--white);
  font-weight: 600;
}

.legal-content p {
  margin-bottom: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
  color: rgba(255, 255, 255, 0.85);
}

.legal-content li {
  margin-bottom: 0.625rem;
  line-height: 1.75;
  font-size: 0.9375rem;
}

.legal-content strong {
  color: var(--white);
  font-weight: 600;
}

.legal-content a {
  color: #10b981;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.legal-content a:hover {
  color: #34d399;
  text-decoration: underline;
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-logo-badge {
    justify-content: center;
  }

  .hero-subtitle {
    max-width: 100%;
    margin: 0 auto 2rem;
  }

  .hero-buttons {
    align-items: center;
  }

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

  .hero-phone {
    order: -1;
  }

  .phone-frame {
    width: 320px;
    height: 240px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 7rem 0 4rem;
    min-height: auto;
  }

  .hero-logo-badge .logo-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .hero-logo-badge .logo-text {
    font-size: 1.5rem;
  }

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

  .nav-content {
    padding: 0.75rem 0;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .logo::before {
    width: 32px;
    height: 32px;
  }

  .phone-frame {
    width: 280px;
    height: 200px;
  }

  .phone-content h3 {
    font-size: 1rem;
  }

  .hero-lines-left,
  .hero-lines-right {
    width: 200px;
    height: 200px;
  }

  .section-title {
    font-size: 2rem;
    letter-spacing: -0.02em;
  }

  .features {
    padding: 4rem 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .feature-card {
    padding: 1.75rem;
  }

  .cta-section {
    padding: 4rem 0;
  }

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

  .cta-section p {
    font-size: 1.0625rem;
  }

  .legal-content {
    padding: 2rem 1.5rem;
    border-radius: 1rem;
  }

  .legal-content h1 {
    font-size: 1.875rem;
  }

  .footer-content {
    gap: 2rem;
  }

  .about {
    padding: 4rem 0;
  }
}

@media (max-width: 480px) {
  .nav-links {
    gap: 0.5rem;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero-title-light {
    font-size: 1rem;
  }

  .phone-frame {
    width: 180px;
    height: 360px;
  }

  .btn-outline-gold {
    padding: 0.75rem 1.75rem;
    font-size: 0.75rem;
  }
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-top: 2px solid rgba(16, 185, 129, 0.2);
  padding: 1.5rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-consent-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-consent-text {
  flex: 1;
  min-width: 300px;
}

.cookie-consent-text h3 {
  color: var(--text-dark);
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}

.cookie-consent-text p {
  color: var(--text-medium);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

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

.cookie-consent-text a:hover {
  color: var(--primary-dark);
}

.cookie-consent-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  white-space: nowrap;
}

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

.cookie-btn-accept:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.cookie-btn-decline {
  background: transparent;
  color: var(--text-medium);
  border: 2px solid var(--border-color);
}

.cookie-btn-decline:hover {
  background: var(--bg-subtle);
  border-color: var(--text-medium);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .cookie-consent {
    padding: 1.25rem;
  }

  .cookie-consent-container {
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
  }

  .cookie-consent-text {
    min-width: 100%;
  }

  .cookie-consent-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
    text-align: center;
  }
}