/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --foreground: hsl(0, 0%, 8%);
  --background: hsl(0, 0%, 100%);
  --muted-foreground: hsl(0, 0%, 45%);

  /* Rose / Pink */
  --primary: hsl(330, 85%, 60%);
  --primary-bg: hsl(330, 85%, 92%);
  --primary-border: hsl(330, 85%, 70%);

  /* Bleu / Teal */
  --teal: hsl(175, 70%, 50%);
  --teal-bg: hsl(175, 70%, 90%);
  --teal-border: hsl(175, 70%, 60%);

  /* Orange */
  --orange: hsl(32, 100%, 62%);
  --orange-bg: hsl(32, 100%, 90%);
  --orange-border: hsl(32, 100%, 70%);

  /* Violet / Purple */
  --purple: hsl(270, 70%, 60%);
  --purple-bg: hsl(270, 70%, 92%);
  --purple-border: hsl(270, 70%, 70%);

  /* Noir */
  --black: hsl(0, 0%, 8%);

  /* Shadow */
  --shadow: rgba(0, 0, 0, 0.08);
}

/* Local Fonts */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/poppins-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/poppins-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/poppins-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/poppins-700.woff2') format('woff2');
}
@font-face {
  font-family: 'League Spartan';
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
  src: url('/assets/fonts/league-spartan.woff2') format('woff2');
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--foreground);
  background-color: var(--background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.font-spartan {
  font-family: 'League Spartan', sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: white;
  border-bottom: 1px solid hsl(0, 0%, 95%);
}

.header-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo img {
  height: 2.5rem;
}

.header-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .header-nav {
    display: flex;
  }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 0.5rem;
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-content {
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border: 1px solid hsl(0, 0%, 95%);
  padding: 0.5rem 0;
  min-width: 220px;
}

.nav-dropdown-item {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  transition: background-color 0.2s, color 0.2s;
}

.nav-dropdown-item:hover {
  background-color: hsl(0, 0%, 97%);
  color: var(--primary);
}

.header-cta {
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.875rem;
  background: var(--foreground);
  color: white;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-cta:hover {
  opacity: 0.9;
}

/* Main content - compensate for fixed header */
main {
  padding-top: 4rem;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: calc(100vh - 10rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-bottom: 9rem;
  background:
    radial-gradient(ellipse 100% 90% at 0% 100%, hsl(330, 70%, 85%) 0%, transparent 60%),
    radial-gradient(ellipse 90% 85% at 40% 70%, hsl(290, 45%, 88%) 0%, transparent 55%),
    radial-gradient(ellipse 70% 70% at 100% 100%, hsl(35, 80%, 85%) 0%, transparent 65%),
    radial-gradient(ellipse 80% 75% at 85% 75%, hsl(165, 55%, 85%) 0%, transparent 55%),
    radial-gradient(ellipse 70% 70% at 70% 80%, hsl(170, 50%, 88%) 0%, transparent 50%),
    linear-gradient(to bottom, white 0%, white 100%);
}

@media (min-width: 768px) {
  .hero {
    padding-bottom: 6rem;
  }
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
}

@media (min-width: 768px) {
  .hero-content {
    padding: 3rem 0;
  }
}

.hero-inner {
  max-width: 48rem;
}

.hero-label {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  max-width: 42rem;
  line-height: 1.75;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

.hero-description strong {
  color: var(--foreground);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--foreground);
  color: white;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1.125rem;
  transition: opacity 0.2s;
}

.hero-cta:hover {
  opacity: 0.9;
}

/* Logo Banner */
.logo-banner {
  padding: 2rem 1rem;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.logo-banner-title {
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1.25rem;
}

.logo-banner-grid {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.logo-banner-grid::-webkit-scrollbar {
  display: none;
}

@media (min-width: 768px) {
  .logo-banner-grid {
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    overflow-x: visible;
    padding-bottom: 0;
  }
}

/* Hide heavy logos on mobile for better LCP */
.hidden-mobile {
  display: none;
}

@media (min-width: 768px) {
  .hidden-mobile {
    display: flex;
  }
}

.logo-banner-item img {
  height: 1.5rem;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s;
}

@media (min-width: 768px) {
  .logo-banner-item img {
    height: 2rem;
    max-width: 130px;
  }
}

.logo-banner-item:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.logo-banner-item img.invert {
  filter: grayscale(100%) invert(1);
}

.logo-banner-item:hover img.invert {
  filter: invert(1);
}

/* Sections */
.section {
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 5rem 0;
  }
}

.section-dark {
  background: var(--foreground);
  color: white;
}

.section-gray {
  background: hsl(0, 0%, 98%);
}

.section-header {
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .section-header {
    margin-bottom: 3rem;
  }
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-title-dark {
  color: white;
}

.section-subtitle {
  color: var(--muted-foreground);
  max-width: 100%;
}

.section-subtitle-dark {
  color: hsl(0, 0%, 65%);
}

/* Section header paragraphs should span full width */
.section-header p,
.section-header .text-muted {
  max-width: 100%;
  width: 100%;
}

/* Grid */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid-3 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-4 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.grid-5 {
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .grid-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* Cards */
.card {
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 4px 20px var(--shadow);
  color: var(--foreground);
}

.card-pink { background: var(--primary-bg); }
.card-teal { background: var(--teal-bg); }
.card-orange { background: var(--orange-bg); }
.card-yellow { background: hsl(45, 100%, 90%); }
.card-purple { background: var(--purple-bg); }
.card-white { background: white; }

.card-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(255,255,255,0.8);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.875rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.card-icon-dark {
  background: var(--foreground);
  border-radius: 9999px;
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  font-family: 'Poppins', sans-serif;
  color: var(--foreground);
}

.card-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.card-highlight {
  font-size: 0.875rem;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.card-price {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--foreground);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: opacity 0.2s;
}

.btn-dark {
  background: var(--foreground);
  color: white;
}

.btn-dark:hover {
  opacity: 0.9;
}

.btn-pill {
  border-radius: 9999px;
  padding: 1rem 2rem;
  font-weight: 600;
}

.btn-white {
  background: white;
  color: var(--foreground);
}

/* Tool Cards */
.tool-card {
  border: 2px solid;
  border-radius: 1rem;
  padding: 1.25rem;
  text-align: center;
  transition: all 0.3s;
}

.tool-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}

.tool-card-logo {
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.tool-card-logo img {
  max-height: 2.5rem;
  max-width: 100%;
  object-fit: contain;
}

.tool-card-title {
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.tool-card-desc {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* Tool card colors */
.tool-card-pink { background: hsl(330, 85%, 95%); border-color: hsl(330, 85%, 80%); }
.tool-card-blue { background: hsl(210, 80%, 95%); border-color: hsl(210, 80%, 75%); }
.tool-card-purple { background: hsl(270, 70%, 95%); border-color: hsl(270, 70%, 80%); }
.tool-card-orange { background: hsl(25, 95%, 95%); border-color: hsl(25, 95%, 70%); }
.tool-card-teal { background: hsl(175, 70%, 93%); border-color: hsl(175, 70%, 70%); }
.tool-card-cyan { background: hsl(200, 80%, 95%); border-color: hsl(200, 80%, 70%); }
.tool-card-violet { background: hsl(260, 70%, 95%); border-color: hsl(260, 70%, 75%); }
.tool-card-sky { background: hsl(200, 60%, 95%); border-color: hsl(200, 60%, 75%); }
.tool-card-fuchsia { background: hsl(280, 60%, 95%); border-color: hsl(280, 60%, 75%); }
.tool-card-yellow { background: hsl(45, 90%, 93%); border-color: hsl(45, 90%, 70%); }

/* Advantage Cards */
.advantage-card {
  border: 2px solid;
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px var(--shadow);
}

.advantage-card-pink {
  background: var(--primary-bg);
  border-color: var(--primary-border);
}

.advantage-card-teal {
  background: var(--teal-bg);
  border-color: var(--teal-border);
}

.advantage-card-orange {
  background: var(--orange-bg);
  border-color: var(--orange-border);
}

.advantage-card-purple {
  background: var(--purple-bg);
  border-color: var(--purple-border);
}

/* Method Steps */
.step-card {
  border-radius: 1.5rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
}

.step-card-pink { background: var(--primary-bg); }
.step-card-teal { background: var(--teal-bg); }
.step-card-orange { background: var(--orange-bg); }
.step-card-purple { background: var(--purple-bg); }

.step-number {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.step-number-pink { background: hsl(330, 85%, 60%); }
.step-number-teal { background: hsl(175, 70%, 50%); }
.step-number-orange { background: hsl(32, 100%, 62%); }

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.step-description {
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* Article Cards */
.article-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s;
}

.article-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}

.article-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.article-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.article-card:hover .article-card-image img {
  transform: scale(1.05);
}

.article-card-content {
  padding: 1rem;
}

.article-card-title {
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
  transition: color 0.2s;
}

.article-card:hover .article-card-title {
  color: var(--primary);
}

.article-card-desc {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}

/* Training Cards */
.training-card {
  border: 2px solid;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s;
}

.training-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.training-card-pink {
  background: hsl(330, 85%, 92%);
  border-color: hsl(330, 85%, 70%);
}

.training-card-teal {
  background: hsl(175, 70%, 90%);
  border-color: hsl(175, 70%, 60%);
}

.training-card-purple {
  background: hsl(270, 70%, 92%);
  border-color: hsl(270, 70%, 70%);
}

.training-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.training-icon-pink { background: hsl(330, 85%, 60%); }
.training-icon-teal { background: hsl(175, 70%, 45%); }
.training-icon-purple { background: hsl(270, 70%, 60%); }

.training-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: white;
}

.training-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  font-family: 'League Spartan', sans-serif;
  letter-spacing: -0.025em;
}

.training-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.training-link {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 0.875rem;
  transition: gap 0.3s;
}

.training-card:hover .training-link {
  gap: 0.5rem;
}

.training-link svg {
  width: 1rem;
  height: 1rem;
  margin-left: 0.25rem;
  transition: transform 0.3s;
}

.training-card:hover .training-link svg {
  transform: translateX(4px);
}

/* CTA Banner */
.cta-banner {
  border-radius: 1.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, hsl(270, 70%, 92%) 0%, hsl(175, 70%, 88%) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .cta-banner {
    flex-direction: row;
    justify-content: space-between;
    padding: 3rem;
  }
}

.cta-banner-content {
  max-width: 32rem;
}

.cta-banner-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .cta-banner-title {
    font-size: 1.875rem;
  }
}

.cta-banner-desc {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.cta-banner-image {
  display: none;
}

@media (min-width: 768px) {
  .cta-banner-image {
    display: block;
  }

  .cta-banner-image img {
    width: 16rem;
    height: auto;
    object-fit: contain;
  }
}

/* About Cards */
.about-card {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}

.about-card-emoji {
  height: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
}

.about-card-content {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
  padding: 1.5rem;
  flex: 1;
}

.about-card-label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.about-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.about-card-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Ingredient Cards */
.ingredient-card {
  background: white;
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.ingredient-title {
  font-weight: 800;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-family: 'League Spartan', sans-serif;
  letter-spacing: -0.025em;
}

.ingredient-title-pink { color: hsl(330, 85%, 60%); }
.ingredient-title-teal { color: hsl(175, 70%, 45%); }
.ingredient-title-orange { color: hsl(32, 100%, 45%); }

.ingredient-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: white;
  padding: 4rem 1.5rem;
  font-family: 'Inter', 'Poppins', sans-serif;
}

.footer .container {
  max-width: 1440px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 0.75rem;
    align-items: flex-start;
  }

  .footer-grid > * {
    flex: 0 1 auto;
    min-width: 0;
  }

  .footer-grid > .footer-brand {
    flex: 0 0 160px;
    max-width: 160px;
  }

  .footer-grid > .footer-section {
    flex: 0 1 auto;
  }
}

.footer-brand img {
  height: 4rem;
  width: auto;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.75rem;
  color: hsl(0, 0%, 65%);
  margin-bottom: 0.35rem;
}

.footer-social {
  color: white;
  transition: color 0.2s;
}

.footer-social:hover {
  color: var(--primary);
}

.footer-social svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-section h4 {
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  white-space: nowrap;
}

.footer-section-pink h4 { color: #FF5A8C; }
.footer-section-teal h4 { color: #4ECDC4; }
.footer-section-purple h4 { color: #A855F7; }
.footer-section-orange h4 { color: #FF9F3C; }

.footer-list {
  list-style: none;
}

.footer-list li {
  margin-bottom: 0.35rem;
}

.footer-list a {
  font-size: 0.8rem;
  color: hsl(0, 0%, 75%);
  transition: color 0.2s;
  white-space: nowrap;
}

.footer-list a:hover {
  color: white;
}

.footer-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-cta-btn {
  display: inline-block;
  background: white;
  color: black;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  transition: background-color 0.2s;
  white-space: nowrap;
}

.footer-cta-btn:hover {
  background: hsl(0, 0%, 90%);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-muted { color: var(--muted-foreground); }
.text-primary { color: var(--primary); }
.text-white { color: white; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.inline-flex { display: inline-flex; }
.max-w-4xl { max-width: 56rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* SVG Icons inline */
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
}

/* ========================================
   Agency Pages Styles
   ======================================== */

/* Header for Agency Pages */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 2.5rem;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-desktop a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  transition: color 0.2s;
}

.nav-desktop a:hover {
  color: var(--primary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: 9999px;
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-primary {
  background: var(--foreground);
  color: white;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.btn-dark {
  background: var(--foreground);
  color: white;
}

.btn-dark:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--foreground);
  color: var(--foreground);
}

.btn-outline:hover {
  background: var(--foreground);
  color: white;
}

.btn-white {
  background: white;
  color: #111;
}

.btn-white:hover {
  background: #f3f4f6;
  transform: scale(1.05);
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, #8B5CF6, #E84B8A, #FF9F3C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-pink {
  background: linear-gradient(135deg, #E84B8A, #FF9F3C, #8B5CF6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero Section for Agency Pages */
.hero-section {
  padding-top: 8rem;
  padding-bottom: 5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 768px) {
  .hero-section {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-section {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-content {
  display: block;
  padding: 0;
  flex-grow: 0;
}

.hero-badge {
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: 0.025em;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
}

.hero-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  max-width: 36rem;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-image {
  display: none;
  justify-content: center;
}

@media (min-width: 768px) {
  .hero-image {
    display: flex;
  }
}

.hero-image img {
  width: 100%;
  max-width: 32rem;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Section Styles */
.section {
  padding: 5rem 1.5rem;
}

@media (min-width: 768px) {
  .section {
    padding: 5rem 3rem;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 5rem 6rem;
  }
}

.bg-white {
  background-color: white;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

.container-sm {
  max-width: 48rem;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 3rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-title.text-left {
  text-align: left;
}

.section-description {
  color: var(--muted-foreground);
  max-width: 48rem;
  margin: 0 auto;
}

/* Features Grid */
.features-grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .features-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s;
}

.feature-card:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.service-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  margin: 0;
  padding: 0;
  flex-grow: 1;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

/* Process Grid */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.process-step {
  position: relative;
}

.process-number {
  font-size: 3.75rem;
  font-weight: 700;
  opacity: 0.2;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .process-number {
    font-size: 4.5rem;
  }
}

.process-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.process-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  padding: 5rem 1.5rem;
}

@media (min-width: 768px) {
  .cta-section {
    padding: 5rem 3rem;
  }
}

@media (min-width: 1024px) {
  .cta-section {
    padding: 5rem 6rem;
  }
}

.cta-container {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 2.25rem;
  }
}

.cta-description {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

/* FAQ Section */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: white;
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 0.75rem;
  padding: 0 1.5rem;
  transition: all 0.3s;
}

.faq-item[open] {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-color: rgba(139, 92, 246, 0.5);
}

.faq-question {
  padding: 1rem 0;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  transition: color 0.2s;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question:hover {
  color: #8B5CF6;
}

.faq-answer {
  padding-bottom: 1rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* About Grid */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-content h2 {
  text-align: left;
}

.about-image {
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 100%;
  max-width: 28rem;
  border-radius: 1rem;
}

/* Footer */
.footer {
  background: #1a1a1a;
  padding: 4rem 1.5rem 2rem;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
}


.footer-brand {
  color: white;
}

.footer-logo {
  height: 4rem;
  margin-bottom: 1rem;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.footer-links h4 {
  color: white;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}
