    /* ============================================
       PAWZEN — Design System & Styles
       ============================================ */
    :root {
      --cream: #F5F0E8;
      --cream-light: #FAF7F2;
      --cream-dark: #EDE6D8;
      --white: #FEFCF7;
      --blue: #93C5FD;
      --blue-light: #DBEAFE;
      --blue-dark: #6BA5E7;
      --green: #7DB89B;
      --green-light: #D1E8DA;
      --green-dark: #5FA07F;
      --yellow: #F0D861;
      --yellow-light: #FBF3C8;
      --yellow-dark: #D4B83A;
      --dark: #2C3E50;
      --text: #4A5568;
      --text-light: #8A94A1;
      --radius: 16px;
      --radius-sm: 8px;
      --radius-lg: 24px;
      --radius-xl: 32px;
      --shadow-sm: 0 2px 12px rgba(44,62,80,0.06);
      --shadow: 0 4px 24px rgba(44,62,80,0.08);
      --shadow-lg: 0 12px 48px rgba(44,62,80,0.12);
      --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      --font-display: 'Playfair Display', Georgia, serif;
      --font-body: 'DM Sans', -apple-system, sans-serif;
      --font-accent: 'Caveat', cursive;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-body);
      color: var(--text);
      background: var(--cream);
      line-height: 1.7;
      font-size: 1.05rem;
      overflow-x: hidden;
    }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
    button { border: none; cursor: pointer; font-family: inherit; }
    ul { list-style: none; }

    /* === TYPOGRAPHY === */
    h1, h2, h3, h4 { font-family: var(--font-display); color: var(--dark); line-height: 1.2; }
    h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 700; }
    h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; margin-bottom: 1rem; }
    h3 { font-size: 1.4rem; font-weight: 600; }
    .accent-text { font-family: var(--font-accent); }
    .section-label {
      font-family: var(--font-accent);
      font-size: 1.3rem;
      color: var(--green);
      display: block;
      margin-bottom: 0.5rem;
    }

    /* === LAYOUT === */
    .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .section { padding: 100px 0; }
    .section--sm { padding: 60px 0; }
    .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
    .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
    .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
    .text-center { text-align: center; }
    .mx-auto { margin-left: auto; margin-right: auto; }

    /* === BUTTONS === */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 32px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 1rem;
      transition: var(--transition);
      letter-spacing: 0.02em;
    }
    .btn--primary {
      background: var(--yellow);
      color: var(--dark);
      box-shadow: 0 4px 16px rgba(240,216,97,0.35);
    }
    .btn--primary:hover {
      background: var(--yellow-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(240,216,97,0.45);
    }
    .btn--outline {
      background: transparent;
      color: var(--dark);
      border: 2px solid var(--dark);
    }
    .btn--outline:hover { background: var(--dark); color: var(--white); }
    .btn--white {
      background: var(--white);
      color: var(--dark);
      box-shadow: var(--shadow);
    }
    .btn--white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
    .btn .material-symbols-rounded { font-size: 20px; }

    /* === CARDS === */
    .card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 32px;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
    }
    .card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

    /* === IMAGE PLACEHOLDERS === */
    .img-placeholder {
      border-radius: var(--radius-lg);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      color: rgba(255,255,255,0.85);
      font-size: 0.85rem;
      font-weight: 500;
      position: relative;
      overflow: hidden;
      min-height: 300px;
    }
    .img-placeholder .material-symbols-rounded { font-size: 40px; opacity: 0.7; }
    .img-placeholder::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 60%);
      pointer-events: none;
    }

    /* ============================================
       NAVIGATION
       ============================================ */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(245,240,232,0.92);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(44,62,80,0.06);
      transition: var(--transition);
    }
    .navbar.scrolled { box-shadow: var(--shadow-sm); }
    .navbar__inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }
    .navbar__logo {
      display: flex;
      align-items: center;
      gap: 10px;
      cursor: pointer;
    }
    .navbar__logo svg { height: 44px; width: auto; }
    .navbar__links {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .navbar__link {
      padding: 8px 16px;
      border-radius: 50px;
      font-size: 0.92rem;
      font-weight: 500;
      color: var(--text);
      transition: var(--transition);
      position: relative;
    }
    .navbar__link:hover, .navbar__link.active {
      color: var(--dark);
      background: rgba(147,197,253,0.15);
    }
    .navbar__link.active { font-weight: 600; }
    .navbar__cta {
      padding: 10px 24px;
      background: var(--yellow);
      color: var(--dark);
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.92rem;
      transition: var(--transition);
      box-shadow: 0 2px 12px rgba(240,216,97,0.3);
    }
    .navbar__cta:hover { background: var(--yellow-dark); transform: translateY(-1px); }
    .navbar__burger {
      display: none;
      background: none;
      font-size: 28px;
      color: var(--dark);
    }

    /* Mobile menu */
    .mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 999;
      background: var(--cream);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-family: var(--font-display);
      font-size: 1.6rem;
      font-weight: 600;
      color: var(--dark);
      padding: 12px;
      transition: var(--transition);
    }
    .mobile-menu a:hover { color: var(--blue); }
    .mobile-menu__close {
      position: absolute;
      top: 20px;
      right: 24px;
      background: none;
      font-size: 32px;
      color: var(--dark);
    }

    /* ============================================
       PAGES — Show/Hide
       ============================================ */
    .page { display: none; opacity: 0; animation: pageIn 0.5s ease forwards; }
    .page.active { display: block; }
    @keyframes pageIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

    /* ============================================
       SCROLL REVEAL
       ============================================ */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.revealed { opacity: 1; transform: translateY(0); }
    .reveal.delay-1 { transition-delay: 0.1s; }
    .reveal.delay-2 { transition-delay: 0.2s; }
    .reveal.delay-3 { transition-delay: 0.3s; }
    .reveal.delay-4 { transition-delay: 0.4s; }

    /* ============================================
       DECORATIVE ELEMENTS
       ============================================ */
    @keyframes float {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-18px) rotate(4deg); }
    }
    @keyframes floatAlt {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-14px) rotate(-6deg); }
    }
    .deco-paw {
      position: absolute;
      opacity: 0.07;
      pointer-events: none;
    }
    .deco-blob {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      filter: blur(60px);
      opacity: 0.35;
    }

    /* ============================================
       HOME — HERO
       ============================================ */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding-top: 72px;
    }
    .hero__content { position: relative; z-index: 2; max-width: 640px; }
    .hero__tagline {
      font-family: var(--font-accent);
      font-size: 1.4rem;
      color: var(--green);
      margin-bottom: 16px;
    }
    .hero h1 { margin-bottom: 24px; }
    .hero h1 em {
      font-style: italic;
      color: var(--blue);
      position: relative;
    }
    .hero__desc {
      font-size: 1.15rem;
      color: var(--text);
      margin-bottom: 36px;
      max-width: 500px;
      line-height: 1.8;
    }
    .hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
    .hero__visual {
      position: absolute;
      right: -40px;
      top: 50%;
      transform: translateY(-50%);
      width: 520px;
      height: 520px;
      z-index: 1;
    }
    .hero__visual-circle {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      background: linear-gradient(145deg, var(--blue-light), var(--green-light));
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }
    .hero__img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
      position: relative;
      z-index: 1;
    }
    .hero__visual-circle::before {
      content: '';
      position: absolute;
      width: 80%;
      height: 80%;
      border-radius: 50%;
      border: 2px dashed rgba(147,197,253,0.3);
      animation: spin 30s linear infinite;
    }
    @keyframes spin { to { transform: rotate(360deg); } }
    .hero__blob1 { width: 400px; height: 400px; background: var(--blue); top: 10%; right: 5%; animation: float 8s ease-in-out infinite; }
    .hero__blob2 { width: 300px; height: 300px; background: var(--green); bottom: 10%; right: 20%; animation: floatAlt 10s ease-in-out infinite; }
    .hero__blob3 { width: 200px; height: 200px; background: var(--yellow); top: 30%; right: 35%; animation: float 12s ease-in-out infinite; }
    .hero__paw1 { top: 20%; right: 15%; font-size: 80px; animation: float 7s ease-in-out infinite; }
    .hero__paw2 { bottom: 25%; right: 10%; font-size: 50px; animation: floatAlt 9s ease-in-out infinite; transform: rotate(-20deg); }
    .hero__paw3 { top: 15%; left: 60%; font-size: 35px; animation: float 11s ease-in-out infinite; }

    /* === HOME — PILLARS === */
    .pillars { background: var(--white); }
    .pillar-card {
      background: var(--cream-light);
      border-radius: var(--radius-xl);
      padding: 0;
      overflow: hidden;
      transition: var(--transition);
      border: 1px solid rgba(44,62,80,0.04);
    }
    .pillar-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
    .pillar-card__visual {
      height: 200px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }
    .pillar-card__visual .material-symbols-rounded { font-size: 56px; color: white; position: relative; z-index: 1; }
    .pillar-card__visual--blue { background: linear-gradient(145deg, var(--blue), var(--blue-dark)); }
    .pillar-card__visual--green { background: linear-gradient(145deg, var(--green), var(--green-dark)); }
    .pillar-card__visual--yellow { background: linear-gradient(145deg, var(--yellow), var(--yellow-dark)); }
    .pillar-card__body { padding: 28px 28px 32px; }
    .pillar-card__tag {
      display: inline-block;
      padding: 4px 14px;
      border-radius: 50px;
      font-size: 0.78rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 12px;
    }
    .pillar-card__tag--blue { background: var(--blue-light); color: var(--blue-dark); }
    .pillar-card__tag--green { background: var(--green-light); color: var(--green-dark); }
    .pillar-card__tag--yellow { background: var(--yellow-light); color: var(--yellow-dark); }
    .pillar-card__body h3 { margin-bottom: 8px; }
    .pillar-card__body p { font-size: 0.95rem; color: var(--text-light); }
    .pillar-card__link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 16px;
      font-weight: 600;
      font-size: 0.92rem;
      color: var(--dark);
      transition: var(--transition);
    }
    .pillar-card__link:hover { gap: 10px; }
    .pillar-card__link .material-symbols-rounded { font-size: 18px; }

    /* === HOME — WHY === */
    .why-item {
      display: flex;
      gap: 20px;
      margin-bottom: 32px;
    }
    .why-item__number {
      width: 48px;
      height: 48px;
      min-width: 48px;
      border-radius: 50%;
      background: var(--blue-light);
      color: var(--blue-dark);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1.2rem;
    }
    .why-item h4 { font-size: 1.1rem; margin-bottom: 4px; }
    .why-item p { font-size: 0.95rem; color: var(--text-light); }

    /* === HOME — TESTIMONIALS === */
    .testimonials { background: var(--white); }
    .testimonial-card { text-align: center; padding: 40px 28px; }
    .testimonial-card__stars { color: var(--yellow); margin-bottom: 16px; display: flex; justify-content: center; gap: 4px; }
    .testimonial-card__stars .material-symbols-rounded { font-size: 22px; }
    .testimonial-card__text {
      font-family: var(--font-display);
      font-size: 1.15rem;
      font-style: italic;
      color: var(--dark);
      margin-bottom: 20px;
      line-height: 1.6;
    }
    .testimonial-card__author { font-weight: 600; color: var(--dark); font-size: 0.95rem; }
    .testimonial-card__role { color: var(--text-light); font-size: 0.85rem; }

    /* === HOME — INSTAGRAM === */
    .insta-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 8px;
    }
    .insta-item {
      aspect-ratio: 1;
      border-radius: var(--radius-sm);
      overflow: hidden;
      position: relative;
      cursor: pointer;
      transition: var(--transition);
    }
    .insta-item:hover { transform: scale(1.04); }
    .insta-item__bg {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .insta-item__bg .material-symbols-rounded { font-size: 28px; color: rgba(255,255,255,0.6); }
    .insta-item:hover .insta-item__bg .material-symbols-rounded { color: rgba(255,255,255,0.9); }
    .insta-item:nth-child(1) .insta-item__bg { background: linear-gradient(135deg, var(--blue), var(--green)); }
    .insta-item:nth-child(2) .insta-item__bg { background: linear-gradient(135deg, var(--green), var(--yellow)); }
    .insta-item:nth-child(3) .insta-item__bg { background: linear-gradient(135deg, var(--yellow), var(--blue)); }
    .insta-item:nth-child(4) .insta-item__bg { background: linear-gradient(135deg, var(--blue-dark), var(--blue)); }
    .insta-item:nth-child(5) .insta-item__bg { background: linear-gradient(135deg, var(--green-dark), var(--green)); }
    .insta-item:nth-child(6) .insta-item__bg { background: linear-gradient(135deg, var(--yellow-dark), var(--yellow)); }

    /* === CTA BANNER === */
    .cta-banner {
      background: linear-gradient(145deg, var(--blue), var(--green-dark));
      border-radius: var(--radius-xl);
      padding: 64px 48px;
      text-align: center;
      color: white;
      position: relative;
      overflow: hidden;
    }
    .cta-banner h2 { color: white; margin-bottom: 16px; }
    .cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
    .cta-banner::before {
      content: '';
      position: absolute;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: rgba(255,255,255,0.06);
      top: -100px;
      right: -60px;
    }
    .cta-banner::after {
      content: '';
      position: absolute;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      background: rgba(255,255,255,0.04);
      bottom: -60px;
      left: -40px;
    }

    /* ============================================
       SUBPAGES — COMMON HERO
       ============================================ */
    .page-hero {
      padding: 160px 0 80px;
      position: relative;
      overflow: hidden;
    }
    .page-hero__content { position: relative; z-index: 2; }
    .page-hero h1 { margin-bottom: 16px; }
    .page-hero p { font-size: 1.15rem; max-width: 560px; line-height: 1.8; }
    .page-hero--blue { background: linear-gradient(160deg, var(--cream) 0%, var(--blue-light) 100%); }
    .page-hero--green { background: linear-gradient(160deg, var(--cream) 0%, var(--green-light) 100%); }
    .page-hero--yellow { background: linear-gradient(160deg, var(--cream) 0%, var(--yellow-light) 100%); }

    /* === SUBPAGE CONTENT === */
    .feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .feature-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 32px;
      display: flex;
      gap: 16px;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
    }
    .feature-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
    .feature-card__icon {
      width: 52px;
      height: 52px;
      min-width: 52px;
      border-radius: var(--radius);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .feature-card__icon--blue { background: var(--blue-light); color: var(--blue-dark); }
    .feature-card__icon--green { background: var(--green-light); color: var(--green-dark); }
    .feature-card__icon--yellow { background: var(--yellow-light); color: var(--yellow-dark); }
    .feature-card h4 { font-size: 1.05rem; margin-bottom: 4px; }
    .feature-card p { font-size: 0.92rem; color: var(--text-light); }

    .info-box {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 32px;
      border-left: 4px solid var(--blue);
    }
    .info-box--green { border-left-color: var(--green); }
    .info-box--yellow { border-left-color: var(--yellow); }

    .steps { display: flex; gap: 32px; counter-reset: step; }
    .step {
      flex: 1;
      text-align: center;
      position: relative;
      counter-increment: step;
    }
    .step__circle {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1.4rem;
      color: white;
    }
    .step h4 { margin-bottom: 8px; }
    .step p { font-size: 0.92rem; color: var(--text-light); }

    /* ============================================
       TARIFS
       ============================================ */
    .pricing-card {
      background: var(--white);
      border-radius: var(--radius-xl);
      padding: 40px 32px;
      text-align: center;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      position: relative;
      border: 2px solid transparent;
    }
    .pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
    .pricing-card--featured {
      border-color: var(--yellow);
      box-shadow: var(--shadow);
    }
    .pricing-card--featured::before {
      content: 'Le + populaire';
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--yellow);
      color: var(--dark);
      padding: 4px 20px;
      border-radius: 50px;
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }
    .pricing-card__name {
      font-family: var(--font-display);
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--dark);
      margin-bottom: 8px;
    }
    .pricing-card__price {
      font-family: var(--font-display);
      font-size: 3rem;
      font-weight: 700;
      color: var(--dark);
      line-height: 1;
      margin-bottom: 4px;
    }
    .pricing-card__price span { font-size: 1.2rem; font-weight: 400; color: var(--text-light); }
    .pricing-card__period { color: var(--text-light); font-size: 0.9rem; margin-bottom: 24px; }
    .pricing-card__features { margin-bottom: 32px; }
    .pricing-card__features li {
      padding: 8px 0;
      border-bottom: 1px solid rgba(44,62,80,0.06);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-size: 0.95rem;
    }
    .pricing-card__features li .material-symbols-rounded { font-size: 18px; color: var(--green); }

    /* FAQ */
    .faq-item {
      background: var(--white);
      border-radius: var(--radius);
      margin-bottom: 12px;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
    }
    .faq-item__q {
      width: 100%;
      padding: 20px 24px;
      background: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 1.02rem;
      font-weight: 600;
      color: var(--dark);
      text-align: left;
    }
    .faq-item__q .material-symbols-rounded { transition: var(--transition); font-size: 22px; color: var(--text-light); }
    .faq-item.open .faq-item__q .material-symbols-rounded { transform: rotate(180deg); }
    .faq-item__a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease;
      padding: 0 24px;
    }
    .faq-item.open .faq-item__a { max-height: 200px; }
    .faq-item__a p { padding-bottom: 20px; font-size: 0.95rem; color: var(--text-light); }

    /* ============================================
       BOOKING CALENDAR
       ============================================ */
    .booking-tabs { display: flex; gap: 8px; margin-bottom: 32px; justify-content: center; }
    .booking-tab {
      padding: 10px 24px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.92rem;
      background: var(--white);
      color: var(--text);
      transition: var(--transition);
      border: 2px solid transparent;
    }
    .booking-tab.active { border-color: var(--blue); color: var(--dark); background: var(--blue-light); }
    .booking-tab:hover:not(.active) { background: var(--cream-dark); }

    .calendar-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 24px;
    }
    .calendar-header h3 { font-size: 1.3rem; }
    .calendar-nav {
      display: flex;
      gap: 8px;
    }
    .calendar-nav button {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--white);
      color: var(--dark);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
      box-shadow: var(--shadow-sm);
    }
    .calendar-nav button:hover { background: var(--blue-light); }
    .calendar-grid {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 8px;
    }
    .calendar-day {
      text-align: center;
      font-weight: 600;
      font-size: 0.85rem;
      color: var(--text-light);
      padding: 8px 0;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }
    .calendar-slots { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; margin-top: 8px; }
    .slot {
      background: var(--white);
      border-radius: var(--radius-sm);
      padding: 12px 8px;
      text-align: center;
      cursor: pointer;
      transition: var(--transition);
      border: 2px solid transparent;
      box-shadow: var(--shadow-sm);
    }
    .slot:hover { border-color: var(--blue); transform: translateY(-2px); }
    .slot.selected { border-color: var(--yellow); background: var(--yellow-light); }
    .slot__time { font-weight: 700; font-size: 0.9rem; color: var(--dark); }
    .slot__type { font-size: 0.75rem; color: var(--text-light); margin-top: 2px; }
    .slot__spots { font-size: 0.72rem; color: var(--green); margin-top: 4px; font-weight: 600; }
    .slot--empty { background: var(--cream-dark); cursor: default; opacity: 0.4; }
    .slot--empty:hover { border-color: transparent; transform: none; }

    .booking-confirm {
      display: none;
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 32px;
      margin-top: 32px;
      text-align: center;
      box-shadow: var(--shadow);
      animation: pageIn 0.4s ease;
    }
    .booking-confirm.show { display: block; }
    .booking-confirm .material-symbols-rounded { font-size: 48px; color: var(--green); margin-bottom: 12px; }

    /* ============================================
       CONTACT
       ============================================ */
    .contact-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 28px;
      display: flex;
      align-items: flex-start;
      gap: 16px;
      box-shadow: var(--shadow-sm);
    }
    .contact-card__icon {
      width: 48px;
      height: 48px;
      min-width: 48px;
      border-radius: 50%;
      background: var(--blue-light);
      color: var(--blue-dark);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .contact-card h4 { font-size: 1rem; margin-bottom: 4px; }
    .contact-card p { font-size: 0.92rem; color: var(--text-light); }

    .contact-form {
      background: var(--white);
      border-radius: var(--radius-xl);
      padding: 40px;
      box-shadow: var(--shadow-sm);
    }
    .form-group { margin-bottom: 20px; }
    .form-group label {
      display: block;
      font-weight: 600;
      font-size: 0.92rem;
      color: var(--dark);
      margin-bottom: 8px;
    }
    .form-group input, .form-group textarea, .form-group select {
      width: 100%;
      padding: 14px 18px;
      border: 2px solid rgba(44,62,80,0.1);
      border-radius: var(--radius-sm);
      font-family: var(--font-body);
      font-size: 1rem;
      color: var(--dark);
      background: var(--cream-light);
      transition: var(--transition);
    }
    .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
      outline: none;
      border-color: var(--blue);
      background: var(--white);
    }
    .form-group textarea { resize: vertical; min-height: 120px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

    .map-placeholder {
      width: 100%;
      height: 300px;
      border-radius: var(--radius-lg);
      background: linear-gradient(145deg, var(--cream-dark), var(--blue-light));
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 8px;
      color: var(--text-light);
    }
    .map-placeholder .material-symbols-rounded { font-size: 48px; opacity: 0.5; }

    /* ============================================
       FOOTER
       ============================================ */
    .footer {
      background: var(--dark);
      color: rgba(255,255,255,0.7);
      padding: 64px 0 32px;
    }
    .footer__grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 48px;
      margin-bottom: 48px;
    }
    .footer__brand p { margin-top: 16px; font-size: 0.92rem; line-height: 1.7; }
    .footer__brand svg { height: 40px; }
    .footer h4 {
      color: white;
      font-family: var(--font-body);
      font-size: 0.9rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 20px;
    }
    .footer ul li { margin-bottom: 10px; }
    .footer ul li a {
      font-size: 0.92rem;
      transition: var(--transition);
    }
    .footer ul li a:hover { color: var(--yellow); }
    .footer__newsletter p { font-size: 0.92rem; margin-bottom: 16px; }
    .footer__newsletter-form { display: flex; gap: 8px; }
    .footer__newsletter-form input {
      flex: 1;
      padding: 12px 16px;
      border: 2px solid rgba(255,255,255,0.15);
      border-radius: 50px;
      background: rgba(255,255,255,0.05);
      color: white;
      font-family: var(--font-body);
      font-size: 0.9rem;
    }
    .footer__newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
    .footer__newsletter-form input:focus { outline: none; border-color: var(--yellow); }
    .footer__newsletter-form button {
      padding: 12px 20px;
      border-radius: 50px;
      background: var(--yellow);
      color: var(--dark);
      font-weight: 700;
    }
    .footer__bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 0.85rem;
    }
    .footer__socials { display: flex; gap: 16px; }
    .footer__socials a {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255,255,255,0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
      font-size: 0.85rem;
      font-weight: 700;
      color: rgba(255,255,255,0.6);
    }
    .footer__socials a:hover { background: var(--yellow); color: var(--dark); }

    /* ============================================
       TOAST NOTIFICATION
       ============================================ */
    .toast {
      position: fixed;
      bottom: 32px;
      right: 32px;
      background: var(--dark);
      color: white;
      padding: 16px 28px;
      border-radius: var(--radius);
      box-shadow: var(--shadow-lg);
      transform: translateY(100px);
      opacity: 0;
      transition: var(--transition);
      z-index: 2000;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .toast.show { transform: translateY(0); opacity: 1; }
    .toast .material-symbols-rounded { color: var(--green); }

    /* ============================================
       RESPONSIVE
       ============================================ */
    @media (max-width: 1024px) {
      .hero__visual { width: 400px; height: 400px; right: -60px; }
      .grid-3 { grid-template-columns: 1fr; }
      .grid-2 { grid-template-columns: 1fr; }
      .feature-grid { grid-template-columns: 1fr; }
      .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    }
    @media (max-width: 768px) {
      .navbar__links, .navbar__cta { display: none; }
      .navbar__burger { display: block; }
      .hero { text-align: center; }
      .hero__content { max-width: 100%; }
      .hero__desc { margin-left: auto; margin-right: auto; }
      .hero__actions { justify-content: center; }
      .hero__visual { display: none; }
      .grid-4 { grid-template-columns: 1fr 1fr; }
      .steps { flex-direction: column; }
      .calendar-grid, .calendar-slots { grid-template-columns: repeat(3, 1fr); }
      .insta-grid { grid-template-columns: repeat(3, 1fr); }
      .form-row { grid-template-columns: 1fr; }
      .footer__grid { grid-template-columns: 1fr; }
      .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
      .cta-banner { padding: 48px 24px; }
      .pricing-card { padding: 32px 24px; }
    }
    @media (max-width: 480px) {
      .grid-4 { grid-template-columns: 1fr; }
      .calendar-grid, .calendar-slots { grid-template-columns: repeat(2, 1fr); }
      .insta-grid { grid-template-columns: repeat(2, 1fr); }
    }
