/* =============================================================================
   ADELE COACHING FUNNEL - STYLES
   ============================================================================= */

/* -----------------------------------------------------------------------------
   CSS VARIABLES
   ----------------------------------------------------------------------------- */
:root {
    /* Colors - GREEN THEME */
    --primary-green: #2e612e;
    --primary-green-light: #3d7a3d;
    --primary-green-dark: #1f4a1f;
    --primary-green-rgb: 46, 97, 46;

    --accent-yellow: #FFCC33;
    --accent-yellow-rgb: 255, 204, 51;

    --dark-bg: #1a3a1a;
    --dark-section: #244624;
    --dark-navy: #1e2a47;
    --light-bg: #f8f8f8;
    --white: #ffffff;
    --black: #000000;
    --text-dark: #222222;
    --text-light: rgba(255, 255, 255, 1);
    --text-gray: #4A4A4A;

    /* Typography */
    --font-primary: 'Montserrat', sans-serif;

    /* Spacing */
    --section-padding: 60px 20px;
    --container-max: 1120px;
    --container-narrow: 960px;
    --container-form: 720px;

    /* Borders & Shadows */
    --shadow-card: 0px 10px 50px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 50px 30px 90px -30px rgba(0, 0, 0, 0.65);
    --border-radius: 8px;
}

/* -----------------------------------------------------------------------------
   RESET & BASE
   ----------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

/* -----------------------------------------------------------------------------
   TYPOGRAPHY
   ----------------------------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 34px;
}

h2 {
    font-size: 25px;
}

h3 {
    font-size: 20px;
}

h4 {
    font-size: 18px;
}

p {
    margin-bottom: 1em;
}

strong {
    font-weight: 700;
}

/* -----------------------------------------------------------------------------
   LAYOUT
   ----------------------------------------------------------------------------- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.container--narrow {
    max-width: var(--container-narrow);
}

.container--form {
    max-width: var(--container-form);
}

section {
    padding: var(--section-padding);
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col {
    padding: 0 15px;
    width: 100%;
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
}

.col-8 {
    flex: 0 0 66.666%;
    max-width: 66.666%;
}

@media (max-width: 768px) {

    .col-6,
    .col-4,
    .col-8 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* -----------------------------------------------------------------------------
   SECTIONS
   ----------------------------------------------------------------------------- */
.section--dark {
    background-color: var(--dark-bg);
    color: var(--text-light);
}

.section--light {
    background-color: var(--light-bg);
    color: var(--text-dark);
}

.section--white {
    background-color: var(--white);
    color: var(--text-dark);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title--gold {
    color: var(--accent-yellow);
}

.section--green {
    background-color: var(--primary-green);
    color: var(--text-light);
}

/* -----------------------------------------------------------------------------
   BUTTONS
   ----------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: linear-gradient(135deg, var(--accent-yellow), #e6b800);
    color: var(--black);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--accent-yellow-rgb), 0.4);
}

.btn-subtext {
    display: block;
    font-size: 14px;
    font-weight: 400;
    margin-top: 5px;
    opacity: 0.9;
}

/* Button Animations */
.btn {
    animation: shake 1.82s cubic-bezier(.36, .07, .19, .97) both infinite;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
}

@keyframes shake {

    10%,
    90% {
        transform: translate3d(-1px, 0, 0);
    }

    20%,
    80% {
        transform: translate3d(2px, 0, 0);
    }

    30%,
    50%,
    70% {
        transform: translate3d(-4px, 0, 0);
    }

    40%,
    60% {
        transform: translate3d(4px, 0, 0);
    }
}

/* Glimmer effect */
.btn::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -60%;
    bottom: -50%;
    left: -60%;
    background: linear-gradient(50deg, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 60%);
    transform: translate(-80%, 0);
    animation: glimmer 5s infinite;
}

@keyframes glimmer {
    0% {
        transform: translate(-80%, 0);
    }

    50% {
        transform: translate(80%, 0);
    }

    100% {
        transform: translate(80%, 0);
    }
}

/* -----------------------------------------------------------------------------
   HERO SECTION
   ----------------------------------------------------------------------------- */
.hero {
    background: var(--primary-green);
    padding: 40px 20px 60px;
}

.hero__logo {
    width: 97px;
    margin-bottom: 20px;
}

.hero__pretitle {
    font-size: 34px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.hero__pretitle span {
    color: var(--accent-yellow);
}

.hero__description {
    color: var(--text-light);
    margin-bottom: 20px;
}

.hero__highlight {
    color: var(--accent-yellow);
    font-weight: 700;
}

.hero__image {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
}

/* -----------------------------------------------------------------------------
   FEATURE CARDS
   ----------------------------------------------------------------------------- */
.feature-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-card);
    height: 100%;
}

.feature-card__icon {
    width: 82px;
    height: 82px;
    margin: 0 auto 20px;
}

.feature-card__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-card__text {
    font-size: 16px;
    color: var(--text-gray);
}

/* -----------------------------------------------------------------------------
   PROGRAM PHASES
   ----------------------------------------------------------------------------- */
.phase-box {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-heavy);
}

.phase-box__image {
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}

.phase-box__content h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.phase-box__content p {
    margin-bottom: 10px;
}

/* -----------------------------------------------------------------------------
   TESTIMONIALS
   ----------------------------------------------------------------------------- */
.testimonials {
    background: var(--light-bg);
}

.testimonial-video {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 30px;
}

.testimonial-video iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* -----------------------------------------------------------------------------
   FAQ ACCORDION
   ----------------------------------------------------------------------------- */
.faq {
    margin-top: 30px;
}

.faq__item {
    background: var(--white);
    border-radius: var(--border-radius);
    margin-bottom: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    color: var(--text-dark);
    transition: background 0.3s ease;
}

.faq__header:hover {
    background: var(--light-bg);
}

.faq__icon {
    transition: transform 0.3s ease;
}

.faq__item.active .faq__icon {
    transform: rotate(180deg);
}

.faq__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq__item.active .faq__content {
    max-height: 500px;
}

.faq__text {
    padding: 0 20px 20px;
    color: var(--text-gray);
}

/* -----------------------------------------------------------------------------
   ABOUT SECTION
   ----------------------------------------------------------------------------- */
.about {
    background: var(--primary-green);
}

.about__image {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
}

.about__title {
    color: var(--white);
    margin-bottom: 20px;
}

.about__title span {
    color: var(--accent-yellow);
}

.about__text {
    color: var(--text-light);
}

.about__divider {
    width: 100px;
    height: 2px;
    background: var(--accent-yellow);
    margin: 20px 0;
}

/* -----------------------------------------------------------------------------
   RESULTS TIMELINE
   ----------------------------------------------------------------------------- */
.timeline {
    background: var(--light-bg);
}

.timeline__item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
}

.timeline__icon {
    flex-shrink: 0;
    width: 76px;
}

.timeline__content h4 {
    color: var(--text-dark);
    margin-bottom: 10px;
}

.timeline__content ul {
    padding-left: 20px;
}

.timeline__content li {
    list-style: disc;
    margin-bottom: 5px;
    color: var(--text-gray);
}

/* -----------------------------------------------------------------------------
   BONUS SECTION
   ----------------------------------------------------------------------------- */
.bonus {
    background: var(--primary-green-dark);
}

.bonus__box {
    display: flex;
    gap: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 40px;
    border: 1px solid rgba(var(--accent-yellow-rgb), 0.2);
}

.bonus__image {
    flex-shrink: 0;
    max-width: 350px;
}

.bonus__content h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.bonus__content h2 span {
    color: var(--accent-yellow);
}

.bonus__item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bonus__item h4 {
    color: var(--white);
    margin-bottom: 10px;
}

.bonus__item p {
    color: rgba(255, 255, 255, 0.8);
}

/* -----------------------------------------------------------------------------
   CHECKOUT PAGE STYLES
   ----------------------------------------------------------------------------- */
.checkout-hero {
    background: var(--primary-green);
    text-align: center;
    padding: 60px 20px;
}

.checkout-hero h1 {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
}

.checkout-hero h2 {
    color: var(--white);
    font-size: 32px;
    margin-top: 10px;
}

.checkout-hero h2 span {
    color: var(--accent-yellow);
}

.checkout-hero p {
    color: var(--text-light);
    max-width: 600px;
    margin: 20px auto;
}

/* Benefits Section */
.benefits {
    background: var(--light-bg);
    padding: 60px 20px;
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 768px) {
    .benefits__grid {
        grid-template-columns: 1fr;
    }
}

/* Payment Form */
.payment-section {
    background: var(--light-bg);
    padding: 60px 20px;
}

.payment-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-green);
}

.form-group input::placeholder {
    color: #999;
}

/* Stripe Elements */
.stripe-element {
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    background: var(--white);
}

.stripe-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Price Display */
.price-display {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 25px;
    margin: 30px 0;
    box-shadow: var(--shadow-card);
}

.price-display__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-display__name {
    font-weight: 600;
    color: var(--text-dark);
}

.price-display__amount {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
}

.price-display__badge {
    background: var(--accent-yellow);
    color: var(--black);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-right: 10px;
}

/* Consent Checkbox */
.consent-group {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 20px 0;
}

.consent-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 3px;
}

.consent-group label {
    font-size: 12px;
    color: var(--text-gray);
}

/* Submit Button */
.btn--submit {
    width: 100%;
    padding: 20px;
    font-size: 20px;
}

/* Trust Elements */
.trust-text {
    text-align: center;
    color: var(--text-gray);
    font-size: 14px;
    margin-top: 15px;
}

/* -----------------------------------------------------------------------------
   SUCCESS PAGE
   ----------------------------------------------------------------------------- */
.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-green);
    padding: 40px 20px;
}

.success-box {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 60px 40px;
    text-align: center;
    max-width: 600px;
    box-shadow: var(--shadow-heavy);
}

.success-box__icon {
    font-size: 80px;
    margin-bottom: 30px;
}

.success-box__title {
    color: var(--text-dark);
    margin-bottom: 20px;
}

.success-box__text {
    color: var(--text-gray);
    margin-bottom: 30px;
}

/* -----------------------------------------------------------------------------
   ANIMATIONS - FADE UP ON SCROLL
   ----------------------------------------------------------------------------- */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* -----------------------------------------------------------------------------
   RESPONSIVE
   ----------------------------------------------------------------------------- */
@media (max-width: 992px) {
    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 22px;
    }

    .bonus__box {
        flex-direction: column;
    }

    .bonus__image {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    section {
        padding: 40px 15px;
    }

    .hero__pretitle {
        font-size: 26px;
    }

    .checkout-hero h2 {
        font-size: 24px;
    }

    .stripe-row {
        grid-template-columns: 1fr;
    }

    .timeline__item {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 20px;
    }

    .btn {
        padding: 14px 24px;
        font-size: 16px;
    }
}

/* -----------------------------------------------------------------------------
   NEW LANDING PAGE SECTIONS
   ----------------------------------------------------------------------------- */

/* Why Unique Section */
.unique-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.unique-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 25px;
    text-align: center;
    color: var(--white);
    transition: transform 0.3s ease;
}

.unique-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.unique-card h3 {
    color: var(--accent-yellow);
    font-size: 18px;
    margin-bottom: 15px;
}

/* Target Audience Section */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.audience-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-card);
    border-top: 5px solid var(--primary-green);
    height: 100%;
}

.audience-card h3 {
    color: var(--primary-green);
    font-size: 20px;
    margin-bottom: 10px;
}

.audience-card__icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: block;
}

/* Program Options Section */
.program-section {
    background: var(--light-bg);
}

.program-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    margin-bottom: 40px;
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.program-header {
    background: var(--primary-green);
    color: var(--white);
    padding: 30px;
    text-align: center;
}

.program-header h2 {
    color: var(--accent-yellow);
    margin-bottom: 10px;
}

.program-body {
    padding: 40px;
    flex: 1;
}

.program-features {
    margin: 30px 0;
}

.program-features li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    color: var(--text-gray);
}

.program-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
}

.program-price {
    text-align: center;
    padding: 20px;
    background: #f9f9f9;
    border-top: 1px solid #eee;
}

.program-price strong {
    font-size: 24px;
    color: var(--primary-green);
}

.program-price small {
    display: block;
    color: #666;
    margin-top: 5px;
}

/* Transformation Section */
.transformation-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1a2e 100%);
    color: var(--white);
}

.transformation-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.transformation-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-yellow);
}

.transformation-item h3 {
    color: var(--accent-yellow);
    margin-bottom: 15px;
}

.step-process {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    margin-bottom: 40px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.step-number {
    display: inline-block;
    background: var(--primary-green);
    color: #fff;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    margin-bottom: 10px;
    font-weight: bold;
}

/* Responsive adjustments for new sections */
@media (max-width: 900px) {

    .unique-grid,
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .unique-grid,
    .audience-grid {
        grid-template-columns: 1fr;
    }
}