/**
 * Quieta.ai - Landing Page Styles (HTML Version)
 * Architecture CSS avec variables sémantiques
 */

/* ===========================================
   FONTS
   =========================================== */
@font-face {
  font-family: "Changa One";
  src:url(../fonts/ChangaOne-Regular.ttf) format("truetype");
  font-weight:400;
  font-style:normal;
}
@font-face {
  font-family: "Changa One";
  src:url(../fonts/ChangaOne-Italic.ttf) format("truetype");
  font-weight:400;
  font-style:italic;
}
@font-face {
  font-family: "Space Grotesk";
  src:url(../fonts/SpaceGrotesk-Light.ttf) format("truetype");
  font-weight:300;
  font-style:normal;
}
@font-face {
  font-family: "Space Grotesk";
  src:url(../fonts/SpaceGrotesk-Regular.ttf) format("truetype");
  font-weight:400;
  font-style:normal;
}
@font-face {
  font-family: "Space Grotesk";
  src:url(../fonts/SpaceGrotesk-Medium.ttf) format("truetype");
  font-weight:500;
  font-style:normal;
}
@font-face {
  font-family: "Space Grotesk";
  src:url(../fonts/SpaceGrotesk-SemiBold.ttf) format("truetype");
  font-weight:600;
  font-style:normal;
}
@font-face {
  font-family: "Space Grotesk";
  src:url(../fonts/SpaceGrotesk-Bold.ttf) format("truetype");
  font-weight:700;
  font-style:normal;
}

/* ===========================================
   CSS VARIABLES - Design Tokens
   =========================================== */
:root {
  /* Brand Colors */
  --color-brand-primary: #F59E0B;
  --color-brand-blue: #3B82F6;
  --color-brand-blue-light: #60A5FA;
  --color-brand-purple: #7C3AED;
  --color-brand-fuchsia: #D946EF;
  --color-brand-violet-blue: #6366F1;
  --color-brand-violet-blue-dark: #4F46E5;
  --color-brand-green: #10B981;
  --color-emoji: #ffe340;
  --color-emoji-dark: #f0b000;
  
  /* Alert Colors */
  --color-alert-danger: #EF4444;
  --color-alert-danger-dark: #DC2626;
  
  /* Background System */
  --color-bg-app: #FFFFFF;
  --color-bg-section-primary: #FFFFFF;
  --color-bg-section-accent: linear-gradient(135deg, #f3faff 0%, #e8e7fc 50%, #eef3ff 100%);
  --color-bg-card: #FFFFFF;
  --color-bg-card-hover: #F9FAFB;
  --color-bg-hero2: #f9f7f7;
  --color-bg-hero1: #e4e8ed;
  
  /* Text System */
  --color-text-primary: #1F2937;
  --color-text-secondary: #4B5563;
  --color-text-muted: #6B7280;
  --color-text-on-dark: #FFFFFF;
  --color-text-on-accent: #1F2937;
  
  /* Border System */
  --color-border-light: #E5E7EB;
  --color-border-medium: #D1D5DB;
  --color-border-dark: #9CA3AF;
  
  /* Interactive Elements */
  --color-interactive-hover: #F3F4F6;
  --color-interactive-active: #E5E7EB;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);


  /* fonts */
  --title-font: 'Changa One', sans-serif;
  --text-font: 'Space Grotesk', sans-serif;
}

/* ===========================================
   BASE STYLES
   =========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--text-font);
  background: var(--color-bg-app);
  color: var(--color-text-primary);
  font-size: 18px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--title-font);
  font-weight: 400;
  line-height: 1.2;
}

/* ===========================================
   LANGUAGE SWITCHER
   =========================================== */
.language-switcher {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 50;
}

.language-switcher__container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  backdrop-filter: blur(12px);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-md);
}

.language-switcher__icon {
  width: 1rem;
  height: 1rem;
  color: var(--color-text-secondary);
}

.language-switcher__button {
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-weight: 400;
  font-family: var(--text-font);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.language-switcher__button--active {
  background: linear-gradient(135deg, var(--color-brand-violet-blue) 0%, var(--color-brand-fuchsia) 100%);
  color: white;
  box-shadow: var(--shadow-md);
}

.language-switcher__button--inactive {
  background: transparent;
  color: var(--color-text-muted);
}

.language-switcher__button--inactive:hover {
  background: var(--color-interactive-hover);
  color: var(--color-text-primary);
}

/* ===========================================
   TOP BANNER
   =========================================== */
.top-banner {
  background: linear-gradient(135deg, var(--color-brand-violet-blue) 0%, var(--color-brand-fuchsia) 100%);
  padding: 0.75rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 40;
  box-shadow: var(--shadow-md);
}
.top-banner__content {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.top-banner-logo {
  width: auto;
  height: 3rem;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.5s ease;
}

.top-banner__text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.top-banner__message {
  display: inline;
  font-family: var(--text-font);
  font-weight: 500;
  font-size: 1.1rem;
  color: white;
  letter-spacing: 0.02em;
}
.top-banner__message strong {
  font-weight: 700;
  color: white;
  text-shadow: 0 0 5px var(--color-emoji);
}

.top-banner__install-button {
  background: white;
  color: var(--color-brand-violet-blue);
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  border: none;
  font-size: 1em;
  font-weight: 400;
  font-family: var(--title-font);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
  margin: 0 0 0 1ch;
}

.top-banner__install-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ===========================================
   HERO SECTION
   =========================================== */
.hero-section {
  background: linear-gradient(0deg, var(--color-bg-hero1) 0%, var(--color-bg-hero2) 20%);
  padding: 4rem 1.5rem;
  color: var(--color-brand-violet-blue);
}

.hero-section__container {
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  text-align: center;
}

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

.hero-section__logo {
  width: 5rem;
  height: 5rem;
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.hero-section__logo:hover {
  transform: rotate(6deg) scale(1.1);
}

.hero-section__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-section__brand-logo {
  width: 300px;
  height: auto;
}
.logo-name {
  position: relative;
}
.logo-name .cartouche{
  position: absolute;
  transform: rotate(10deg);
  font-family: "Changa One";
  background: linear-gradient(var(--color-emoji), 20%, var(--color-emoji-dark));
  color: white;
  padding: 0.2em 0.7em;
  right: 0;
}

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (min-width: 768px) {
  .hero-section__brand-logo {
    width: 390px;
  }

  .hero-section__tagline {
    font-size: 2.5rem;
  }
  
  .features-section__title,
  .protected-data-section__title,
  .testimonials-section__title,
  .why-anonymize-section__title,
  .product-showcase-section__title {
    font-size: 3rem;
  }
}

.hero-section__tagline {
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--color-brand-violet-blue);
  font-weight: 600;
  max-width: 42rem;
  margin: 1rem auto 0;
}

.hero-section__description {
  font-size: 1.3rem;
  color: var(--color-brand-violet-blue);
  max-width: 36rem;
  margin: 0 auto;
}

.hero-section__cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-section__cta-primary,
.hero-section__cta-secondary {
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 500;
  font-family: var(--text-font);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid var(--color-brand-violet-blue);
}

.hero-section__cta-primary {
  color: white;
  background: var(--color-brand-violet-blue);
}

.hero-section__cta-primary:hover,
.hero-section__cta-secondary:hover
 {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.hero-section__cta-secondary {
  background: white;
  color: var(--color-brand-violet-blue);
}

.hero-section__cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ===========================================
   FEATURES SECTION
   =========================================== */
.features-section {
  padding: 4rem 1.5rem;
  background: var(--color-bg-section-primary);
}

.features-section__container {
  max-width: 80rem;
  margin: 0 auto;
}
.features-section__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-align: center;
}

.features-section__title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--color-text-primary);
}

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

.feature-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-light);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: var(--color-bg-card-hover);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.feature-card__icon-wrapper {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--color-brand-violet-blue) 0%, var(--color-brand-fuchsia) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-card__icon {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
  stroke-width: 2.5;
}

.feature-card__badge {
  display: none;
  background: var(--color-brand-primary);
  color: white;
  font-size: 0.9rem;
  font-weight: 400;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 0.5rem;
}

.feature-card__title {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--color-text-primary);
}

.feature-card__description {
  color: var(--color-text-secondary);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.feature-card__benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-brand-blue);
  font-size: 1.1rem;
  font-weight: 600;
}

.feature-card__benefit-icon {
  width: 1rem;
  height: 1rem;
}

/* ===========================================
   PROTECTED DATA SECTION
   =========================================== */
.protected-data-section {
  padding: 4rem 1.5rem;
  background: var(--color-bg-section-accent);
}

.protected-data-section__container {
  max-width: 80rem;
  margin: 0 auto;
}

.protected-data-section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.protected-data-section__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.protected-data-section__title {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--color-text-primary);
}

.protected-data-section__subtitle {
  font-size: 1.2rem;
  color: var(--color-text-secondary);
  max-width: 42rem;
  margin: 0 auto;
}

.protected-data-section__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.data-type-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-light);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.data-type-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.data-type-card__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.data-type-card__icon {
  font-size: 1.5rem;
}

.data-type-card__title {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-text-primary);
}

.data-type-card__example {
  color: var(--color-text-secondary);
  font-size: 1.1rem;
}

/* ===========================================
   TESTIMONIALS SECTION
   =========================================== */
.testimonials-section {
  padding: 4rem 1.5rem;
  background: var(--color-bg-section-primary);
}

.testimonials-section__container {
  max-width: 80rem;
  margin: 0 auto;
}

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

.testimonials-section__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.testimonials-section__title {
  font-size: 3rem;
  color: var(--color-text-primary);
}

.testimonials-section__subtitle {
  font-size: 1.2rem;
  color: var(--color-text-secondary);
  max-width: 42rem;
  margin: 1rem auto 0;
}

.testimonials-section__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-light);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--color-brand-blue);
}

.testimonial-card__image-wrapper {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.testimonial-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-card__image {
  transform: scale(1.05);
}

.testimonial-card__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  z-index: 1;
}

.testimonial-card__profile {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 2;
  color: white;
}

.testimonial-card__name {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.25rem;
}

.testimonial-card__role {
  font-size: 1rem;
  margin-bottom: 0.125rem;
}

.testimonial-card__company {
  font-size: 0.85rem;
  opacity: 0.75;
}

.testimonial-card__content-wrapper {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-card__quote-wrapper {
  position: relative;
  flex: 1;
}

.testimonial-card__quote-icon {
  width: 2rem;
  height: 2rem;
  color: var(--color-brand-blue);
  opacity: 0.2;
  position: absolute;
  top: -0.5rem;
  left: -0.5rem;
}

.testimonial-card__quote-text {
  color: var(--color-text-secondary);
  font-style: italic;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.testimonial-card__use-case {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border-light);
}

.testimonial-card__use-case-icon {
  width: 1rem;
  height: 1rem;
  color: var(--color-brand-green);
}

.testimonial-card__use-case-text {
  font-size: 1.2rem;
  color: var(--color-brand-blue);
  font-weight: 600;
}

/* ===========================================
   WHY ANONYMIZE SECTION
   =========================================== */
.why-anonymize-section {
  padding: 4rem 1.5rem;
  background: var(--color-bg-section-accent);
}

.why-anonymize-section__container {
  max-width: 80rem;
  margin: 0 auto;
}

.why-anonymize-section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.why-anonymize-section__title {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--color-text-primary);
}

.why-anonymize-section__subtitle {
  font-size: 1.2rem;
  color: var(--color-text-secondary);
  max-width: 56rem;
  margin: 0 auto;
}

.why-anonymize-section__content-card {
  background: var(--color-bg-card);
  border-radius: 1.5rem;
  padding: 3rem;
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-lg);
}

.why-anonymize-section__grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

.why-reason {
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border-light);
}

.why-reason:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.why-reason__icon-wrapper {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-reason__icon {
  width: 1.5rem;
  height: 1.5rem;
  stroke-width: 2;
}

.why-reason__title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--color-text-primary);
}

.why-reason__description {
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.why-anonymize-section__footer {
  padding-top: 2rem;
  border-top: 2px solid var(--color-border-light);
}

.why-anonymize-section__cta-box {
  background: linear-gradient(135deg, #F5F3FF 0%, #FCE7F3 100%);
  border-radius: 1rem;
  padding: 2rem;
  border: 2px solid var(--color-brand-fuchsia);
  border-style: dashed;
}

.why-anonymize-section__cta-text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-text-primary);
}

/* ===========================================
   PRODUCT SHOWCASE SECTION
   =========================================== */
.product-showcase-section {
  padding: 4rem 1.5rem;
  background: var(--color-bg-section-primary);
  position: relative;
  overflow: hidden;
}

.product-showcase-section__container {
  max-width: 80rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.product-showcase-section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.product-showcase-section__badge {
  display: inline-block;
  background: linear-gradient(135deg, #F5F3FF 0%, #FCE7F3 100%);
  color: var(--color-brand-violet-blue);
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  margin-bottom: 1rem;
  border: 1px solid var(--color-border-light);
}

.product-showcase-section__title {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--color-text-primary);
}

.product-showcase-section__subtitle {
  font-size: 1.2rem;
  color: var(--color-text-secondary);
  max-width: 42rem;
  margin: 0 auto;
}

.product-showcase__screenshot-container {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  margin: auto;
  margin-bottom: 2rem;
  width: 80%;
  aspect-ratio: 1747/1460;
}

.product-showcase__screenshot {
  width: 100%;
  height: auto;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  aspect-ratio: 1747/1460;
}
@keyframes fadeInOut {
    0% { opacity: 0; }
    25% { opacity: 1; } /* Pause de 1s (25% de 4s) */
    50% { opacity: 1; } /* Pause de 1s (25% de 4s) */
    75% { opacity: 0; } /* Pause de 1s (25% de 4s) */
    100% { opacity: 0; } /* Pause de 1s (25% de 4s) */
}
.image2 {
  animation: fadeInOut 8s infinite;
}



.product-showcase__screenshot-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-showcase__screenshot-badge-icon {
  width: 1rem;
  height: 1rem;
  color: white;
}

.product-showcase__screenshot-badge-text {
  color: white;
  font-weight: 400;
  font-size: 0.9rem;
  font-family: var(--title-font);
}

.product-showcase__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.product-feature {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-light);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.product-feature:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.product-feature__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.product-feature__icon-wrapper {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-feature__icon {
  width: 1.25rem;
  height: 1.25rem;
  color: white;
  stroke-width: 2.5;
}

.product-feature__title {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-text-primary);
}

.product-feature__description {
  color: var(--color-text-secondary);
  font-size: 1.1rem;
  line-height: 1.6;
}

.product-showcase__cta-wrapper {
  text-align: center;
}

.product-showcase__cta-button {
  background: linear-gradient(135deg, var(--color-brand-violet-blue) 0%, var(--color-brand-fuchsia) 100%);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  border: none;
  font-weight: 400;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
  font-family: var(--text-font);
}

.product-showcase__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.product-showcase__cta-icon {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  vertical-align: middle;
}

.product-showcase__cta-note {
  margin-top: 1rem;
  color: var(--color-text-muted);
  font-size: 1rem;
}

/* ===========================================
   FOOTER
   =========================================== */
.footer {
  background: linear-gradient(135deg, var(--color-brand-violet-blue) 0%, var(--color-brand-fuchsia) 100%);
  padding: 3rem 1.5rem 2rem;
}

.footer__container {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.footer-logo {
  width: auto;
  height: 3rem;
  border-radius: 0.75rem;
  overflow: hidden;
}
.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer__logo {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  overflow: hidden;
}

.footer__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer__brand-name {
  font-size: 1.5rem;
  color: white;
}

.footer__tagline {
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  max-width: 32rem;
}

.footer__copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  width: 100%;
}

/* ===========================================
   UTILITIES
   =========================================== */
.flex {
  display: flex;
}

.flex-start {
  align-items: flex-start;
}

.gap-3 {
  gap: 0.75rem;
}

.text-blue {
  color: var(--color-brand-blue);
}

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 768px) {
  .hero-section {
    padding: 3rem 1rem;
  }
  
  .features-section,
  .protected-data-section,
  .testimonials-section,
  .why-anonymize-section,
  .product-showcase-section {
    padding: 3rem 1rem;
  }
  
  .why-anonymize-section__content-card {
    padding: 1.5rem;
  }
  
  .features-section__grid,
  .protected-data-section__grid,
  .testimonials-section__grid,
  .product-showcase__features-grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================================
   BETA POPOVER
   =========================================== */
.beta-popover {
  position: fixed;
  inset: 0;
  z-index: 100;
}

.beta-popover__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
}

.beta-popover__modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 29rem;
  z-index: 101;
}

.beta-popover__content {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  padding: 2rem;
  margin: 0 1rem;
}

.beta-popover__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.beta-popover__title {
  font-family: var(--title-font);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--color-text-primary);
  margin: 0;
}

.beta-popover__subtitle {
  font-size: 1rem;
  color: var(--color-text-secondary);
  margin-top: 0.25rem;
}

.beta-popover__close {
  background: none;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.beta-popover__close:hover {
  color: var(--color-text-secondary);
}

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

.beta-popover__field {
  display: flex;
  flex-direction: column;
}

.beta-popover__group {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 1ch;
  padding-top: 0.5em;
}


.beta-popover__label {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}

.beta-popover__input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border-medium);
  border-radius: 0.5rem;
  font-family: var(--text-font);
  font-size: 1rem;
  color: var(--color-text-primary);
  transition: all 0.3s ease;
  outline: none;
}

.beta-popover__input:focus {
  border-color: var(--color-brand-blue);
  ring: 2px solid rgba(59, 130, 246, 0.2);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.beta-popover__checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.beta-popover__checkbox {
  margin-top: 0.25rem;
  width: 1rem;
  height: 1rem;
  color: var(--color-brand-blue);
  border: 1px solid var(--color-border-medium);
  border-radius: 0.25rem;
  cursor: pointer;
}

.beta-popover__checkbox:focus {
  outline: 2px solid var(--color-brand-blue);
  outline-offset: 2px;
}

.beta-popover__checkbox-label {
  font-size: 0.9rem;
  color: var(--color-text-primary);
  cursor: pointer;
  line-height: 1.4;
}

.beta-popover__platform {
  background: linear-gradient(135deg, #F5F3FF 0%, #FCE7F3 100%);
  border-radius: 0.5rem;
  padding: 1rem;
}

.beta-popover__platform-text {
  font-size: 0.875rem;
  color: var(--color-text-primary);
  margin: 0;
}

.beta-popover__submit {
  width: 100%;
  background: linear-gradient(135deg, var(--color-brand-blue) 0%, var(--color-brand-purple) 100%);
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 2rem;
  font-weight: 500;
  font-family: var(--text-font);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.beta-popover__submit:hover:not(:disabled) {
  background: linear-gradient(135deg, #2563EB 0%, #6D28D9 100%);
  transform: translateY(-1px);
  box-shadow: 0 10px 20px -10px rgba(59, 130, 246, 0.4);
}

.beta-popover__submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.beta-popover__footer {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 1.5rem;
  margin-bottom: 0;
}


.beta-popover__select,
.beta-popover__select::picker(select) {
	appearance: base-select;
	padding: 0.5rem;
	border: 1px solid #2563EB;
	border-radius: 10px;
	background-color: white;
	color: #2563EB;
}

@media (max-width: 1050px) {
  .top-banner__message {
    display: none;
  }
}

@media (max-width: 768px) {

  .top-banner-logo {
    order: 1;
  }
  .legal-header__nav {
    order: 3;
  }
  .top-banner__message {
    display: none;
  }
 

}

