/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 10px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: #667eea;
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #667eea;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #667eea;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: #667eea;
}

.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Founder Photo Styling */
.photo-placeholder {
    text-align: center;
    margin-bottom: 30px;
}

.founder-photo {
    width: 250px;
    height: 250px;
    border-radius: 20px;
    object-fit: cover;
    border: 4px solid #667eea;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
    transition: transform 0.3s ease;
    margin-bottom: 20px;
}

.founder-photo:hover {
    transform: scale(1.05);
}

.founder-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #0077b5;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.linkedin-link:hover {
    background: #005885;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 119, 181, 0.3);
}

.linkedin-icon {
    width: 20px;
    height: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: white;
    padding: 120px 0 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 50%, #c7d2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-text h1 .strategy-coaching {
    white-space: nowrap;
}

.hero-text p {
    font-size: 1.3rem;
    opacity: 0.9;
    text-align: left;
    line-height: 1.7;
    color: #cbd5e1;
    font-weight: 400;
}

.hero-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 50px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

.hero-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 24px;
    z-index: -1;
}

.hero-form h2 {
    font-size: 1.6rem;
    margin-bottom: 35px;
    text-align: center;
    font-weight: 600;
    color: #f8fafc;
}

.hero-form form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-form input {
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.hero-form input:focus {
    outline: none;
    border-color: #6366f1;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.hero-form button {
    padding: 18px 25px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: fit-content;
    margin: 0 auto;
}

.hero-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.hero-form button:hover::before {
    left: 100%;
}

.hero-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.4);
}

/* Past Record Section */
.past-record {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.past-record h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.iit-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.iit-logo {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    font-size: 1.2rem;
    color: #2c3e50;
    transition: transform 0.3s ease;
}

.iit-logo:hover {
    transform: translateY(-5px);
}

/* Impact Numbers Section */
.impact-numbers {
    padding: 80px 0;
    background: white;
}

.impact-numbers h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
}

.impact-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.impact-block {
    text-align: center;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.impact-block:hover {
    transform: translateY(-10px);
}

.impact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.impact-block h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.impact-block p {
    color: #666;
    line-height: 1.6;
}

.cta-center {
    text-align: center;
}

.cta-button {
    padding: 20px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

/* Why Strategy Section */
.why-strategy {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.story-card {
    width: 100%;
    margin: 0 auto 60px;
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: justify;
}

.story-card h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2c3e50;
    text-align: center;
}

.story-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.takeaways-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.takeaway-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.takeaway-card:hover {
    transform: translateY(-5px);
}

.takeaway-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.takeaway-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.takeaway-card p {
    color: #666;
    line-height: 1.6;
}

.takeaway-card.mentors {
    border-top: 4px solid #3498db;
}

.takeaway-card.hours {
    border-top: 4px solid #f39c12;
}

.takeaway-card.clarity {
    border-top: 4px solid #27ae60;
}

.takeaway-card.peers {
    border-top: 4px solid #9b59b6;
}

/* What You'll Get Section */
.what-you-get {
    padding: 80px 0;
    background: white;
}

.what-you-get h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border-top: 4px solid;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.feature-tagline {
    font-size: 0.9rem;
    font-style: italic;
    color: #666;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

.feature-card.strategy {
    border-top-color: #3498db;
}

.feature-card.insights {
    border-top-color: #f39c12;
}

.feature-card.reviews {
    border-top-color: #e74c3c;
}

.feature-card.mentor {
    border-top-color: #27ae60;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: #f8f9fa;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.step {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #667eea;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-icon {
    font-size: 3rem;
    margin: 20px 0;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* Why Learn From Me Section */
.why-learn-from-me {
    padding: 80px 0;
    background: white;
}

.why-learn-from-me h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
}

.credibility-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.intro-section {
    text-align: center;
}

.photo-placeholder {
    margin-bottom: 30px;
}

.photo {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    margin: 0 auto;
    color: white;
}

.intro-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
}

.credibility-cards {
    display: grid;
    gap: 20px;
}

.cred-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-left: 4px solid;
    transition: transform 0.3s ease;
}

.cred-card:hover {
    transform: translateX(10px);
}

.cred-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cred-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.cred-card p {
    color: #666;
    line-height: 1.6;
}

.cred-card.iit {
    border-left-color: #3498db;
}

.cred-card.mckinsey {
    border-left-color: #f39c12;
}

.cred-card.startup {
    border-left-color: #27ae60;
}

.cred-card.coach {
    border-left-color: #9b59b6;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: #f8f9fa;
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.pricing-card.accelerator {
    border: 3px solid #667eea;
    transform: scale(1.05);
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.plan-subtitle {
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
}

.price {
    font-size: 3rem;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 30px;
}

.features-list {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    flex-grow: 1;
}

.features-list li {
    padding: 10px 0;
    color: #555;
    line-height: 1.6;
}

.plan-description {
    color: #666;
    font-style: italic;
    margin-bottom: 30px;
}

.plan-button {
    width: fit-content;
    padding: 15px 40px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
    align-self: center;
}

.plan-button:hover {
    background: #5a6fd8;
    transform: translateY(-2px);
}

/* Plans Comparison Table */
.plans-comparison {
    margin-top: 80px;
}

.plans-comparison h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #2c3e50;
}

.comparison-table-container {
    overflow-x: auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.comparison-table th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px 15px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
}

.comparison-table th:first-child {
    text-align: left;
    background: #2c3e50;
}

.comparison-table .plan-subtitle {
    font-size: 0.85rem;
    font-weight: 400;
    color: white;
    opacity: 0.9;
    display: block;
    margin-top: 5px;
}

.comparison-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
    font-size: 1rem;
    vertical-align: middle;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    background: #f8f9fa;
    color: #2c3e50;
}

.comparison-table tr:nth-child(even) td:first-child {
    background: #e9ecef;
}

.comparison-table tr:hover td {
    background: #f8f9fa;
}

.comparison-table tr:hover td:first-child {
    background: #e9ecef;
}

.comparison-table td:not(:first-child) {
    font-weight: normal;
}

.comparison-table td:not(:first-child):contains("✔") {
    font-weight: bold;
}

.comparison-table td:contains("✔") {
    color: #28a745;
}

.comparison-table td:contains("–") {
    color: #6c757d;
}

/* Founder's Note Section */
.founders-note {
    padding: 80px 0;
    background: white;
}

.founders-note h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
}

.note-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.note-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
}

.doubts-list, .benefits-list {
    margin: 20px 0;
    padding-left: 20px;
}

.doubts-list li, .benefits-list li {
    margin-bottom: 10px;
    color: #555;
}

.signature {
    font-weight: bold;
    font-style: italic;
    color: #667eea;
    margin-top: 30px;
}

/* Dedication Section */
.dedication {
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.dedication p:first-child {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.dedication p:last-child {
    font-size: 1.2rem;
    opacity: 0.9;
    font-style: italic;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    color: #667eea;
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-brand p {
    color: #bdc3c7;
    line-height: 1.6;
    font-size: 1.1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-section h4 {
    color: #ecf0f1;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #667eea;
}

.footer-section ul li:not(:has(a)) {
    color: #bdc3c7;
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #95a5a6;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.footer-bottom p:first-child {
    font-weight: 500;
}

/* Buy Now Popup */
.buy-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.buy-popup.show {
    display: flex !important;
    opacity: 1;
}

.buy-popup-content {
    background: white;
    padding: 0;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.buy-popup.show .buy-popup-content {
    transform: scale(1);
}

.buy-popup-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px 30px;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.buy-popup-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.buy-close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.buy-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.buy-popup-body {
    padding: 30px;
}

.buy-popup-description {
    color: #666;
    margin-bottom: 25px;
    text-align: center;
    line-height: 1.6;
}

.buy-popup-body form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.buy-popup-body input {
    padding: 15px 20px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.buy-popup-body input:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.buy-popup-body button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.buy-popup-body button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.buy-popup-body button:active {
    transform: translateY(0);
}

/* Success Popup */
.success-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-popup.show {
    opacity: 1;
    visibility: visible;
}

.success-popup-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.success-popup.show .success-popup-content {
    transform: scale(1);
}

.success-icon {
    margin-bottom: 20px;
}

.checkmark {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #4CAF50;
    stroke-miterlimit: 10;
    margin: 0 auto;
    box-shadow: inset 0px 0px 0px #4CAF50;
    animation: fill 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #4CAF50;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 30px #4CAF50;
    }
}

.success-popup-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.success-popup-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.success-close-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.success-close-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

/* Legal Pages */
.legal-page {
    padding: 120px 0 80px 0;
    background: #f8f9fa;
    min-height: 100vh;
}

.legal-page h1 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 700;
}

.last-updated {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-bottom: 60px;
    font-size: 1rem;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 1.5rem;
    color: #333;
    margin: 40px 0 20px 0;
    font-weight: 600;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
}

.legal-content h3 {
    font-size: 1.2rem;
    color: #555;
    margin: 25px 0 15px 0;
    font-weight: 600;
}

.legal-content p {
    color: #666;
    margin-bottom: 20px;
    font-size: 1rem;
}

.legal-content ul,
.legal-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content li {
    color: #666;
    margin-bottom: 10px;
    font-size: 1rem;
}

.legal-content strong {
    color: #333;
    font-weight: 600;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
}

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

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #007bff;
    transition: transform 0.3s ease;
    min-width: 30px;
    text-align: center;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 30px 25px 30px;
    margin: 0;
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 20px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero {
        padding: 100px 0 80px 0;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-form h3 {
        text-align: center;
    }
    
    .credibility-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-card {
        padding: 40px 30px;
    }
    
    .takeaways-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.accelerator {
        transform: none;
    }
    
    .founder-photo {
        width: 200px;
        height: 200px;
    }
    
    .founder-name {
        font-size: 1.3rem;
    }
    
    .plans-comparison h3 {
        font-size: 1.5rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
        font-size: 0.9rem;
    }
    
    .comparison-table .plan-subtitle {
        font-size: 0.75rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 80px 0 60px 0;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-form {
        padding: 30px 20px;
    }
    
    .story-card {
        padding: 30px 20px;
    }
    
    .impact-blocks, .takeaways-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .founder-photo {
        width: 180px;
        height: 180px;
    }
    
    .founder-name {
        font-size: 1.2rem;
    }
    
    .footer {
        padding: 40px 0 20px 0;
    }
    
    .footer-brand h3 {
        font-size: 1.5rem;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
    }
    
    .faq h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .faq-question {
        padding: 20px 20px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 15px;
    }
    
    .faq-answer p {
        padding: 0 20px 20px 20px;
        font-size: 0.95rem;
    }
    
    .legal-page {
        padding: 100px 0 60px 0;
    }
    
    .legal-page h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .legal-content {
        padding: 40px 30px;
        margin: 0 20px;
    }
    
    .legal-content h2 {
        font-size: 1.3rem;
        margin: 30px 0 15px 0;
    }
    
    .legal-content h3 {
        font-size: 1.1rem;
        margin: 20px 0 10px 0;
    }
    
    .legal-content p,
    .legal-content li {
        font-size: 0.95rem;
    }
}
