/* ==========================================================================
   Landing Page Styles - Google-Inspired Clean Design
   Minimal, clean, focused on clarity and content
   ========================================================================== */

/* Typography - Google-style clean sans-serif */
/* @import url("https://fonts.googleapis.com/css2?family=Google+Sans:wght@400;500;700&family=Roboto:wght@400;500&display=swap"); */

/* Fallback if Google Sans isn't available */
/* @import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap"); */

/* Landing-specific variables - Slate color palette */
:root {
  --primary: #0f172a;
  --primary-hover: #1e293b;
  --primary-light: #f1f5f9;
  --accent: #334155;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --white: #ffffff;
}

/* Simple, subtle animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Scroll-triggered animations - subtle */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-delay-1 {
  transition-delay: 0.1s;
}
.animate-delay-2 {
  transition-delay: 0.2s;
}
.animate-delay-3 {
  transition-delay: 0.3s;
}

/* Navigation - Clean Google-style with scroll-aware styling
   ========================================================================== */

.overscroll-fix {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: -1;
}

.overscroll-fix::before {
  content: "";
  display: block;
  margin: 0 auto;
  max-width: calc(var(--container-max) - 4px);
  width: 100%;
  height: 50dvh;
  background-color: white;
  border-left: 1px solid var(--gray-200);
  border-right: 1px solid var(--gray-200);
}

.nav-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.landing-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1.5rem;
  max-width: calc(var(--container-max) - 4px);
  margin: 0 auto;
  background-color: var(--white);
  border-left: 1px solid var(--gray-200);
  border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  animation: nav-scroll linear both;
  animation-timeline: scroll();
  animation-range: 0px 100px;
}

@keyframes nav-scroll {
  0% {
    border-bottom-color: transparent;
    box-shadow: none;
  }
  100% {
    border-bottom-color: var(--gray-200);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  }
}

/* Fallback for browsers without scroll-driven animations */
@supports not (animation-timeline: scroll()) {
  .landing-nav {
    border-bottom-color: var(--gray-200);
  }
}

@media (min-width: 768px) {
  .landing-nav {
    padding: 0.875rem 2rem;
  }
}

.landing-nav > div {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-link {
  padding: 0.5rem 1rem;
  /*  font-family: "DM Sans", "Google Sans", sans-serif; */
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--gray-700);
  border-radius: 1rem;
  transition: background-color 0.2s ease;
  corner-shape: squircle;
}

.nav-link:hover {
  background-color: var(--gray-100);
}

.nav-cta {
  padding: 0.625rem 1.5rem;
  /* font-family: "DM Sans", "Google Sans", sans-serif; */
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--white);
  background-color: var(--primary);
  border-radius: 1rem;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  corner-shape: squircle;
}

.nav-cta:hover {
  background-color: var(--primary-hover);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.3);
}

.landing-logo {
  display: flex;
  align-items: center;
}

.landing-logo img {
  height: 24px;
  width: auto;
}

/* Hero Section - Clean, centered, lots of whitespace
   ========================================================================== */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 7rem 1.5rem 4rem;
  background-color: var(--white);
  min-height: auto;
  border-left: 1px solid var(--gray-200);
  border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

@media (min-width: 768px) {
  .hero {
    padding: 8rem 2rem 5rem;
  }
}

.hero-content {
  text-align: center;
  max-width: 800px;
  animation: fadeUp 0.6s ease-out forwards;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  background-color: var(--primary-light);
  border-radius: 100px;
  /* font-family: "DM Sans", "Google Sans", sans-serif; */
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background-color: var(--primary);
  border-radius: 50%;
}

.hero-title {
  /* font-family: "DM Sans", "Google Sans", sans-serif; */
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
  font-weight: 300;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  text-wrap: pretty;
}

.brand-name {
  font-family: "Maven Pro", "DM Sans", sans-serif;
  font-weight: 500;
  color: var(--primary);
}

.hero-subtitle {
  /* font-family: "Roboto", "DM Sans", sans-serif; */
  font-size: 1.125rem;
  line-height: 1.6;
  font-weight: 400;
  color: var(--gray-700);
  max-width: 580px;
  margin: 0 auto 2rem;
  text-wrap-style: pretty;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 480px) {
  .hero-cta-group {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--primary);
  color: var(--white);
  /* font-family: "DM Sans", "Google Sans", sans-serif; */
  font-size: 1rem;
  font-weight: 500;
  padding: 0.875rem 1.75rem;
  border-radius: 1rem;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  corner-shape: squircle;
}

.hero-cta:hover {
  background-color: var(--primary-hover);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.3);
}

.hero-cta svg {
  width: 18px;
  height: 18px;
}

.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  /* font-family: "DM Sans", "Google Sans", sans-serif; */
  color: var(--primary);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.875rem 1.75rem;
  border-radius: 1rem;
  transition: background-color 0.2s ease;
  corner-shape: squircle;
}

.hero-cta-secondary:hover {
  background-color: var(--primary-light);
}

.hero-image-container {
  margin-top: 4rem;
  width: 100%;
  max-width: 900px;
  animation: fadeUp 0.6s ease-out 0.2s both;
}

.hero-image {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

/* Logo Marquee Section - Subtle scrolling logos
   ========================================================================== */
.logo-marquee-section {
  padding: 1.25rem 0 3rem;
  background-color: var(--white);
  border-left: 1px solid var(--gray-200);
  border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  overflow: hidden;
}

.logo-marquee-label {
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-400);
  margin-bottom: 1rem;
}

.logo-marquee-wrapper {
  position: relative;
  width: 100%;
}

.logo-marquee-gradient {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.logo-marquee-gradient-left {
  left: 0;
  background: linear-gradient(to right, var(--white) 0%, transparent 100%);
}

.logo-marquee-gradient-right {
  right: 0;
  background: linear-gradient(to left, var(--white) 0%, transparent 100%);
}

@media (min-width: 768px) {
  .logo-marquee-gradient {
    width: 150px;
  }
}

.logo-marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
}

.logo-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.logo-marquee-content {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding-right: 4rem;
}

@media (min-width: 768px) {
  .logo-marquee-content {
    gap: 5rem;
    padding-right: 5rem;
  }
}

.logo-marquee-content img {
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.5);
  transition: filter 0.4s ease;
}

.logo-marquee-content img:hover {
  filter: grayscale(0%) opacity(1);
}

@media (min-width: 768px) {
  .logo-marquee-content img {
    height: 42px;
    max-width: 160px;
  }
}

/* Reduced motion: stop animation */
@media (prefers-reduced-motion: reduce) {
  .logo-marquee-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  .logo-marquee-content:last-child {
    display: none;
  }

  .logo-marquee-gradient {
    display: none;
  }
}

/* How It Works Section - Clean cards
   ========================================================================== */
.how-it-works {
  padding: 5rem 1.5rem;
  background-color: var(--gray-50);
  border-left: 1px solid var(--gray-200);
  border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

@media (min-width: 768px) {
  .how-it-works {
    padding: 6rem 2rem;
  }
}

.how-it-works-container {
  max-width: 1100px;
  margin: 0 auto;
}

.how-it-works-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-eyebrow {
  /* font-family: "DM Sans", "Google Sans", sans-serif; */
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-600);
  margin-bottom: 0.75rem;
}

.section-headline {
  /* font-family: "DM Sans", "Google Sans", sans-serif; */
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 400;
  color: var(--gray-900);
  letter-spacing: -0.01em;
  line-height: 1.3;
  text-wrap: pretty;
}

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

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.step-card {
  padding: 2rem;
  background-color: var(--white);
  border-radius: 8px;
  border: 1px solid var(--gray-200);
  transition: box-shadow 0.2s ease;
}

.step-card:hover {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.05);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--primary-light);
  color: var(--primary);
  /* font-family: "DM Sans", "Google Sans", sans-serif; */
  font-size: 1rem;
  font-weight: 500;
  border-radius: 50%;
  margin-bottom: 1.25rem;
}

.step-title {
  /* font-family: "DM Sans", "Google Sans", sans-serif; */
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.step-description {
  /* font-family: "Roboto", "DM Sans", sans-serif; */
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--gray-700);
}

/* Showcase Sections - Google-style clean design
   ========================================================================== */
.showcase-section {
  padding: 5rem 1.5rem;
  background-color: var(--white);
  border-left: 1px solid var(--gray-200);
  border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  overflow: hidden;
}

@media (min-width: 768px) {
  .showcase-section {
    padding: 6rem 2rem;
  }
}

.showcase-section.showcase-alt {
  background-color: var(--gray-50);
}

.showcase-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Section Headers */
.showcase-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.showcase-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
  margin-bottom: 1rem;
}

.showcase-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 400;
  color: var(--gray-900);
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 1rem;
  text-wrap: pretty;
}

.showcase-text {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--gray-600);
}

/* Screenshot Display */
.showcase-display {
  position: relative;
}

.screenshot-wrapper {
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--gray-200);
}

.screenshot-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.screenshot-wrapper-large {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Safari Browser Frame */
.browser-frame {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06), 0 20px 40px -10px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--gray-200);
}

.browser-header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 6px 12px;
  background: #0f172a;
  border-bottom: 1px solid #020617;
}

.browser-buttons {
  position: absolute;
  left: 12px;
  display: flex;
  gap: 6px;
}

.browser-btn {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.browser-btn-close {
  background: #ff5f57;
}

.browser-btn-minimize {
  background: #febc2e;
}

.browser-btn-maximize {
  background: #28c840;
}

.browser-address-bar {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 2px 16px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  width: 60%;
  max-width: 400px;
}

.browser-content img {
  width: 100%;
  height: auto;
  display: block;
}

/* Split Layout */
.showcase-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .showcase-split {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

@media (min-width: 1024px) {
  .showcase-split {
    gap: 5rem;
  }
}

.showcase-split-content {
  order: 2;
}

@media (min-width: 768px) {
  .showcase-split-content {
    order: 1;
  }
}

.showcase-split-content .showcase-title {
  text-align: left;
}

.showcase-split-content .showcase-text {
  text-align: left;
  margin-bottom: 1.5rem;
}

/* Checklist */
.showcase-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.showcase-checklist li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--gray-700);
}

.showcase-checklist svg {
  width: 18px;
  height: 18px;
  color: #34a853;
  flex-shrink: 0;
}

/* Phone Frame - iPhone Style */
.showcase-split-visual {
  display: flex;
  justify-content: center;
  order: 1;
}

@media (min-width: 768px) {
  .showcase-split-visual {
    order: 2;
  }
}

.phone-frame {
  position: relative;
  width: 280px;
  background: linear-gradient(135deg, #444 0%, #1a1a1a 50%, #333 100%);
  border-radius: 42px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 25px 50px -12px rgba(0, 0, 0, 0.4), 0 12px 24px -8px rgba(0, 0, 0, 0.3);
}

/* Power button - right side */
.phone-frame::before {
  content: "";
  position: absolute;
  right: -2px;
  top: 180px;
  width: 2px;
  height: 70px;
  background: #222;
  border-radius: 0 1px 1px 0;
}

/* Volume buttons - left side */
.phone-frame::after {
  content: "";
  position: absolute;
  left: -2px;
  top: 140px;
  width: 2px;
  height: 45px;
  background: #222;
  border-radius: 1px 0 0 1px;
  box-shadow: 0 55px 0 #222;
}

.phone-frame .phone-screen {
  position: relative;
  background: #000;
  border-radius: 34px;
  overflow: hidden;
  padding-top: 2.25rem;
  background-color: #f9fafc;
}

.phone-frame .phone-screen::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 18px;
  background: #222;
  border-radius: 12px;
  z-index: 10;
}

.phone-frame img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 768px) {
  .phone-frame {
    width: 300px;
    border-radius: 44px;
    padding: 7px;
  }

  .phone-frame .phone-screen {
    border-radius: 38px;
  }

  .phone-frame .phone-screen::before {
    top: 10px;
    width: 80px;
    height: 20px;
  }
}

@media (min-width: 1024px) {
  .phone-frame {
    width: 320px;
    border-radius: 46px;
    padding: 8px;
  }

  .phone-frame .phone-screen {
    border-radius: 40px;
  }

  .phone-frame .phone-screen::before {
    top: 10px;
    width: 86px;
    height: 22px;
  }
}

/* Use Cases Section - Grid of use case cards
   ========================================================================== */
.use-cases-section {
  padding: 5rem 1.5rem;
  background-color: var(--gray-50);
  border-left: 1px solid var(--gray-200);
  border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

@media (min-width: 768px) {
  .use-cases-section {
    padding: 6rem 2rem;
  }
}

.use-cases-container {
  max-width: 1100px;
  margin: 0 auto;
}

.use-cases-header {
  text-align: center;
  margin-bottom: 3rem;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

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

@media (min-width: 1024px) {
  .use-cases-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.use-case-card {
  padding: 1.5rem;
  background-color: var(--white);
  border-radius: 8px;
  border: 1px solid var(--gray-200);
  transition: box-shadow 0.2s ease;
}

.use-case-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.use-case-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 1rem;
  padding: 0.5rem;
  background-color: var(--gray-100);
  border-radius: 8px;
  color: var(--gray-600);
}

.use-case-icon svg {
  width: 100%;
  height: 100%;
}

.use-case-title {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.use-case-description {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--gray-600);
}

.use-case-description a {
  color: var(--gray-900);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.use-case-description a:hover {
  color: var(--primary);
}

/* Testimonials Section - Clean white cards on light gray
   ========================================================================== */
.testimonials-section {
  padding: 5rem 1.5rem;
  background-color: var(--white);
  border-left: 1px solid var(--gray-200);
  border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

@media (min-width: 768px) {
  .testimonials-section {
    padding: 6rem 2rem;
  }
}

.testimonials-container {
  max-width: 1100px;
  margin: 0 auto;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.testimonial-card {
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 1.75rem;
  transition: box-shadow 0.2s ease;
}

.testimonial-card:hover {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.05);
}

.testimonial-stars {
  display: flex;
  gap: 0.125rem;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: #eab308;
}

.testimonial-quote {
  /* font-family: "Roboto", "DM Sans", sans-serif; */
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--gray-800);
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  /* font-family: "DM Sans", "Google Sans", sans-serif; */
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--primary);
}

.testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.testimonial-name {
  /* font-family: "DM Sans", "Google Sans", sans-serif; */
  font-weight: 500;
  color: var(--gray-900);
  font-size: 0.9375rem;
}

.testimonial-role {
  /* font-family: "Roboto", "DM Sans", sans-serif; */
  font-size: 0.8125rem;
  color: var(--gray-600);
}

/* CTA Section - Clean and simple
   ========================================================================== */
.cta-section {
  padding: 5rem 1.5rem;
  background-color: var(--white);
  border-left: 1px solid var(--gray-200);
  border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

@media (min-width: 768px) {
  .cta-section {
    padding: 6rem 2rem;
  }
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  /* font-family: "DM Sans", "Google Sans", sans-serif; */
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  color: var(--gray-900);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  line-height: 1.3;
  text-wrap: pretty;
}

.cta-subtitle {
  /* font-family: "Roboto", "DM Sans", sans-serif; */
  font-size: 1.125rem;
  color: var(--gray-700);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--primary);
  color: var(--white);
  /* font-family: "DM Sans", "Google Sans", sans-serif; */
  font-size: 1rem;
  font-weight: 500;
  padding: 0.875rem 2rem;
  border-radius: 1rem;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  corner-shape: squircle;
}

.cta-button:hover {
  background-color: var(--primary-hover);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.3);
}

.cta-button svg {
  width: 18px;
  height: 18px;
}

.cta-note {
  margin-top: 1.25rem;
  /* font-family: "Roboto", "DM Sans", sans-serif; */
  font-size: 0.875rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
}

.cta-note::before {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2322c55e'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* Footer - Simple and clean
   ========================================================================== */
.landing-footer {
  background-color: var(--gray-50);
  color: var(--gray-700);
  padding: 2.5rem 1.5rem;
  border-top: 1px solid var(--gray-200);
  border-left: 1px solid var(--gray-200);
  border-right: 1px solid var(--gray-200);
}

@media (min-width: 768px) {
  .landing-footer {
    padding: 3rem 2rem;
  }
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .footer-brand {
    align-items: flex-start;
  }
}

.footer-brand img {
  height: 20px;
  width: auto;
  opacity: 0.7;
}

.footer-tagline {
  /* font-family: "Roboto", "DM Sans", sans-serif; */
  font-size: 0.8125rem;
  color: var(--gray-600);
}

.footer-nav {
  display: flex;
  gap: 2rem;
}

.footer-nav a {
  /* font-family: "Roboto", "DM Sans", sans-serif; */
  font-size: 0.8125rem;
  color: var(--gray-600);
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--gray-900);
}

.footer-copyright {
  /* font-family: "Roboto", "DM Sans", sans-serif; */
  font-size: 0.8125rem;
  color: var(--gray-500);
  text-align: center;
}

@media (min-width: 768px) {
  .footer-copyright {
    text-align: right;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .animate-on-scroll {
    opacity: 1;
    transform: none;
  }
}

/* Print styles */
@media print {
  .nav-container {
    position: static;
  }

  .landing-nav {
    border: none;
  }
}
