/* ===========================
   Variables
=========================== */
:root {
  --white:      #ffffff;
  --blush:      #fdf0f3;
  --rose:       #c95470;
  --rose-dark:  #a83055;

  --font-heading: 'Playfair Display', serif;
  --font-body:    'DM Sans', sans-serif;
}

/* ===========================
   Reset
=========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--white);
  color: #2d2d2d;
}

/* ===========================
   Animations
=========================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

@keyframes floatCard {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50%       { transform: translateY(-6px) rotate(var(--rot, 0deg)); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.fade-up        { animation: fadeUp 0.7s ease both; }
.fade-up--d1    { animation-delay: 0.1s; }
.fade-up--d2    { animation-delay: 0.22s; }
.fade-up--d3    { animation-delay: 0.36s; }

/* ===========================
   Navbar
=========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--white);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.07);
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.navbar__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}

.logo-profe {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: #7a5a63;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.logo-dalys {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.8rem;
  color: #a83055;
  letter-spacing: -0.02em;
  line-height: 1;
}

.logo-dot {
  font-size: 0.7rem;
  color: #e8879a;
  margin-left: 0.1rem;
  align-self: flex-start;
  margin-top: 0.3rem;
}

.nav-logo:hover .logo-dalys {
  color: #c95470;
  transition: color 0.2s;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__nav a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: #2d2d2d;
  text-decoration: none;
  transition: color 0.2s ease;
}

.navbar__nav a:hover {
  color: var(--rose);
}

.navbar__cta {
  background-color: var(--rose) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: background-color 0.2s ease, transform 0.2s ease !important;
}

.navbar__cta:hover {
  background-color: var(--rose-dark) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* Burger button */
.navbar__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.navbar__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #2d2d2d;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Burger open state */
.navbar__burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar__burger.open span:nth-child(2) {
  opacity: 0;
}
.navbar__burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===========================
   Responsive
=========================== */
@media (max-width: 768px) {
  .navbar__burger {
    display: flex;
  }

  .navbar__nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    padding: 16px 24px 24px;
  }

  .navbar__nav.open {
    display: flex;
  }

  .navbar__nav a {
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid var(--blush);
  }

  .navbar__nav a:last-child {
    border-bottom: none;
    margin-top: 8px;
  }

  .navbar__cta {
    padding: 12px 22px !important;
  }
}

/* ===========================
   Buttons
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn--primary {
  background-color: var(--rose);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(201, 84, 112, 0.35);
}

.btn--primary:hover {
  background-color: var(--rose-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 84, 112, 0.45);
}

.btn--outline {
  background-color: transparent;
  color: var(--rose);
  border-color: var(--rose);
}

.btn--outline:hover {
  background-color: var(--rose);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===========================
   Hero
=========================== */
.hero {
  min-height: 100vh;
  padding-top: 70px;
  background: linear-gradient(135deg, #fdf0f3 0%, #fff5f7 60%, #ffffff 100%);
  display: flex;
  align-items: center;
}

.hero__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

/* Left column */
.hero__badge {
  display: inline-block;
  background-color: var(--blush);
  color: var(--rose-dark);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  border: 1px solid rgba(201, 84, 112, 0.15);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
  color: #2d2d2d;
  margin-bottom: 20px;
}

.hero__title em {
  font-style: italic;
  color: var(--rose);
}

.hero__subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #7a5a63;
  margin-bottom: 36px;
  max-width: 460px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Right column */
.hero__right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__photo-wrap {
  position: relative;
  width: 340px;
  height: 340px;
}

.hero__photo-wrap::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 3px dashed rgba(201, 84, 112, 0.4);
  animation: spin 18s linear infinite;
  pointer-events: none;
}

.hero__circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(145deg, #f7c5d2, #e87a96, #c95470);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  animation: float 4s ease-in-out infinite;
  box-shadow: 0 20px 60px rgba(201, 84, 112, 0.3);
  position: relative;
}

.hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  mix-blend-mode: multiply;
}

.hero__photo-info {
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: center;
  padding: 12px 0 18px;
  background: linear-gradient(to top, rgba(168,48,85,0.85) 0%, transparent 100%);
}

.hero__name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}

.hero__city {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.88);
  margin-top: 2px;
}

/* Floating cards */
.hero__card {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  padding: 10px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #2d2d2d;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  white-space: nowrap;
  animation: floatCard 3.5s ease-in-out infinite;
}

.hero__card--1 {
  top: -10px;
  left: -30px;
  --rot: -4deg;
  animation-delay: 0s;
}

.hero__card--2 {
  bottom: 30px;
  left: -50px;
  --rot: 3deg;
  animation-delay: 0.8s;
}

.hero__card--3 {
  top: 40px;
  right: -40px;
  --rot: 5deg;
  animation-delay: 1.4s;
}

/* ===========================
   Scroll fade (IntersectionObserver)
=========================== */
.scroll-fade {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.scroll-fade--d1 { transition-delay: 0.15s; }
.scroll-fade--d2 { transition-delay: 0.3s; }

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

/* ===========================
   Shared helpers
=========================== */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--rose);
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* ===========================
   Hero Responsive
=========================== */
@media (max-width: 900px) {
  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }

  .hero__subtitle {
    max-width: 100%;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__badge {
    display: inline-block;
  }

  .hero__photo-wrap {
    width: 280px;
    height: 280px;
    margin: 0 auto;
  }

  .hero__emoji {
    font-size: 4rem;
  }

  .hero__card--1 { left: -10px; }
  .hero__card--2 { left: -20px; }
  .hero__card--3 { right: -10px; }
}

/* ===========================
   About
=========================== */
.about {
  background-color: var(--white);
  padding: 6rem 4rem;
}

.about__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

/* Left card */
.about__card {
  background-color: var(--blush);
  border-radius: 32px;
  padding: 52px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.about__photo {
  width: 100%;
  max-width: 380px;
  height: 420px;
  object-fit: cover;
  object-position: center top;
  border-radius: 24px;
  box-shadow: 0 16px 48px rgba(201, 84, 112, 0.22);
  margin-bottom: 8px;
}

.about__card-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: #2d2d2d;
}

.about__card-title {
  font-size: 0.9rem;
  color: #7a5a63;
  margin-bottom: 8px;
}

.about__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}

.pill {
  background-color: var(--white);
  color: var(--rose-dark);
  border: 1px solid rgba(201, 84, 112, 0.2);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 600;
}

/* Right content */
.about__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 900;
  line-height: 1.25;
  color: #2d2d2d;
  margin-bottom: 18px;
}

.about__text {
  font-size: 1rem;
  line-height: 1.75;
  color: #7a5a63;
  margin-bottom: 24px;
}

.about__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.about__list li {
  font-size: 0.97rem;
  font-weight: 500;
  color: #2d2d2d;
  padding-left: 4px;
}

.about__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--rose);
  font-weight: 600;
  font-size: 0.97rem;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.about__link:hover {
  color: var(--rose-dark);
  border-bottom-color: var(--rose-dark);
}

/* About responsive */
@media (max-width: 900px) {
  .about {
    padding: 4rem 24px;
  }

  .about__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ===========================
   Pricing
=========================== */
.pricing {
  background-color: var(--blush);
  padding: 6rem 24px;
}

.pricing__container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

/* Header */
.pricing__header {
  text-align: center;
}

.pricing__title {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 900;
  color: #2d2d2d;
  margin-bottom: 28px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Toggle switch */
.pricing__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.toggle-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #7a5a63;
  transition: color 0.2s ease;
}

.toggle-label.active {
  color: var(--rose-dark);
}

.toggle-switch {
  position: relative;
  width: 52px;
  height: 28px;
  background-color: var(--rose);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  padding: 0;
}

.toggle-switch__thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  background-color: var(--white);
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.toggle-switch[aria-checked="true"] .toggle-switch__thumb {
  transform: translateX(24px);
}

/* Grid */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
}

/* Cards */
.pricing-card {
  position: relative;
  background-color: var(--white);
  border-radius: 24px;
  padding: 32px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(201, 84, 112, 0.15);
}

.pricing-card--featured {
  background: linear-gradient(145deg, var(--rose), var(--rose-dark));
  color: var(--white);
  transform: scale(1.03);
  box-shadow: 0 12px 40px rgba(201, 84, 112, 0.35);
}

.pricing-card--featured:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 20px 48px rgba(201, 84, 112, 0.45);
}

.pricing-card--featured .pricing-card__name,
.pricing-card--featured .pricing-card__desc,
.pricing-card--featured .price-period {
  color: rgba(255,255,255,0.9);
}

.pricing-card--featured .price-crossed {
  color: rgba(255,255,255,0.55);
}

/* Badge */
.pricing-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
}

.pricing-card__badge--gold {
  background-color: #fff3cd;
  color: #8a6400;
  border: 1px solid #f0c040;
}

.pricing-card__badge--popular {
  background-color: var(--white);
  color: var(--rose-dark);
  border: 1px solid rgba(255,255,255,0.5);
}

.pricing-card__icon {
  font-size: 2.2rem;
  margin-top: 12px;
  margin-bottom: 4px;
}

.pricing-card__name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #2d2d2d;
}

.pricing-card__desc {
  font-size: 0.82rem;
  color: #7a5a63;
  min-height: 18px;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 8px 0 4px;
}

.price-crossed {
  font-size: 0.9rem;
  color: #b0a0a5;
  text-decoration: line-through;
}

.price-main {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--rose-dark);
}

.pricing-card--featured .price-main {
  color: var(--white);
}

.price-period {
  font-size: 0.82rem;
  color: #7a5a63;
}

.pricing-card__btn {
  margin-top: 12px;
  width: 100%;
  justify-content: center;
}

.pricing-card--featured .btn--primary {
  background-color: var(--white);
  color: var(--rose-dark);
  box-shadow: none;
}

.pricing-card--featured .btn--primary:hover {
  background-color: var(--blush);
}

/* Footer */
.pricing__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.pricing__note {
  font-size: 0.9rem;
  color: #7a5a63;
}

/* Helper */
.hidden { display: none !important; }

/* Pricing responsive */
@media (max-width: 1024px) {
  .pricing__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-card--featured {
    transform: none;
  }
  .pricing-card--featured:hover {
    transform: translateY(-4px);
  }
}

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

/* ===========================
   YouTube
=========================== */
.yt {
  background-color: var(--white);
  padding: 6rem 4rem;
}

.yt__container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 52px;
}

/* Header */
.yt__header {
  text-align: center;
}

.yt__title {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 900;
  color: #2d2d2d;
  margin-bottom: 14px;
}

.yt__subtitle {
  font-size: 1rem;
  line-height: 1.7;
  color: #7a5a63;
  max-width: 580px;
  margin: 0 auto;
}

/* Two-column grid */
.yt__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
  align-items: start;
}

/* Channel card */
.yt__channel {
  background: linear-gradient(145deg, var(--rose), var(--rose-dark));
  border-radius: 24px;
  padding: 44px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  box-shadow: 0 16px 48px rgba(201, 84, 112, 0.3);
}

.yt__channel-play {
  font-size: 3.5rem;
  color: var(--white);
  line-height: 1;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
}

.yt__channel-handle {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.yt__channel-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
}

.yt__channel-stats {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 8px 0;
}

.yt__channel-stats span {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 6px 16px;
}

.yt__channel-btn {
  background-color: var(--white);
  color: var(--rose-dark);
  font-weight: 700;
  margin-top: 4px;
  width: 100%;
  justify-content: center;
  border-radius: 50px;
  padding: 12px 20px;
  text-decoration: none;
  font-size: 0.92rem;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.yt__channel-btn:hover {
  background-color: var(--blush);
  transform: translateY(-2px);
}

/* Video cards */
.yt__videos {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.yt-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: var(--blush);
  border-radius: 16px;
  padding: 22px 24px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.yt-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(201, 84, 112, 0.18);
}

.yt-card__emoji {
  font-size: 2.4rem;
  flex-shrink: 0;
}

.yt-card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.yt-card__title {
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 600;
  color: #2d2d2d;
  line-height: 1.4;
}

.yt-card__watch {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--rose);
  transition: color 0.2s ease;
}

.yt-card:hover .yt-card__watch {
  color: var(--rose-dark);
}

/* YouTube responsive */
@media (max-width: 900px) {
  .yt {
    padding: 4rem 24px;
  }

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

/* ===========================
   CTA Banner
=========================== */
.cta-banner {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  padding: 3.5rem 24px;
}

.cta-banner__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-banner__text {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.cta-banner__btn {
  background-color: var(--white);
  color: var(--rose-dark);
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 14px 32px;
}

.cta-banner__btn:hover {
  background-color: var(--blush);
  transform: translateY(-2px);
}

/* ===========================
   Lang Switcher
=========================== */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 5px 11px;
  border-radius: 50px;
  border: 2px solid transparent;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: #7a5a63;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.lang-btn:hover {
  background-color: var(--blush);
  color: var(--rose-dark);
}

.lang-btn.active {
  background-color: var(--rose);
  color: var(--white);
  border-color: var(--rose);
}

@media (max-width: 480px) {
  .lang-btn {
    padding: 4px 8px;
    font-size: 0.74rem;
  }
}

/* ===========================
   Pricing extra (French card)
=========================== */
.lang-extra {
  display: none;
}

.pricing__extra-row {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: -8px;
}

.pricing__extra-row .pricing-card {
  max-width: 280px;
  width: 100%;
}

.pricing-card__extra-desc {
  font-size: 0.78rem;
  color: #7a5a63;
  line-height: 1.5;
  text-align: center;
  padding: 0 6px;
  margin-top: 2px;
}

/* ===========================
   Contact
=========================== */
.contact {
  background-color: var(--white);
  padding: 6rem 4rem;
}

.contact__container {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.contact__header {
  text-align: center;
}

.contact__title {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 900;
  color: #2d2d2d;
  margin-bottom: 14px;
}

.contact__subtitle {
  font-size: 1rem;
  line-height: 1.7;
  color: #7a5a63;
}

.contact__subtitle a {
  color: var(--rose);
  font-weight: 600;
  text-decoration: none;
}

.contact__subtitle a:hover {
  text-decoration: underline;
}

.contact__form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact__label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  color: #2d2227;
}

.contact__input {
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: #2d2d2d;
  background-color: var(--white);
  border: 2px solid #f9d4df;
  border-radius: 12px;
  padding: 0.9rem 1.2rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.contact__input::placeholder {
  color: #b0a0a5;
}

.contact__input:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(201, 84, 112, 0.12);
}

.contact__input.is-error {
  border-color: #e53e3e;
}

.contact__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23c95470' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  padding-right: 2.8rem;
  cursor: pointer;
}

.contact__textarea {
  resize: vertical;
  min-height: 120px;
}

.contact__error {
  font-size: 0.82rem;
  color: #e53e3e;
  min-height: 18px;
}

.contact__submit {
  background-color: var(--rose);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  padding: 1rem 2rem;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 24px rgba(201, 84, 112, 0.35);
  margin-top: 0.4rem;
}

.contact__submit:hover {
  background-color: var(--rose-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 84, 112, 0.45);
}

.contact__success {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--rose);
  text-align: center;
  padding: 2rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .contact {
    padding: 4rem 24px;
  }
}

/* ===========================
   Footer
=========================== */
.footer {
  background-color: #2d2227;
  padding: 4rem 24px 0;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 3rem;
}

/* Logo */
.footer__logo {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #e8879a;
  text-decoration: none;
  margin-bottom: 14px;
  transition: opacity 0.2s ease;
}

.footer__logo:hover {
  opacity: 0.8;
}

.footer__bio {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}

/* Headings */
.footer__heading {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}

/* Nav links */
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__nav a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__nav a:hover {
  color: var(--white);
}

/* Divider */
.footer__divider {
  height: 1px;
  background-color: rgba(255,255,255,0.08);
}

/* Bottom bar */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding: 1.5rem 0;
}

.footer__bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* Footer responsive */
@media (max-width: 900px) {
  .cta-banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-banner__btn {
    width: 100%;
    justify-content: center;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ===========================
   Mobile — max-width: 768px
=========================== */
@media (max-width: 768px) {

  /* --- NAVBAR --- */
  .logo-dalys {
    font-size: 1.4rem;
  }

  /* --- HERO --- */
  .hero__container {
    grid-template-columns: 1fr;
    padding: 6rem 1.5rem 3rem;
    gap: 28px;
    text-align: center;
  }

  /* Photo avant le texte sur mobile */
  .hero__right {
    order: -1;
  }

  .hero__photo-wrap {
    width: 220px;
    height: 220px;
    margin: 0 auto;
  }

  .hero__photo {
    object-position: center top;
  }

  .hero__title {
    font-size: 2.2rem;
  }

  .hero__subtitle {
    max-width: 100%;
    font-size: 0.97rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

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

  .hero__card {
    font-size: 0.72rem;
    padding: 7px 11px;
  }

  .hero__card--1 { left: -4px; top: -6px; }
  .hero__card--2 { left: -8px; }
  .hero__card--3 { right: -4px; }

  /* --- ABOUT --- */
  .about {
    padding: 3rem 1.5rem;
  }

  .about__container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about__photo {
    width: 100%;
    max-width: 100%;
    height: 280px;
    max-height: 300px;
    object-fit: cover;
    object-position: center top;
  }

  .about__title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }

  /* --- PRICING --- */
  .pricing {
    padding: 3rem 1.5rem;
  }

  .pricing__title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }

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

  .pricing-card--featured {
    transform: scale(1);
  }

  .pricing-card--featured:hover {
    transform: translateY(-4px);
  }

  /* --- YOUTUBE --- */
  .yt {
    padding: 3rem 1.5rem;
  }

  .yt__title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }

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

  /* --- CTA BANNER --- */
  .cta-banner {
    padding: 2.5rem 1.5rem;
  }

  /* --- CONTACT --- */
  .contact {
    padding: 3rem 1.5rem;
  }

  .contact__title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }

  /* --- FOOTER --- */
  .footer {
    padding: 3rem 1.5rem 0;
  }

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