body { margin: 0; font-family: 'Inter', sans-serif; background: #fafafa; color: #1a1a1a; cursor: none; user-select: none; }

.hero { padding: 80px 20px; text-align: center; background: linear-gradient(180deg, #fff 0%, #f0f7ff 100%); padding-top: 15px; padding-bottom: 10px; }

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e3f2fd;
    color: #2196f3;
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid gold;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.glowing-dot {
    width: 8px;
    height: 8px;
    background-color: #2196f3;
    border-radius: 50%;
    position: relative;
    display: inline-block;
}

.main-heading { font-size: 2.5rem; line-height: 1.3; margin: 10px 0; font-weight: 900; }

.sub-text { line-height: 1.5; margin-top: 0; margin-bottom: 15px; }

.highlight { color: #2196f3; }

.cta-btn { background: #2196f3; color: #fff; padding: 18px 35px; border-radius: 12px; text-decoration: none; font-weight: 700; display: inline-block; box-shadow: 0 10px 20px rgba(33, 150, 243, 0.3); transition: transform 0.2s; letter-spacing: 1.1px; }

.cta-btn:active { transform: scale(0.95); }

.premium-cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a84ff 0%, #0056b3 100%);
    color: #fff;
    padding: 20px 40px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0, 86, 179, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    letter-spacing: 1.2px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer; }

.btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px; }

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #00ff80;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(0, 255, 128, 0.4);
    animation: pulse-green 2s infinite; }

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 128, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(0, 255, 128, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 128, 0); } }

.premium-cta:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 86, 179, 0.5);
    background: linear-gradient(135deg, #007aff 0%, #004a99 100%); }

.premium-cta:active {
transform: translateY(1px) scale(0.98); }

/* leadModal */
/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    display: none;
    justify-content: center;
    align-items: flex-end;
    z-index: 10000;
}

/* Modal Box */
.modal-content {
    background: #ffffff;
    width: 100%;
    max-width: 450px;
    padding: 40px 30px;
    border-radius: 30px 30px 0 0; /* Rounded top corners */
    position: relative;
    animation: slideUp 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f0f0f0;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
}

/* Header Styling */
.modal-header { text-align: center; margin-bottom: 30px; }
.premium-badge {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: #e3f2fd;
    color: #2196f3;
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: 800;
}
.modal-title { font-size: 24px; font-weight: 900; margin: 10px 0 5px; color: #1a1a1a; }
.blue-text { color: #2196f3; }
.modal-subtitle { font-size: 13px; color: #666; }

/* Form Elements */
.premium-form { display: flex; flex-direction: column; gap: 20px; }
.input-group { display: flex; flex-direction: column; gap: 8px; }
.input-group label { font-size: 15px; font-weight: 700; color: #444; margin-left: 5px; }

.premium-form input, .premium-form select {
    padding: 15px 20px;
    border-radius: 15px;
    border: 2px solid #f0f0f0;
    background: #f9f9f9;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.premium-form input:focus {
    border-color: #2196f3;
    background: #fff;
    outline: none;
    box-shadow: 0 10px 20px rgba(33, 150, 243, 0.1);
}

/* The Success Button */
.submit-btn {
    background: #1a1a1a;
    color: #fff;
    padding: 18px;
    border-radius: 15px;
    border: none;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: transform 0.2s ease;
    margin-top: 10px;
}

.submit-btn i {
    color: #2ecc71;
    font-size: 20px;
}

.submit-btn:active { transform: scale(0.96); }
/* leadModal */

/* client slider */
.client-slider {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    padding: 20px 0;
    padding-top: 15px;
    padding-bottom: 15px;
    background: #000;
    scrollbar-width: none; 
    -ms-overflow-style: none;
    cursor: grab;
}

.client-slider::-webkit-scrollbar
{ display: none; }

.client-slider:active { cursor: grabbing; }

.slider-track {
    display: flex; 
    gap: 12px; 
    width: max-content;
    padding: 0 10px;
    will-change: scroll-position;
}

.client-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 160px;
    flex-shrink: 0;
    background: #e8f6ff;
    padding: 8px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.client-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 14px;
    display: block; 
}

/* Premium "Glow" Badge */
.cta-badge {
    width: 100%;
    margin-top: 8px;
    padding: 10px 0;
    background: linear-gradient(180deg, #2a2a2a 0%, #111 100%);
    border: 1px solid rgba(0, 255, 128, 0.3);
    color: #00ff80;
    font-size: 14px;
    letter-spacing: 1.2px;
    text-align: center;
    font-weight: 900;
    text-transform: uppercase;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 255, 128, 0.1);
}

.cta-badge i {
    margin: 0 4px; 
    font-size: 10px;
    color: #ffffff;
    opacity: 0.9;
}

@keyframes scrollInfinite { 
    0% { transform: translateX(0); } 
    100% { transform: translateX(calc(-50% - 6px)); } 
}
/* client slider */

/* Meet Your coach */
.coach-profile-section {
    padding: 60px 20px;
    padding-top: 20px;
    padding-bottom: 30px;
    margin-bottom: 0;
    background: #fff;
}

.coach-card {
    max-width: 400px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
}

.coach-image-container {
    position: relative;
    width: 100%;
    max-height: 450px;
}

.coach-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.verified-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    color: #2196f3;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.coach-info {
    padding: 30px;
    text-align: left;
}

.coach-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #2196f3;
    margin-bottom: 5px;
    font-weight: 700;
}

.coach-name {
    font-size: 32px;
    font-weight: 900;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    line-height: 1;
}

.coach-role { margin-top: -15px; }

.certifications-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 10px;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8fbff;
    padding: 10px 15px;
    border-radius: 12px;
    border-left: 4px solid #2196f3;
}

.cert-item i {
    color: #2196f3;
    font-size: 22px;
    font-style: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
}

.last { margin-bottom: 10px; }

.cert-item span {
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

.btnTwo { text-align: center;
margin-top: 5px;
margin-bottom: -5px; }

.btnThree { margin-bottom: 10px; }

/* dfc features */
.premium-features {
    background: #0a0a0a;
    padding: 20px 20px;
    text-align: center;
    overflow: hidden;
}

.feature-heading {
    color: #fff;
    font-size: 26px;
    margin-top: 10px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.gold-text {
    background: linear-gradient(135deg, #fceabb 0%, #f8b500 50%, #fceabb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800; }

.feature-slider {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding: 20px 10px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; 
}

.feature-slider::-webkit-scrollbar { display: none; }

.feature-card {
    min-width: 290px;
    background: linear-gradient(145deg, #1a1a1a, #000);
    border: 1px solid #333;
    padding: 25px 20px; /* Slightly tighter padding */
    border-radius: 20px;
    position: relative;
    scroll-snap-align: center;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    border: 1px solid #f8b500;
box-shadow: 0 15px 40px rgba(248, 181, 0, 0.15);
    transform: translateY(-8px) scale(1.02); }

.iphone-mockup {
    width: 180px;
    height: 324px;
    background: #000;
    border: 5px solid #222;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-screen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center; 
    border-radius: 19px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
}

/* --- Content Styles --- */
.feature-card h3 {
    color: #fff;
    font-size: 20px;
    margin-top: -5px;
    margin-bottom: 0;
}

.feature-card p {
    color: #bbb;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: center;
}

.card-footer {
    width: 100%;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #f8b500;
    font-weight: bold;
    border-top: 1px solid #333;
    padding-top: 15px;
    margin-top: auto;
}
/* dfc features */

/* pricing */
.premium-pricing {
    background: #0a0a0a;
    padding: 20px 20px;
    font-family: 'Inter', sans-serif;
    color: #fff;
    text-align: center;
    padding-bottom: 30px;
}

.investInYou { margin-top: 0;
margin-bottom: 30px; }

.pricing-card {
    max-width: 300px;
    margin: 0 auto;
    background: linear-gradient(145deg, #161616, #000);
    border: 1px solid #333;
    border-radius: 30px;
    padding: 20px 25px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

.best-value-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #f8b500;
    color: #000;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
}

.plan-duration { font-size: 24px; margin-bottom: 5px; }
.plan-subtitle { color: #888; font-size: 14px; margin-bottom: 30px; }

.price-display { margin-bottom: 25px; }
.original-price { 
    text-decoration: line-through; 
    color: #555; 
    font-size: 18px; 
}
.current-price { 
    font-size: 56px; 
    font-weight: 900; 
    color: #fff; 
    line-height: 1;
}
.current-price .currency { font-size: 24px; vertical-align: top; margin-right: 2px; }

.price-breakdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    background: rgba(255,255,255,0.03);
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 30px;
}
.breakdown-val { display: block; font-size: 18px; font-weight: 700; color: #f8b500; }
.breakdown-label { font-size: 11px; color: #888; text-transform: uppercase; }
.breakdown-divider { width: 1px; height: 30px; background: #333; }

.timer-box {
    border: 1px dashed #f8b500;
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 30px;
}
.timer-label { font-size: 10px; letter-spacing: 2px; color: #f8b500; margin-bottom: 10px; }
.countdown { display: flex; justify-content: center; gap: 15px; }
.time-unit { font-size: 22px; font-weight: 800; line-height: 1; }
.time-unit small { display: block; font-size: 9px; color: #555; margin-top: 5px; }

.premium-benefits {
    list-style: none;
    padding: 0;
    margin: 15px 0 10px 0;
    text-align: left;
    display: inline-block; }

.premium-benefits li {
    color: #ccc;
    font-size: 13px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.premium-benefits li i { color: #00ff80; font-size: 16px; filter: drop-shadow(0 0 5px rgba(0, 255, 128, 0.6)); }

/* impact */
.impact-section {
    text-align: center;
    padding: 24px 12px;
    margin-bottom: 0;
    margin-top: 0;
    padding-top: 20px;
    padding-bottom: 30px; }

.impact-section h4 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 15px;
    padding-top: 0;
    line-height: 1.7; }

.impact-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; }

.impact-item { width: 100px; }

.impact-item p {
    margin-top: 10px;
    font-size: 12px;
    font-weight: bold;
    line-height: 1.3; }

.hex {
    width: 90px;
    height: 90px;
    background: #169ff5;
    clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0% 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
}

.hex::after {
    content: '';
    position: absolute;
    inset: 2px; 
    background: rgba(235, 247, 255, 1);
    clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0% 50%);
    z-index: -1; }

.hex span {
    color: #169ff5;
    font-size: 16px;
    font-weight: bold;
    z-index: 1; }
    
/* Reviews */
.reviews-section {
    padding: 60px 0;
    background: #dbeeff;
    overflow: hidden;
    margin-bottom: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.section-header {
    text-align: center;
    margin-bottom: 20px;
}

.google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    color: #5f6368;
    font-size: 14px;
    margin-bottom: 20px;
    background: white;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding: 6px 15px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.reviews-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px;
    padding-top: 10px;
    padding-bottom: 30px;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.reviews-container::-webkit-scrollbar { 
    display: none;
}

.review-card {
    min-width: 300px;
    max-width: 300px;
    background: #fff;
    padding: 25px;
    border-radius: 24px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border: 1px solid #f0f7ff;
    border: 2px solid #169ff5;
    position: relative;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    height: auto; 
    min-height: 250px; 
}

.stars { 
    color: gold; 
    margin-bottom: 12px; 
    font-size: 20px;
}

.Number { color: black; font-weight: bold; }

.review-text {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 25px;
    font-weight: 500;
    height: auto;
    display: block; 
    overflow: visible;
}

.reviewer-meta {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.reviewer-name { 
    font-weight: 800; 
    font-size: 15px; 
    color: #1a1a1a; 
    display: block; 
}

.verified-user { 
    font-size: 11px; 
    color: #2ecc71; 
    font-weight: 700; 
    display: flex; 
    align-items: center; 
    gap: 4px; 
}

.gmaps-logo {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: auto;
    pointer-events: none;
}

/* Pause animation on hover for desktop users */
.reviews-container:hover {
    cursor: grab;
}

/* More DFC Stars */
/* Container Spacing */
.stars-section {
    padding: 10px 20px 20px 20px;
    text-align: center;
    background: #fff;
    margin-bottom: 40px;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
    margin-top: -20px;
}

.header-container {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Small badge above heading */
.sub-badge {
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #2196f3;
    background: #e3f2fd;
    padding: 5px 15px;
    border-radius: 50px;
    margin-bottom: 10px;
    margin-top: 10px;
}

/* The Main Heading */
.stars-heading {
    font-size: 40px;
    font-weight: 900;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: 1px;
    line-height: 1.2;
}

/* Gradient Effect on "DFC Stars" */
.stars-heading .highlight {
    background: linear-gradient(90deg, #2196f3, #0d47a1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

/* Decorative Line under heading */
.header-line {
    width: 50px;
    height: 4px;
    background: #2196f3;
    border-radius: 10px;
    margin-top: 0;
    position: relative;
    margin-bottom: -20px;
}

.header-line::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 4px;
    background: #0d47a1;
    right: -15px;
    border-radius: 10px;
}

/* Responsive adjustment */
@media (max-width: 480px) {
    .stars-heading {
        font-size: 30px;
    }
}