*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --red: #C7182C;
    --red-dark: #7C1E2F;
    --pink: #FF95C8;
    --blush: #FFD7E9;
    --cream: #FBF3F1;
    --white: #ffffff;
    --text: #1a1a1a;
    --text-muted: #6b4c52;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Archivo', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 64px;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
  }

  .nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: transparent;
    border: 2px solid transparent;
    color: white;
    font-size: 26px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  }

  .nav-toggle:hover {
    background: rgba(255,255,255,0.12);
    transform: scale(1.05);
    border-color: var(--blush);
  }

  @media (max-width: 900px) {
    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-links li a {
        display: inline-block;
        padding: 10px 18px;
        border-radius: 100px;
        transition: background 0.2s ease, transform 0.2s ease;
    }

    .nav-links li a:hover {
        background: rgba(255,255,255,0.12);
        transform: translateY(-2px);
    }

    .nav-links .nav-cta {
        background: white;
        color: var(--red) !important;
        padding: 14px 38px;
        margin-top: 10px;
    }

    .nav-links .nav-cta:hover {
        background: var(--blush) !important;
        transform: translateY(-2px);
    }

    .nav-links {
        display: flex;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--red);
        flex-direction: column;
        gap: 18px;
        padding: 0 24px;
        text-align: center;

        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-16px);
        pointer-events: none;

        transition:
            max-height 0.45s ease,
            opacity 0.3s ease,
            transform 0.3s ease,
            padding 0.3s ease;
    }

    .nav-links.open {
        max-height: 520px;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
        padding: 40px 24px 32px;
    }
    }

  /* SVG butterfly logo */
  .logo-mark {
    width: 36px;
    height: 36px;
  }

  .logo-text {
    font-family: 'Archivo Black', sans-serif;
    font-size: 26px;
    color: var(--white);
    letter-spacing: -0.5px;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
  }

  .nav-links a {
    color: rgba(255,255,255,0.88);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.2px;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--white); }

  .nav-cta {
    background: var(--white);
    color: var(--red) !important;
    font-weight: 700 !important;
    padding: 9px 22px;
    border-radius: 100px;
    transition: background 0.2s, color 0.2s !important;
  }
  .nav-cta:hover {
    background: var(--blush) !important;
  }

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    background: linear-gradient(160deg, var(--red-dark) 0%, var(--red) 55%, #e8304a 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 48px 80px;
    overflow: hidden;
  }

  /* Decorative blobs */
  .hero::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255,149,200,0.18) 0%, transparent 70%);
    top: -100px; right: -100px;
    border-radius: 50%;
    pointer-events: none;
  }
  .hero::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,215,233,0.12) 0%, transparent 70%);
    bottom: 0; left: -80px;
    border-radius: 50%;
    pointer-events: none;
  }

  .hero-eyebrow {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--blush);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 100px;
    margin-bottom: 28px;
    animation: fadeUp 0.7s ease both;
  }

  .hero-headline {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(52px, 8vw, 100px);
    line-height: 1.0;
    color: var(--white);
    letter-spacing: -2px;
    animation: fadeUp 0.7s 0.1s ease both;
    position: relative;
    z-index: 1;
  }

  .hero-headline em {
    font-style: italic;
    color: var(--pink);
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
  }

  .hero-sub {
    margin-top: 24px;
    font-size: 18px;
    color: rgba(255,255,255,0.78);
    max-width: 520px;
    line-height: 1.65;
    animation: fadeUp 0.7s 0.2s ease both;
  }

  /* INDEX - SUB-TEXT UNDER HERO */
  /*.hero-sub-small {
    margin-top: 12px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.435);
    max-width: 520px;
    line-height: 1.65;
    animation: fadeUp 0.7s 0.2s ease both;
  }
  */

  .hero-actions {
    margin-top: 44px;
    display: flex;
    gap: 16px;
    align-items: center;
    animation: fadeUp 0.7s 0.3s ease both;
    flex-wrap: wrap;
    justify-content: center;
  }

  .btn-primary {
    background: var(--white);
    color: var(--red);
    font-weight: 700;
    font-size: 15px;
    padding: 16px 36px;
    border-radius: 100px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.25); }

  .btn-ghost {
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    padding: 16px 28px;
    border-radius: 100px;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.4);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
  }
  .btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

  /* Floating image mosaic */
  .hero-mosaic {
    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: 820px;
    width: 100%;
    animation: fadeUp 0.8s 0.4s ease both;
    position: relative;
    z-index: 1;
  }

  .mosaic-item {
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255,255,255,0.12);
    aspect-ratio: 3/4;
    position: relative;
    border: 1px solid rgba(255,255,255,0.15);
  }
  .mosaic-item:nth-child(2) { transform: translateY(-20px); }
  .mosaic-item:nth-child(4) { transform: translateY(-10px); }

  .mosaic-placeholder {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
  }

  .mosaic-tag {
    position: absolute;
    bottom: 10px; left: 10px;
    background: rgba(255,255,255,0.92);
    color: var(--red-dark);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    letter-spacing: 0.3px;
  }

  /* ─── FLOATING STAT PILLS ─── */
  .stat-strip {
    background: var(--red-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0;
    overflow: hidden;
  }

  .stat-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 32px 24px;
    border-right: 1px solid rgba(255,255,255,0.12);
    text-align: center;
  }
  .stat-item:last-child { border-right: none; }

  .stat-number {
    font-family: 'Archivo Black', sans-serif;
    font-size: 36px;
    color: var(--pink);
    line-height: 1;
  }
  .stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.65);
    margin-top: 6px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }

  .service-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

  .area-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

  .area-main {
  font-family: 'Archivo Black', sans-serif;
  font-size: 24px; /* smaller than stat-number */
  color: var(--pink);
  line-height: 1.2;
}

  .area-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

  /* ─── SECTION SHARED ─── */
  section { padding: 96px 48px; }

  .section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 16px;
  }

  .section-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.1;
    color: var(--red-dark);
    letter-spacing: -1px;
  }

  .section-title em {
    font-style: italic;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    color: var(--red);
  }

  /* ─── WHAT IS ARTE ─── */
  .about {
    background: var(--cream);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }

  .about-text .section-title { margin-bottom: 24px; }

  .about-text p {
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 20px;
  }

  .about-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 32px;
  }

  .badge {
    background: var(--blush);
    color: var(--red-dark);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 100px;
    border: 1.5px solid rgba(124,30,47,0.12);
  }

  .about-visual {
    position: relative;
  }

  .phone-mockup {
    width: 260px;
    margin: 0 auto;
    display: block;
    position: relative;
  }

  .phone-shell {
    background: var(--red-dark);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 32px 80px rgba(124,30,47,0.35), 0 0 0 1px rgba(255,255,255,0.08);
  }

  .phone-screen {
    background: var(--cream);
    border-radius: 30px;
    overflow: hidden;
    aspect-ratio: 9/19.5;
    display: flex;
    flex-direction: column;
  }

  .phone-header {
    background: var(--red);
    padding: 20px 16px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .phone-logo {
    font-family: 'Archivo Black', sans-serif;
    font-size: 16px;
    color: white;
  }

  .phone-content {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
  }

  .phone-search {
    background: white;
    border-radius: 100px;
    padding: 10px 16px;
    font-size: 12px;
    color: #999;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .phone-filters {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
  }

  .phone-filter {
    background: var(--blush);
    color: var(--red-dark);
    font-size: 9px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 100px;
  }
  .phone-filter.active {
    background: var(--red);
    color: white;
  }

  .phone-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    flex: 1;
  }

  .phone-card {
    background: linear-gradient(135deg, var(--blush), var(--pink));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    position: relative;
    overflow: hidden;
  }

  .phone-card-tag {
    position: absolute;
    bottom: 5px; left: 5px;
    background: rgba(255,255,255,0.9);
    font-size: 7px;
    font-weight: 700;
    color: var(--red-dark);
    padding: 2px 6px;
    border-radius: 100px;
  }

  /* Floating cards around phone */
  .float-card {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 14px 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--red-dark);
    white-space: nowrap;
    border: 1px solid rgba(255,255,255,0.9);
  }

  .float-card .icon { font-size: 20px; }

  .float-card-1 { top: 10%; right: -40px; }
  .float-card-2 { bottom: 20%; left: -60px; }
  .float-card-3 { top: 50%; right: -50px; }

  .float-card small {
    display: block;
    font-size: 10px;
    color: #999;
    font-weight: 400;
  }

  /* ─── SERVICES ─── */
  .services-section {
    background: var(--white);
    text-align: center;
  }

  .services-section .section-label,
  .services-section .section-title {
    text-align: center;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 56px auto 0;
  }

  .service-card {
    background: var(--cream);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(199,24,44,0.06);
    cursor: pointer;
  }
  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(124,30,47,0.12);
  }

  .service-card::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 120px; height: 120px;
    background: radial-gradient(circle, var(--blush) 0%, transparent 70%);
    pointer-events: none;
  }

  .service-emoji {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
  }

  .service-name {
    font-family: 'Archivo Black', sans-serif;
    font-size: 22px;
    color: var(--red-dark);
    margin-bottom: 10px;
  }

  .service-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
  }

  .service-btn {
    display: inline-block;
    margin-top: 20px;
    background: var(--red);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 100px;
    text-decoration: none; /* removes underline */
    letter-spacing: 0.5px;
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .service-btn:hover {
    transform: translateY(-2px);
    background: #b51527; /* slightly darker red */
  }

  /* ─── HOW IT WORKS ─── */
  .how-section {
    background: var(--cream);
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .how-block h3 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 22px;
    color: var(--red-dark);
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
  }

  .steps::before {
    content: '';
    position: absolute;
    left: 19px; top: 20px; bottom: 20px;
    width: 2px;
    background: linear-gradient(to bottom, var(--red), var(--pink));
    border-radius: 2px;
  }

  .step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 0 0 32px;
    position: relative;
    z-index: 1;
  }

  .step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--red);
    color: white;
    font-family: 'Archivo Black', sans-serif;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(199,24,44,0.35);
  }

  .step-content h4 {
    font-weight: 700;
    font-size: 15px;
    color: var(--red-dark);
    margin-bottom: 6px;
  }

  .step-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
  }

  /* ─── TRENDING / DISCOVER ─── */
  .discover-section {
    background: var(--white);
    text-align: center;
    padding: 96px 48px;
  }

  .discover-section .section-title { text-align: center; }

  .discover-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1100px;
    margin: 56px auto 0;
  }

  .discover-card {
    border-radius: 20px;
    overflow: hidden;
    background: var(--blush);
    aspect-ratio: 3/4;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s;
    border: none;
  }
  .discover-card:hover { transform: scale(1.03); }

  .discover-card:nth-child(2) { transform: translateY(-16px); }
  .discover-card:nth-child(2):hover { transform: translateY(-16px) scale(1.03); }
  .discover-card:nth-child(4) { transform: translateY(-8px); }
  .discover-card:nth-child(4):hover { transform: translateY(-8px) scale(1.03); }

  .discover-inner {
    width: 100%; height: 100%;
    display: flex;
    align-items: flex-end;
    padding: 16px;
    background: linear-gradient(to top, rgba(124,30,47,0.7) 0%, transparent 55%);
    position: absolute;
    inset: 0;
  }

  .discover-emoji-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    opacity: 0.3;
  }

  .discover-info {
    text-align: left;
    position: relative;
    z-index: 1;
  }

  .discover-info h4 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 14px;
    color: white;
    line-height: 1.3;
  }

  .discover-info span {
    font-size: 11px;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
  }

  .heart-btn {
    position: absolute;
    top: 12px; right: 12px;
    width: 32px; height: 32px;
    background: rgba(255,255,255,0.92);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
    z-index: 2;
  }
  .heart-btn:hover { transform: scale(1.2); }

  /* ─── PARTNER INVITE ─── */
  .partner-section {
    padding: 96px 48px;
    background: var(--cream);
  }

  .partner-inner {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
    border-radius: 32px;
    padding: 72px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .partner-inner::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,149,200,0.2) 0%, transparent 70%);
    top: -150px; right: -100px;
    border-radius: 50%;
    pointer-events: none;
  }

  .envelope-icon {
    font-size: 64px;
    margin-bottom: 24px;
    display: block;
    position: relative;
    z-index: 1;
  }

  .partner-inner .section-label {
    color: var(--pink);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }

  .partner-inner .section-title {
    color: var(--white);
    font-size: clamp(28px, 3.5vw, 44px);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }

  .partner-inner p {
    color: rgba(255,255,255,0.78);
    font-size: 16px;
    line-height: 1.7;
    max-width: 540px;
    margin: 0 auto 36px;
    position: relative;
    z-index: 1;
  }

  .partner-inner .btn-primary {
    background: var(--pink);
    color: var(--red-dark);
    position: relative;
    z-index: 1;
  }

  .partner-inner .btn-primary:hover { background: var(--blush); }

  /* ─── TESTIMONIALS ─── */
  .testimonials {
    background: var(--white);
    text-align: center;
    padding: 96px 48px;
  }

  .testimonials .section-title { margin-bottom: 56px; text-align: center; }

  .testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .testi-card {
    background: var(--cream);
    border-radius: 20px;
    padding: 32px;
    text-align: left;
    border: 1px solid rgba(199,24,44,0.06);
    transition: transform 0.3s;
  }
  .testi-card:hover { transform: translateY(-4px); }

  .testi-stars {
    color: var(--red);
    font-size: 14px;
    margin-bottom: 16px;
    letter-spacing: 2px;
  }

  .testi-quote {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 24px;
    font-style: italic;
  }

  .testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .testi-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink), var(--red));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
  }

  .testi-name {
    font-weight: 700;
    font-size: 14px;
    color: var(--red-dark);
  }

  .testi-role {
    font-size: 12px;
    color: #999;
    margin-top: 2px;
  }

   /* Split partner CTA */
  .partner-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
  }
  .partner-card {
    border-radius: 24px;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    text-align: left;
  }
  .partner-card-light {
    background: rgba(255,255,255,0.12);
    border: 1.5px solid rgba(255,255,255,0.3);
  }
  .partner-card-dark {
    background: rgba(0,0,0,0.15);
    border: 1.5px solid rgba(255,255,255,0.12);
  }
  .partner-card-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 22px;
    color: var(--white);
    letter-spacing: -0.4px;
    line-height: 1.2;
    margin: 0;
  }
  .partner-card-text {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.75;
    margin: 0;
    flex: 1;
  }
  @media (max-width: 760px) {
    .partner-split { grid-template-columns: 1fr; }
    .partner-card { padding: 32px 24px; }
  }

  /* ─── FAQ ─── */
  .faq-section {
    background: var(--white);
    max-width: 800px;
    margin: 0 auto;
    padding: 96px 48px;
  }

  .faq-section .section-title { margin-bottom: 48px; }

  .faq-item {
    border-bottom: 1px solid rgba(199,24,44,0.12);
    padding: 20px 0;
    cursor: pointer;
  }

  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 15px;
    color: var(--red-dark);
    user-select: none;
  }

  .faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--red);
  color: white;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.3s ease;
  }

  .faq-toggle svg {
    display: block;
    width: 14px;
    height: 14px;
    transform: translateY(1px);
  }

  /* when open, arrow points up */
  .faq-item.open .faq-toggle {
    transform: rotate(180deg);
  }

  .faq-answer {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.75;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.2s;
  }

  .faq-item.open .faq-answer {
    max-height: 200px;
    padding-top: 14px;
  }

  /* ─── FOOTER ─── */
  footer {
    background: var(--red-dark);
    padding: 60px 48px 32px;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .footer-brand .logo-text { color: var(--white); font-size: 28px; }

  .footer-tagline {
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    margin-top: 12px;
    line-height: 1.7;
    max-width: 220px;
  }

  .footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
  }

  .social-btn {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.2s;
    cursor: pointer;
    border: none;
    color: white;
  }

  .social-btn i,
  .social-btn img {
    pointer-events: none;
  }  
  
  .social-btn:hover { background: var(--red); }

  .footer-col h4 {
    color: var(--pink);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
  }

  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

  .footer-col a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--white); }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    color: rgba(255,255,255,0.35);
    font-size: 13px;
  }
/* ─── PRIVACY AND POLICY ─── */
/* ─── PRIVACY PAGE HERO BANNER ─── */
  .privacy-hero {
    background: linear-gradient(160deg, var(--red-dark) 0%, var(--red) 55%, #e8304a 100%);
    padding: 120px 48px 72px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .privacy-hero::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255,149,200,0.18) 0%, transparent 70%);
    top: -120px; right: -80px;
    border-radius: 50%;
    pointer-events: none;
  }

  .privacy-hero::after {
    content: '';
    position: absolute;
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(255,215,233,0.12) 0%, transparent 70%);
    bottom: -60px; left: -60px;
    border-radius: 50%;
    pointer-events: none;
  }

  .privacy-hero-eyebrow {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--blush);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 100px;
    margin-bottom: 24px;
    animation: fadeUp 0.6s ease both;
    position: relative;
    z-index: 1;
  }

  .privacy-hero h1 {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(36px, 5vw, 64px);
    color: var(--white);
    letter-spacing: -1.5px;
    line-height: 1.05;
    animation: fadeUp 0.6s 0.1s ease both;
    position: relative;
    z-index: 1;
  }

  .privacy-hero h1 em {
    font-style: italic;
    color: var(--pink);
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
  }

  .privacy-hero-meta {
    margin-top: 16px;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    animation: fadeUp 0.6s 0.2s ease both;
    position: relative;
    z-index: 1;
  }

  /* ─── PRIVACY CONTENT AREA ─── */
  .privacy-wrapper {
    max-width: 780px;
    margin: 0 auto;
    padding: 72px 48px 96px;
  }

  /* Intro lead */
  .privacy-lead {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 56px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(199,24,44,0.1);
  }

  /* Each section block */
  .privacy-section {
    margin-bottom: 48px;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .privacy-section.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .privacy-section-number {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 8px;
  }

  .privacy-section h2 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 22px;
    color: var(--red-dark);
    letter-spacing: -0.4px;
    margin-bottom: 16px;
    line-height: 1.2;
  }

  .privacy-section p {
    font-size: 15px;
    line-height: 1.85;
    color: var(--text-muted);
    margin-bottom: 14px;
  }

  .privacy-section p:last-child { margin-bottom: 0; }

  .privacy-section ul {
    list-style: none;
    padding: 0;
    margin: 14px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .privacy-section ul li {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-muted);
    padding-left: 22px;
    position: relative;
  }

  .privacy-section ul li::before {
    content: '·';
    position: absolute;
    left: 6px;
    color: var(--red);
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
  }

  /* Divider between sections */
  .privacy-divider {
    border: none;
    border-top: 1px solid rgba(199,24,44,0.1);
    margin: 48px 0;
  }

  /* Highlight box */
  .privacy-highlight {
    background: var(--blush);
    border-left: 4px solid var(--red);
    border-radius: 0 12px 12px 0;
    padding: 20px 24px;
    margin: 24px 0;
    font-size: 14px;
    color: var(--red-dark);
    line-height: 1.75;
    font-weight: 500;
  }

  /* Contact card */
  .privacy-contact-card {
    background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
    border-radius: 20px;
    padding: 40px 40px;
    text-align: center;
    margin-top: 56px;
    position: relative;
    overflow: hidden;
  }

  .privacy-contact-card::before {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(255,149,200,0.2) 0%, transparent 70%);
    top: -120px; right: -80px;
    border-radius: 50%;
    pointer-events: none;
  }

  .privacy-contact-card .section-label {
    color: var(--pink);
    position: relative;
    z-index: 1;
  }

  .privacy-contact-card h3 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 26px;
    color: var(--white);
    letter-spacing: -0.5px;
    margin: 12px 0 12px;
    position: relative;
    z-index: 1;
  }

  .privacy-contact-card p {
    font-size: 15px;
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
  }

  .privacy-contact-card a.btn-primary {
    background: var(--pink);
    color: var(--red-dark);
    position: relative;
    z-index: 1;
  }

  .privacy-contact-card a.btn-primary:hover {
    background: var(--blush);
  }

  /* Back link */
  .privacy-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--red);
    text-decoration: none;
    letter-spacing: 0.3px;
    margin-bottom: 32px;
    transition: gap 0.2s;
  }

  .privacy-back:hover { gap: 12px; }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    .privacy-hero { padding: 100px 24px 56px; }
    .privacy-wrapper { padding: 48px 24px 72px; }
    .privacy-contact-card { padding: 32px 24px; }
  }

/* ─── TERMS OF SERVICE ─── */
/* ─── TERMS HERO BANNER ─── */
  .terms-hero {
    background: linear-gradient(160deg, var(--red-dark) 0%, var(--red) 55%, #e8304a 100%);
    padding: 120px 48px 72px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .terms-hero::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255,149,200,0.18) 0%, transparent 70%);
    top: -120px; right: -80px;
    border-radius: 50%;
    pointer-events: none;
  }

  .terms-hero::after {
    content: '';
    position: absolute;
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(255,215,233,0.12) 0%, transparent 70%);
    bottom: -60px; left: -60px;
    border-radius: 50%;
    pointer-events: none;
  }

  .terms-hero-eyebrow {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--blush);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 100px;
    margin-bottom: 24px;
    animation: fadeUp 0.6s ease both;
    position: relative;
    z-index: 1;
  }

  .terms-hero h1 {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(36px, 5vw, 64px);
    color: var(--white);
    letter-spacing: -1.5px;
    line-height: 1.05;
    animation: fadeUp 0.6s 0.1s ease both;
    position: relative;
    z-index: 1;
  }

  .terms-hero h1 em {
    font-style: italic;
    color: var(--pink);
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
  }

  .terms-hero-meta {
    margin-top: 16px;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    animation: fadeUp 0.6s 0.2s ease both;
    position: relative;
    z-index: 1;
  }

  /* ─── CONTENT WRAPPER ─── */
  .terms-wrapper {
    max-width: 820px;
    margin: 0 auto;
    padding: 72px 48px 96px;
  }

  .terms-lead {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 56px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(199,24,44,0.1);
  }

  /* ─── SECTION BLOCKS ─── */
  .terms-section {
    margin-bottom: 48px;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .terms-section.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .terms-section-number {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 8px;
  }

  .terms-section h2 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 22px;
    color: var(--red-dark);
    letter-spacing: -0.4px;
    margin-bottom: 16px;
    line-height: 1.2;
  }

  .terms-section h3 {
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--red-dark);
    letter-spacing: 0.5px;
    margin: 28px 0 10px;
  }

  .terms-section p {
    font-size: 15px;
    line-height: 1.85;
    color: var(--text-muted);
    margin-bottom: 14px;
  }

  .terms-section p:last-child { margin-bottom: 0; }

  .terms-section ul {
    list-style: none;
    padding: 0;
    margin: 14px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .terms-section ul li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    padding-left: 22px;
    position: relative;
  }

  .terms-section ul li::before {
    content: '·';
    position: absolute;
    left: 6px;
    color: var(--red);
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
  }

  /* Nested list */
  .terms-section ul ul {
    margin: 8px 0 0 16px;
    gap: 8px;
  }

  .terms-section ul ul li {
    font-size: 14px;
  }

  .terms-section ul ul li::before {
    content: '–';
    font-size: 15px;
    color: var(--pink);
    top: 1px;
  }

  /* Divider */
  .terms-divider {
    border: none;
    border-top: 1px solid rgba(199,24,44,0.1);
    margin: 48px 0;
  }

  /* Highlight / callout box */
  .terms-highlight {
    background: var(--blush);
    border-left: 4px solid var(--red);
    border-radius: 0 12px 12px 0;
    padding: 18px 24px;
    margin: 24px 0;
    font-size: 14px;
    color: var(--red-dark);
    line-height: 1.75;
    font-weight: 500;
  }

  /* Fee table-style cards */
  .fee-row {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    border: 1px solid rgba(199,24,44,0.1);
    border-radius: 14px;
    padding: 18px 22px;
    margin-bottom: 10px;
  }

  .fee-row-icon {
    font-size: 22px;
    flex-shrink: 0;
  }

  .fee-row-text {
    flex: 1;
  }

  .fee-row-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--red-dark);
    margin-bottom: 2px;
  }

  .fee-row-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
  }

  .fee-row-amount {
    font-family: 'Archivo Black', sans-serif;
    font-size: 16px;
    color: var(--red);
    white-space: nowrap;
    flex-shrink: 0;
  }

  /* Two-column responsibilities */
  .responsibilities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 16px;
  }

  .resp-card {
    background: var(--white);
    border: 1px solid rgba(199,24,44,0.08);
    border-radius: 16px;
    padding: 28px 24px;
  }

  .resp-card-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 15px;
    color: var(--red-dark);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .resp-card ul {
    margin: 0;
  }

  /* CTA / contact card */
  .terms-contact-card {
    background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin-top: 56px;
    position: relative;
    overflow: hidden;
  }

  .terms-contact-card::before {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(255,149,200,0.2) 0%, transparent 70%);
    top: -120px; right: -80px;
    border-radius: 50%;
    pointer-events: none;
  }

  .terms-contact-card .section-label {
    color: var(--pink);
    position: relative;
    z-index: 1;
  }

  .terms-contact-card h3 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 26px;
    color: var(--white);
    letter-spacing: -0.5px;
    margin: 12px 0;
    position: relative;
    z-index: 1;
  }

  .terms-contact-card p {
    font-size: 15px;
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
  }

  .terms-contact-card a.btn-primary {
    background: var(--pink);
    color: var(--red-dark);
    position: relative;
    z-index: 1;
  }

  .terms-contact-card a.btn-primary:hover {
    background: var(--blush);
  }

  /* Back link */
  .terms-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--red);
    text-decoration: none;
    letter-spacing: 0.3px;
    margin-bottom: 32px;
    transition: gap 0.2s;
  }

  .terms-back:hover { gap: 12px; }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    .terms-hero { padding: 100px 24px 56px; }
    .terms-wrapper { padding: 48px 24px 72px; }
    .terms-contact-card { padding: 32px 24px; }
    .responsibilities-grid { grid-template-columns: 1fr; }
    .fee-row { flex-wrap: wrap; }
  }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ─── WRAPPER ─── */
  .section-wrap { max-width: 1200px; margin: 0 auto; }

  /* ─── MARQUEE ─── */
  .marquee-strip {
    background: var(--pink);
    overflow: hidden;
    padding: 14px 0;
    white-space: nowrap;
  }

  .marquee-inner {
    display: inline-flex;
    animation: marquee 20s linear infinite;
    gap: 0;
  }

  .marquee-item {
    color: var(--red-dark);
    font-family: 'Archivo Black', sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
    padding: 0 28px;
    text-transform: uppercase;
  }

  .marquee-dot {
    color: var(--red-dark);
    opacity: 0.4;
  }

  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    nav { padding: 0 20px; }
    .section { padding: 64px 24px; }
    .about, .how-section { grid-template-columns: 1fr; gap: 48px; }
    .services-grid { grid-template-columns: 1fr; }
    .discover-grid { grid-template-columns: repeat(2, 1fr); }
    .testi-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .stat-strip { flex-wrap: wrap; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .hero-mosaic { grid-template-columns: repeat(2, 1fr); }
    .partner-inner { padding: 48px 32px; }
    .float-card { display: none; }
  }

    /* ─── FOR ARTISTS PAGE ─── */

    /* HERO — artist variant */
    .artist-hero {
      min-height: 92vh;
      background: linear-gradient(160deg, var(--red-dark) 0%, var(--red) 55%, #e8304a 100%);
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 120px 48px 80px;
      overflow: hidden;
    }

    .artist-hero::before {
      content: '';
      position: absolute;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(255,149,200,0.18) 0%, transparent 70%);
      top: -100px; right: -100px;
      border-radius: 50%;
      pointer-events: none;
    }

    .artist-hero::after {
      content: '';
      position: absolute;
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(255,215,233,0.12) 0%, transparent 70%);
      bottom: 0; left: -80px;
      border-radius: 50%;
      pointer-events: none;
    }

    .artist-hero-inner {
      position: relative;
      z-index: 1;
      width: 100%;
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
    }

    .artist-hero .hero-sub {
      max-width: 680px;
      margin: 24px auto 0;
      text-align: center;
    }

    .artist-hero .hero-actions {
      justify-content: center;
    }

    /* Floating stat bubbles in hero */
    .hero-bubbles {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
    }

    .hero-bubble {
      position: absolute;
      background: rgba(255,255,255,0.1);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 100px;
      padding: 10px 20px;
      font-size: 13px;
      font-weight: 600;
      color: white;
      white-space: nowrap;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .hero-bubble-1 { top: 20%; left: 6%; animation: floatA 5s ease-in-out infinite; }
    .hero-bubble-2 { top: 22%; right: 6%; animation: floatB 6s ease-in-out infinite; }
    .hero-bubble-3 { bottom: 23%; left: 9%; animation: floatA 7s ease-in-out infinite 1s; }
    .hero-bubble-4 { bottom: 21%; right: 10%; animation: floatB 5.5s ease-in-out infinite 0.5s; }

    @keyframes floatA {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
    }
    @keyframes floatB {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(8px); }
    }

    /* ─── SECTION LABELS & TITLES (shared) ─── */
    .section-label {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 12px;
    }

    .section-title {
      font-family: 'Archivo Black', sans-serif;
      font-size: clamp(28px, 4vw, 48px);
      color: var(--red-dark);
      letter-spacing: -1px;
      line-height: 1.1;
    }

    .section-title em {
      font-style: italic;
      color: var(--pink);
      font-family: 'Archivo', sans-serif;
      font-weight: 700;
    }

    /* ─── WHY JOIN ─── */
    .why-section {
      background: var(--white);
      padding: 96px 48px;
      text-align: center;
    }

    .why-card {
      text-align: left;
    }   

    .why-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      max-width: 1100px;
      margin: 56px auto 0;
    }

    .why-card {
      background: var(--cream);
      border-radius: 24px;
      padding: 36px 28px;
      border: 1px solid rgba(199,24,44,0.07);
      transition: transform 0.3s, box-shadow 0.3s;
      position: relative;
      overflow: hidden;
    }

    .why-card::before {
      content: '';
      position: absolute;
      top: 0; right: 0;
      width: 100px; height: 100px;
      background: radial-gradient(circle, var(--blush) 0%, transparent 70%);
      pointer-events: none;
    }

    .why-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 60px rgba(124,30,47,0.1);
    }

    .why-icon {
      font-size: 40px;
      margin-bottom: 20px;
      display: block;
    }

    .why-title {
      font-family: 'Archivo Black', sans-serif;
      font-size: 17px;
      color: var(--red-dark);
      margin-bottom: 10px;
      line-height: 1.25;
    }

    .why-desc {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.75;
    }

    /* ─── HOW IT WORKS (ARTIST) ─── */
    .how-artist-section {
      background: var(--cream);
      padding: 96px 48px;
    }

    .how-artist-inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    /* Two flows side by side */
    .how-flows {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      margin-top: 56px;
      align-items: start;
    }

    .flow-block {
      background: var(--white);
      border-radius: 28px;
      padding: 44px 40px;
      border: 1px solid rgba(199,24,44,0.08);
    }

    .flow-block-title {
      font-family: 'Archivo Black', sans-serif;
      font-size: 18px;
      color: var(--red-dark);
      margin-bottom: 32px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    /* Step rows */
    .flow-steps {
      display: flex;
      flex-direction: column;
      gap: 0;
      position: relative;
    }

    .flow-steps::before {
      content: '';
      position: absolute;
      left: 19px; top: 20px; bottom: 20px;
      width: 2px;
      background: linear-gradient(to bottom, var(--red), var(--pink));
      border-radius: 2px;
    }

    .flow-step {
      display: flex;
      gap: 20px;
      align-items: flex-start;
      padding-bottom: 28px;
      position: relative;
      z-index: 1;
    }

    .flow-step:last-child { padding-bottom: 0; }

    .flow-num {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--red);
      color: white;
      font-family: 'Archivo Black', sans-serif;
      font-size: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      box-shadow: 0 4px 12px rgba(199,24,44,0.35);
    }

    .flow-content h4 {
      font-weight: 700;
      font-size: 15px;
      color: var(--red-dark);
      margin-bottom: 6px;
    }

    .flow-content p {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    .flow-content .flow-note {
      display: inline-block;
      margin-top: 8px;
      background: var(--blush);
      border-left: 3px solid var(--red);
      border-radius: 0 8px 8px 0;
      padding: 6px 12px;
      font-size: 12px;
      color: var(--red-dark);
      font-weight: 500;
      line-height: 1.55;
    }

    .flow-content a {
      color: var(--red);
      font-weight: 600;
      text-decoration: none;
      transition: color 0.2s;
    }

    .flow-content a:hover {
      text-decoration: underline;
    }

    /* Screening phase badge */
    .screening-badge {
      background: #fff8e7;
      border: 1.5px solid #f0c84a;
      border-radius: 10px;
      padding: 10px 16px;
      margin: 14px 0 20px 60px;
      font-size: 12.5px;
      color: #7a5c00;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 8px;
      line-height: 1.5;
    }

    /* Info chips for client details */
    .detail-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 10px;
    }

    .detail-chip {
      background: var(--blush);
      color: var(--red-dark);
      font-size: 11px;
      font-weight: 600;
      padding: 4px 12px;
      border-radius: 100px;
    }

    /* ─── WHAT WE LOOK FOR ─── */
    .lookfor-section {
      background: var(--white);
      padding: 96px 48px;
      text-align: center;
    }

    .lookfor-inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .lookfor-left .section-title {
      margin-bottom: 20px;
    }

    .lookfor-left > p {
      font-size: 16px;
      color: var(--text-muted);
      line-height: 1.75;
      max-width: 620px;
      margin: 0 auto 56px;
    }

    .lookfor-list {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .lookfor-item {
      background: var(--cream);
      border-radius: 24px;
      padding: 36px 28px;
      border: 1px solid rgba(199,24,44,0.07);
      transition: transform 0.3s, box-shadow 0.3s;
      position: relative;
      overflow: hidden;
      text-align: left;
    }

    .lookfor-item::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 100px;
      height: 100px;
      background: radial-gradient(circle, var(--blush) 0%, transparent 70%);
      pointer-events: none;
    }

    .lookfor-item:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 60px rgba(124,30,47,0.1);
    }

    .lookfor-icon {
      font-size: 40px;
      margin-bottom: 20px;
      display: block;
    }

    .lookfor-text h4 {
      font-family: 'Archivo Black', sans-serif;
      font-size: 17px;
      color: var(--red-dark);
      margin-bottom: 10px;
      line-height: 1.25;
    }

    .lookfor-text p {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.75;
      margin: 0;
    }

    /* ─── FINAL CTA ─── */
    .artist-cta-section {
      padding: 96px 48px;
      background: var(--cream);
    }

    .artist-cta-inner {
      max-width: 900px;
      margin: 0 auto;
      background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
      border-radius: 32px;
      padding: 80px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .artist-cta-inner::before {
      content: '';
      position: absolute;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(255,149,200,0.2) 0%, transparent 70%);
      top: -160px; right: -100px;
      border-radius: 50%;
      pointer-events: none;
    }

    .artist-cta-inner .section-label {
      color: var(--pink);
      position: relative;
      z-index: 1;
    }

    .artist-cta-inner .section-title {
      color: var(--white);
      font-size: clamp(28px, 3.5vw, 44px);
      margin: 16px 0 20px;
      position: relative;
      z-index: 1;
    }

    .artist-cta-inner .section-title em {
      color: var(--pink);
    }

    .artist-cta-inner p {
      color: rgba(255,255,255,0.75);
      font-size: 16px;
      line-height: 1.75;
      max-width: 520px;
      margin: 0 auto 36px;
      position: relative;
      z-index: 1;
    }

    .artist-cta-inner .cta-buttons {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
      position: relative;
      z-index: 1;
    }

    .artist-cta-inner .btn-primary {
      background: var(--pink);
      color: var(--red-dark);
    }

    .artist-cta-inner .btn-primary:hover { background: var(--blush); }

    .artist-cta-inner .btn-ghost {
      border-color: rgba(255,255,255,0.35);
    }

    .artist-cta-inner .btn-primary,
    .artist-cta-inner .btn-ghost {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      transform: none;
    }

    .artist-cta-inner .btn-primary:hover,
    .artist-cta-inner .btn-ghost:hover {
      transform: none;
      box-shadow: none;
    }

    .hero-urgency {
      margin-top: 10px;
      font-size: 12.5px;
      color: var(--white);
      opacity: 0.85;
      line-height: 1.5;
      text-align: center;
    }

    /* Punctual banner */
    .punctual-banner {
      background: var(--pink);
      text-align: center;
      padding: 18px 48px;
    }

    .punctual-banner p {
      font-family: 'Archivo Black', sans-serif;
      font-size: 15px;
      color: var(--red-dark);
      letter-spacing: 0.2px;
    }

    .punctual-banner span {
      color: var(--red);
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 900px) {
      .lookfor-list {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 600px) {
      .lookfor-list {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 900px) {
      .artist-hero { padding: 100px 24px 64px; min-height: 80vh; }
      .hero-bubble { display: none; }
      .why-grid { grid-template-columns: 1fr 1fr; }
      .how-artist-section, .lookfor-section, .why-section, .artist-cta-section { padding: 64px 24px; }
      .how-flows { grid-template-columns: 1fr; }
      .flow-block { padding: 32px 24px; }
      .lookfor-inner { grid-template-columns: 1fr; gap: 48px; }
      .lookfor-visual { min-height: 300px; }
      .lv-card { width: 240px; }
      .artist-cta-inner { padding: 48px 28px; }
    }

    @media (max-width: 600px) {
      .why-grid { grid-template-columns: 1fr; }
    }

    /* ─── HOW TO BOOK PAGE STYLE ─── */

    /* HERO */
    .book-hero {
      min-height: 80vh;
      background: linear-gradient(160deg, var(--red-dark) 0%, var(--red) 55%, #e8304a 100%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 120px 48px 80px;
      position: relative;
      overflow: hidden;
    }
    .book-hero::before {
      content: '';
      position: absolute;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(255,149,200,0.18) 0%, transparent 70%);
      top: -100px; right: -100px;
      border-radius: 50%;
      pointer-events: none;
    }
    .book-hero::after {
      content: '';
      position: absolute;
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(255,215,233,0.12) 0%, transparent 70%);
      bottom: 0; left: -80px;
      border-radius: 50%;
      pointer-events: none;
    }
    .book-hero .hero-eyebrow { position: relative; z-index: 1; }
    .book-hero .hero-headline { position: relative; z-index: 1; font-size: clamp(40px, 6vw, 80px); }
    .book-hero .hero-sub { position: relative; z-index: 1; }
    .book-hero .hero-actions { position: relative; z-index: 1; }

    /* Step number badges reused in steps section */
    .step-num-badge {
      width: 48px; height: 48px;
      border-radius: 50%;
      background: var(--red);
      color: white;
      font-family: 'Archivo Black', sans-serif;
      font-size: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      box-shadow: 0 4px 16px rgba(199,24,44,0.35);
    }

    /* ─── BOOKING FORM SECTION ─── */
    .form-section {
      background: var(--white);
      padding: 96px 48px;
    }
    .form-inner {
      max-width: 760px;
      margin: 0 auto;
    }
    .form-card {
      background: var(--cream);
      border: 1px solid rgba(199,24,44,0.1);
      border-radius: 28px;
      padding: 48px 48px;
      margin-top: 48px;
    }
    .form-group {
      margin-bottom: 22px;
    }
    .form-label {
      display: block;
      font-size: 13px;
      font-weight: 700;
      color: var(--red-dark);
      letter-spacing: 0.4px;
      margin-bottom: 8px;
      text-transform: uppercase;
    }
    .form-label span {
      color: var(--red);
      margin-left: 2px;
    }
    .form-input,
    .form-select,
    .form-textarea {
      width: 100%;
      background: var(--white);
      border: 1.5px solid rgba(199,24,44,0.15);
      border-radius: 14px;
      padding: 14px 18px;
      font-family: 'Archivo', sans-serif;
      font-size: 15px;
      color: var(--text);
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
      appearance: none;
    }
    .form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
      border-color: var(--red);
      box-shadow: 0 0 0 3px rgba(199,24,44,0.1);
    }
    .form-textarea { resize: vertical; min-height: 100px; line-height: 1.6; }
    .form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%23C7182C' stroke-width='2.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px; cursor: pointer; }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
    }
    .form-hint {
      font-size: 12px;
      color: var(--text-muted);
      margin-top: 6px;
      line-height: 1.5;
    }
    .form-submit-row {
      margin-top: 36px;
      text-align: center;
    }
    .form-submit-row .btn-primary {
      background: var(--red);
      color: white;
      font-size: 16px;
      padding: 18px 44px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }
    .form-submit-row .btn-primary:hover {
      background: var(--red-dark);
    }
    .form-note {
      margin-top: 20px;
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.65;
    }

    /* ─── HOW IT WORKS STEPS ─── */
    .steps-section {
      background: var(--cream);
      padding: 96px 48px;
    }
    .steps-inner {
      max-width: 1100px;
      margin: 0 auto;
    }
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      margin-top: 56px;
    }
    .step-card {
      background: var(--white);
      border: 1px solid rgba(199,24,44,0.08);
      border-radius: 28px;
      padding: 40px 32px;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .step-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 60px rgba(124,30,47,0.1);
    }
    .step-card::before {
      content: none;
    }
    .step-card-header {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 24px;
    }
    .step-card-title {
      font-family: 'Archivo Black', sans-serif;
      font-size: 18px;
      color: var(--red-dark);
      letter-spacing: -0.3px;
      line-height: 1.2;
    }
    .step-card p {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 10px;
    }

    .step-card a {
      color: var(--red);
      text-decoration: none;
      font-weight: 600;
    }

    .step-card a:hover {
      text-decoration: underline;
    }
    .step-tip {
      display: inline-block;
      margin-top: 10px;
      background: var(--blush);
      border-left: 3px solid var(--red);
      border-radius: 0 8px 8px 0;
      padding: 8px 14px;
      font-size: 12px;
      color: var(--red-dark);
      font-weight: 600;
      line-height: 1.55;
      width: 100%;
    }

    /* CSS illustration: Step 1 - DM chat bubbles */
    .illus-chat {
      background: var(--cream);
      border-radius: 16px;
      padding: 16px;
      margin-top: 20px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .chat-bubble {
      border-radius: 12px 12px 12px 2px;
      background: var(--white);
      border: 1px solid rgba(199,24,44,0.12);
      padding: 8px 14px;
      font-size: 11px;
      color: var(--text-muted);
      line-height: 1.5;
      max-width: 90%;
    }
    .chat-bubble.sent {
      align-self: flex-end;
      border-radius: 12px 12px 2px 12px;
      background: var(--red);
      color: white;
      border: none;
    }
    .chat-bubble strong { font-weight: 700; }

    /* CSS illustration: Step 2 - Portfolio mockup (horizontal, balanced) */
    .illus-portfolio {
      margin-top: 18px;
      width: 100%;
      background: var(--red-dark);
      border-radius: 14px;
      padding: 6px;
      display: flex;
      gap: 0;
      align-items: stretch;
      aspect-ratio: 6 / 4;
      overflow: hidden;
      box-sizing: border-box;
    }
    /* Left: profile sidebar */
    .illus-portfolio-sidebar {
      background: var(--red);
      border-radius: 8px 0 0 8px;
      padding: 8px 6px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 6px;
      flex: 0 0 22%;
    }
    .illus-avatar {
      width: 55%; 
      aspect-ratio: 1;
      border-radius: 50%;
      background: rgba(255,255,255,0.85);
      flex-shrink: 0;
      max-width: 32px;
    }
    .illus-bar {
      width: 70%;
      height: 6px;
      border-radius: 4px;
      background: rgba(255,255,255,0.5);
    }
    .illus-bar-sm {
      width: 50%;
      height: 5px;
      border-radius: 4px;
      background: rgba(255,255,255,0.3);
    }
    /* Cream vertical divider strip */
    .illus-portfolio-divider {
      flex: 0 0 24%;
      background: var(--cream);
      border-radius: 0;
    }
    /* Right: photo grid */
    .illus-portfolio-grid {
      flex: 1;
      background: var(--red);
      border-radius: 0 8px 8px 0;
      padding: 5px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: repeat(3, 1fr);
      gap: 4px;
    }
    .illus-pg-cell {
      border-radius: 3px;
      background: var(--cream);
    }

    /* CSS illustration: Step 3 - Calendar icon */
    .illus-calendar {
      margin-top: 18px;
      width: 100%;
      border-radius: 16px;
      overflow: visible;
      position: relative;
      aspect-ratio: 5 / 4;
      box-sizing: border-box;
    }
    /* Ring tabs sitting above the header */
    .cal-rings {
      display: flex;
      justify-content: space-evenly;
      padding: 0 18px;
      position: relative;
      z-index: 2;
      margin-bottom: -8px;
    }
    .cal-ring {
      width: 12px; height: 26px;
      border-radius: 6px;
      background: var(--cream);
      border: 1.5px solid rgba(199,24,44,0.2);
    }
    /* Red top header */
    .cal-header {
      background: var(--red);
      border-radius: 12px 12px 0 0;
      padding: 30px 12px 10px;
      position: relative;
      z-index: 1;
    }
    /* Calendar body — cream, not pink */
    .cal-body {
      background: var(--cream);
      border-radius: 0 0 12px 12px;
      padding: 6px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: repeat(3, 1fr);
      gap: 4px;
    }
    .cal-day {
      border-radius: 6px;
      background: var(--white);
      border: 1.5px solid rgba(199,24,44,0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      aspect-ratio: 4 / 3;
    }
    /* Pink highlight, cream star */
    .cal-day.booked {
      background: var(--pink);
      border-color: var(--pink);
      color: var(--cream);
      font-size: 25px;
    }

    /* ─── ARTE ACCESS FEE ─── */
    .fee-section {
      background: var(--cream);
      padding: 96px 48px;
    }
    .fee-inner {
      max-width: 860px;
      margin: 0 auto;
    }
    .fee-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-top: 48px;
    }
    .fee-card {
      border-radius: 24px;
      padding: 40px 36px;
      position: relative;
      overflow: hidden;
    }
    .fee-card-light {
      background: var(--white);
      border: 1.5px solid rgba(199,24,44,0.12);
    }
    .fee-card-dark {
      background: linear-gradient(135deg, var(--red-dark), var(--red));
      color: white;
    }
    .fee-card-eyebrow {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 12px;
    }
    .fee-card-light .fee-card-eyebrow { color: var(--red); }
    .fee-card-dark .fee-card-eyebrow { color: var(--pink); }
    .fee-card-amount {
      font-family: 'Archivo Black', sans-serif;
      font-size: 48px;
      letter-spacing: -2px;
      line-height: 1;
      margin-bottom: 8px;
    }
    .fee-card-light .fee-card-amount { color: var(--red-dark); }
    .fee-card-dark .fee-card-amount { color: white; }
    .fee-card-condition {
      font-size: 14px;
      line-height: 1.6;
    }
    .fee-card-light .fee-card-condition { color: var(--text-muted); }
    .fee-card-dark .fee-card-condition { color: rgba(255,255,255,0.72); }
    .fee-what-includes {
      margin-top: 40px;
      background: var(--white);
      border-radius: 20px;
      padding: 32px 36px;
      border: 1px solid rgba(199,24,44,0.08);
    }
    .fee-what-includes h4 {
      font-family: 'Archivo Black', sans-serif;
      font-size: 15px;
      color: var(--red-dark);
      margin-bottom: 16px;
    }
    .fee-includes-list {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .fee-chip {
      background: var(--cream);
      border: 1px solid rgba(199,24,44,0.15);
      border-radius: 100px;
      padding: 7px 18px;
      font-size: 13px;
      color: var(--red-dark);
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    /* ─── FINAL CTA (BOOK PAGE) ─── */
    .book-cta-section {
      padding: 96px 48px;
      background: var(--white);
    }

    .book-cta-inner {
      max-width: 900px;
      margin: 0 auto;
      background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
      border-radius: 32px;
      padding: 80px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .book-cta-inner::before {
      content: '';
      position: absolute;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(255,149,200,0.2) 0%, transparent 70%);
      top: -160px; right: -100px;
      border-radius: 50%;
      pointer-events: none;
    }

    .book-cta-inner .section-label {
      color: var(--pink);
      position: relative;
      z-index: 1;
    }

    .book-cta-inner .section-title {
      color: var(--white);
      font-size: clamp(28px, 3.5vw, 44px);
      margin: 16px 0 20px;
      position: relative;
      z-index: 1;
    }

    .book-cta-inner .section-title em {
      color: var(--pink);
    }

    .book-cta-inner p {
      color: rgba(255,255,255,0.75);
      font-size: 16px;
      line-height: 1.75;
      max-width: 520px;
      margin: 0 auto 36px;
      position: relative;
      z-index: 1;
    }

    .book-cta-inner .cta-buttons {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
      position: relative;
      z-index: 1;
    }

    /* MATCH FOR-ARTISTS BUTTON BEHAVIOR */
    .book-cta-inner .btn-primary {
      background: var(--pink);
      color: var(--red-dark);
    }

    .book-cta-inner .btn-primary:hover {
      background: var(--blush);
    }

    .book-cta-inner .btn-ghost {
      border-color: rgba(255,255,255,0.35);
    }

    .book-cta-inner .btn-primary,
    .book-cta-inner .btn-ghost {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transform: none;
    }

    .book-cta-inner .btn-primary:hover,
    .book-cta-inner .btn-ghost:hover {
      transform: none;
      box-shadow: none;
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 900px) {
      .book-hero { padding: 100px 24px 64px; min-height: 70vh; }
      .form-section, .steps-section, .fee-section { padding: 64px 24px; }
      .form-card { padding: 36px 24px; }
      .form-row { grid-template-columns: 1fr; }
      .steps-grid { grid-template-columns: 1fr; }
      .fee-cards { grid-template-columns: 1fr; }
      .fee-what-includes { padding: 24px 20px; }
    }