:root {
    --primary-blue: #2563EB;
    --dark-blue: #1E3A8A;
    --accent-purple: #D946EF;
    --accent-yellow: #FACC15;
    --accent-green: #22C55E;
    --text-dark: #0F172A;
    --text-gray: #475569;
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius-md: 12px;
    --radius-lg: 20px;
    --accent-red: #EF4444;
    /* Added for negative/alert blocks */
}

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

body {
    font-family: 'Manrope', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.5;
    overflow-x: hidden;
}

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

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

/* Header */
.header {
    background: var(--bg-white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-blue);
    font-weight: 800;
    font-size: 24px;
}

.logo__icon {
    font-size: 28px;
}

.tagline {
    font-size: 14px;
    color: #fff;
    background: linear-gradient(90deg, #D946EF 0%, #A855F7 100%);
    padding: 8px 16px;
    border-radius: 20px 0 20px 20px;
    font-weight: 600;
    text-align: right;
    box-shadow: var(--shadow-md);
}

/* Hero */
.hero {
    position: relative;
    padding: 100px 0;
    /* Blue gradient fallback when video doesn't load */
    background: linear-gradient(135deg, #1E40AF 0%, #2563EB 50%, #3B82F6 100%);
    overflow: hidden;
    color: white;
    /* Make default text white for contrast on video */
}

.hero__video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    /* Light overlay to keep "white" feel but allow video */
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, rgba(239, 246, 255, 0.85) 100%);
    z-index: 2;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr;
    /* Full width content since image is gone */
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 3;
    max-width: 900px;
    /* Limit width for cleaner look */
    text-align: center;
    /* Center align for impact */
    margin: 0 auto;
}

.hero__content {
    margin: 0 auto;
}

.hero__title {
    font-size: 48px;
    background: var(--primary-blue);
    color: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    line-height: 1.2;
    margin-bottom: 40px;
    box-shadow: var(--shadow-lg);
    font-weight: 800;
}

.hero__title .highlight {
    color: var(--accent-yellow);
    text-decoration: underline;
    text-decoration-thickness: 4px;
}

.hero__features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    /* Center items */
}

.feature-item {
    background: var(--primary-blue);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    transition: transform 0.3s;
    width: fit-content;
    text-align: left;
    box-shadow: var(--shadow-md);
}

.feature-item:hover {
    transform: translateX(0) scale(1.05);
    /* Scale instead of translate for centered */
}

.feature-item i {
    font-size: 24px;
    color: #93C5FD;
}

/* Feature item text adjust for center alignment */
.feature-item p {
    margin: 0;
}

/* Section Common */
.section-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 40px;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 800px;
}

/* Problem */
.problem {
    padding: 80px 0;
    background: #fff;
}

.problem__grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.problem-card {
    background: var(--primary-blue);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    margin-bottom: 15px;
    font-weight: 600;
}

.problem-result {
    background: var(--accent-red);
    /* Changed to red to highlight the problem summary */
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: 700;
    margin-top: 15px;
    border: 2px solid white;
    box-shadow: var(--shadow-md);
}

/* Desire */
.desire {
    padding: 80px 0;
    background: var(--bg-light);
}

.desire__grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.desire-card {
    background: var(--primary-blue);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    /* Added flex for icon + text */
    align-items: center;
    gap: 15px;
    text-align: left;
    box-shadow: var(--shadow-md);
}

.desire-card i {
    font-size: 24px;
    color: var(--accent-yellow);
    /* Icon color */
    flex-shrink: 0;
}

.desire-result {
    background: var(--accent-green);
    /* Green for positive result/desire */
    color: white;
    padding: 20px;
    border-radius: 20px;
    font-weight: 600;
    margin-top: 15px;
    box-shadow: var(--shadow-md);
}

/* Solution */
.solution {
    padding: 80px 0;
    background: #fff;
}

.solution__list {
    list-style: none;
    margin-bottom: 60px;
}

.solution__list li {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 500;
}

.solution__subheading {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 30px;
}

.highlight-pink {
    color: var(--accent-purple);
}

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

.role-card {
    background: var(--primary-blue);
    color: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    position: relative;
    text-align: center;
}

.role-badge {
    background: var(--accent-yellow);
    color: var(--text-dark);
    display: inline-block;
    padding: 5px 20px;
    border-radius: 10px;
    font-weight: 700;
    margin-bottom: 20px;
}

.quote-icon {
    font-size: 60px;
    color: rgba(255, 255, 255, 0.2);
    line-height: 1;
    margin-bottom: 10px;
}

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

/* Criteria */
.criteria {
    padding: 80px 0;
}

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

.criteria-card {
    background: var(--primary-blue);
    color: white;
    padding: 30px;
    padding-right: 90px;
    /* Added space for the absolute number */
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.criteria-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    font-weight: 800;
    background: var(--accent-yellow);
    color: var(--text-dark);
    width: 60px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.highlight-green {
    color: var(--accent-green);
    font-weight: 700;
}

/* Workflow */
.workflow {
    padding: 80px 0;
    background: #fff;
}

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

.workflow-card {
    border: 2px solid #E2E8F0;
    padding: 20px;
    border-radius: var(--radius-md);
    transition: all 0.3s;
}

.workflow-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.step-num {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 10px;
    font-weight: 700;
}

.workflow-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-blue);
    text-transform: uppercase;
}

/* Flow Visual */
.flow-visual {
    padding: 80px 0;
    background: #F0F9FF;
}

.flow-diagram {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.flow-step {
    text-align: center;
    flex: 1;
}

.flow-icon img {
    height: 120px;
    margin: 0 auto 10px;
}

.flow-step p {
    font-weight: 700;
    font-size: 18px;
    color: var(--dark-blue);
}

.flow-arrow {
    font-size: 24px;
    color: var(--primary-blue);
}

/* Economics */
.economics {
    padding: 80px 0;
    background: #fff;
}

.economics__content {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
}

.economics__text ol {
    list-style: none;
    margin: 20px 0;
}

.economics__text ol li {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    background: #FEF3C7;
    /* Light yellow bg for table as in screenshot */
    border-radius: var(--radius-md);
    overflow: hidden;
    font-size: 14px;
}

.data-table th,
.data-table td {
    padding: 10px;
    border: 1px solid #000;
    text-align: center;
}

.data-table th {
    background: transparent;
    font-weight: 700;
}

.green-cell {
    background: var(--accent-green);
    color: white;
    font-weight: 700;
}

/* CRM */
.crm-report {
    padding: 80px 0;
    text-align: center;
}

.crm-mockup {
    margin-top: 40px;
    box-shadow: var(--shadow-lg);
    border-radius: 10px;
    overflow: hidden;
}

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

.pricing__grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.price-card {
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.price-header {
    background: var(--primary-blue);
    padding: 15px 30px;
    color: white;
}

.price-header.dark {
    background: #1E293B;
    /* Individual Dark Blue */
    display: flex;
    justify-content: flex-end;
}

.price-header.dark h3 {
    background: #1E293B;
    padding: 5px 15px;
    border-radius: 5px;
}

.price-body {
    display: grid;
    grid-template-columns: 0.6fr 1.4fr;
}

.price-info-blue {
    background: var(--primary-blue);
    color: white;
    padding: 30px;
    font-weight: 600;
    font-size: 18px;
    display: flex;
    align-items: center;
}

.price-card.standard .price-info-blue,
.price-card.individual .price-info-blue {
    background: #3B82F6;
    /* Lighter blue for standard/individual left panel */
}

.price-info-purple {
    background: #E879F9;
    color: white;
    padding: 10px 30px;
    font-weight: 700;
    grid-column: 2;
    text-align: center;
}

.price-details {
    padding: 30px;
    background: #fff;
    grid-column: 2;
}

.price-details h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
}

.price-list {
    margin-top: 20px;
    list-style: disc;
    padding-left: 20px;
}

.price-list li {
    margin-bottom: 5px;
}

.price-footer {
    grid-column: 1 /span 2;
    background: #F0ABFC;
    /* Violet/Pink footer */
    padding: 20px;
    display: flex;
    justify-content: center;
}

.price-tag {
    display: flex;
    align-items: center;
    gap: 20px;
    color: white;
    font-size: 24px;
    font-weight: 800;
}

.price-tag .amount {
    font-size: 36px;
}

/* Other Products */
.other-products {
    padding: 80px 0;
}

.products-list {
    border: 1px solid #ccc;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.product-item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    border-bottom: 1px solid #ccc;
}

.product-item:last-child {
    border-bottom: none;
}

.product-name {
    padding: 30px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-right: 1px solid #ccc;
    font-size: 18px;
}

.product-desc {
    padding: 30px;
}

.price-small {
    font-weight: 700;
    margin-top: 10px;
}

/* Why Us */
.why-us {
    padding: 80px 0;
}

.expertise-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.expertise-card {
    background: var(--primary-blue);
    color: white;
    padding: 30px;
    border-radius: 50px;
}

.expertise-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* Founders */
.founders {
    padding: 80px 0;
    background: #fff;
}

.founders__grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: stretch;
    /* Ensures all cards are same height */
}

.founder-card {
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    max-width: 400px;
}

.founder-role {
    background: #1E293B;
    color: white;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 15px;
    margin-bottom: 10px;
}

.founder-card h3 {
    margin-bottom: 20px;
}

.founder-image {
    flex-grow: 1;
    /* Takes available space to push bio to bottom */
    display: flex;
    align-items: center;
}

.founder-image img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.founder-bio {
    background: var(--primary-blue);
    color: white;
    padding: 15px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    text-align: left;
    width: 100%;
    margin-top: 20px;
}

.telegram-btn {
    background: white;
    color: var(--primary-blue);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    flex-shrink: 0;
}

/* Footer */
footer {
    padding: 40px 0;
    background: #0F172A;
    color: white;
    text-align: center;
}

/* CRM Report */
.crm-report {
    padding: 100px 0;
}

.crm-report .section-title,
.crm-report .section-subtitle {
    text-align: left;
}

.crm-report .section-subtitle {
    margin-bottom: 40px;
}

.crm-mockup img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

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

    .container {
        padding: 0 15px;
    }

    .hero__container,
    .problem__grid,
    .desire__grid,
    .criteria__grid,
    .economics__content {
        grid-template-columns: 1fr;
    }

    .founders__grid {
        flex-direction: column;
        align-items: center;
    }

    .founder-card {
        max-width: 100%;
    }

    .hero__title {
        font-size: 28px;
    }

    .section-title {
        font-size: 24px;
    }

    .price-body {
        grid-template-columns: 1fr;
    }

    .price-info-purple {
        grid-column: 1;
    }

    .price-details {
        grid-column: 1;
    }

    .product-item {
        grid-template-columns: 1fr;
    }

    .product-name {
        border-right: none;
        border-bottom: 1px solid #ccc;
    }

    .hero__video-bg {
        /* Ensure video covers properly on mobile */
        min-height: 100%;
        min-width: 100%;
    }

    .hero {
        background: linear-gradient(135deg, var(--primary-blue) 0%, #1E40AF 100%);
    }

    .criteria-card {
        padding-right: 30px;
    }

    .criteria-number {
        font-size: 40px;
        top: 10px;
        right: 10px;
    }

    .economics__image img,
    .crm-mockup img {
        max-width: 100%;
        height: auto;
    }

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

    .expertise-cards {
        grid-template-columns: 1fr;
    }

    .role-cards {
        grid-template-columns: 1fr;
    }

    .flow-diagram {
        flex-direction: column;
    }

    .flow-step {
        width: 100%;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }
}