/* ============================================
   HERO — EPIC
   ============================================ */
.pyd-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--navy);
}

.pyd-hero-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image:
        radial-gradient(circle at 20% 30%, var(--coral) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, var(--coral) 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, var(--coral) 1px, transparent 1px);
    background-size: 60px 60px, 80px 80px, 100px 100px;
    pointer-events: none;
}

.pyd-hero-glow {
    position: absolute;
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(209,77,70,0.15) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.pyd-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 24px;
    max-width: 900px;
}

.pyd-hero-content .step-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(209,77,70,0.12);
    border: 1px solid rgba(209,77,70,0.25);
    border-radius: 100px;
    padding: 12px 28px;
    margin-bottom: 40px;
}

.step-badge .badge-number {
    font-family: 'Clash Display', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--coral-light);
    background: rgba(209,77,70,0.2);
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}

.step-badge .badge-text {
    font-size: 13px; font-weight: 500;
    color: var(--coral-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pyd-hero-content h1 {
    font-family: 'Clash Display', sans-serif;
    font-weight: 700;
    font-size: clamp(3rem, 7vw, 7rem);
    line-height: 0.95;
    color: white;
    margin-bottom: 32px;
    letter-spacing: -0.03em;
}

.pyd-hero-content h1 .line { display: block; }
.pyd-hero-content h1 .accent { color: var(--coral-light); }

.pyd-hero-content h1 .outline-text {
    -webkit-text-stroke: 2px rgba(255,255,255,0.3);
    color: transparent;
}

.pyd-hero-content .subtitle {
    font-size: clamp(1rem, 1.2vw, 1.25rem);
    line-height: 1.8;
    color: rgba(255,255,255,0.5);
    font-weight: 300;
    max-width: 550px;
    margin: 0 auto 48px;
}

.scale-icon-wrap {
    display: inline-block;
    position: relative;
    margin-bottom: 32px;
}

.scale-icon-wrap .scale-emoji {
    font-size: 5rem;
    display: block;
    animation: scale-bounce 3s ease-in-out infinite;
}

@keyframes scale-bounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(-5deg); }
    50% { transform: translateY(0) rotate(0deg); }
    75% { transform: translateY(-6px) rotate(3deg); }
}

.scale-icon-wrap .scale-ring {
    position: absolute;
    width: 150%; height: 150%;
    top: -25%; left: -25%;
    border: 2px dashed rgba(209,77,70,0.2);
    border-radius: 50%;
    animation: spin-slow 20s linear infinite;
}

@keyframes spin-slow { to { transform: rotate(360deg); } }

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-section {
    padding: clamp(40px, 6vw, 80px) clamp(24px, 5vw, 80px);
    background: var(--blush);
    position: relative;
    overflow: hidden;
}

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

.how-header {
    text-align: center;
    margin-bottom: 16px;
}

.how-header .label {
    font-family: 'Clash Display', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.how-header .label::before,
.how-header .label::after {
    content: '';
    width: 30px; height: 1.5px;
    background: var(--coral);
    opacity: 0.4;
}

.how-header h2 {
    font-family: 'Clash Display', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--navy);
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

@media (max-width: 900px) {
    .how-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 550px) {
    .how-steps { grid-template-columns: 1fr; }
}

.how-steps::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 12.5%; right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg,
        var(--coral) 0%,
        rgba(209,77,70,0.3) 33%,
        rgba(209,77,70,0.3) 66%,
        var(--coral) 100%);
    z-index: 0;
}

@media (max-width: 900px) {
    .how-steps::before { display: none; }
}

.how-step {
    background: var(--white);
    border-radius: 28px;
    padding: 40px 28px 36px;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 30px rgba(0,0,0,0.03);
}

.how-step:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px -12px rgba(209,77,70,0.12);
}

.how-step-icon {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: var(--blush);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    transition: all 0.4s ease;
}

.how-step:hover .how-step-icon {
    background: var(--coral);
    transform: scale(1.1) rotate(-5deg);
}

.how-step:hover .how-step-icon span { filter: grayscale(0); }

.how-step-num {
    font-family: 'Clash Display', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--coral);
    margin-bottom: 12px;
}

.how-step h3 {
    font-family: 'Clash Display', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
}

.how-step p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
    font-weight: 300;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
    padding: clamp(40px, 6vw, 80px) clamp(24px, 5vw, 80px);
    background: var(--white);
    position: relative;
}

.pricing-inner { max-width: 1100px; margin: 0 auto; }

.pricing-header {
    text-align: center;
    margin-bottom: 16px;
}

.pricing-header .label {
    font-family: 'Clash Display', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.pricing-header .label::before,
.pricing-header .label::after {
    content: '';
    width: 30px; height: 1.5px;
    background: var(--coral);
    opacity: 0.4;
}

.pricing-header h2 {
    font-family: 'Clash Display', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--navy);
    margin-bottom: 16px;
}

.pricing-header p {
    font-size: 1.05rem;
    color: var(--text-muted);
    font-weight: 300;
    max-width: 580px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 560px;
    margin: 0 auto;
}

.pricing-card {
    border-radius: 32px;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.pricing-card-standard {
    background: var(--blush);
    border: 2px solid rgba(13,48,90,0.06);
}

.pricing-card-premium {
    background: var(--navy);
    color: white;
    box-shadow: 0 30px 60px -15px rgba(13,48,90,0.3);
}

.pricing-card-premium:hover {
    box-shadow: 0 40px 80px -15px rgba(13,48,90,0.4);
}

.pricing-card .card-tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.pricing-card-standard .card-tag {
    background: rgba(13,48,90,0.06);
    color: var(--navy);
}

.pricing-card-premium .card-tag {
    background: rgba(209,77,70,0.2);
    color: var(--coral-light);
}

.pricing-card .card-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
}

.pricing-card h3 {
    font-family: 'Clash Display', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.pricing-card-standard h3 { color: var(--navy); }
.pricing-card-premium h3 { color: white; }

.pricing-card .price-row {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 20px;
}

.price-row .price-val {
    font-family: 'Clash Display', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    line-height: 1;
}

.pricing-card-standard .price-val { color: var(--coral); }
.pricing-card-premium .price-val { color: var(--coral-light); }

.price-row .price-unit { font-size: 14px; font-weight: 500; }
.pricing-card-standard .price-unit { color: var(--text-muted); }
.pricing-card-premium .price-unit { color: rgba(255,255,255,0.5); }

.pricing-card .card-desc {
    font-size: 15px;
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 28px;
}

.pricing-card-standard .card-desc { color: var(--text-muted); }
.pricing-card-premium .card-desc { color: rgba(255,255,255,0.5); }

.pricing-card .feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 400;
}

.pricing-card-standard .feature-list li { color: var(--text-muted); }
.pricing-card-premium .feature-list li { color: rgba(255,255,255,0.65); }

.feature-list li .check {
    width: 22px; height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pricing-card-standard .check {
    background: rgba(209,77,70,0.08);
    color: var(--coral);
}

.pricing-card-premium .check {
    background: rgba(209,77,70,0.25);
    color: var(--coral-light);
}

/* ============================================
   EXPERIENCE TIMELINE
   ============================================ */
.timeline-section {
    padding: clamp(80px, 12vw, 160px) clamp(24px, 5vw, 80px);
    background: var(--blush);
    position: relative;
    overflow: hidden;
}

.timeline-inner { max-width: 900px; margin: 0 auto; }

.timeline-header {
    text-align: center;
    margin-bottom: 80px;
}

.timeline-header .label {
    font-family: 'Clash Display', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.timeline-header .label::before,
.timeline-header .label::after {
    content: '';
    width: 30px; height: 1.5px;
    background: var(--coral);
    opacity: 0.4;
}

.timeline-header h2 {
    font-family: 'Clash Display', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--navy);
}

.timeline {
    position: relative;
    padding-left: 60px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    left: 24px;
    width: 2px;
    background: linear-gradient(180deg, var(--coral), rgba(209,77,70,0.1));
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-dot {
    position: absolute;
    left: -60px;
    top: 4px;
    width: 50px; height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--coral);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(209,77,70,0.15);
    transition: all 0.4s ease;
}

.timeline-item:hover .timeline-dot {
    background: var(--coral);
    transform: scale(1.15);
}

.timeline-card {
    background: var(--white);
    border-radius: 24px;
    padding: 32px 36px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.04);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-item:hover .timeline-card {
    transform: translateX(8px);
    box-shadow: 0 20px 50px rgba(209,77,70,0.08);
}

.timeline-card .time-label {
    font-family: 'Clash Display', sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 10px;
}

.timeline-card h3 {
    font-family: 'Clash Display', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 10px;
}

.timeline-card p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-muted);
    font-weight: 300;
}

/* ============================================
   QUOTE / CTA
   ============================================ */
.final-cta {
    background: var(--navy);
    padding: clamp(100px, 14vw, 200px) clamp(24px, 5vw, 80px);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta .glow {
    position: absolute;
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(209,77,70,0.15) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.final-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.final-cta .big-quote {
    font-family: 'Clash Display', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.15;
    color: white;
    margin-bottom: 24px;
}

.final-cta .big-quote .accent { color: var(--coral-light); }

.final-cta .subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.45);
    font-weight: 300;
    margin-bottom: 48px;
    line-height: 1.8;
}

.final-cta .btn-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: clamp(80px, 10vw, 120px) clamp(24px, 5vw, 80px);
    background: var(--white);
}

.faq-inner { max-width: 800px; margin: 0 auto; }

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header h2 {
    font-family: 'Clash Display', sans-serif;
    font-weight: 700;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--navy);
}

.faq-item {
    border-bottom: 1px solid rgba(13,48,90,0.08);
    cursor: pointer;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    gap: 20px;
}

.faq-question h3 {
    font-family: 'Clash Display', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--navy);
    transition: color 0.3s ease;
}

.faq-item:hover .faq-question h3,
.faq-item.open .faq-question h3 {
    color: var(--coral);
}

.faq-toggle {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--blush);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.faq-item.open .faq-toggle {
    background: var(--coral);
    transform: rotate(45deg);
}

.faq-toggle svg {
    width: 14px; height: 14px;
    stroke: var(--navy);
    transition: stroke 0.3s ease;
}

.faq-item.open .faq-toggle svg { stroke: white; }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                padding 0.5s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 24px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-muted);
    font-weight: 300;
}

/* ============================================
   MOBILE
   ============================================ */
@media (max-width: 768px) {
    .pyd-hero { min-height: 85vh; }
    .pyd-hero-content { padding: 100px 20px; }
    .pyd-hero-content h1 { font-size: 2.5rem; }
    .scale-icon-wrap .scale-emoji { font-size: 3.5rem; }

    .how-section { padding: 60px 20px; }
    .how-header { margin-bottom: 48px; }
    .how-steps { gap: 20px; }
    .how-step { padding: 28px 20px; border-radius: 20px; }
    .how-steps::before { display: none; }

    .pricing-section { padding: 60px 20px; }
    .pricing-card { padding: 32px 24px; border-radius: 24px; }
    .pricing-card-premium::before { right: -40px; }

    .timeline-section { padding: 60px 20px; }
    .timeline { padding-left: 48px; }
    .timeline-dot { left: -48px; width: 40px; height: 40px; font-size: 1rem; }
    .timeline-card { padding: 24px 20px; }

    .faq-section { padding: 60px 20px; }
    .final-cta { padding: 60px 20px; }
}

@media (max-width: 400px) {
    .pyd-hero-content h1 { font-size: 2rem; }
    .how-step h3 { font-size: 1rem; }
}
