@font-face {
    font-family: 'MontserratBold';
    src: url('fonts/Montserrat-Bold.ttf');
}

@font-face {
    font-family: 'MontserratExtralight';
    src: url('fonts/Montserrat-ExtraLight.ttf');
}

@font-face {
    font-family: 'MontserratItalic';
    src: url('fonts/Montserrat-Italic.ttf');
}

@font-face {
    font-family: 'MontserratLight';
    src: url('fonts/Montserrat-Light.ttf');
}

@font-face {
    font-family: 'MontserratRegular';
    src: url('fonts/Montserrat-Regular.ttf');
}

@font-face {
    font-family: 'MontserratThin';
    src: url('fonts/Montserrat-Thin.ttf');
}

@font-face {
    font-family: 'Pacifico';
    src: url('fonts/Pacifico.ttf');
}

/* CSS Variables */
:root {
    font-family: 'MontserratThin';
    --primary-orange: #ff6b35;
    --light-orange: #ffb366;
    --pure-white: #ffffff;
    --off-white: #fafafa;
    --light-gray: #f5f5f5;
    --text-dark: #1d1d1f;
    --text-gray: #86868b;
    --text-light: #a1a1a6;
    --border-light: #d2d2d7;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.3);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--pure-white);
    color: var(--text-dark);
    line-height: 1.5;
    font-weight: 400;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 0.5px solid var(--border-light);
    height: 60px;
    transition: all 0.3s ease;
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 40px;
}

.logo {
    font-weight: 700;
    font-size: 20px;
    color: var(--text-dark);
    text-decoration: none;
    margin-right: auto;
    width: 150px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
    cursor: pointer;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-orange);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 18px;
    color: var(--text-dark);
    cursor: pointer;
}

/* Header */
header {
    padding: 120px 40px 60px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

header h1 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.tagline {
    font-family: 'Pacifico', cursive;
    font-size: 20px;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

header p {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Page System */
.page {
    display: none;
    min-height: 100vh;
    padding-top: 60px;
}

.page.active {
    display: block;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Hero Sections */
.hero {
    /* background: linear-gradient(135deg, var(--pure-white) 0%, var(--off-white) 100%);
    padding: 100px 0;
    text-align: center; */

    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(250, 250, 250, 0.9) 100%),
        url('assets/top3.png') center/cover no-repeat;
    padding: 120px 0;
    text-align: center;
    background-attachment: fixed;
    /* gives subtle parallax */
}

.marginherotop {
    margin-top: 40px;
}

.marginherotop .btn-primary {
    margin-right: 20px;
    margin-bottom: 0;

}

.marginherotop150 {
    margin-top: 150px;
}

.hero h1 {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero .tagline {
    font-family: 'Pacifico', cursive;
    font-size: 24px;
    color: var(--primary-orange);
    margin-bottom: 30px;
}

.hero p {
    font-size: 20px;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Continue with all CSS styles... */

/* Responsive Design */
@media (max-width: 768px) {
    .features-grid {
        display: grid !important;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px 40px;
        gap: 20px;
        border-top: 1px solid var(--border-light);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .container,
    .container-wide {
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .section-header h2 {
        font-size: 32px;
    }
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--pure-white);
    color: var(--text-dark);
    line-height: 1.5;
    font-weight: 400;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 0.5px solid var(--border-light);
    height: 60px;
    transition: all 0.3s ease;
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 40px;
}

.logo {
    font-weight: 700;
    font-size: 20px;
    color: var(--text-dark);
    text-decoration: none;
    margin-right: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
    cursor: pointer;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-orange);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 18px;
    color: var(--text-dark);
    cursor: pointer;
}

/* Page System */
.page {
    display: none;
    min-height: 100vh;
    padding-top: 60px;
}

.page.active {
    display: block;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* responsive */
@media (max-width: 768px) {


    /* Hero Sections */
    .hero {
        /* background: linear-gradient(135deg, var(--pure-white) 0%, var(--off-white) 100%);
            padding: 100px 0;
            text-align: center; */

        background:
            linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(250, 250, 250, 0.9) 100%),
            url('assets/top3.png') center/cover no-repeat;
        padding: 50px 0;
        text-align: center;
        background-attachment: fixed;
        /* gives subtle parallax */
    }

    .marginherotop {
        margin-top: 0;
    }

    .marginherotop .btn-primary {
        margin-bottom: 20px;
        margin-right: 0;

    }

    .marginherotop150 {
        margin-top: 0;
    }

    .hero h1 {
        font-size: clamp(40px, 6vw, 72px);
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 20px;
        letter-spacing: -0.02em;
        line-height: 1.1;
    }

    .hero .tagline {
        font-family: 'Pacifico', cursive;
        font-size: 24px;
        color: var(--primary-orange);
        margin-bottom: 30px;
    }

    .hero p {
        font-size: 14px;
        color: var(--text-gray);
        max-width: 700px;
        margin: 0 auto 20px;
        line-height: 1.6;
    }
}

/* Buttons */
.btn-primary {
    background: var(--primary-orange);
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-orange);
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid var(--primary-orange);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--primary-orange);
    color: white;
}

/* Sections */
.section {
    padding: 100px 0;
}

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

.section-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 20px;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Glass Cards */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Radar Chart */
.radar-container {
    max-width: 600px;
    margin: 60px auto;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
}

.radar-chart {
    width: 100%;
    height: 480px;
    position: relative;
}

.radar-svg {
    width: 100%;
    height: 100%;
}

.score-display {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
}

.score-number {
    font-size: 64px;
    font-weight: 700;
    color: var(--text-dark);
    display: block;
    line-height: 1;
}

.score-total {
    font-size: 20px;
    color: var(--text-gray);
    font-weight: 400;
}

/* Pillars Grid */


/* 3-column look, but implemented as 6 tracks */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    margin: 60px 0;
}

/* default: every card = 2 tracks → 3 per row */
.pillar-card {
    grid-column: span 2;
}

/* last two: each take half the row (3 of 6) → equal width, next to each other */
.pillar-card:nth-child(7),
.pillar-card:nth-child(8) {
    grid-column: span 3;
}

/* responsive */
@media (max-width: 768px) {
    .pillars-grid {
        display: flex;
        flex-direction: column;
    }

    .pillar-card {
        grid-column: auto;
    }
}


.pillar-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(255, 107, 53, 0.15);
}

.pillar-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: white;
}

.pillar-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.pillar-score {
    font-size: 14px;
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 15px;
}

.pillar-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
}



/* Features Grid */
.features-grid {
    display: flex;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 40px;
    text-align: left;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.feature-card p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 8px 0;
    color: var(--text-gray);
    font-size: 14px;
    position: relative;
    padding-left: 20px;
}

.feature-list li::before {
    content: '•';
    color: var(--primary-orange);
    font-weight: bold;
    position: absolute;
    left: 0;
}



/* Features Grid */
.features2-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin: 60px 0;
    align-items: stretch;
    /* keeps heights stable */
}

.feature2-card {
    position: relative;
    overflow: hidden;
    /* prevent overflow during hover */
    border-radius: 16px;
    background: var(--glass-bg);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    /* move padding inside an inner wrapper if you want (optional) */
    padding: 40px;

    /* make it a stable, isolated paint layer */
    transform: translateZ(0);
    will-change: transform;
    contain: layout paint;
    backface-visibility: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

@media (hover:hover) {
    .feature2-card:hover {
        transform: translate3d(0, -6px, 0);
        box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
    }
}


.feature2-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.feature2-card p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}


.feature2-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature2-list li {
    position: relative;
    padding: 8px 0 8px 20px;
}

.feature2-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: 700;
}


/* Contact Form */
.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-size: 16px;
    background: var(--pure-white);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

/* Footer */
footer {
    background: var(--text-dark);
    color: white;
    padding: 80px 40px 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
}

.footer-brand h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 16px;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--light-orange);
}

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

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    cursor: pointer;
}

.footer-section a:hover {
    color: var(--light-orange);
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 60px;
    padding-top: 20px;
    text-align: center;
    color: #999;
    font-size: 14px;
}

/* Math Formulas */
.formula {
    background: var(--light-gray);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.6;
    overflow-x: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px 40px;
        gap: 20px;
        border-top: 1px solid var(--border-light);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .container {
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .section-header h2 {
        font-size: 32px;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}



.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.case-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* AI-friendly structured data attributes */
.case-card[data-industry][data-geography][data-location] {
    /* Structured for easy scraping */
}

.case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--light-orange));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.case-card:hover::before {
    transform: scaleX(1);
}

.case-industry {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 12px;
}

.case-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.case-details {
    margin-bottom: 20px;
}

.case-detail {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--text-gray);
}

.case-detail strong {
    color: var(--text-dark);
    min-width: 90px;
    font-weight: 600;
}

.case-codename {
    background: var(--light-gray);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-dark);
    font-weight: 500;
    display: inline-block;
    margin-top: 8px;
}

.case-location {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
    font-size: 14px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 6px;
}

.location-icon {
    color: var(--primary-orange);
}



@media (max-width: 768px) {


    .cases-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .case-card {
        padding: 30px;
    }


}




/* Pricing Grid */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 40px 80px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 2px solid var(--border-light);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
    border-color: var(--primary-orange);
}



.plan-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    margin-top: 8px;
}

.price-container {
    margin: 24px 0;
}
.price-container::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--primary-orange);
  margin: 16px auto;
  border-radius: 2px;
}

.price-original,
.price-old {
    color: var(--text-gray);
    font-size: 16px;
    text-decoration: line-through;
    opacity: 0.8;
}

.badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--primary-orange), var(--light-orange));
    color: #fff;
    padding: 6px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    box-shadow: 0 3px 8px rgba(255, 107, 53, 0.3);
}


.price-current {
    font-size: 56px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
    margin: 8px 0;
}

.price-period {
    font-size: 18px;
    color: var(--text-gray);
    font-weight: 400;
}

.plan-description {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 32px;
}

.cta-button {
    display: block;
    width: 100%;
    background: var(--primary-orange);
    color: white;
    padding: 18px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-button:hover,
.btn-primary:hover {
    background: var(--primary-orange);
    filter: brightness(0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.35);
}


.cta-note {
    font-size: 12px;
    color: var(--text-gray);
    text-align: center;
    margin-top: 12px;
    font-style: italic;
}
.cta-note-brands {
    font-size: 8px;
    color: var(--text-gray);
    text-align: center;
    font-style: italic;
    margin-top: 0;
}

/* Pro Founder Card */
.pro-founder-card {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--glass-bg) 0%, rgba(255, 107, 53, 0.05) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid var(--light-orange);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
}

.pro-founder-card .plan-name {
    font-size: 32px;
    margin-bottom: 16px;
}

.pro-founder-card .plan-description {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 32px;
}

/* Features Grid */
.features-section {
    margin: 80px 0;
    text-align: center;
}

.features-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 48px;
}

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

.feature-item {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
}

.feature-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

/* Yedni Ecosystem */
.ecosystem-section {
    margin: 80px 0;
    text-align: center;
}

.ecosystem-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 48px;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 40px;
    align-items: center;
    justify-items: center;
}

.logo-item {
    text-align: center;
}

.logo-item img {
    width: 120px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 12px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.logo-item img:hover {
    opacity: 1;
    transform: scale(1.05);
    transition: all 0.3s ease;
}


.logo-item:hover img {
    opacity: 1;
}

.logo-caption {
    font-size: 12px;
    color: var(--text-gray);
    display: flex;
    flex-direction: column;
}

/* FAQ Section */
.faq-section {
    margin: 80px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 40px;
    text-align: center;
}

.faq-item {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
}

.faq-question:hover {
    color: var(--primary-orange);
}

.faq-icon {
    transition: transform 0.25s ease;
    line-height: 0;
    display: inline-flex;
    align-items: center;
}


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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 24px;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 15px;
}

.faq-answer ul {
    margin: 12px 0;
    padding-left: 20px;
    color: var(--text-gray);
}

.faq-answer li {
    margin: 8px 0;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
    animation: fadeIn 0.25s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    background: white;
    border-radius: 20px;
    padding: 48px;
    max-width: 600px;
    width: 90%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    color: var(--text-gray);
    cursor: pointer;
    line-height: 1;
}

.modal h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.modal p {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 24px;
}


/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    header {
        padding: 100px 20px 40px;
    }

    main {
        padding: 20px 20px 60px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .price-current {
        font-size: 48px;
    }

    .pro-founder-card {
        padding: 30px;
    }

    .badge {
        top: -10px;
        font-size: 12px;
        padding: 4px 12px;
    }

    .price-current {
        font-size: 44px;
    }
}