:root {
    --primary-pink: #ff0099;
    --light-pink: #fceef4;
    --dark-pink: #f375ac;
    --accent-pink: #f7449d;
    --text-dark: #333;
    --white: #ffffff;
    --light-gray: #f7e1eb;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--light-pink);
    overflow-x: hidden;
}

.container {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 700px;
    /* Taller for better proportion */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(circle at 30% 50%, #ffe6f2 0%, #ffd1e8 50%, #ffc0e0 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* User will switch this background image */
.hero-image-placeholder {
    width: 100%;
    height: 100%;
    /* Subtle gradient to mimic the soft feel */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 0, 153, 0.1) 100%);
    position: relative;
}

.glitter-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.8) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 192, 203, 0.6) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 0, 153, 0.5) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px, 100px 100px;
    background-position: 0 0, 40px 40px, 80px 80px;
    animation: glitterMove 20s linear infinite;
    opacity: 0.3;
}

@keyframes glitterMove {
    0% {
        background-position: 0 0, 40px 40px, 80px 80px;
    }

    100% {
        background-position: 50px 50px, 90px 90px, 130px 130px;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    /* Space for image on left, text on right */
    align-items: center;
    padding: 0 40px;
}

/* Left side space for the person image (placeholder) */
.hero-image-area {
    width: 45%;
    height: 600px;
    position: relative;
    /* Visual guide for user */
    border: 3px dashed rgba(255, 0, 153, 0.4);
    border-radius: 30px;
    /* Softer border radius */
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 0, 153, 0.6);
    font-weight: 700;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.hero-image-area:hover {
    border-color: var(--primary-pink);
    border-style: solid;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 30px rgba(255, 0, 153, 0.2);
}

.hero-text-area {
    width: 50%;
    text-align: right;
    position: relative;
    padding-left: 20px;
}

/* Title Layout like Banner */
.title-group {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 25px;
}

.hero-title-main {
    font-family: 'Bebas Neue', sans-serif;
    /* MATCHES BANNER FONT */
    font-size: clamp(80px, 11vw, 160px);
    /* Larger size */
    font-weight: 400;
    /* Bebas is bold by default but usually 400 weight */
    text-transform: uppercase;
    line-height: 0.85;
    color: transparent;
    /* Gradient text */
    -webkit-text-stroke: 2px var(--white);
    /* White outline like often seen */
    background-image: linear-gradient(to bottom, #ff0099 0%, #ff5cb5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(255, 0, 153, 0.3));
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    letter-spacing: 2px;
    animation: pulseGlow 4s infinite alternate;
}

@keyframes pulseGlow {
    0% {
        filter: drop-shadow(0 0 20px rgba(255, 0, 153, 0.3));
    }

    100% {
        filter: drop-shadow(0 0 40px rgba(255, 0, 153, 0.6));
    }
}

.hero-title-main span {
    display: block;
}

.method-vertical {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family: 'Bebas Neue', sans-serif;
    /* Consistent font */
    font-weight: 400;
    font-size: clamp(30px, 5vw, 60px);
    color: var(--primary-pink);
    letter-spacing: 8px;
    /* Spaced out vertical text */
    margin-left: 20px;
    text-transform: uppercase;
    text-shadow: 2px 2px 0 var(--white);
    transform: rotate(180deg);
}

.hero-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(18px, 1.8vw, 26px);
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 35px;
    margin-right: 10px;
    /* Align with text */
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin-left: auto;
}


/* Grey Button Style */
.grey-button {
    display: inline-block;
    padding: 16px 55px;
    background: linear-gradient(180deg, #f0f0f0 0%, #d9d9d9 50%, #bfbfbf 100%);
    color: #4a4a4a;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    border-radius: 12px;
    box-shadow:
        0 4px 0 #999,
        0 8px 20px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 10px;
    border: 1px solid #ccc;
}

.grey-button:hover {
    transform: translateY(-2px);
    background: linear-gradient(180deg, #ffffff 0%, #e6e6e6 50%, #cccccc 100%);
    box-shadow:
        0 6px 0 #999,
        0 12px 25px rgba(255, 0, 153, 0.2),
        /* Pink glow on hover */
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.grey-button:active {
    transform: translateY(4px);
    box-shadow:
        0 0 0 #999,
        inset 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Animations & Floating Elements */
@keyframes floatGentle {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.sparkle-float-1 {
    top: 15%;
    left: 10%;
    width: 40px;
    height: 40px;
    animation: floatGentle 5s ease-in-out infinite, sparkleAnimation 3s infinite;
}

.sparkle-float-2 {
    bottom: 20%;
    right: 45%;
    width: 30px;
    height: 30px;
    animation: floatGentle 7s ease-in-out infinite, sparkleAnimation 4s infinite;
    animation-delay: 1s;
}

.floating-element {
    animation: floatGentle 6s ease-in-out infinite;
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: var(--primary-pink);
    color: var(--white);
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 0, 153, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 0, 153, 0.5);
}

.cta-button.large {
    padding: 25px 70px;
    font-size: 32px;
}

/* Problem Section */
.problem-section {
    padding: 100px 0;
    background: var(--light-pink);
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(40px, 5vw, 66px);
    font-weight: 700;
    color: var(--primary-pink);
    text-align: center;
    margin-bottom: 60px;
    text-shadow:
        -1px -1px 0 #bfbfbf,
        1px -1px 0 #bfbfbf,
        -1px 1px 0 #bfbfbf,
        1px 1px 0 #bfbfbf;
}

.section-title.fancy-outline {
    color: var(--light-gray);
    text-shadow:
        -2px -2px 0 var(--primary-pink),
        2px -2px 0 var(--primary-pink),
        -2px 2px 0 var(--primary-pink),
        2px 2px 0 var(--primary-pink);
}

.highlight {
    color: var(--primary-pink);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.problem-card {
    background: var(--white);
    padding: 40px;
    border-radius: 22px;
    border: 3px solid var(--primary-pink);
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.problem-card:nth-child(1) {
    animation-delay: 0.1s;
}

.problem-card:nth-child(2) {
    animation-delay: 0.2s;
}

.problem-card:nth-child(3) {
    animation-delay: 0.3s;
}

.problem-card:nth-child(4) {
    animation-delay: 0.4s;
}

.problem-card:nth-child(5) {
    animation-delay: 0.5s;
}

.problem-card:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.problem-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 0, 153, 0.2);
}

.card-icon {
    margin-bottom: 20px;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: var(--dark-pink);
    border-radius: 50%;
    margin: 0 auto;
}

.problem-card p {
    font-size: 20px;
    color: var(--accent-pink);
    font-weight: 600;
    line-height: 1.6;
}

.section-subtitle {
    text-align: center;
    font-size: clamp(24px, 3vw, 34px);
    color: var(--primary-pink);
    margin-bottom: 40px;
    font-weight: 600;
}

/* Picture This Section */
.picture-section {
    padding: 100px 0;
    background: var(--light-pink);
}

.intro-text {
    text-align: center;
    font-size: clamp(20px, 2.5vw, 32px);
    color: var(--primary-pink);
    margin-bottom: 80px;
    line-height: 1.8;
}

.intro-text strong {
    font-weight: 700;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
}

.benefit-card {
    text-align: center;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.benefit-card:nth-child(1) {
    animation-delay: 0.2s;
}

.benefit-card:nth-child(2) {
    animation-delay: 0.4s;
}

.benefit-card:nth-child(3) {
    animation-delay: 0.6s;
}

.benefit-card:nth-child(4) {
    animation-delay: 0.8s;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
}

.benefit-card p {
    font-size: 24px;
    color: var(--primary-pink);
    line-height: 1.6;
}

.benefit-card strong {
    font-weight: 700;
}

/* Transformation Section */
.transformation-section {
    padding: 100px 0;
    background: var(--light-pink);
    text-align: center;
}

.transformation-intro {
    font-size: clamp(32px, 4vw, 48px);
    color: var(--primary-pink);
    font-weight: 700;
    margin: 30px 0 50px;
}

.transformation-content {
    max-width: 900px;
    margin: 0 auto 50px;
}

.transformation-text {
    font-size: clamp(20px, 2.5vw, 28px);
    color: var(--primary-pink);
    line-height: 1.8;
    margin-bottom: 35px;
}

.transformation-text strong {
    font-weight: 700;
    color: var(--accent-pink);
}

/* Coach Section */
.coach-section {
    padding: 100px 0;
    background: var(--light-pink);
}

.coach-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

.coach-image {
    position: relative;
}

.coach-photo {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(255, 0, 153, 0.3);
    display: block;
}

.ribbon-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.ribbon-badge span {
    display: inline-block;
    background: linear-gradient(135deg, var(--dark-pink), var(--accent-pink));
    color: var(--white);
    padding: 12px 30px;
    font-weight: 700;
    font-size: 16px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(255, 0, 153, 0.4);
    position: relative;
    animation: ribbonFloat 3s ease-in-out infinite;
}

@keyframes ribbonFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.ribbon-badge span::before,
.ribbon-badge span::after {
    content: '';
    position: absolute;
    top: 100%;
    width: 0;
    height: 0;
    border-style: solid;
}

.ribbon-badge span::before {
    left: 0;
    border-width: 10px 0 0 15px;
    border-color: var(--accent-pink) transparent transparent transparent;
}

.ribbon-badge span::after {
    right: 0;
    border-width: 10px 15px 0 0;
    border-color: var(--accent-pink) transparent transparent transparent;
}

/* Sparkles */
.sparkle {
    position: absolute;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(255, 192, 203, 0.8) 50%, transparent 70%);
    border-radius: 50%;
    animation: sparkleAnimation 2s ease-in-out infinite;
    pointer-events: none;
}

.sparkle-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.sparkle-2 {
    bottom: 15%;
    left: 5%;
    animation-delay: 0.7s;
}

.sparkle-3 {
    top: 50%;
    right: 5%;
    animation-delay: 1.4s;
}

@keyframes sparkleAnimation {

    0%,
    100% {
        opacity: 0;
        transform: scale(0.5);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.neon-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(60px, 8vw, 120px);
    font-weight: 900;
    color: var(--primary-pink);
    text-shadow:
        0 0 10px rgba(255, 0, 153, 0.8),
        0 0 20px rgba(255, 0, 153, 0.6),
        0 0 30px rgba(255, 0, 153, 0.4),
        0 0 40px rgba(255, 0, 153, 0.2);
    margin-bottom: 20px;
    animation: neonPulse 2s ease-in-out infinite;
    line-height: 1;
}

@keyframes neonPulse {

    0%,
    100% {
        text-shadow:
            0 0 10px rgba(255, 0, 153, 0.8),
            0 0 20px rgba(255, 0, 153, 0.6),
            0 0 30px rgba(255, 0, 153, 0.4),
            0 0 40px rgba(255, 0, 153, 0.2);
    }

    50% {
        text-shadow:
            0 0 20px rgba(255, 0, 153, 1),
            0 0 30px rgba(255, 0, 153, 0.8),
            0 0 40px rgba(255, 0, 153, 0.6),
            0 0 50px rgba(255, 0, 153, 0.4);
    }
}

.coach-name {
    font-size: clamp(60px, 8vw, 120px);
    margin-bottom: 40px;
}

.bio-text p {
    font-size: 20px;
    color: var(--primary-pink);
    margin-bottom: 25px;
    line-height: 1.8;
}

.bio-text strong {
    font-weight: 700;
}

.certificate-section {
    margin: 40px 0;
    text-align: center;
}

.certificate {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(255, 0, 153, 0.2);
    transition: transform 0.3s ease;
}

.certificate:hover {
    transform: scale(1.05);
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: var(--light-pink);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.testimonial-card {
    background: #ffe8ed;
    padding: 40px;
    border-radius: 22px;
    border: 4px solid var(--dark-pink);
    position: relative;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.testimonial-card:nth-child(1) {
    animation-delay: 0.1s;
}

.testimonial-card:nth-child(2) {
    animation-delay: 0.2s;
}

.testimonial-card:nth-child(3) {
    animation-delay: 0.3s;
}

.testimonial-card:nth-child(4) {
    animation-delay: 0.4s;
}

.testimonial-card:nth-child(5) {
    animation-delay: 0.5s;
}

.testimonial-card:nth-child(6) {
    animation-delay: 0.6s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 0, 153, 0.2);
}

.testimonial-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.ribbon {
    background: var(--dark-pink);
    color: var(--white);
    padding: 8px 25px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
}

.stars {
    color: var(--primary-pink);
    font-size: 24px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 16px;
    color: var(--accent-pink);
    font-weight: 600;
}

/* Final CTA Section */
.final-cta {
    padding: 120px 0;
    background: var(--light-pink);
    text-align: center;
}

.cta-text {
    font-size: clamp(24px, 3vw, 40px);
    color: var(--primary-pink);
    margin-bottom: 40px;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .coach-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
    }

    .hero-image-area,
    .hero-text-area {
        width: 100%;
        text-align: center;
        padding-left: 0;
        margin-bottom: 40px;
    }

    .hero-image-area {
        height: 350px;
        margin-bottom: 60px;
    }

    .hero-text-area {
        margin-top: -20px;
    }

    .title-group {
        justify-content: center;
    }

    .hero-title-main {
        align-items: center;
    }

    .hero-tagline {
        margin-right: 0;
    }

    .grey-button {
        margin-right: 0;
    }

    .problems-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .transformation-images {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        padding: 15px 35px;
        font-size: 20px;
    }

    .cta-button.large {
        padding: 20px 50px;
        font-size: 24px;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}