/* High Tide - Static Landing Page Styles */

/* ===== CSS Variables ===== */
:root {
  /* Colors - Ocean Blue Palette */
  --background: hsl(200, 20%, 98%);
  --foreground: hsl(210, 80%, 25%);
  --card: hsl(200, 30%, 99%);
  --primary: hsl(195, 100%, 50%);
  --primary-dark: hsl(210, 85%, 40%);
  --primary-light: hsl(200, 80%, 55%);
  --primary-foreground: hsl(0, 0%, 100%);
  --contact: hsl(45,70%,50%);
  --contact-dark: hsl(35,80%,50%);
  --contact-border:hsl(48, 50%, 80%);
  --contact-label:hsl(45, 40%, 25%);
  --accent: hsl(175, 70%, 45%);
  --accent-light: hsl(175, 65%, 55%);
  --accent-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(200, 25%, 94%);
  --secondary-foreground: hsl(210, 50%, 25%);
  --muted: hsl(200, 20%, 96%);
  --muted-foreground: hsl(210, 20%, 50%);
  --border: hsl(200, 30%, 90%);

  /* Toolkit/Spotlight Colors */
  --toolkit-tides: hsl(205, 85%, 45%);
  --toolkit-tides-bg: hsl(205, 85%, 97%);
  --toolkit-waves: hsl(190, 80%, 42%);
  --toolkit-waves-bg: hsl(190, 80%, 97%);
  --toolkit-wind: hsl(220, 70%, 50%);
  --toolkit-wind-bg: hsl(220, 70%, 97%);
  --toolkit-marine: hsl(195, 75%, 45%);
  --toolkit-marine-bg: hsl(195, 75%, 97%);
  --toolkit-fishing: hsl(175, 70%, 40%);
  --toolkit-fishing-bg: hsl(175, 70%, 97%);
  --toolkit-astronomy: hsl(260, 60%, 55%);
  --toolkit-astronomy-bg: hsl(260, 60%, 97%);

  /* Gradients */
  --gradient-ocean: linear-gradient(135deg, hsl(205, 85%, 45%) 0%, hsl(175, 70%, 45%) 100%);
  --gradient-hero: linear-gradient(180deg, hsl(205, 40%, 97%) 0%, hsl(200, 30%, 99%) 50%, hsl(0, 0%, 100%) 100%);

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 hsl(210, 50%, 15%, 0.03);
  --shadow-md: 0 4px 6px -1px hsl(210, 50%, 15%, 0.05), 0 2px 4px -2px hsl(210, 50%, 15%, 0.05);
  --shadow-lg: 0 10px 15px -3px hsl(210, 50%, 15%, 0.08), 0 4px 6px -4px hsl(210, 50%, 15%, 0.05);
  --shadow-xl: 0 20px 25px -5px hsl(210, 50%, 15%, 0.1), 0 8px 10px -6px hsl(210, 50%, 15%, 0.08);
  --shadow-card: 0 4px 20px -2px hsl(205, 85%, 45%, 0.08);
  --shadow-button: 0 4px 14px -2px hsl(205, 85%, 45%, 0.4);

  /* Typography */
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Spacing */
  --radius: 0.75rem;
  --container-max: 1200px;
  --container-padding: 1.5rem;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

/* ===== Utilities ===== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.text-gradient {
  background: var(--gradient-ocean);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-waves {
  background: linear-gradient(135deg, var(--toolkit-waves), hsl(190, 80%, 55%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-wind {
  background: linear-gradient(135deg, var(--toolkit-wind), hsl(220, 70%, 65%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-marine {
  background: linear-gradient(135deg, var(--toolkit-marine), hsl(195, 75%, 55%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-fishing {
  background: linear-gradient(135deg, var(--toolkit-fishing), hsl(175, 70%, 55%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-astronomy {
  background: linear-gradient(135deg, hsl(260, 60%, 70%), hsl(280, 70%, 75%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.focus-ring:focus {
  outline: none;
}

.focus-ring:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* ===== Animations ===== */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes float-slow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes twinkle {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 1; }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-float-slow {
  animation: float-slow 8s ease-in-out infinite;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.header.scrolled {
  background: hsl(0, 0%, 100%, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
  padding: 0.75rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: var(--gradient-ocean);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
  box-shadow: var(--shadow-button);
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--foreground);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  border-radius: 0.5rem;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link:hover {
  color: var(--foreground);
}

/* ===== Desktop Dropdown ===== */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  cursor: pointer;
  background: none;
  border: none;
}

.dropdown-chevron {
  transition: transform 0.2s ease;
}

.nav-dropdown.open .dropdown-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.5rem;
  width: 12rem;
  background: white;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.5rem);
  transition: all 0.2s ease;
  z-index: 50;
}

.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: all 0.15s ease;
}

.dropdown-item:hover {
  background: hsl(205, 85%, 45%, 0.08);
  color: var(--foreground);
}

.dropdown-item-main {
  font-weight: 600;
  color: var(--foreground);
  border-bottom: 1px solid var(--border);
}

/* ===== Mobile Menu ===== */
.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 0.5rem;
  color: var(--foreground);
}

.menu-toggle .close-icon {
  display: none;
}

.menu-toggle.active .menu-icon {
  display: none;
}

.menu-toggle.active .close-icon {
  display: block;
}

.nav-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: hsl(0, 0%, 100%, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: 1rem 0;
}

.nav-mobile.active {
  display: block;
}

.nav-link-mobile {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted-foreground);
  border-radius: 0.5rem;
  transition: all 0.2s;
}

.nav-link-mobile:hover {
  color: var(--foreground);
  background: var(--secondary);
}

/* ===== Mobile Accordion ===== */
.mobile-accordion {
  margin-bottom: 0.25rem;
}

.mobile-accordion-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted-foreground);
  border-radius: 0.5rem;
  transition: all 0.2s;
  text-align: left;
}

.mobile-accordion-toggle:hover {
  color: var(--foreground);
  background: var(--secondary);
}

.accordion-chevron {
  transition: transform 0.2s ease;
}

.mobile-accordion.open .accordion-chevron {
  transform: rotate(180deg);
}

.mobile-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease;
}

.mobile-sub-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 1rem 0.625rem 2rem;
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  transition: all 0.15s ease;
}

.mobile-sub-link:hover {
  color: var(--foreground);
  background: var(--secondary);
}

.mobile-sub-link-main {
  font-weight: 600;
  color: var(--foreground);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
  transition: all 0.2s;
  padding:10px;
}

.btn-primary {
  background: linear-gradient(to right, var(--primary), var(--primary-dark));
  color: var(--primary-foreground);
  box-shadow: var(--shadow-button);
}

.btn-primary:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-2px);
}

.btn-contact {
  background: linear-gradient(to right, var(--contact), var(--contact-dark));
  color: var(--primary-foreground);
  box-shadow: var(--shadow-button);
}

.btn-contact:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--foreground);
}

.btn-ghost:hover {
  color: var(--primary);
}

.btn-white {
  background: white;
  color: var(--primary);
  box-shadow: var(--shadow-xl);
}

.btn-white:hover {
  box-shadow: 0 25px 50px -12px hsl(0, 0%, 0%, 0.25);
  transform: translateY(-4px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--foreground);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-xl {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

.btn-full {
  width: 100%;
}

.btn-mobile {
  display: block;
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.75rem 1.25rem;
  text-align: center;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
  linear-gradient(
      to bottom,
      rgba(255,255,255,0.95) 0%,
      rgba(255,255,255,0.55) 38%,
      rgba(255,255,255,0.20) 72%,
      rgba(255,255,255,0) 100%
    ),
    url("../img/ocean.jpg") center/cover no-repeat;

 
}

.hero-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  pointer-events: none;
}

.hero-blur-1 {
  top: 25%;
  left: 2.5rem;
  width: 16rem;
  height: 16rem;
  background: hsl(205, 85%, 45%, 0.05);
}

.hero-blur-2 {
  bottom: 25%;
  right: 2.5rem;
  width: 20rem;
  height: 20rem;
  background: hsl(175, 70%, 45%, 0.05);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 4rem 0 6rem;
}


.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: hsl(205, 85%, 45%, 0.1);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 800;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  text-wrap: balance;
}

.hero-subtitle {
  font-size: clamp(1rem, 3vw, 1.25rem);
  color: var(--muted-foreground);
  /*max-width: 42rem;*/
  margin: 0 auto 2.5rem;
  text-wrap: balance;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}


.hero-media {
  max-width: 58rem;
  margin: 0 auto 2.5rem;
}

.hero-media-frame {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  background: linear-gradient(135deg, hsl(205, 85%, 45%, 0.10), hsl(175, 70%, 45%, 0.08));
  border: 1px solid hsl(200, 30%, 90%, 0.8);
  box-shadow: var(--shadow-xl);
}

.hero-media-frame img {
  display: block;
  width: 100%;
  height: auto;
}

/* Optional: subtle “glass” highlight */
.hero-media-frame::after {
  content: '';
  position: absolute;
  inset: -40% -10% auto -10%;
  height: 80%;
  background: linear-gradient(120deg, hsl(0, 0%, 100%, 0.55), transparent 60%);
  transform: rotate(-8deg);
  pointer-events: none;
}

.hero-cta-primary{
  display: flex;
  flex-direction: column;
  align-items: stretch; /* makes note exactly same width as the button */
}

.hero-cta-note{
  margin-top: 0.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.hero-subtitle-glass{
  display: inline-block;
  padding: 0.7rem 1rem;
  border-radius: 1rem;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: 0 12px 30px -18px rgba(0,0,0,0.25);
  color: hsl(210, 80%, 10%); /* darker => stable contrast */
}


.social-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  color: var(--muted-foreground);
  background: #fff;
  padding: 1rem 2rem;
  border-radius: 50px;
    width: fit-content;
  margin: 0 auto;
}
.cta-mobile{ display:none; }

.rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stars {
  display: flex;
}

.star {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(45, 93%, 47%);
}

.star-half {
  opacity: 0.6;
}

.rating-value {
  font-weight: 600;
  color: var(--foreground);
}

.divider {
  width: 1px;
  height: 1.25rem;
  background: var(--border);
}

.proof-text {
  font-weight: 500;
}

.wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
  overflow: hidden;
}

.wave-divider svg {
  display: block;
  width: calc(100% + 2px);
  height: 60px;
}

.wave-divider-flip {
  transform: rotate(180deg);
  top: 0;
  bottom: auto;
}


.wave-divider-dark {
  color: var(--foreground);
}

.wave-divider-fill-white { color: #fff }


/* Ensure absolute wave dividers position correctly */
.testimonials { position: relative; }

/* Give room so waves don’t overlap content */
.testimonials { padding-top: calc(5rem + 40px); padding-bottom: calc(5rem + 40px); }
.astronomy { padding-top: calc(6rem + 40px); padding-bottom: calc(6rem + 40px); }


/* ===== Section Styles ===== */
.section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  background: hsl(205, 85%, 45%, 0.1);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-badge-tides {
  background: hsl(205, 85%, 45%, 0.15);
  color: var(--toolkit-tides);
}

.section-badge-waves {
  background: hsl(190, 80%, 42%, 0.15);
  color: var(--toolkit-waves);
}

.section-badge-wind {
  background: hsl(220, 70%, 50%, 0.15);
  color: var(--toolkit-wind);
}

.section-badge-marine {
  background: hsl(195, 75%, 45%, 0.15);
  color: var(--toolkit-marine);
}

.section-badge-fishing {
  background: hsl(175, 70%, 40%, 0.15);
  color: var(--toolkit-fishing);
}

.section-badge-astronomy {
  background: hsl(260, 60%, 55%, 0.2);
  color: hsl(260, 60%, 70%);a
}

.section-badge-contact {
  background: hsl(48, 70%, 50%, 0.15);
  color: hsl(45, 80%, 35%);
}

.section-title {
  font-size: 3rem;
  color: var(--foreground);
  margin-bottom: 1rem;
  font-weight:700;
}

.section-title.alt {
    color: var(--contact-label);
}

.section-title-left {
  text-align: left;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

.section-subtitle.alt {
  color: hsl(45,30%,40%);
}

/* ===== Features Section ===== */
.features {
  padding: 5rem 0 6rem;
  background: white;
}

.features-grid {
  display: grid;
  gap: 1.5rem;
}

.feature-card {
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  background: linear-gradient(180deg, var(--card) 0%, var(--background) 100%);
  border: 1px solid hsl(200, 30%, 90%, 0.5);
  box-shadow: var(--shadow-card);
  transition: all 0.3s;
}

.feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, hsl(205, 85%, 45%, 0.1), hsl(175, 70%, 45%, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1.25rem;
  transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-title {
  font-size: 1.25rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.feature-desc {
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* ===== Mid-Page CTA ===== */
.cta-mid {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
  text-align: center;
}

.cta-mid-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-ocean);
  opacity: 1;
}

.cta-mid-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 20% 40%, hsl(175, 70%, 45%, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 80% 60%, hsl(205, 85%, 55%, 0.3) 0%, transparent 60%);
}

.cta-mid-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 60' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 60V30C240 10 480 50 720 30C960 10 1200 50 1440 30V60H0Z' fill='white' fill-opacity='0.1'/%3E%3C/svg%3E") no-repeat center bottom;
  background-size: cover;
}

.cta-mid-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
  margin: 0 auto;
}

.cta-mid-title {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 800;
  color: var(--primary-foreground);
  margin-bottom: 1rem;
  text-wrap: balance;
}

.cta-mid-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: hsl(0, 0%, 100%, 0.85);
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-mid-btn {
  background: white;
  color: var(--primary);
  box-shadow: 0 8px 24px -4px hsl(205, 85%, 25%, 0.4);
}

.cta-mid-btn:hover {
  background: hsl(0, 0%, 98%);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -4px hsl(205, 85%, 25%, 0.5);
}

/* ===== Spotlight Sections ===== */
.spotlight {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}


.spotlight-tides {
  background: linear-gradient(180deg, var(--toolkit-tides-bg) 0%, white 100%);
}

.spotlight-waves {
  background: white;
}

.spotlight-wind {
  background: linear-gradient(180deg, var(--toolkit-wind-bg) 0%, white 100%);
}

.spotlight-marine {
  background: white;
}

.spotlight-fishing {
  background: linear-gradient(180deg, var(--toolkit-fishing-bg) 0%, white 100%);
}

.spotlight-content {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.spotlight-content-reverse {
  direction: ltr;
}

.spotlight-text {
  max-width: 32rem;
}

.spotlight-desc {
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.spotlight-list {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.spotlight-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.spotlight-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.spotlight-tides .spotlight-list li::before {
  background: var(--toolkit-tides);
}

.spotlight-waves .spotlight-list li::before {
  background: var(--toolkit-waves);
}

.spotlight-wind .spotlight-list li::before {
  background: var(--toolkit-wind);
}

.spotlight-marine .spotlight-list li::before {
  background: var(--toolkit-marine);
}

.spotlight-fishing .spotlight-list li::before {
  background: var(--toolkit-fishing);
}

.spotlight-list li strong {
  color: var(--foreground);
  font-weight: 600;
}

.spotlight-visual {
  display: flex;
  justify-content: center;
}

.spotlight-phone .phone-mockup {
  transform: perspective(1000px) rotateY(-5deg);
}

.phone-screen-tides {
  background: linear-gradient(135deg, hsl(205, 85%, 45%, 0.2), hsl(205, 85%, 65%, 0.1), var(--muted));
}

.phone-screen-waves {
  background: linear-gradient(135deg, hsl(190, 80%, 42%, 0.2), hsl(190, 80%, 55%, 0.1), var(--muted));
}

.phone-screen-wind {
  background: linear-gradient(135deg, hsl(220, 70%, 50%, 0.2), hsl(220, 70%, 65%, 0.1), var(--muted));
}

.phone-screen-marine {
  background: linear-gradient(135deg, hsl(195, 75%, 45%, 0.2), hsl(195, 75%, 55%, 0.1), var(--muted));
}

.phone-screen-fishing {
  background: linear-gradient(135deg, hsl(175, 70%, 40%, 0.2), hsl(175, 70%, 55%, 0.1), var(--muted));
}

.tilt{
  transform: translateY(8px) rotate(4deg);
  transform-origin: 50% 60%;
}

.tilt.b{
  transform: translateY(8px) rotate(-4deg);
}



/* ===== Astronomy Section ===== */
.astronomy {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(180deg, hsl(250, 50%, 12%) 0%, hsl(260, 45%, 8%) 100%);
  overflow: hidden;
}

.astronomy-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.astronomy-bg .star {
  position: absolute;
  background: white;
  border-radius: 50%;
  animation: twinkle 3s ease-in-out infinite;
}

.astronomy-content {
  position: relative;
  z-index: 10;
  display: grid;
  gap: 3rem;
  align-items: center;
}

.astronomy-text {
  max-width: 32rem;
}

.astronomy-title {
  color: white;
}

.astronomy-desc {
  color: hsl(260, 20%, 70%);
}

.astronomy-list li {
  color: hsl(260, 20%, 70%);
}

.astronomy-list li::before {
  background: hsl(260, 60%, 70%);
}

.astronomy-list li strong {
  color: white;
}

.astronomy-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.moon-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, hsl(260, 60%, 70%, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

.moon {
  width: 120px;
  height: 120px;
  color: hsl(45, 30%, 90%);
  filter: drop-shadow(0 0 30px hsl(260, 60%, 70%, 0.5));
  animation: float 6s ease-in-out infinite;
}

/* ===== Screenshots Section ===== */
.screenshots {
  padding: 5rem 0 6rem;
  background: white;
  overflow: hidden;
}

.screenshots-gallery {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.screenshot-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 180ms ease, transform 220ms ease;
}

.screenshots-gallery.is-fading .screenshot-img{
  opacity: 0;
  transform: translateY(10px) scale(0.98);
}

.screenshot-caption{
  text-align: center;
  margin-top: 1rem;
}

#app-preview .phone-screen{
  display: block; /* prevents image+text layout issues if something sneaks in */
}

.screenshot-caption{
  text-align: center;
  margin-top: 1rem;
}

section.spotlight .phone-mockup{
  height: clamp(320px, 50vw, 520px);  /* min, responsive, max */
}
section.spotlight .phone-screen{
  height: 100%;
}

.phone-screen img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-mockup {
  position: relative;
  background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
  border-radius: 2.5rem;
  padding: 0.5rem;
  box-shadow: 0 25px 50px -12px hsl(210, 50%, 15%, 0.25);
}

.phone-notch {
  position: absolute;
  top: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 5rem;
  height: 1.5rem;
  background: #000;
  border-radius: 1rem;
  z-index: 10;
}

.phone-screen {
  border-radius: 2rem;
  overflow: hidden;
  background: linear-gradient(135deg, var(--muted), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.phone-screen img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.phone-side {
  display: none;
}

.phone-side .phone-screen {
  width: 12rem;
  aspect-ratio: 9/19;
}

.phone-side {
  opacity: 0.4;
  transform: scale(0.75);
}

.phone-left {
  transform: scale(0.75) translateX(-1rem);
}

.phone-right {
  transform: scale(0.75) translateX(1rem);
}

.phone-main .phone-screen {
  width: 14rem;
  aspect-ratio: 9/19;
}

.phone-screen-main {
  background: linear-gradient(135deg, hsl(205, 85%, 45%, 0.2), hsl(175, 70%, 45%, 0.1), var(--muted));
}


.phone-placeholder-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

.phone-placeholder-desc {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

.screenshots-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.nav-btn {
  padding: 0.75rem;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--foreground);
  transition: background 0.2s;
}

.nav-btn:hover {
  background: hsl(200, 25%, 88%);
}

.dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 9999px;
  background: var(--border);
  transition: all 0.2s;
}

.dot:hover {
  background: hsl(210, 20%, 50%, 0.3);
}

.dot.active {
  width: 2rem;
  background: var(--primary);
}


/* ===== Pricing Section ===== */
.pricing {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(180deg, hsl(205, 85%, 97%) 0%, white 100%);
}

.pricing-grid {
  display: grid;
  gap: 2rem;
  max-width: 52rem;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  padding: 2rem;
  background: white;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.pricing-card-premium {
  border-color: var(--primary);
  box-shadow: 0 8px 30px -4px hsl(205, 85%, 45%, 0.2);
}

.pricing-badge {
  position: absolute;
  top: -0.75rem;
  right: 1.5rem;
  padding: 0.375rem 1rem;
  background: var(--gradient-ocean);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
}

.pricing-header {
  margin-bottom: 1.5rem;
}

.pricing-plan {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.pricing-desc {
  color: var(--muted-foreground);
  font-size: 0.9375rem;
}

.pricing-price {
  margin-bottom: 1.5rem;
}

.price-amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--foreground);
  line-height: 1;
}

.price-period {
  color: var(--muted-foreground);
  font-size: 1rem;
}

.pricing-features {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--muted-foreground);
}

.pricing-features li svg {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 0.125rem;
}

/* Value block */
.yearly-value{
  margin: 0.75rem 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  background: hsl(210 90% 55% / 0.08);
  border: 1px solid hsl(210 90% 45% / 0.20);
}

.yearly-value-main{
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--primary-dark);
}

.yearly-value-sub{
  font-size: 0.95rem;
  font-weight: 800;
  opacity: 0.85;
}

/* Chips */
.yearly-value-meta{
  display:flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.6rem;
}

.yearly-chip{
  display:inline-flex;
  align-items:center;
  padding: 0.35rem 0.6rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 800;
  background: hsl(140 70% 45% / 0.14);
  border: 1px solid hsl(140 60% 35% / 0.25);
  color: hsl(140 60% 25%);
}

.yearly-chip-soft{
  background: hsl(210 30% 50% / 0.10);
  border-color: hsl(210 30% 40% / 0.18);
  color: var(--muted-foreground);
}

.pricing-grid{
  max-width: 70rem; /* un peu plus large pour 3 cartes */
}

/* ===== FAQ Section ===== */
.faq {
  padding: 5rem 0 8rem;
  background: linear-gradient(180deg, white 0%, hsl(200, 25%, 94%, 0.3) 100%);
}

.faq-inner {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid hsl(200, 30%, 90%, 0.6);
  border-radius: 0.75rem;
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  text-align: left;
}

.faq-question h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  padding-right: 1rem;
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--muted-foreground);
  transition: transform 0.2s;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.2s;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer > p {
  overflow: hidden;
  padding: 0 1.5rem 1.5rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* ===== Contact Section ===== */
.contact {
  position: relative;
  padding: 3rem 0 5rem 0;
  background: linear-gradient(to bottom, hsl(48, 70%, 95%), hsl(45, 65%, 90%));
}

.contact-wave-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(-100%);
  line-height: 0;
}

.contact-wave-top svg {
  display: block;
  width: 100%;
  height: 60px;
}

.contact-form-container {
  max-width: 50rem;
  margin: 0 auto;
  background: hsl(0, 0%, 100%, 0.9);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid hsl(48, 50%, 85%);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-row, .form-group {
  margin-bottom:10px;
}

.form-group label {
  font-size: 0.875rem;
  color: var(--contact-label);
}

label svg {
    height: 1em;
    width:1em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--contact-border);
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: inherit;
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px hsl(205, 85%, 45%, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-success {
  text-align: center;
  padding: 2rem;
}

.success-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  color: hsl(45, 80%, 40%);
}

.contact-success h3 {
  font-size: 1.5rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.contact-success p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}


/* ===== Final CTA Section ===== */
.final-cta {
  position: relative;
  padding: 5rem 0 7rem;
  overflow: hidden;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark), var(--primary));
}

.final-cta-wave {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  color: white;
}

.final-cta-wave svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.final-cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

.final-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  border-radius: 1rem;
  background: hsl(0, 0%, 100%, 0.2);
  backdrop-filter: blur(8px);
  color: var(--primary-foreground);
  margin-bottom: 2rem;
}

.final-cta-title {
  font-size: clamp(1.875rem, 5vw, 3rem);
  color: var(--primary-foreground);
  margin-bottom: 1.5rem;
}

.final-cta-subtitle {
  font-size: 1.125rem;
  color: hsl(0, 0%, 100%, 0.8);
  max-width: 36rem;
  margin: 0 auto 2.5rem;
}

.final-cta-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  color: hsl(0, 0%, 100%, 0.7);
}

.stat-value {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary-foreground);
}

.stat-label {
  font-size: 0.875rem;
}

.stat-divider {
  width: 1px;
  height: 3rem;
  background: hsl(0, 0%, 100%, 0.2);
  display: none;
}


/* ===== Footer ===== */
.footer {
  overflow: hidden;
  background: var(--foreground);
  color: var(--primary-foreground);
  padding: 3rem 0 4rem;
}

.footer-wave-bg {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  color: white;
  pointer-events: none;
}

.footer-wave-bg svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 60%;
}

.footer .container {
  position: relative;
  z-index: 1;
}


.footer-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.logo-icon-dark {
  background: var(--gradient-ocean);
}

.footer-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
}

.footer-desc {
  color: hsl(0, 0%, 100%, 0.7);
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 20rem;
}

.footer-heading {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links ul,
.footer-support ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a,
.footer-support a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(0, 0%, 100%, 0.7);
  transition: color 0.2s;
}

.footer-links a:hover,
.footer-support a:hover {
  color: var(--primary-foreground);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid hsl(0, 0%, 100%, 0.1);
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: hsl(0, 0%, 100%, 0.5);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-disclaimer a {
  color:var(--primary);
  text-decoration: none;
  position: relative;
  transition: color .18s ease, opacity .18s ease;
}

/* Animated underline */
.footer-disclaimer a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 100%;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
  opacity: .85;
}

.footer-disclaimer a:hover,
.footer-disclaimer a:focus-visible{
  opacity: .95;
  text-shadow: 0 0 12px rgba(0,0,0,.15);
}

.footer-disclaimer a:hover::after,
.footer-disclaimer a:focus-visible::after{
  transform: scaleX(1);
}

/* Keyboard focus */
.footer-disclaimer a:focus-visible{
  outline: 2px solid currentColor;
  outline-offset: 3px;
  border-radius: 4px;
}

.footer-copyright {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(0, 0%, 100%, 0.5);
}

/* Language Switcher */
.language-switcher {
  position: relative;
  margin-top: 1.5rem;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: hsl(0, 0%, 100%, 0.1);
  border: 1px solid hsl(0, 0%, 100%, 0.2);
  border-radius: 0.5rem;
  color: hsl(0, 0%, 100%, 0.8);
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.language-toggle:hover {
  background: hsl(0, 0%, 100%, 0.15);
  color: var(--primary-foreground);
}

.language-toggle:focus {
  outline: none;
  box-shadow: 0 0 0 2px hsl(175, 70%, 45%, 0.5);
}

.language-chevron {
  transition: transform 0.2s ease;
}

.language-switcher.open .language-chevron {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  bottom: 100%;
  left: 0;
  margin-bottom: 0.5rem;
  background: hsl(210, 50%, 15%);
  border: 1px solid hsl(0, 0%, 100%, 0.15);
  border-radius: 0.5rem;
  padding: 0.5rem 0;
  min-width: 10rem;
  box-shadow: 0 -10px 25px -5px hsl(0, 0%, 0%, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
  list-style: none;
  max-height: 180px;
  overflow-y: auto;
}

.language-switcher.open .language-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.5rem 0.8rem;
  background: none;
  border: none;
  color: hsl(0, 0%, 100%, 0.7);
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.15s ease;
  text-align: left;
}

.language-option:hover {
  background: hsl(0, 0%, 100%, 0.1);
  color: var(--primary-foreground);
  border-radius:8px;
}

.language-option.active {
  background: hsl(175, 70%, 45%, 0.2);
  color: var(--accent);
  border-radius:8px;
}

/* 2-column language menu */
#language-menu {
  display: none;              /* keep your existing open/close logic */
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px 10px;
  padding: 10px;
  min-width: 320px;
  max-width: 420px;
}

#language-switcher.open #language-menu {
  display: grid;              /* IMPORTANT: grid when open */
}

/* Make buttons fill their cell nicely */
#language-menu .language-option {
  width: 100%;
  display: flex;
  align-items: center;
  gap: .5rem;
  justify-content: flex-start;
  white-space: nowrap;
}

#language-menu .language-option { font-variant-numeric: tabular-nums; }

/* ===== Privacy Page Styles ===== */
.legal-page {
  padding-top: 6rem;
  padding-bottom: 4rem;
  min-height: 100vh;
}

.legal-content {
  max-width: 48rem;
  margin: 0 auto;
}

.legal-header {
  text-align: center;
  margin-bottom: 3rem;
}

.legal-header h1 {
  font-size: 2.5rem;
  margin: 1rem 0 0.5rem;
}

.legal-updated {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.legal-section {
  margin-bottom: 2rem;
}

.legal-section h2 {
  font-size: 1.5rem;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.legal-section h3 {
  font-size: 1.125rem;
  color: var(--foreground);
  margin: 1.5rem 0 0.75rem;
}

.legal-section p {
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.legal-section ul {
  padding-left: 1.5rem;
  list-style: disc;
}

.legal-section ul li {
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.legal-section a {
  color: var(--primary);
  text-decoration: underline;
}

.legal-back {
  text-align: center;
  margin-top: 3rem;
}


.badge-primary {
  background: hsl(205, 85%, 45%, 0.1);
  color: var(--primary);
}

/* ===== Testimonials Section ===== */
.testimonials {
  padding: 5rem 0;
  background: var(--background);
  overflow: hidden;
}

.testimonials-slider {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  margin-top: 3rem;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  flex: 0 0 100%;
  min-width: 0;
  padding: 2rem;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  margin: 0;
}


.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
}

.testimonial-stars svg {
  width: 1.125rem;
  height: 1.125rem;
  color: hsl(45, 100%, 51%);
}

.testimonial-quote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--gradient-ocean);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-avatar span {
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.testimonial-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--foreground);
  font-style: normal;
}

.testimonial-role {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
}

.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.testimonial-btn {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--secondary);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--foreground);
}

.testimonial-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.testimonial-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.testimonial-dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.testimonial-dot:hover {
  background: var(--muted-foreground);
}

.testimonial-dot.active {
  background: var(--primary);
  width: 1.75rem;
  border-radius: 0.5rem;
}

/* RESPONSIVE */
@media (max-width: 520px) {
  #language-menu {
    grid-template-columns: 1fr 1fr;
    min-height: 250px;

  }
  .social-proof {
      gap: 0.7rem;
      padding: 0.7rem 1rem;
      line-height: 1.25rem;
  }
  .social-proof .proof-text + .divider {
    display: none;
  }
  .hero .container{
    padding-left: 16px;
    padding-right: 16px;
  }
  .hero .container .btn-lg {
    padding: 0.7rem 1rem;
  }
  .cta-desktop{ display:none; }
  .cta-mobile{ display:inline; }

  .hero-cta-stack .btn{
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .hero-content {
    padding-top:2rem;
  }
}

@media (min-width: 640px) {
  .hero-ctas {
    flex-direction: row;
    justify-content: center;
  }

  .divider {
    display: block;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .phone-side {
    display: block;
  }

  .phone-side .phone-screen {
    width: 14rem;
  }

  .phone-main .phone-screen {
    width: 16rem;
  }

  .screenshots-gallery {
    gap: 2rem;
  }
    .form-row {
    grid-template-columns: 1fr 1fr;
  }
    .stat-divider {
    display: block;
  }

}

@media (min-width: 768px) {
  .spotlight-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .spotlight-content-reverse .spotlight-text {
    order: 2;
  }

  .spotlight-content-reverse .spotlight-visual {
    order: 1;
  }
  .astronomy-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  .phone-main .phone-screen {
    width: 18rem;
  }
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .footer-copyright {
    flex-direction: row;
    justify-content: space-between;
  }
  .testimonial-card {
    flex: 0 0 calc(50% - 1.5rem);
    margin: 0 0.75rem;
  }
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .testimonial-card {
    flex: 0 0 calc(33.333% - 1.5rem);
    padding: 2.5rem;
  }

}