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

:root {
  --color-dark: #041320;
  --color-light: #f8f9fa;
  --color-muted: #7a889a;
  --color-accent: #43a076;
  --color-accent-dark: #327b59;
  --color-blue: #2196f3;
  --color-surface: rgba(255, 255, 255, 0.96);
  --border: rgba(4, 19, 32, 0.12);
  --gradient: linear-gradient(135deg, rgba(4, 19, 32, 0.92), rgba(5, 50, 90, 0.9) 55%, rgba(33, 150, 243, 0.85));
  --radius: 18px;
  --brand-blue: #2196f3;
  --brand-green: #43a076;
  --brand-yellow: #f9ac3e;
  --brand-orange: #d75700;
  --brand-dark: #2d2d2d;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Geologica', 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--color-dark);
  background: linear-gradient(160deg, #f0f4f8, #dfe9f3) fixed;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  background: rgba(248, 249, 250, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.language-selector {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: #fff;
  border-radius: 999px;
  padding: 0.25rem 0.8rem 0.25rem 0.8rem;
  border: 1px solid rgba(4, 19, 32, 0.08);
  box-shadow: 0 8px 18px rgba(4, 19, 32, 0.08);
}

.language-selector__icon {
  font-size: 1rem;
}

.language-selector select {
  border: none;
  background: transparent;
  font-weight: 600;
  color: var(--color-dark);
  padding: 0.35rem 0.35rem 0.35rem 0.35rem;
  cursor: pointer;
  appearance: none;
}

.language-selector select:focus {
  outline: none;
}

.logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(4, 19, 32, 0.15);
}

.logo-label {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.logo-tagline {
  color: var(--color-muted);
  font-size: 0.85rem;
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  font-weight: 500;
}

.nav-links a {
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

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

.btn-primary,
.btn-secondary,
.btn-link {
  border-radius: 999px;
  font-weight: 600;
  padding: 0.85rem 1.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-green), var(--brand-blue));
  color: #fff;
  box-shadow: 0 12px 24px rgba(33, 150, 243, 0.35);
}

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

.btn-secondary {
  background: var(--color-surface);
  border: 1px solid var(--border);
  color: var(--color-dark);
  box-shadow: 0 6px 12px rgba(4, 19, 32, 0.08);
}

.btn-secondary--ghost {
  background: transparent;
  border: 1px dashed var(--border);
  box-shadow: none;
}

.btn-link {
  padding: 0.5rem 0;
  color: var(--color-blue);
  box-shadow: none;
}

.hero .btn-link {
  color: var(--color-light);
  border-bottom: 1px dotted rgba(248, 249, 250, 0.6);
}

main {
  padding: 2rem clamp(1rem, 5vw, 5rem) 4rem;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(2rem, 6vw, 4rem);
  margin-top: 1rem;
  background: var(--gradient);
  color: var(--color-light);
  border-radius: 32px;
  box-shadow: 0 28px 60px rgba(4, 19, 32, 0.3);
  overflow: hidden;
}

.hero__content,
.hero__media {
  flex: 1 1 320px;
  min-width: 0;
  opacity: 0;
  animation: heroReveal 0.85s ease-out forwards;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero__media {
  max-width: 400px;
  animation-delay: 0.15s;
  display: flex;
  align-items: stretch;
  margin: 0 auto;
}

.hero-carousel {
  position: relative;
  background: rgba(4, 19, 32, 0.85);
  border-radius: 40px;
  padding: 1.5rem;
  box-shadow: 0 35px 60px rgba(4, 19, 32, 0.6);
  border: 1px solid rgba(248, 249, 250, 0.12);
  width: 100%;
  display: flex;
  flex-direction: column;
  min-height: clamp(420px, 70vh, 760px);
  z-index: 1;
}

.hero-carousel__viewport {
  overflow: hidden;
  flex: 1;
  display: flex;
}

.hero-carousel__slide {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(248, 249, 250, 0.85);
  width: 100%;
}

.hero-carousel__slide.is-active {
  display: flex;
}

.hero-carousel__device {
  background: #01070e;
  border-radius: 40px;
  padding: 1.2rem;
  border: 1px solid rgba(248, 249, 250, 0.1);
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-carousel__device img {
  border-radius: 28px;
  width: auto;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
}

.hero-carousel__caption {
  margin: 0;
  font-weight: 500;
}

.hero-carousel__controls {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-carousel__control {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(248, 249, 250, 0.35);
  background: transparent;
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
}

.hero-carousel__control:hover {
  background: rgba(248, 249, 250, 0.12);
}

.hero-carousel__dots {
  display: flex;
  gap: 0.5rem;
}

.hero-carousel__dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: none;
  background: rgba(248, 249, 250, 0.25);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-carousel__dot.is-active {
  background: #fff;
  transform: scale(1.25);
}

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248, 249, 250, 0.75);
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin: 0 0 1rem;
}

.hero__lead {
  color: rgba(248, 249, 250, 0.85);
  line-height: 1.6;
  max-width: 540px;
  font-size: 1.1rem;
}

.hero__cta-group {
  margin: 1.25rem 0 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero__cta {
  width: min(420px, 100%);
  font-size: 1.05rem;
  text-align: center;
}

.hero__cta-meta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 520px;
}

.hero__cta-note {
  margin: 0;
  color: rgba(248, 249, 250, 0.7);
  font-size: 0.95rem;
}

.btn-google {
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  background: #fff;
  color: #041320;
  font-weight: 600;
  box-shadow: 0 18px 32px rgba(4, 19, 32, 0.18);
  border: 1.5px solid rgba(4, 19, 32, 0.08);
  width: fit-content;
  position: relative;
  isolation: isolate;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  outline: 2px dashed rgba(66, 133, 244, 0.45);
  outline-offset: 8px;
  animation: btnGoogleGlow 5s ease-in-out infinite, btnGoogleOutlinePulse 2.8s ease-in-out infinite;
}

.btn-google::before,
.btn-google::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.btn-google::before {
  background: linear-gradient(
    120deg,
    rgba(66, 133, 244, 0),
    rgba(66, 133, 244, 0.25),
    rgba(66, 133, 244, 0)
  );
  transform: translateX(-120%);
  opacity: 0.45;
  mix-blend-mode: soft-light;
  animation: btnGoogleShimmer 3.75s ease-in-out infinite;
  z-index: 0;
}

.btn-google::after {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(66, 133, 244, 0.95) 0 55%, rgba(66, 133, 244, 0.1) 65%, transparent 75%);
  border: 2px solid rgba(255, 255, 255, 0.8);
  top: -8px;
  left: -8px;
  right: auto;
  bottom: auto;
  filter: drop-shadow(0 0 12px rgba(66, 133, 244, 0.35));
  animation: btnGoogleCornerOrbit 4.5s ease-in-out infinite;
  z-index: 2;
  mix-blend-mode: screen;
}

.btn-google span,
.btn-google__icon {
  position: relative;
  z-index: 1;
}

.btn-google:hover,
.btn-google:focus-visible {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 26px 36px rgba(4, 19, 32, 0.25);
}

.btn-google:hover::before,
.btn-google:focus-visible::before {
  opacity: 0.75;
}

.btn-google__icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #4285f4;
  font-weight: 700;
  border: 1px solid rgba(66, 133, 244, 0.35);
  font-size: 1rem;
  box-shadow: 0 6px 14px rgba(66, 133, 244, 0.25);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  animation: btnGoogleIconWave 4.5s ease-in-out infinite;
}

.btn-google:hover .btn-google__icon,
.btn-google:focus-visible .btn-google__icon {
  animation: none;
  transform: rotate(-6deg) scale(1.08);
  box-shadow: 0 10px 18px rgba(66, 133, 244, 0.35);
}

@keyframes btnGoogleGlow {
  0%,
  100% {
    box-shadow: 0 18px 32px rgba(4, 19, 32, 0.18);
  }
  50% {
    box-shadow: 0 22px 38px rgba(4, 19, 32, 0.28);
  }
}

@keyframes btnGoogleShimmer {
  0% {
    transform: translateX(-120%);
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(120%);
  }
}

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

@keyframes btnGoogleOutlinePulse {
  0%,
  100% {
    outline-color: rgba(66, 133, 244, 0.4);
    outline-offset: 8px;
  }
  50% {
    outline-color: rgba(66, 133, 244, 0.9);
    outline-offset: 12px;
  }
}

@keyframes btnGoogleCornerOrbit {
  0% {
    transform: translate(0, 0);
    opacity: 0.2;
  }
  10% {
    opacity: 1;
  }
  25% {
    transform: translate(calc(100% + 16px), 0);
  }
  50% {
    transform: translate(calc(100% + 16px), calc(100% + 16px));
  }
  75% {
    transform: translate(0, calc(100% + 16px));
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translate(0, 0);
    opacity: 0.2;
  }
}

.hero-benefits {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 1rem;
}

.hero-benefits li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(248, 249, 250, 0.9);
  font-weight: 500;
}

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

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0;
}

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

.highlight {
  padding: 1rem;
  border-radius: 20px;
  background: rgba(248, 249, 250, 0.08);
  border: 1px solid rgba(248, 249, 250, 0.18);
  color: rgba(248, 249, 250, 0.85);
  animation: glowHint 8s ease-in-out infinite;
}

.highlight__label {
  margin: 0 0 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: rgba(248, 249, 250, 0.8);
}

.mockup {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mockup__card {
  background: rgba(248, 249, 250, 0.95);
  border-radius: var(--radius);
  padding: 1.5rem;
  color: var(--color-dark);
  box-shadow: 0 20px 45px rgba(4, 19, 32, 0.25);
}

.mockup__card--streak {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(4, 19, 32, 0.08);
}

.mockup__card--accent {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(4, 19, 32, 0.15);
}

.mockup__card--list ul {
  padding-left: 1rem;
  margin: 0.75rem 0 0;
  color: var(--color-dark);
}

.mockup__label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-muted);
  margin: 0 0 0.35rem;
}

.mockup__value {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.mockup__value--lg {
  font-size: 2.4rem;
  font-weight: 700;
}

.mockup__title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.mockup__meta {
  margin: 0.35rem 0 0;
  color: var(--color-muted);
}

.mockup__pill {
  display: inline-flex;
  margin-top: 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: 12px;
  background: rgba(67, 160, 118, 0.15);
  color: var(--color-accent);
  font-weight: 600;
}

.mockup__pill--soft {
  background: rgba(67, 160, 118, 0.18);
  color: #1c6f49;
  font-size: 0.95rem;
  padding: 0.45rem 1rem;
}

.mockup__chip {
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(4, 19, 32, 0.06);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mockup__streak-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.mockup__streak-fire {
  font-size: 1.5rem;
}

.mockup__streak-caption {
  margin: 0.25rem 0 0;
  color: var(--color-muted);
}

.mockup__streak-meta {
  margin-top: 1rem;
  display: flex;
  gap: 1.5rem;
}

.mockup__mini-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-muted);
}

.hero__mascot {
  padding: 1.25rem;
  border-radius: var(--radius);
  background: rgba(4, 19, 32, 0.85);
  color: var(--color-light);
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(248, 249, 250, 0.1);
  box-shadow: 0 15px 40px rgba(4, 19, 32, 0.35);
}

.hero__mascot-figure {
  width: 90px;
  height: 90px;
  border-radius: 20px;
  background: radial-gradient(circle at 30% 30%, rgba(67, 160, 118, 0.7), rgba(5, 50, 90, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

.hero__mascot-figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero__mascot-text {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  min-height: 1.4em;
  overflow: hidden;
}

.hero__mascot-fader {
  display: inline-block;
  opacity: 0;
}

.hero__mascot-fader.is-visible {
  animation: phraseFade 3.2s ease-in-out forwards;
}

@keyframes phraseFade {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  15%,
  85% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-10px);
  }
}

.section {
  margin-top: 4rem;
  padding: clamp(2rem, 5vw, 3.5rem);
  background: var(--color-surface);
  border-radius: 32px;
  box-shadow: 0 24px 46px rgba(4, 19, 32, 0.12);
}

.section--alt {
  background: rgba(255, 255, 255, 0.86);
}

.section h2 {
  margin-top: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.feature-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  animation: cardFloat 7s ease-in-out infinite;
  animation-delay: calc(var(--card-order, 0) * 0.4s);
}

.feature-icon {
  font-size: 1.75rem;
}

.showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: center;
}

.showcase__list {
  padding-left: 1rem;
  color: var(--color-muted);
}

.showcase__panel {
  background: #061c30;
  color: var(--color-light);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 30px 50px rgba(4, 19, 32, 0.3);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: hidden;
}

.showcase__header,
.showcase__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.status-pill {
  background: rgba(100, 181, 246, 0.2);
  color: #90caf9;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
}

.showcase__stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.showcase__card {
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  opacity: 0.65;
  transform: translateX(0);
  transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

.showcase__card--dark {
  background: rgba(4, 19, 32, 0.8);
  border-color: rgba(4, 19, 32, 0.4);
}

.showcase__card.is-active {
  opacity: 1;
  transform: translateX(8px);
  box-shadow: 0 18px 32px rgba(4, 19, 32, 0.35);
  background: rgba(255, 255, 255, 0.12);
}

.showcase__label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.55);
}

.showcase__title {
  margin: 0.35rem 0 0;
  font-size: 1.1rem;
}

.showcase__meta {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.steps__grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.steps__grid article {
  padding: 1.5rem;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: #fff;
}

.step-number {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  background: rgba(67, 160, 118, 0.15);
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: 1rem;
}

.testimonials__grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.testimonials__grid figure {
  margin: 0;
  padding: 1.5rem;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: #fff;
}

.testimonials__grid figure h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.testimonials__grid figure p {
  margin: 0;
  color: var(--color-muted);
}

.reports__intro {
  margin-bottom: 2rem;
}

.reports__lead {
  max-width: 640px;
  color: var(--color-muted);
}

.reports__layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.reports__timeline {
  position: relative;
  padding-left: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.reports__timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(67, 160, 118, 0.2), rgba(33, 150, 243, 0.35));
}

.report-card {
  position: relative;
  padding: 1.5rem;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 20px 36px rgba(4, 19, 32, 0.12);
}

.report-card::before {
  content: '';
  position: absolute;
  left: -1.2rem;
  top: 2rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(67, 160, 118, 0.25);
}

.report-card--secondary {
  background: rgba(6, 28, 48, 0.9);
  color: var(--color-light);
  border-color: rgba(255, 255, 255, 0.08);
}

.report-card--secondary::before {
  background: var(--color-blue);
  box-shadow: 0 0 0 4px rgba(33, 150, 243, 0.25);
}

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

.report-card__identity {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.report-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  object-fit: cover;
  border: 2px solid rgba(67, 160, 118, 0.2);
}

.report-card--secondary .report-card__avatar {
  border-color: rgba(255, 255, 255, 0.35);
}

.report-card__initial {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  background: radial-gradient(circle at 30% 30%, rgba(33, 150, 243, 0.5), rgba(6, 28, 48, 0.9));
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.report-card__name {
  margin: 0;
  font-weight: 600;
}

.report-card__meta {
  font-size: 0.85rem;
  color: var(--color-muted);
}

.report-card--secondary .report-card__meta {
  color: rgba(255, 255, 255, 0.7);
}

.report-card__badge {
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(67, 160, 118, 0.15);
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.85rem;
}

.report-card__badge--outline {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.95);
}

.report-card__body {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--color-dark);
}

.report-card__body p {
  margin: 0;
}

.report-card--secondary .report-card__body {
  color: var(--color-light);
}

.report-card__gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}

.report-card__media {
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(67, 160, 118, 0.4), rgba(33, 150, 243, 0.45));
  min-height: 80px;
}

.report-card__media--wide {
  grid-column: span 2;
}

.report-card__note {
  margin: 0;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.85);
}

.report-card__footer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, auto));
  gap: 1rem;
  font-weight: 600;
  color: var(--color-muted);
  border-top: 1px solid rgba(4, 19, 32, 0.08);
  margin-top: 1.5rem;
  padding-top: 1rem;
}

.report-card--secondary .report-card__footer {
  color: rgba(255, 255, 255, 0.75);
  border-color: rgba(255, 255, 255, 0.12);
}

.reports__guide {
  background: rgba(248, 249, 250, 0.92);
  border-radius: 24px;
  border: 1px solid var(--border);
  padding: 1.75rem;
  box-shadow: 0 12px 28px rgba(4, 19, 32, 0.08);
}

.reports__steps {
  padding-left: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.reports__steps li {
  margin: 0;
  color: var(--color-muted);
}

.reports__steps strong {
  display: block;
  color: var(--color-dark);
}

.reports__cta {
  width: fit-content;
  margin-top: 1.5rem;
}

@media (max-width: 960px) {
  .reports__layout {
    grid-template-columns: 1fr;
  }

  .reports__timeline {
    padding-left: 1.2rem;
  }

  .report-card::before {
    left: -1rem;
  }
}

.final-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer {
  text-align: center;
  padding: 2rem 1rem 3rem;
  color: var(--color-muted);
}

.footer-links {
  margin-top: 0.5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-weight: 500;
}

@keyframes heroReveal {
  0% {
    opacity: 0;
    transform: translateY(28px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glowHint {
  0%,
  100% {
    border-color: rgba(248, 249, 250, 0.2);
    box-shadow: 0 0 0 rgba(248, 249, 250, 0);
  }
  50% {
    border-color: rgba(248, 249, 250, 0.35);
    box-shadow: 0 10px 24px rgba(4, 19, 32, 0.2);
  }
}

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

@keyframes ctaPulse {
  0%,
  100% {
    box-shadow: 0 12px 24px rgba(33, 150, 243, 0.35);
  }
  50% {
    box-shadow: 0 16px 30px rgba(67, 160, 118, 0.45);
  }
}

@keyframes heroCtaPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-2px) scale(1.01);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__cta,
  .hero__actions .btn-primary,
  .btn-google,
  .btn-google::before,
  .btn-google::after,
  .btn-google__icon {
    animation: none !important;
    transform: none !important;
  }
}

@media (max-width: 960px) {
  .nav-links {
    display: none;
  }

  .site-header {
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
  }

  .logo-group {
    width: 100%;
  }

  .language-selector {
    width: 100%;
    justify-content: space-between;
  }

  .language-selector select {
    width: 100%;
  }

  .hero,
  .section {
    padding: 1.5rem;
  }

  .hero {
    gap: 1.5rem;
    flex-direction: column;
  }

  .hero h1 {
    font-size: 2.2rem;
    line-height: 1.15;
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

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

  .mockup__card {
    padding: 1.25rem;
  }

  .mockup__streak-meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .btn-google {
    width: 100%;
    justify-content: center;
  }

  .hero-carousel {
    padding: 1rem;
    min-height: auto;
  }

  .hero__device-shell {
    width: 100%;
  }

  .hero-carousel__viewport {
    flex: unset;
    display: block;
  }

  .hero-carousel__slide {
    height: auto;
  }

  .hero-carousel__device {
    flex: unset;
  }

  .hero-carousel__device img {
    width: 100%;
    height: auto;
  }

  .hero__social-proof--cta,
  .hero__badges,
  .hero__trusted-row,
  .hero__trusted-list {
    width: 100%;
  }

  .hero__badges {
    flex-direction: column;
  }

  .hero__trusted-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .final-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .reports__layout {
    gap: 1.5rem;
  }

  .reports__timeline {
    padding-left: 0;
  }

  .reports__timeline::before {
    display: none;
  }

  .report-card {
    padding: 1.25rem;
  }

  .report-card::before {
    display: none;
  }

  .report-card__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .report-card__badge {
    align-self: flex-start;
  }

  .report-card__gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .report-card__footer {
    grid-template-columns: 1fr;
  }

  .reports__guide {
    padding: 1.5rem;
  }
}
.feature-card:nth-child(even) {
  --card-order: 1;
}
.hero__actions .btn-primary {
  animation: heroCtaPulse 4.5s ease-in-out infinite, ctaPulse 5s ease-in-out infinite;
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

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