/* ============================================
   PGI PUBLISHING HOUSE - PREMIUM STYLESHEET
   Professional, Sophisticated, High-End Design
   ============================================ */
:root {
    /* Premium Color Palette */
    --primary-black: #000000;
    --primary-coral: #5f0900;
    --primary-red: #bc1705;
    --dark-navy: #0A0E27;
    --rich-gray: #1A1D2E;
    --warm-beige: #F5F1ED;
    --cream: #FAF8F5;
    --gold-accent: #D4AF37;
    --white: #FFFFFF;
   
    /* Text Colors */
    --text-primary: #1A1D2E;
    --text-secondary: #4A5568;
    --text-light: #718096;
    --text-white: #FFFFFF;
   
    /* Additional Merged Palette from 2nd/3rd Stylesheets */
    --primary-gold: #FACC15;
    --beige: #F8F7F4;
    --gray-light: #F1F5F9;
    --gray-medium: #64748B;
    --gray-dark: #334155;
    --accent-blue: #3B82F6;
    --accent-red: #DC2626;
    --accent-orange: #F97316;
    --accent-green: #059669;
   
    /* Razorpay Default Blue */
    --razorpay-blue: #0D94FB;
   
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.2);
   
    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}
/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--font-body);
    color: var(--text-primary);
    line-height: 1.7;
    background-color: var(--cream);
    overflow-x: hidden;
}
/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}
h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}
h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}
h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}
h4 {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    font-family: var(--font-heading);
    font-weight: 700;
}
p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-secondary);
}
strong {
    color: var(--primary-gold);
    font-weight: 700;
}
/* ============================================
   CONTAINER & LAYOUT
   ============================================ */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}
.section {
    padding: 120px 0;
    position: relative;
}
/* ============================================
   HEADER - PREMIUM BLACK (Merged with nav from 2nd/3rd)
   ============================================ */
.header {
    background: var(--primary-black);
    padding: 25px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--primary-coral);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo img {
    height: 55px;
    width: auto;
    filter: drop-shadow(0 4px 12px rgba(231, 76, 60, 0.4));
    transition: transform 0.3s ease;
}
.logo:hover img {
    transform: scale(1.05);
}
/* Merged Header Nav from 2nd/3rd */
.header-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}
.header-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}
.header-nav a:hover {
    color: var(--gold-accent);
}
.header-cta {
    padding: 12px 30px;
    background: var(--razorpay-blue);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    font-family: var(--font-heading);
}
.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(13, 148, 251, 0.4);
}
/* ============================================
   HERO SECTION - DRAMATIC & SOPHISTICATED (Added stats-bar from 2nd, Fixed overlap)
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #000000 0%, #1A1D2E 50%, #0A0E27 100%);
    position: relative;
    padding-top: 120px; /* Increased to account for fixed header height */
    padding-bottom: 120px; /* Added bottom padding to prevent overlap with next section */
    overflow: hidden;
    margin-top: 0; /* Ensure no negative margin */
}
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(231, 76, 60, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    animation: heroGlow 20s ease-in-out infinite;
}
@keyframes heroGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}
.hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 1200px; /* Added to prevent content overflow */
}
.hero h1 {
    color: var(--white);
    margin-bottom: 2rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out;
}
.hero h1 br {
    display: block;
}
.hero-subtitle {
    font-size: 1.5rem;
    color: #E2E8F0;
    font-weight: 300;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}
.hero-body {
    font-size: 1.15rem;
    color: #CBD5E1;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}
/* Merged Stats Bar from 2nd */
.stats-bar {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin: 40px 0;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}
.stat-item {
    text-align: center;
}
.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold-accent);
    display: block;
}
.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 5px;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}
/* ============================================
   BUTTONS - PREMIUM STYLE (Primary/Secondary kept, Razorpay updated to match default blue)
   ============================================ */

   .cta-primary {
    min-width: 150px;
    padding: 13px 47px;
    background: linear-gradient(135deg, #7c5a28 0%, #b88946 25%, #d9b679 50%, #e7d2a6 75%, #caa75d 100%);
    color: #0F172A !important;
    text-shadow: none !important;
    font-weight: 700;
    font-size: 14px;
    font-family: 'Segoe UI', sans-serif;
    border-radius: 30px;
    border: 1px solid #b88946;
    text-shadow: 0 1px 1px #fff2dd;
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.5), inset 0 -2px 4px rgba(90, 60, 10, 0.2), 0 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s 
ease-in-out;
}

.btn-primary-pgi {
    display: inline-block;
    padding: 20px 45px;
    background: linear-gradient(135deg, var(--primary-coral) 0%, #C0392B 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
    border: 2px solid transparent;
}
.cta-primary::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.6s;
}
.cta-primary:hover::before {
    left: 100%;
}
.cta-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 50px rgba(231, 76, 60, 0.6);
}
.cta-secondary {
    display: inline-block;
    padding: 20px 45px;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    border: 2px solid var(--primary-coral);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}
.cta-secondary::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--primary-coral);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
    z-index: -1;
}
.cta-secondary:hover::before {
    width: 500px;
    height: 500px;
}
.cta-secondary:hover {
    color: var(--white);
    transform: translateY(-3px);
}


/* ============================================
   SECTION HEADERS (Added p from 2nd)
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}
.section-header h2 {
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}
.section-header h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-coral), transparent);
}
.section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
}
/* ============================================
   3Ts SECTION - ELEGANT SUPERPOWERS
   ============================================ */
.three-ts {
    background: var(--white);
}
.three-ts h2 {
    text-align: center;
    margin-bottom: 30px;
}
.superpowers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin: 60px 0;
}
.superpower-card {
    background: var(--cream);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}
.superpower-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-coral), var(--gold-accent));
    border-radius: 20px 20px 0 0;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}
.superpower-card:hover::before {
    transform: scaleX(1);
}
.superpower-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-coral);
}
.superpower-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    display: block;
}
.superpower-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--primary-coral);
    margin-bottom: 15px;
    font-weight: 800;
}
.superpower-description {
    color: var(--text-secondary);
    line-height: 1.8;
}
.responsibility-box {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--rich-gray) 100%);
    padding: 60px;
    border-radius: 30px;
    color: var(--white);
    margin: 80px auto;
    max-width: 1000px;
    box-shadow: var(--shadow-xl);
    border: 3px solid var(--primary-coral);
}
.responsibility-box h3 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 2.2rem;
}
.responsibility-box p {
    color: #E2E8F0;
    font-size: 1.15rem;
    line-height: 1.9;
}
/* ============================================
   TWO PATHS SECTION - PREMIUM CARDS
   ============================================ */
.two-paths {
    background: var(--cream);
}
.paths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 50px;
    margin-top: 60px;
}
.path-card {
    background: var(--white);
    padding: 50px;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid transparent;
}
.path-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
}
.path-card.dfy {
    border-top: 6px solid var(--accent-orange);
}
.path-card.dfy:hover {
    border-color: var(--accent-orange);
}
.path-card.fiveday {
    border-top: 6px solid var(--accent-blue);
}
.path-card.fiveday:hover {
    border-color: var(--accent-blue);
}
.path-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}
.path-card.dfy .path-badge {
    background: rgba(249, 115, 22, 0.1);
    color: var(--accent-orange);
}
.path-card.fiveday .path-badge {
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-blue);
}
.path-title {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}
.path-tagline {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-weight: 500;
}
.path-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
}
.path-features {
    list-style: none;
    margin: 30px 0;
}
.path-features li {
    padding: 15px 0;
    padding-left: 35px;
    position: relative;
    border-bottom: 1px solid #E2E8F0;
    color: var(--text-secondary);
    line-height: 1.7;
}
.path-features li:last-child {
    border-bottom: none;
}
.path-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.3rem;
}
.path-card.dfy .path-features li::before {
    color: var(--accent-orange);
}
.path-card.fiveday .path-features li::before {
    color: var(--accent-blue);
}
.path-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
    padding: 25px;
    background: var(--cream);
    border-radius: 15px;
}
.path-meta-item strong {
    display: block;
    font-size: 1.4rem;
    color: var(--primary-coral);
    margin-bottom: 5px;
}
.path-best-for {
    background: rgba(231, 76, 60, 0.05);
    padding: 20px;
    border-radius: 15px;
    margin: 25px 0;
    border-left: 4px solid var(--primary-coral);
}
.path-best-for strong {
    color: var(--primary-coral);
}
.path-cta {
    display: inline-block;
    margin-top: 25px;
    padding: 15px 35px;
    background: var(--primary-coral);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    font-family: var(--font-heading);
}
.path-cta:hover {
    background: #C0392B;
    transform: translateX(10px);
}
/* ============================================
   DECISION FRAMEWORK - ELEGANT COMPARISON
   ============================================ */
.decision-framework {
    background: var(--white);
}
.decision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin: 60px 0;
}
.decision-box {
    background: var(--cream);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border-left: 6px solid;
}
.decision-box.dfy {
    border-color: var(--accent-orange);
}
.decision-box.fiveday {
    border-color: var(--accent-blue);
}
.decision-box h4 {
    margin-bottom: 25px;
    font-size: 1.5rem;
}
.decision-list {
    list-style: none;
}
.decision-list li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.7;
}
.decision-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-coral);
    font-weight: bold;
    font-size: 1.3rem;
}
.consultation-cta {
    text-align: center;
    margin-top: 80px;
    padding: 60px;
    background: linear-gradient(135deg, var(--primary-coral) 0%, #C0392B 100%);
    border-radius: 30px;
    color: var(--white);
    box-shadow: var(--shadow-xl);
}
.consultation-cta h3 {
    color: var(--white);
    font-size: 2rem;
}
.consultation-cta p {
    color: rgba(255,255,255,0.95);
}
.consultation-cta .cta-primary {
    background: var(--white);
    color: var(--primary-coral);
    margin-top: 10px;
}
.consultation-cta .cta-primary:hover {
    background: var(--cream);
}
/* ============================================
   BENEFITS - SOPHISTICATED GRID
   ============================================ */
.benefits {
    background: var(--cream);
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}
.benefit-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}
.benefit-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-coral);
}
.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
}
.benefit-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--primary-coral);
    margin-bottom: 15px;
    font-weight: 700;
}
.benefit-description {
    color: var(--text-secondary);
    line-height: 1.8;
}
/* ============================================
   FOUNDER SECTION - PREMIUM STORYTELLING (Anshuman from 2nd merged as variant)
   ============================================ */
.founder {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--rich-gray) 100%);
    color: var(--white);
}
.founder h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 15px;
}
.founder-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--primary-coral);
    margin-bottom: 40px;
    font-weight: 600;
    color: var(--gold-accent);
}
.founder-bio {
    text-align: center;
    font-size: 1.2rem;
    color: #E2E8F0;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.9;
}
.founder-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 60px 0;
    
}
.founder-highlight {
    background: rgba(255,255,255,0.05);
    padding: 35px;
    border-radius: 20px;
    border-left: 4px solid var(--primary-coral);
    backdrop-filter: blur(10px);
}
.founder-highlight strong {
    display: block;
    color: var(--primary-coral);
    font-size: 1.3rem;
    margin-bottom: 15px;
        color: var(--gold-accent);

    font-family: var(--font-heading);
}
.founder-highlight p {
    color: #CBD5E1;
    line-height: 1.8;
}
.founder .cta-primary {
    display: block;
    max-width: 400px;
    margin: 50px auto 0;
    text-align: center;
}
/* Merged Anshuman Section from 2nd (as founder variant) */
.anshuman-section {
    background: linear-gradient(135deg, var(--accent-blue) 0%, #60A5FA 100%);
    color: var(--white);
}
.anshuman-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.anshuman-section h2 {
    color: var(--white);
    margin-bottom: 2rem;
}
.anshuman-section p {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.95);
}
.philosophy-box {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    margin: 40px 0;
    border: 2px solid rgba(255,255,255,0.2);
}
.philosophy-box h4 {
    color: var(--white);
    margin-bottom: 20px;
}
/* ============================================
   RECORDS - PRESTIGIOUS BADGES (Merged records-section from 2nd)
   ============================================ */
.records {
    background: var(--white);
}
.records-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
    margin: 60px 0;
}
.record-badge {
    background: linear-gradient(135deg, var(--cream) 0%, var(--warm-beige) 100%);
    padding: 50px;
    border-radius: 30px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--gold-accent);
    transition: all 0.4s ease;
}
.record-badge:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}
.record-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}
.record-badge h4 {
    color: var(--gold-accent);
    font-size: 1.8rem;
    margin-bottom: 15px;
}
.record-badge p {
    color: var(--text-secondary);
    line-height: 1.8;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 80px;
}
.stat-item {
    text-align: center;
    padding: 30px;
}
.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-gold);
    display: block;
    margin-bottom: 10px;
    font-family: var(--font-display);
    text-shadow: 0 2px 10px rgba(231, 76, 60, 0.3);
}
.stat-label {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
}
/* Merged Records Section from 2nd (adapted) */
.records-section {
    background: linear-gradient(135deg, var(--primary-coral) 0%, #EF4444 100%);
    color: var(--white);
    text-align: center;
}
.records-section h2 {
    color: var(--white);
}
.records-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 60px 0;
}
.record-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}
.record-card:hover {
    transform: scale(1.05);
    background: rgba(255,255,255,0.15);
}
.record-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}
.record-card h4 {
    color: var(--white);
    margin-bottom: 15px;
}
.record-card p {
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
}
/* ============================================
   TESTIMONIALS - ELEGANT SOCIAL PROOF
   ============================================ */
.testimonials {
    background: var(--cream);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin: 60px 0;
}
.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: all 0.4s ease;
    border-left: 5px solid var(--primary-coral);
}
.testimonial-card::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 80px;
    color: rgba(231, 76, 60, 0.1);
    font-family: Georgia, serif;
    line-height: 0;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}
.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}
.testimonial-author {
    font-weight: 700;
    color: var(--primary-coral);
    font-family: var(--font-heading);
}
/* Carousel (Merged from main + 2nd/3rd) */
.carousel-container {
    position: relative;
    max-width: 900px;
    margin: 50px auto;
    padding: 0 60px;
}
.carousel {
    display: flex;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}
.carousel-slide {
    min-width: 100%;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    background: var(--dark-navy);
}
.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}
.carousel-slide iframe {
    width: 100%;
    height: 500px;
    border-radius: 20px;
}
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-coral);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}
.carousel-btn:hover {
    background: #C0392B;
    transform: translateY(-50%) scale(1.1);
}
.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}
.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #CBD5E1;
    cursor: pointer;
    transition: all 0.3s ease;
}
.carousel-dot.active {
    background: var(--primary-coral);
    width: 35px;
    border-radius: 6px;
}
/* ============================================
   FINAL CTA - PREMIUM CONVERSION
   ============================================ */
.final-cta {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--rich-gray) 100%);
    color: var(--white);
}
.final-cta h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 20px;
}
.final-cta-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #E2E8F0;
    max-width: 700px;
    margin: 0 auto 60px;
}
.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}
.cta-box {
    background: var(--white);
    padding: 45px;
    border-radius: 25px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-top: 5px solid var(--primary-coral);
}
.cta-box:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
}
.cta-box h4 {
    color: var(--text-primary);
    margin-bottom: 15px;
}

.cta-box h3 {
    color: var(--primary-coral);
    margin-bottom: 15px;
}
.cta-box p {
    color: var(--text-secondary);
    margin-bottom: 15px;
}
.cta-box-link {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 35px;
    background: var(--primary-coral);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    font-family: var(--font-heading);
}
.cta-box-link:hover {
    background: #C0392B;
    transform: scale(1.05);
}
/* Merged Final CTA variants from 2nd/3rd (adapted) */
.final-cta {
    background: linear-gradient(135deg, var(--primary-coral) 0%, #C0392B 100%);
}
.final-cta-subtitle {
    color: rgba(255,255,255,0.95);
}
.urgency-badge {
    display: inline-block;
    background: var(--accent-red);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
.contact-info {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--gray-light);
}
.contact-info a {
    display: block;
    color: var(--primary-coral);
    text-decoration: none;
    margin: 10px 0;
    font-weight: 600;
    transition: all 0.3s ease;
}
.contact-info a:hover {
    transform: translateX(5px);
}
/* ============================================
   MERGED SECTIONS FROM 2ND/3RD (Adapted to main theme: coral/gold accents, cream/white bgs)
   ============================================ */
/* Problem Section from 2nd/3rd */
.problem-section {
    background: var(--white);
}
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}
.problem-card {
    background: var(--cream);
    padding: 40px;
    border-radius: 20px;
    border-left: 4px solid var(--primary-coral);
}
.problem-card h4 {
    color: var(--primary-coral);
    margin-bottom: 15px;
}
.problem-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}
.problem-box {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 30px;
    box-shadow: var(--shadow-md);
}
.problem-box h3 {
    margin-bottom: 30px;
    color: var(--primary-coral);
}
.problem-box p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 20px;
}
.highlight-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 40px;
}
/* Solution Section from 2nd/3rd */
.solution-section {
    background: linear-gradient(135deg, var(--cream) 0%, var(--beige) 100%);
}
.solution-box {
    max-width: 900px;
    margin: 60px auto 0;
    padding: 60px;
    background: linear-gradient(135deg, var(--primary-coral) 0%, #C0392B 100%);
    border-radius: 30px;
    color: var(--white);
    text-align: center;
    box-shadow: var(--shadow-xl);
}
.solution-box h3 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 2.5rem;
}
.solution-box p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: rgba(255,255,255,0.95);
}
/* Days/Process Section from 2nd/3rd (for paths) */
.days-section, .process-section {
    background: var(--white);
}
.days-timeline, .process-steps {
    max-width: 1100px;
    margin: 60px auto 0;
}
.day-card, .process-step {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 40px;
    margin-bottom: 40px;
    background: var(--cream);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border-left: 5px solid var(--primary-coral);
}
.day-card:hover, .process-step:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}
.day-number, .step-number {
    text-align: center;
}
.day-badge {
    display: inline-block;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-coral) 0%, #C0392B 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 900;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
}
.day-badge small {
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 5px;
}
.day-content h4, .process-step h4 {
    color: var(--primary-coral);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--primary-coral);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
}
.day-content p, .process-step p {
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 1.1rem;
}
/* Included Section from 2nd/3rd */
.included-section {
    background: linear-gradient(135deg, var(--cream) 0%, var(--beige) 100%);
}
.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin: 60px 0;
}
.included-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--primary-coral);
}
.included-card h4 {
    color: var(--primary-coral);
    margin-bottom: 20px;
}
.included-list {
    list-style: none;
}
.included-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.7;
}
.included-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-coral);
    font-weight: bold;
    font-size: 1.2rem;
}
/* Investment Section from 2nd/3rd */
.investment-section {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--rich-gray) 100%);
    color: var(--white);
    text-align: center;
}
.investment-box {
    max-width: 800px;
    margin: 60px auto 0;
    padding: 60px;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 30px;
    border: 3px solid var(--primary-coral);
    box-shadow: var(--shadow-xl);
}
.price-tag {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-gold);
    margin: 30px 0;
}
.price-comparison, .price-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 40px 0;
    text-align: left;
}
.price-item {
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
}
.price-item strong, .price-details li {
    color: var(--primary-gold);
    display: block;
    margin-bottom: 10px;
    margin: 15px 0;
}
.price-details {
    grid-template-columns: 1fr;
    list-style: none;
}
/* Who Section from 2nd/3rd */
.who-section {
    background: var(--white);
}
.who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}
.who-card {
    background: var(--cream);
    padding: 40px;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}
.who-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.who-card h4 {
    color: var(--primary-coral);
    margin-bottom: 15px;
}
.who-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}
/* Success Section from 2nd */
.success-section {
    background: linear-gradient(135deg, var(--cream) 0%, var(--beige) 100%);
    text-align: center;
}
.success-box {
    max-width: 800px;
    margin: 60px auto 0;
    padding: 60px;
    background: var(--white);
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
}
.success-number {
    font-size: 6rem;
    font-weight: 900;
    color: var(--primary-coral);
    margin-bottom: 20px;
    font-family: var(--font-display);
}
.success-box h3 {
    color: var(--primary-coral);
    margin-bottom: 25px;
}
.success-box p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.9;
}
/* FAQ Section from 2nd/3rd */
.faq-section {
    background: var(--white);
}
.faq-list {
    max-width: 900px;
    margin: 60px auto 0;
}
.faq-item {
    background: var(--cream);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
}
.faq-item h4 {
    color: var(--primary-coral);
    margin-bottom: 15px;
}
.faq-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}
.faq-item ul {
    list-style: none;
    margin-top: 15px;
}
.faq-item ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}
.faq-item ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-coral);
    font-weight: bold;
    font-size: 1.5rem;
}
/* NDA Section from 3rd */
.nda-section {
    background: var(--white);
}
.nda-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px;
    background: linear-gradient(135deg, var(--accent-green) 0%, #10B981 100%);
    border-radius: 30px;
    color: var(--white);
    text-align: center;
    box-shadow: var(--shadow-xl);
}
.nda-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}
.nda-box h3 {
    color: var(--white);
    margin-bottom: 25px;
}
.nda-box p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: rgba(255,255,255,0.95);
}
.nda-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    margin-top: 30px;
    font-size: 1.1rem;
    color: var(--white);
}
/* Why PGI Section from 3rd (similar to benefits) */
.why-pgi-section {
    background: var(--white);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 60px 0;
}
.why-card {
    padding: 40px;
    background: var(--cream);
    border-radius: 20px;
    border-top: 4px solid var(--gold-accent);
}
.why-card h4 {
    color: var(--text-primary);
    margin-bottom: 15px;
}
.why-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}
/* Guarantee Section from 3rd */
.guarantee-section {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--rich-gray) 100%);
    color: var(--white);
    text-align: center;
}
.guarantee-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 30px;
    border: 3px solid var(--gold-accent);
    box-shadow: var(--shadow-xl);
}
.guarantee-icon {
    font-size: 5rem;
    margin-bottom: 20px;
    color: var(--gold-accent);
}
.guarantee-box h3 {
    color: var(--gold-accent);
    margin-bottom: 25px;
    font-size: 2.5rem;
}
.guarantee-box p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #CBD5E1;
}
.guarantee-list {
    list-style: none;
    margin: 40px 0;
    text-align: left;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.guarantee-list li {
    padding: 15px 0;
    padding-left: 40px;
    position: relative;
    font-size: 1.1rem;
    color: #CBD5E1;
}
.guarantee-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold-accent);
    font-weight: bold;
    font-size: 1.5rem;
}
/* ============================================
   FOOTER - ELEGANT & MINIMAL (Merged with 2nd/3rd)
   ============================================ */
.footer {
    background: var(--primary-black);
    color: var(--white);
    padding: 80px 0 40px;
    border-top: 4px solid var(--primary-coral);
}
.footer-tagline {
    text-align: center;
    font-size: 1.4rem;
    color: #E2E8F0;
    margin-bottom: 40px;
    font-weight: 500;
}
.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin: 40px 0;
}
.footer-links a {
    color: #CBD5E1;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}
.footer-links a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-coral);
    transition: width 0.3s ease;
}
.footer-links a:hover {
    color: var(--primary-coral);
}
.footer-links a:hover::after {
    width: 100%;
}
.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-bottom p {
    color: #94A3B8;
    margin-bottom: 15px;
}
.footer-bottom strong {
    color: var(--primary-coral);
}
.footer-content {
    text-align: center;
}
/* ============================================
   RESPONSIVE DESIGN (Merged media queries)
   ============================================ */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
   
    .paths-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 968px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
   
    .container {
        padding: 0 20px;
    }
   
    .section {
        padding: 80px 0;
    }
   
    .hero {
        min-height: auto;
        padding: 150px 0 80px;
    }
   
    .hero-ctas {
        flex-direction: column;
    }
   
    .superpowers-grid,
    .paths-grid,
    .decision-grid,
    .benefits-grid,
    .founder-highlights,
    .records-badges,
    .testimonials-grid,
    .cta-grid {
        grid-template-columns: 1fr;
    }
   
    .path-meta {
        grid-template-columns: 1fr;
    }
   
    .responsibility-box,
    .consultation-cta {
        padding: 40px 30px;
    }
   
    .carousel-container {
        padding: 0 50px;
    }
   
    .carousel-slide iframe {
        height: 300px;
    }
   
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
   
    /* Merged from 2nd/3rd */
    .stats-bar {
        gap: 30px;
    }
    .stat-number {
        font-size: 2rem;
    }
    .day-card {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .day-badge {
        width: 100px;
        height: 100px;
        font-size: 2rem;
    }
    .price-comparison {
        grid-template-columns: 1fr;
    }
    .solution-box,
    .investment-box,
    .success-box,
    .cta-box,
    .philosophy-box,
    .problem-box,
    .nda-box,
    .guarantee-box {
        padding: 30px 20px;
    }
    .included-grid,
    .who-grid,
    .testimonials-grid,
    .records-grid,
    .problem-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }
    .header-nav {
        display: none;
    }
    .razorpay-payment-button {
        padding: 15px 30px !important;
        font-size: 1rem !important;
        min-width: 250px !important;
    }
}
@media (max-width: 640px) {
    .logo img {
        height: 40px;
    }
   
    .hero h1 br {
        display: none;
    }
   
    .cta-primary,
    .cta-secondary {
        padding: 15px 35px;
        font-size: 1rem;
    }
   
    .superpower-card,
    .benefit-card,
    .path-card,
    .decision-box,
    .testimonial-card,
    .cta-box {
        padding: 30px 25px;
    }
   
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
   
    /* Merged from 2nd/3rd */
    .hero {
        padding: 120px 0 80px;
    }
}
/* ============================================
   ANIMATIONS & TRANSITIONS
   ============================================ */
@media (prefers-reduced-motion: no-preference) {
    * {
        scroll-behavior: smooth;
    }
}
/* Loading animation for images */
img {
    opacity: 1;
    transition: opacity 0.3s ease;
}
img[data-loading] {
    opacity: 0.5;
}
/* Smooth reveal on scroll */
@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.section > * {
    animation: revealUp 0.8s ease-out;
}
/* Merged rotate animation from 2nd/3rd hero */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.coach-photo-wrapper {
    text-align: center;
    margin: 40px 0 30px;
}

.coach-image {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid var(--primary-coral);
    box-shadow: 0 10px 40px rgba(231, 76, 60, 0.4);
}

.coach-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.stat-badge {
    text-align: center;
    padding: 20px 30px;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 15px;
    border: 2px solid var(--primary-coral);
}

.stat-badge strong {
    display: block;
    font-size: 2.5rem;
    color: var(--primary-coral);
    font-family: var(--font-display);
    margin-bottom: 5px;
}

.stat-badge span {
    display: block;
    font-size: 0.9rem;
    color: #CBD5E1;
    font-weight: 600;
}

@media (max-width: 640px) {
    .coach-image {
        width: 220px;
        height: 220px;
    }
    
    .coach-stats {
        gap: 20px;
    }
    
    .stat-badge {
        padding: 15px 20px;
    }
    
    .stat-badge strong {
        font-size: 2rem;
    }
}
