/* SeaHike Design Tokens */
:root {
  --primary-topaz: #5FB3B3;
  --light-topaz: #A3D5D5;
  --dark-topaz: #3D8E8E;
  --very-light-topaz: #E8F5F5;
  --navy-blue: #1E2A4A;
  --light-navy: #3D5278;
  --pale-navy: #6B7BA8;
  --stone-gray: #9CA3A6;
  --light-stone-gray: #C5CACC;
  --earth-brown: #A67C52;
  --light-earth-brown: #D4B896;
  --off-white: #F8F9FA;
  --white: #FFFFFF;
  --dark-text: #212121;
  --light-text: #757575;
  --light-gray: #E0E0E0;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--dark-text);
  line-height: 1.6;
  background: var(--white);
}

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

a:hover {
  text-decoration: underline;
}

img, svg {
  max-width: 100%;
  height: auto;
}

/* Container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header / Nav */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--light-gray);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy-blue);
  text-decoration: none;
}

.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-toggle {
  display: flex;
  gap: 0.25rem;
}

.lang-toggle a {
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--light-text);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.lang-toggle a:hover {
  background: var(--very-light-topaz);
  color: var(--dark-topaz);
  text-decoration: none;
}

.lang-toggle a.active {
  background: var(--primary-topaz);
  color: var(--white);
}

.btn {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  cursor: pointer;
  border: none;
}

.btn:hover {
  text-decoration: none;
}

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

.btn-primary:hover {
  background: var(--dark-topaz);
}

.btn-outline {
  background: transparent;
  color: var(--primary-topaz);
  border: 2px solid var(--primary-topaz);
}

.btn-outline:hover {
  background: var(--very-light-topaz);
}

.btn-disabled {
  background: var(--light-stone-gray);
  color: var(--stone-gray);
  cursor: default;
  pointer-events: none;
}

/* Hero Section */
.hero {
  padding: 8rem 0 5rem;
  background: linear-gradient(135deg, var(--navy-blue) 0%, var(--light-navy) 40%, var(--dark-topaz) 70%, var(--primary-topaz) 100%);
  color: var(--white);
  overflow: hidden;
}

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

.hero-text h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.store-badges {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
}

.store-badge svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-visual img {
  max-height: 420px;
  width: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* Features Section */
.features {
  padding: 5rem 0;
  background: var(--off-white);
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy-blue);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  text-align: center;
  color: var(--light-text);
  font-size: 1.05rem;
  margin-bottom: 3rem;
}

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

.feature-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-blue);
  margin-bottom: 0.5rem;
}

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

/* How It Works Section */
.how-it-works {
  padding: 5rem 0;
}

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

.step {
  text-align: center;
  padding: 1.5rem;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-topaz);
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-blue);
  margin-bottom: 0.5rem;
}

.step p {
  color: var(--light-text);
  font-size: 0.95rem;
}

/* CTA Section */
.cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--navy-blue) 0%, var(--dark-topaz) 100%);
  color: var(--white);
  text-align: center;
}

.cta h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.cta .store-badges {
  justify-content: center;
}

/* Footer */
.site-footer {
  padding: 2.5rem 0;
  background: var(--navy-blue);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

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

.footer-links a:hover {
  color: var(--light-topaz);
  text-decoration: none;
}

/* Legal Pages */
.legal-page {
  padding: 7rem 0 4rem;
  min-height: 100vh;
}

.legal-page h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy-blue);
  margin-bottom: 0.5rem;
}

.legal-page .last-updated {
  color: var(--light-text);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.legal-page h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy-blue);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-page h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

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

.legal-page ul, .legal-page ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.legal-page li {
  margin-bottom: 0.35rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--navy-blue);
  color: var(--white);
  padding: 1rem 1.5rem;
  display: none;
}

.cookie-banner.visible {
  display: block;
}

.cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-inner p {
  font-size: 0.9rem;
  opacity: 0.9;
  flex: 1;
  min-width: 200px;
}

.cookie-inner p a {
  color: var(--light-topaz);
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
}

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

.cookie-accept:hover {
  background: var(--dark-topaz);
}

.cookie-reject {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-reject:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 6rem 0 3rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .store-badges {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-visual img {
    max-height: 280px;
  }

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

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

  .nav-right .btn {
    display: none;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.75rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .store-badge {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }
}
