:root {
    --color-black: #000000;
    --color-black-light: #111111;
    --color-gray-dark: #1a1a1a;
    --color-gray: #333333;
    --color-gray-light: #aaaaaa;
    --color-white: #ffffff;
    --color-gold: #d4af37;
    --color-gold-light: #f3e5ab;
    --color-gold-soft: #f8efc9;
    --color-gold-deep: #241800;
    --color-gold-bright: #f6d46a;
    --border-gradient: linear-gradient(135deg, rgba(212, 175, 55, 0.95), rgba(255, 255, 255, 0.28), rgba(243, 229, 171, 0.92));
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-black);
    background-image:
        radial-gradient(circle at top right, rgba(212, 175, 55, 0.14), transparent 30%),
        radial-gradient(circle at 15% 20%, rgba(212, 175, 55, 0.08), transparent 25%),
        radial-gradient(circle at center, rgba(212, 175, 55, 0.04), transparent 55%),
        linear-gradient(180deg, #050505 0%, #000000 100%);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0, rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 100%),
        linear-gradient(rgba(255, 255, 255, 0.015) 0, rgba(255, 255, 255, 0.015) 1px, transparent 1px, transparent 100%);
    background-size: 120px 120px;
    opacity: 0.14;
    z-index: -3;
}

body::after {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    width: min(82vw, 980px);
    height: min(82vw, 980px);
    transform: translate(-50%, -50%);
    pointer-events: none;
    background: url('logo.png') center center / contain no-repeat;
    opacity: 0.045;
    filter: grayscale(1) brightness(1.8) contrast(0.9);
    z-index: -2;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.section-title span {
    color: var(--color-gold-light);
    font-style: italic;
}

.section-title.left-align {
    text-align: left;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-bright));
    color: var(--color-black);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--color-gold-soft);
    border: 2px solid rgba(212, 175, 55, 0.75);
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
}

.btn-builder-3d {
    position: relative;
    overflow: hidden;
    border-color: rgba(212, 175, 55, 0.92);
    color: #fff8df;
    background: linear-gradient(180deg, rgba(30, 24, 10, 0.56), rgba(8, 8, 8, 0.94));
    box-shadow:
        0 12px 24px rgba(0, 0, 0, 0.28),
        0 10px 18px rgba(212, 175, 55, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform: perspective(900px) rotateX(10deg) translateY(0);
    animation: builderButtonFloat 3.2s ease-in-out infinite;
}

.btn-builder-3d::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.2) 18%, transparent 36%);
    transform: translateX(-135%);
    animation: builderButtonShine 4.8s ease-in-out infinite;
    pointer-events: none;
}

.btn-builder-3d::after {
    content: '';
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: -12px;
    height: 18px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.34), transparent 70%);
    filter: blur(10px);
    opacity: 0.72;
    pointer-events: none;
}

.btn-builder-3d:hover {
    background: linear-gradient(180deg, rgba(48, 37, 14, 0.78), rgba(10, 10, 10, 0.96));
    color: #fffdf2;
    border-color: rgba(243, 229, 171, 0.98);
    transform: perspective(900px) rotateX(0deg) translateY(-6px) scale(1.03);
    box-shadow:
        0 18px 34px rgba(0, 0, 0, 0.34),
        0 12px 28px rgba(212, 175, 55, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

@keyframes builderButtonFloat {
    0%,
    100% {
        transform: perspective(900px) rotateX(10deg) translateY(0);
    }
    50% {
        transform: perspective(900px) rotateX(10deg) translateY(-4px);
    }
}

@keyframes builderButtonShine {
    0%,
    60%,
    100% {
        transform: translateX(-135%);
    }
    24%,
    36% {
        transform: translateX(135%);
    }
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 16px 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.7));
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.14);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.32);
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 10px 18px 10px 12px;
    border-radius: 999px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-gold-soft);
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(212, 175, 55, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 14px 30px rgba(0, 0, 0, 0.18);
}

.img-logo {
    height: 56px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 18px rgba(212, 175, 55, 0.2));
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 18%, rgba(212, 175, 55, 0.34), transparent 22%),
        radial-gradient(circle at 72% 22%, rgba(255, 233, 168, 0.18), transparent 30%),
        linear-gradient(to right, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.72) 46%, rgba(0, 0, 0, 0.38) 100%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.18) 0%, #000000 100%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, transparent 0%, rgba(212, 175, 55, 0.07) 42%, transparent 70%);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    right: -120px;
    top: 120px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.18), transparent 68%);
    filter: blur(14px);
    pointer-events: none;
}

.hero-content {
    max-width: 980px;
    position: relative;
    z-index: 1;
    padding-top: 42px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 12px 20px;
    margin-bottom: 22px;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.42);
    background: rgba(5, 5, 5, 0.82);
    color: #f6dd8c;
    font-size: 0.84rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    text-shadow: 0 0 12px rgba(212, 175, 55, 0.22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 34px rgba(0, 0, 0, 0.32);
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero h1 span {
    color: var(--color-gold-bright);
    font-style: italic;
    text-shadow: 0 0 18px rgba(212, 175, 55, 0.28), 0 0 36px rgba(212, 175, 55, 0.14);
}

.hero p {
    font-size: 1.25rem;
    color: var(--color-gray-light);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 2.2rem;
}

.hero-highlights span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.14);
    color: #f6edd1;
    font-size: 0.9rem;
}

.hero-highlights i {
    color: var(--color-gold);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-proof-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 34px;
    max-width: 980px;
}

.hero-proof-card {
    position: relative;
    padding: 18px 20px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(212, 175, 55, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 16px 34px rgba(0, 0, 0, 0.16);
}

.hero-proof-card strong {
    display: block;
    font-size: 0.98rem;
    color: var(--color-white);
    margin-bottom: 6px;
}

.hero-proof-card span {
    display: block;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.68);
}

.how-it-works,
.plans,
.other-occasions,
.examples,
.testimonials,
.contact-section {
    padding: 100px 0;
}

.how-it-works,
.other-occasions {
    background-color: var(--color-black-light);
}

.plans,
.examples {
    background-color: var(--color-black);
}

.steps-grid,
.audio-grid,
.plans-grid {
    display: grid;
}

.steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 3rem;
}

.plans-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    max-width: 900px;
    margin: 0 auto;
    gap: 40px;
}

.audio-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.step-card,
.plan-card,
.audio-player-card,
.difference-box,
.artists-note,
.form-wrapper {
    position: relative;
    border: 1px solid transparent;
    background-origin: border-box;
    background-clip: padding-box, border-box;
    overflow: hidden;
}

.step-card::before,
.plan-card::before,
.audio-player-card::before,
.difference-box::before,
.artists-note::before,
.form-wrapper::before {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 26%);
    pointer-events: none;
}

.step-card::after,
.plan-card::after,
.audio-player-card::after,
.form-wrapper::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -60px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.14), transparent 70%);
    pointer-events: none;
}

.step-card {
    background-image: linear-gradient(180deg, rgba(26, 26, 26, 0.96), rgba(10, 10, 10, 0.98)), var(--border-gradient);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

.step-card:hover,
.plan-card:hover {
    transform: translateY(-10px);
}

.step-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 22px rgba(212, 175, 55, 0.18);
}

.step-num {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
    color: var(--color-gold-deep);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.35);
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.step-card p,
.plan-support-text,
.lead-text,
.difference-box p:last-child,
.artists-note-text p,
.form-note,
.time,
.footer-brand p,
.footer-bottom {
    color: var(--color-gray-light);
}

.section-footer-text {
    text-align: center;
    font-size: 1.2rem;
    font-family: var(--font-heading);
    color: var(--color-gold-light);
    font-style: italic;
}

.plan-card {
    background-image: linear-gradient(180deg, rgba(26, 26, 26, 0.98), rgba(10, 10, 10, 0.98)), var(--border-gradient);
    border-radius: 24px;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.plan-card:hover {
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.16);
}

.exclusive-card {
    background-image: linear-gradient(145deg, rgba(31, 31, 31, 0.98), rgba(10, 10, 10, 0.98)), var(--border-gradient);
    transform: scale(1.05);
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
}

.plan-badge {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.gold-badge {
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
    color: var(--color-gold-deep);
    font-weight: 600;
}

.gold-star {
    color: var(--color-gold);
    text-shadow: 0 0 14px rgba(212, 175, 55, 0.35);
}

.plan-header h3 {
    font-size: 2.2rem;
}

.plan-features {
    margin-bottom: 30px;
    flex-grow: 1;
}

.plan-features li,
.features-list li {
    display: flex;
    gap: 15px;
}

.plan-features li {
    margin-bottom: 15px;
    align-items: flex-start;
    color: var(--color-gray-light);
}

.plan-features li i,
.features-list li i,
.icon-artist,
.artists-note-text a,
.audio-info p,
.difference-box h3,
.form-trust-list i {
    color: var(--color-gold-light);
}

.plan-features li.gift {
    color: var(--color-white);
    font-weight: 500;
}

.plan-support-text {
    font-size: 0.9rem;
    margin-bottom: 30px;
    font-style: italic;
    text-align: center;
}

.plan-btn {
    width: 100%;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.lead-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.features-list li {
    font-size: 1.1rem;
    margin-bottom: 20px;
    align-items: center;
}

.features-list li i {
    font-size: 1.2rem;
    width: 25px;
}

.difference-box {
    background-image: linear-gradient(180deg, rgba(26, 26, 26, 0.9), rgba(12, 12, 12, 0.92)), var(--border-gradient);
    padding: 50px 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.difference-box h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.diff-highlight {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.4;
}

.diff-highlight strong {
    font-weight: 600;
    color: var(--color-white);
}

.artists-note {
    margin-top: 60px;
    background-image: linear-gradient(180deg, rgba(26, 26, 26, 0.92), rgba(10, 10, 10, 0.95)), var(--border-gradient);
    border-radius: 16px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    gap: 25px;
    transition: var(--transition);
}

.artists-note:hover {
    background-image: linear-gradient(180deg, rgba(31, 31, 31, 0.96), rgba(12, 12, 12, 0.98)), var(--border-gradient);
}

.icon-artist {
    font-size: 2.5rem;
}

.artists-note-text h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.artists-note-text p {
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.artists-note-text a {
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.artists-note-text a:hover {
    color: var(--color-gold-bright);
}

.audio-player-card {
    background-image: linear-gradient(180deg, rgba(26, 26, 26, 0.96), rgba(10, 10, 10, 0.98)), var(--border-gradient);
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.audio-badge {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.22);
    color: var(--color-gold-light);
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.audio-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.audio-info p {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.audio-caption {
    display: block;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.82rem;
    line-height: 1.6;
    max-width: 28ch;
}

.custom-audio-player {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    padding: 14px 16px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(212, 175, 55, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), inset 0 -14px 24px rgba(0, 0, 0, 0.14);
}

.custom-audio-player audio {
    display: none;
}

.play-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
    border: none;
    color: var(--color-gold-deep);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 0 0 8px rgba(212, 175, 55, 0.08), 0 12px 24px rgba(0, 0, 0, 0.26);
}

.play-btn:hover {
    transform: scale(1.08) translateY(-1px);
}

.progress-bar {
    flex-grow: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.4);
}

.progress {
    width: 30%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-bright), var(--color-gold));
    box-shadow: 0 0 14px rgba(212, 175, 55, 0.3);
}

.time {
    font-size: 0.78rem;
    min-width: 74px;
    text-align: right;
    letter-spacing: 0.04em;
}

.center-btn {
    text-align: center;
}

.testimonials {
    position: relative;
    padding: 120px 0 110px;
    background:
        radial-gradient(circle at top left, rgba(212, 175, 55, 0.12), transparent 28%),
        radial-gradient(circle at 85% 18%, rgba(212, 175, 55, 0.08), transparent 24%),
        linear-gradient(180deg, #090909 0%, #111111 100%);
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.05) 48%, transparent 100%);
    opacity: 0.45;
}

.testimonials::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 140px 140px;
    opacity: 0.08;
}

.section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.08rem;
    margin-top: -30px;
    margin-bottom: 56px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid {
    position: relative;
    column-count: 3;
    column-gap: 34px;
}

.testimonial-card {
    position: relative;
    padding: 10px;
    background: linear-gradient(180deg, rgba(18, 18, 18, 0.98), rgba(6, 6, 6, 0.98));
    border: 1px solid transparent;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.42);
    transition: var(--transition);
    break-inside: avoid;
    margin-bottom: 34px;
    background-origin: border-box;
    background-clip: padding-box, border-box;
    background-image: linear-gradient(180deg, rgba(18, 18, 18, 0.98), rgba(6, 6, 6, 0.98)), var(--border-gradient);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent 20%);
    pointer-events: none;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: -70px;
    right: -50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.14), transparent 72%);
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5), 0 0 26px rgba(212, 175, 55, 0.16);
}

.testimonial-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 16px;
    position: relative;
    z-index: 1;
}

.testimonial-card:nth-child(3n + 2) {
    transform: translateY(10px);
}

.testimonial-card:nth-child(4n) {
    transform: translateY(-6px);
}

.testimonial-card:nth-child(3n + 2):hover,
.testimonial-card:nth-child(4n):hover {
    transform: translateY(-8px) scale(1.01);
}

.contact-section {
    background: linear-gradient(to bottom, var(--color-black-light), var(--color-black));
}

.contact-grid {
    display: flex;
    justify-content: center;
}

.form-wrapper {
    width: 100%;
    max-width: 800px;
    background-image: linear-gradient(180deg, rgba(26, 26, 26, 0.98), rgba(10, 10, 10, 0.98)), var(--border-gradient);
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.form-wrapper::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -30px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12), transparent 70%);
    pointer-events: none;
}

.form-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--color-gold-light);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.74rem;
}

.form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.form-intro {
    max-width: 58ch;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.72);
}

.form-trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.form-trust-list span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.14);
    color: #f2e8c6;
    font-size: 0.86rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--color-gray-light);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold-light);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.submit-btn {
    width: 100%;
    font-size: 1.1rem;
    padding: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24), 0 0 24px rgba(212, 175, 55, 0.12);
}

.form-note {
    text-align: center;
    font-size: 0.8rem;
    margin-top: 15px;
    font-style: italic;
}

.footer {
    background-color: var(--color-black);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-brand .footer-logo-text {
    font-size: 1.8rem;
    color: var(--color-gold-soft);
    margin-bottom: 10px;
}

.img-logo-footer {
    height: 64px;
    width: auto;
    object-fit: contain;
    margin-bottom: 15px;
    display: block;
}

.footer-brand p {
    font-style: italic;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-gray-light);
    font-size: 1.1rem;
}

.footer-links a:hover {
    color: var(--color-gold-light);
}

.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.floating-wpp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 62px;
    height: 62px;
    background: linear-gradient(180deg, rgba(28, 28, 28, 0.98), rgba(8, 8, 8, 0.98));
    color: var(--color-gold-bright);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.34);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35), 0 0 22px rgba(212, 175, 55, 0.16);
    z-index: 1000;
    transition: var(--transition);
}

.floating-wpp:hover {
    transform: translateY(-3px) scale(1.05);
    color: #ffe8a3;
    border-color: rgba(212, 175, 55, 0.52);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.42), 0 0 28px rgba(212, 175, 55, 0.22);
}

.floating-wpp .tooltip {
    position: absolute;
    right: 78px;
    background: rgba(10, 10, 10, 0.96);
    color: var(--color-gold-light);
    padding: 9px 15px;
    border-radius: 10px;
    font-size: 0.9rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    white-space: nowrap;
    border: 1px solid rgba(212, 175, 55, 0.22);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.floating-wpp:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger>* {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-stagger.is-visible>* {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.is-visible>*:nth-child(1) {
    transition-delay: 0.05s;
}

.reveal-stagger.is-visible>*:nth-child(2) {
    transition-delay: 0.12s;
}

.reveal-stagger.is-visible>*:nth-child(3) {
    transition-delay: 0.19s;
}

.reveal-stagger.is-visible>*:nth-child(4) {
    transition-delay: 0.26s;
}

.reveal-stagger.is-visible>*:nth-child(5) {
    transition-delay: 0.33s;
}

.reveal-stagger.is-visible>*:nth-child(6) {
    transition-delay: 0.40s;
}

@media (max-width: 992px) {
    .testimonials-grid {
        column-count: 2;
        column-gap: 24px;
    }

    .testimonial-card {
        margin-bottom: 24px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .split-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .hero-content {
        padding-top: 30px;
    }

    .steps-grid,
    .plans-grid,
    .audio-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .logo {
        padding: 8px 14px 8px 10px;
        gap: 12px;
        font-size: 1.2rem;
    }

    .img-logo {
        height: 48px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-kicker {
        letter-spacing: 0.12em;
        font-size: 0.74rem;
    }

    .hero-highlights {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-highlights span {
        width: 100%;
        justify-content: flex-start;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .btn-builder-3d {
        transform: none;
        animation-duration: 3.6s;
    }

    .btn-builder-3d:hover {
        transform: translateY(-4px);
    }

    .hero-proof-strip {
        grid-template-columns: 1fr;
        margin-top: 26px;
    }

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

    .section-title {
        font-size: 2rem;
    }

    .testimonials {
        padding: 100px 0 90px;
    }

    .testimonials-grid {
        column-count: 1;
        column-gap: 0;
    }

    .testimonial-card,
    .testimonial-card:nth-child(3n + 2),
    .testimonial-card:nth-child(4n) {
        transform: none;
        margin-bottom: 22px;
    }

    .audio-player-card {
        padding: 24px 22px;
    }

    .audio-caption {
        max-width: none;
    }

    .form-trust-list {
        flex-direction: column;
    }

    .form-trust-list span {
        width: 100%;
        justify-content: flex-start;
    }

    .form-wrapper {
        padding: 30px 20px;
    }

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

    .artists-note {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
}

.faq-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0b0b0b 0%, #050505 100%);
}

.faq-subtitle {
    margin-bottom: 46px;
}

.faq-list {
    max-width: 920px;
    margin: 0 auto;
    display: grid;
    gap: 18px;
}

.faq-item {
    position: relative;
    padding: 0;
    border-radius: 22px;
    border: 1px solid transparent;
    background-origin: border-box;
    background-clip: padding-box, border-box;
    background-image: linear-gradient(180deg, rgba(18, 18, 18, 0.96), rgba(7, 7, 7, 0.98)), var(--border-gradient);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 24%);
    pointer-events: none;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 24px 70px 24px 26px;
    font-family: var(--font-heading);
    font-size: 1.22rem;
    color: var(--color-white);
    position: relative;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.24);
    color: var(--color-gold-light);
    font-size: 1.2rem;
    line-height: 1;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    padding: 0 26px 24px;
    color: rgba(255, 255, 255, 0.72);
    max-width: 70ch;
}

@media (max-width: 768px) {
    .faq-item summary {
        font-size: 1.05rem;
        padding: 20px 62px 20px 20px;
    }

    .faq-item p {
        padding: 0 20px 20px;
    }

}