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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header Styles */
.header {
    background: #FAF0E6;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 50;
}

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

.header-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 86px;
    overflow: hidden;
}

.logo-container {
    margin: -8px 0;
}

.logo {
    height: 200px;
    width: auto;
    object-fit: contain;
    border-radius: 0.5rem;
    transform: translateY(5px);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #2563eb;
}

.header-buttons {
    display: flex;
    align-items: center;
}

.login-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #2563eb;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.login-btn:hover {
    background: #1d4ed8;
}

.login-icon {
    width: 16px;
    height: 16px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #374151;
    cursor: pointer;
    padding: 8px;
    margin-left: 8px;
}

.hamburger-icon {
    width: 24px;
    height: 24px;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-nav-link {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
    transition: color 0.2s ease;
}

.mobile-nav-link:hover {
    color: #2563eb;
}

.mobile-nav-login {
    background: #2563eb;
    color: white !important;
    text-align: center;
    border-radius: 6px;
    padding: 12px 16px !important;
    border-bottom: none !important;
}

.mobile-nav-login:hover {
    background: #1d4ed8;
    color: white !important;
}

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

/* Hero Section */
.hero-section {
    background: linear-gradient(to right, #2563eb, #4338ca);
    color: white;
    padding: 80px 0;
}

.hero-content {
    text-align: center;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 24px;
    color: white;
    line-height: 1.1;
}

.hero-highlight {
    color: #fbbf24;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 32px;
    color: #bfdbfe;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.625;
}

.hero-tagline {
    font-size: 1.125rem;
    color: #bfdbfe;
    margin-bottom: 32px;
    font-style: italic;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 64rem;
    margin: 0 auto 40px auto;
}

.feature-card {
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.feature-yellow {
    background-color: #fef3c7;
    border: 1px solid #f59e0b;
}

.feature-blue {
    background-color: #dbeafe;
    border: 1px solid #3b82f6;
}

.feature-green {
    background-color: #d1fae5;
    border: 1px solid #10b981;
}

.feature-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 12px auto;
    display: block;
}

.feature-yellow .feature-icon {
    color: #d97706;
}

.feature-blue .feature-icon {
    color: #2563eb;
}

.feature-green .feature-icon {
    color: #059669;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #111827;
}

.feature-card p {
    color: #374151;
    font-size: 14px;
    line-height: 1.4;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1.5rem;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4rem;
    }
}

/* Button Styles */
.btn-primary {
    background: #eab308;
    color: #000000;
    padding: 16px 32px;
    font-size: 1.125rem;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: #facc15;
    transform: scale(1.05);
}

.btn-secondary {
    background: #dbeafe;
    color: black;
    padding: 10px 32px;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    display: inline-block;
}

.btn-secondary:hover {
    background: #2563eb;
    color: white;
}

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

.how-it-works-header {
    text-align: center;
    margin-bottom: 64px;
}

.how-it-works-title {
    font-size: 3rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 16px;
}

.how-it-works-highlight {
    color: #000000;
}

.how-it-works-description {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.how-it-works-steps {
    margin-bottom: 64px;
}

.step-card {
    display: flex;
    align-items: flex-start;
    margin-bottom: 48px;
    position: relative;
}

.step-card:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 24px;
    top: 48px;
    bottom: -48px;
    width: 2px;
    background: linear-gradient(to bottom, #eab308, #fbbf24);
    z-index: 1;
}

.step-number {
    width: 48px;
    height: 48px;
    background: #eab308;
    color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
    margin-right: 32px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 8px rgba(234, 179, 8, 0.3);
}

.step-content {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

@media (min-width: 1024px) {
    .step-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .step-card:nth-child(even) .step-content {
        direction: rtl;
    }
    
    .step-card:nth-child(even) .step-text {
        direction: ltr;
    }
}

.step-image {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid #e2e8f0;
}

.step-screenshot {
    width: 100%;
    height: auto;
    display: block;
}

.step-text {
    padding: 8px;
}

.step-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 16px;
}

.step-description {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.7;
}

.how-it-works-cta {
    text-align: center;
    padding: 48px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid #eab308;
}

.cta-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 24px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .how-it-works-title {
        font-size: 2rem;
    }
    
    .how-it-works-description {
        font-size: 1.125rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.125rem;
        margin-right: 24px;
    }
    
    .step-title {
        font-size: 1.25rem;
    }
    
    .step-description {
        font-size: 1rem;
    }
    
    .cta-text {
        font-size: 1.25rem;
    }
}

/* Founder Section */
.founder-section {
    padding: 48px 0;
    background: linear-gradient(to right, #1e293b, #0f172a);
    color: white;
}

.founder-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
}

@media (min-width: 768px) and (max-width: 1023px) {
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        justify-items: center;
    }
    
    .founder-left {
        display: none;
    }
    
    .founder-right {
        width: 100%;
        align-items: center;
    }
}

@media (min-width: 1024px) {
    .founder-grid {
        grid-template-columns: 1.2fr 1fr;
        gap: 48px;
        align-items: center;
    }
}

.founder-left {
    width: 100%;
    max-width: none;
    margin: 0 auto;
}

@media (min-width: 768px) and (max-width: 1023px) {
    .founder-left {
        display: none;
    }
}

@media (min-width: 1024px) {
    .founder-left {
        margin: 0;
        display: block;
    }
}

.founder-story-tablet {
    display: none;
}

@media (min-width: 768px) and (max-width: 1023px) {
    .founder-story-tablet {
        display: block;
        margin-top: 32px;
        margin-bottom: 32px;
        text-align: center;
    }
    
    .founder-story-tablet .founder-title {
        text-align: center;
    }
    
    .founder-story-tablet .founder-text {
        text-align: left;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
}

.founder-continuation {
    margin-top: 48px;
    width: 100%;
    max-width: 100%;
}

@media (min-width: 1024px) {
    .founder-continuation {
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }
}

.founder-photo {
    position: relative;
    width: 224px;
    height: 288px;
    margin: 0 auto;
}

.founder-photo .photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.photo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 12px;
}

.photo-caption {
    text-align: center;
    font-size: 14px;
    margin-top: 8px;
    color: #bfdbfe;
}

/* Container for logos and credentials side-by-side */
.credentials-container {
    margin-top: 32px;
    display: flex !important;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    width: 100%;
}

@media (min-width: 768px) {
    .credentials-container {
        flex-direction: row !important;
        gap: 24px;
        align-items: flex-start;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .credentials-container {
        justify-content: flex-start;
        margin-top: 48px;
    }
}

.company-logos {
    display: block;
    flex: 0 0 auto;
}

@media (min-width: 768px) {
    .company-logos {
        flex: 0 0 auto;
    }
}

.company-logos > div {
    background: white;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: fit-content;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .company-logos > div {
        margin: 0;
    }
}

@media (min-width: 1024px) {
    .company-logos > div {
        margin: 0;
    }
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    align-items: center;
    max-width: 220px;
    width: 100%;
}

@media (min-width: 768px) {
    .logos-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 280px;
    }
}

@media (min-width: 1024px) {
    .logos-grid {
        max-width: 280px;
    }
}

.logos-grid .logo {
    height: 48px;
    width: 100%;
    max-width: 90px;
    object-fit: contain;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .logos-grid .logo {
        height: 64px;
        max-width: none;
    }
}

.logos-grid .logo:nth-child(2) {
    height: 72px;
}

@media (min-width: 768px) {
    .logos-grid .logo:nth-child(2) {
        height: 96px;
    }
}

.logos-grid .logo:nth-child(4),
.logos-grid .logo:nth-child(5) {
    transform: translateY(-5px);
}

@media (min-width: 768px) {
    .logos-grid .logo:nth-child(4),
    .logos-grid .logo:nth-child(5) {
        transform: translateY(-10px);
    }
}

.logos-grid .logo:nth-child(6) {
    height: 40px;
    transform: translateY(-5px);
}

@media (min-width: 768px) {
    .logos-grid .logo:nth-child(6) {
        height: 48px;
        transform: translateY(-10px);
    }
}

.credentials {
    background: rgba(51, 65, 85, 0.5);
    border-radius: 12px;
    padding: 16px;
    display: block;
    flex: 1 1 auto;
    width: 100%;
    max-width: 100%;
}

@media (min-width: 768px) and (max-width: 1023px) {
    .credentials {
        flex: 0 0 auto;
        width: 380px;
        max-width: 380px;
    }
}

@media (min-width: 1024px) {
    .credentials {
        flex: 1 1 auto;
        width: auto;
        max-width: 600px;
    }
}

.credentials-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #bfdbfe;
}

.credentials-line {
    width: 100%;
    height: 1px;
    background: #60a5fa;
    margin-bottom: 12px;
    opacity: 0.5;
}

.credentials-list {
    margin-bottom: 8px;
    text-align: left;
}

.credentials-list p {
    font-size: 12px;
    color: #bfdbfe;
    margin-bottom: 6px;
    text-align: left;
    word-wrap: break-word;
    word-break: break-word;
    white-space: normal;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .credentials-list p {
        font-size: 13px;
        margin-bottom: 4px;
    }
}

.credentials-bio {
    font-size: 12px;
    margin-top: 4px;
    margin-bottom: 4px;
    color: #bfdbfe;
}

.founder-right {
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

@media (min-width: 768px) {
    .founder-right {
        align-items: center;
    }
}

@media (min-width: 1024px) {
    .founder-right {
        align-items: flex-end;
        justify-content: flex-start;
    }
}

.founder-photo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 768px) and (max-width: 1023px) {
    .founder-photo-wrapper {
        margin-bottom: 0;
    }
}

@media (min-width: 1024px) {
    .founder-photo-wrapper {
        align-items: flex-start;
    }
}

.founder-title {
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: 24px;
    color: white;
    line-height: 1.2;
}

.founder-highlight {
    color: #60a5fa;
}

.founder-text {
    font-size: 1.125rem;
    margin-bottom: 24px;
    line-height: 1.625;
    color: white;
}

.founder-emphasis {
    color: #fde047;
}

.founder-quote {
    background: rgba(30, 58, 138, 0.5);
    border-left: 4px solid #60a5fa;
    padding: 24px;
    margin-bottom: 24px;
    border-radius: 0 8px 8px 0;
}

.quote-text {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #bfdbfe;
}

.quote-subtext {
    color: white;
}

.differentiators {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.differentiator {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.check-icon {
    height: 24px;
    width: 24px;
    color: #4ade80;
    margin-top: 4px;
    flex-shrink: 0;
}

.differentiator h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: white;
}

.differentiator p {
    color: #bfdbfe;
}

.founder-cta {
    margin-top: 32px;
    text-align: center;
}

.btn-founder {
    padding: 16px 32px;
    background: #1e40af;
    color: #fde047;
    border-radius: 6px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-founder:hover {
    background: #1d4ed8;
    transform: scale(1.05);
}

/* Vision Section */
.vision-section {
    padding: 80px 0;
    background: white;
}

.vision-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 1024px) {
    .vision-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.vision-title {
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: 24px;
    color: #1f2937;
    line-height: 1.2;
}

.vision-highlight {
    color: #2563eb;
}

.vision-description {
    font-size: 1.125rem;
    margin-bottom: 24px;
    color: #4b5563;
    line-height: 1.625;
}

.vision-benefits {
    margin-bottom: 24px;
}

.benefit {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.benefit-icon {
    height: 24px;
    width: 24px;
    color: #10b981;
    margin-right: 12px;
}

.benefit span {
    color: #1f2937;
}

.vision-conclusion {
    font-size: 1.125rem;
    margin-top: 24px;
    font-weight: 500;
    color: #374151;
}

.vision-image {
    border-radius: 8px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    width: 100%;
}

/* Vision conclusion text styling */
.vision-conclusion {
    font-size: 1.125rem;
    margin-top: 2rem;
    font-weight: 500;
    color: #374151;
    text-align: center;
    width: 100%;
}

/* Tablet: Image moves to right of bullets */
@media (min-width: 768px) {
    .vision-grid {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 2rem;
        align-items: start;
    }
    
    .vision-right {
        position: relative;
    }
    
    .vision-image-responsive {
        width: 300px;
        max-width: 300px;
    }
    
    /* Remove overlay on tablet and desktop */
    .vision-right .image-overlay {
        display: none;
    }
}

/* Desktop: Image gets slightly larger */
@media (min-width: 1024px) {
    .vision-image-responsive {
        width: 400px;
        max-width: 400px;
    }
    
    .vision-grid {
        gap: 3rem;
    }
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 8px;
}

.vision-right {
    position: relative;
}

/* Problem Section */
.problem-section {
    background: linear-gradient(to right, #991b1b, #1e293b);
    color: white;
    padding: 80px 0;
}

.problem-content {
    text-align: center;
}

.problem-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 24px;
    color: white;
    line-height: 1.1;
}

.problem-highlight {
    color: #ef4444;
}

.problem-description {
    font-size: 1.25rem;
    margin-bottom: 32px;
    color: #fecaca;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
}

.problem-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .problem-buttons {
        flex-direction: row;
    }
    
    .problem-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 768px) {
    .problem-title {
        font-size: 3.5rem;
    }
}

.btn-urgent {
    background: #eab308;
    color: black;
    padding: 16px 32px;
    font-size: 1.125rem;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.btn-urgent:hover {
    background: #facc15;
    transform: scale(1.05);
}

.btn-secondary-red {
    background: #fee2e2;
    color: black;
    padding: 10px 32px;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-secondary-red:hover {
    background: #dc2626;
    color: white;
}

/* Crisis Section */
.crisis-section {
    padding: 80px 0;
    background: #111827;
    color: white;
}

.crisis-header {
    text-align: center;
    margin-bottom: 64px;
}

.crisis-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .crisis-title {
        font-size: 5rem;
    }
}

.crisis-highlight {
    color: #f87171;
}

.crisis-description {
    font-size: 1.25rem;
    max-width: 64rem;
    margin: 0 auto;
    color: white;
    margin-bottom: 24px;
}

.crisis-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.btn-crisis-yellow {
    background: #fbbf24;
    color: #111827;
    padding: 10px 32px;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.btn-crisis-yellow:hover {
    background: #f59e0b;
    transform: scale(1.05);
}

.crisis-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .crisis-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.crisis-card {
    border-radius: 8px;
    padding: 32px;
    color: white;
}

.crisis-red {
    background: #7f1d1d;
    border: 1px solid #991b1b;
}

.crisis-orange {
    background: #9a3412;
    border: 1px solid #c2410c;
}

.crisis-yellow {
    background: #854d0e;
    border: 1px solid #a16207;
}

.crisis-icon {
    height: 48px;
    width: 48px;
    margin-bottom: 16px;
}

.crisis-red .crisis-icon {
    color: #f87171;
}

.crisis-orange .crisis-icon {
    color: #fb923c;
}

.crisis-yellow .crisis-icon {
    color: #facc15;
}

.crisis-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 16px;
    color: white;
}

.crisis-number {
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: 16px;
}

.crisis-red .crisis-number {
    color: #f87171;
}

.crisis-orange .crisis-number {
    color: #fb923c;
}

.crisis-yellow .crisis-number {
    color: #facc15;
}

.crisis-text {
    margin-bottom: 16px;
}

.crisis-red .crisis-text {
    color: #fecaca;
}

.crisis-orange .crisis-text {
    color: #fed7aa;
}

.crisis-yellow .crisis-text {
    color: #fef3c7;
}

.crisis-list {
    list-style: none;
}

.crisis-list li {
    margin-bottom: 8px;
}

.crisis-red .crisis-list {
    color: #fca5a5;
}

.crisis-orange .crisis-list {
    color: #fdba74;
}

.crisis-yellow .crisis-list {
    color: #fde68a;
}

.crisis-footer {
    text-align: center;
    margin-top: 48px;
}

.crisis-warning {
    font-size: 1.5rem;
    color: #fca5a5;
    font-weight: bold;
}

.crisis-source {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.crisis-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.crisis-link:hover {
    color: white;
    text-decoration: underline;
}

.crisis-red .crisis-link:hover {
    color: #fecaca;
}

.crisis-orange .crisis-link:hover {
    color: #fed7aa;
}

.crisis-yellow .crisis-link:hover {
    color: #fef3c7;
}

.crisis-data-link {
    color: #86efac;
    text-decoration: underline;
    transition: all 0.2s ease;
}

.crisis-data-link:hover {
    color: #bbf7d0;
}

/* Hero Journey Section */
.hero-journey-section {
    padding: 80px 0;
    background: linear-gradient(to right, #059669, #2563eb);
    color: white;
}

.hero-journey-header {
    text-align: center;
    margin-bottom: 64px;
}

.hero-journey-icon {
    height: 64px;
    width: 64px;
    color: #86efac;
    margin: 0 auto 24px auto;
}

.hero-journey-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .hero-journey-title {
        font-size: 5rem;
    }
}

.hero-journey-highlight {
    color: #86efac;
}

.hero-journey-description {
    font-size: 1.25rem;
    color: #86efac;
    max-width: 64rem;
    margin: 0 auto;
}

.hero-journey-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .hero-journey-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.hero-journey-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #86efac;
    border-radius: 8px;
    padding: 32px;
    color: white;
}

.hero-journey-card-icon {
    height: 48px;
    width: 48px;
    color: #86efac;
    margin-bottom: 16px;
}

.hero-journey-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 16px;
}

.hero-journey-card p {
    color: #86efac;
}

/* WISE Section */
.wise-section {
    padding: 80px 0;
    background: white;
}

.wise-header {
    text-align: center;
    margin-bottom: 64px;
}

.wise-header-icon {
    height: 64px;
    width: 64px;
    color: #2563eb;
    margin: 0 auto 24px auto;
}

.wise-title {
    font-size: 2.25rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .wise-title {
        font-size: 4rem;
    }
}

.wise-highlight {
    color: #FFD700;
    font-weight: bold;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000, 2px 2px 4px rgba(0,0,0,0.3);
}

.wise-description {
    font-size: 1.25rem;
    color: #374151;
    max-width: 48rem;
    margin: 0 auto;
}

.wise-research-button {
    margin-top: 32px;
    margin-bottom: 48px;
}

.btn-research {
    background: #facc15;
    color: black;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 8px;
    transition: background-color 0.2s;
    font-size: 1.125rem;
    border: 2px solid black;
    text-decoration: none;
    white-space: nowrap;
}

.btn-research:hover {
    background: #fbbf24;
}

.wise-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .wise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .wise-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.wise-card {
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.wise-w {
    background-color: #eff6ff;
    border: 1px solid #93c5fd;
}

.wise-i {
    background-color: #f0fdf4;
    border: 1px solid #86efac;
}

.wise-s {
    background-color: #faf5ff;
    border: 1px solid #c4b5fd;
}

.wise-e {
    background-color: #fef3c7;
    border: 1px solid #fbbf24;
}

.wise-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.wise-letter {
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-weight: bold;
    font-size: 20px;
}

.wise-w .wise-letter {
    background-color: #1e40af;
}

.wise-i .wise-letter {
    background-color: #15803d;
}

.wise-s .wise-letter {
    background-color: #7c3aed;
}

.wise-e .wise-letter {
    background-color: #d97706;
}

.wise-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: #111827;
}

.wise-card p {
    color: #374151;
}

.wise-learn-more {
    text-align: center;
    margin-top: 48px;
}

.btn-wise {
    background: #2563eb;
    color: white;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 8px;
    transition: background-color 0.2s;
    font-size: 1.125rem;
    text-decoration: none;
    white-space: nowrap;
}

.btn-wise:hover {
    background: #1d4ed8;
}

/* Urgency Section */
.urgency-section {
    padding: 80px 0;
    background: linear-gradient(to right, #b91c1c, #000000);
    color: white;
}

.urgency-header {
    text-align: center;
    margin-bottom: 64px;
}

.urgency-icon {
    height: 64px;
    width: 64px;
    color: #f87171;
    margin: 0 auto 24px auto;
}

.urgency-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 24px;
    color: white;
}

@media (min-width: 768px) {
    .urgency-title {
        font-size: 5rem;
    }
}

.urgency-highlight {
    color: #f87171;
}

.urgency-description {
    font-size: 1.25rem;
    color: #fca5a5;
    max-width: 64rem;
    margin: 0 auto;
}

.urgency-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
}

@media (min-width: 768px) {
    .urgency-grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
}

.urgency-subtitle {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 24px;
    color: white;
}

@media (min-width: 768px) {
    .urgency-subtitle {
        font-size: 1.75rem;
    }
}

.urgency-positive {
    color: white;
}

.urgency-list {
    list-style: none;
}

.urgency-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .urgency-list li {
        margin-bottom: 16px;
    }
}

.urgency-warning-icon {
    height: 20px;
    width: 20px;
    color: #f87171;
    margin-right: 8px;
    margin-top: 4px;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .urgency-warning-icon {
        height: 24px;
        width: 24px;
        margin-right: 12px;
    }
}

.urgency-check-icon {
    height: 20px;
    width: 20px;
    color: #86efac;
    margin-right: 8px;
    margin-top: 4px;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .urgency-check-icon {
        height: 24px;
        width: 24px;
        margin-right: 12px;
    }
}

.urgency-list span {
    line-height: 1.6;
}

.urgency-negative span {
    color: #fca5a5;
}

.urgency-positive-list span {
    color: #86efac;
}

.urgency-right {
    background: linear-gradient(135deg, #059669, #047857);
    padding: 24px;
    border-radius: 8px;
}

@media (min-width: 768px) {
    .urgency-right {
        padding: 32px;
    }
}

.urgency-cta {
    margin-top: 32px;
    text-align: center;
}

.btn-hero {
    background: #eab308;
    color: black;
    padding: 16px 32px;
    font-size: 1.125rem;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.btn-hero:hover {
    background: #facc15;
    transform: scale(1.05);
}

/* Relate Section */
.relate-section {
    padding: 80px 0;
    background: #111827;
}

.relate-header {
    text-align: center;
    margin-bottom: 32px;
}

.relate-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 16px;
    color: white;
}

@media (min-width: 768px) {
    .relate-title {
        font-size: 3rem;
    }
}

.relate-image-container {
    position: relative;
    max-width: 96rem;
    margin: 0 auto;
}

.relate-image {
    width: 100%;
    height: 384px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
    .relate-image {
        height: 500px;
    }
}

.relate-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent, transparent);
    border-radius: 8px;
}

.relate-content {
    position: absolute;
    bottom: 32px;
    left: 32px;
    right: 32px;
    text-align: center;
}

.relate-text {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .relate-text {
        font-size: 1.5rem;
    }
}

.btn-stop {
    background: #dc2626;
    color: white;
    padding: 16px 32px;
    font-size: 1.125rem;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    white-space: nowrap;
}

@media (max-width: 640px) {
    .btn-stop {
        font-size: 1rem;
        padding: 14px 28px;
    }
}

@media (max-width: 480px) {
    .btn-stop {
        font-size: 0.875rem;
        padding: 12px 24px;
    }
}

.btn-stop:hover {
    background: #b91c1c;
    transform: scale(1.05);
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: linear-gradient(145deg, #e5e7eb 0%, #d1d5db 25%, #9ca3af 75%, #6b7280 100%);
}

.features-header {
    text-align: center;
    margin-bottom: 64px;
}

.features-title {
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: 16px;
    color: #1f2937;
}

@media (min-width: 768px) {
    .features-title {
        font-size: 4rem;
    }
}

.features-highlight {
    color: #2563eb;
}

.features-description {
    font-size: 1.25rem;
    color: #000000;
    font-style: italic;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 80rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 50rem;
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 75rem;
    }
}

.feature-card-full {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 32px;
    transition: box-shadow 0.2s ease;
}

.feature-card-full:nth-child(1) {
    background: #eff6ff;
}

.feature-card-full:nth-child(2) {
    background: #f0fdf4;
}

.feature-card-full:nth-child(3) {
    background: #faf5ff;
}

.feature-card-full:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.feature-card-icon {
    height: 48px;
    width: 48px;
    margin-bottom: 16px;
}

.feature-card-full:nth-child(1) .feature-card-icon {
    color: #2563eb;
}

.feature-card-full:nth-child(2) .feature-card-icon {
    color: #059669;
}

.feature-card-full:nth-child(3) .feature-card-icon {
    color: #7c3aed;
}

.feature-card-full h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1f2937;
}

.feature-card-full p {
    margin-bottom: 16px;
    color: #6b7280;
}

.feature-testimonial {
    font-size: 14px;
    font-weight: 600;
}

.feature-card-full:nth-child(1) .feature-testimonial {
    color: #2563eb;
}

.feature-card-full:nth-child(2) .feature-testimonial {
    color: #059669;
}

.feature-card-full:nth-child(3) .feature-testimonial {
    color: #7c3aed;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3a8a, #581c87);
    color: white;
}

.pricing-header {
    text-align: center;
    margin-bottom: 64px;
}

.pricing-badge {
    background: #2563eb;
    color: white;
    padding: 8px 24px;
    border-radius: 9999px;
    display: inline-block;
    margin-bottom: 16px;
    font-weight: bold;
}

.pricing-title {
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: 16px;
    color: white;
}

@media (min-width: 768px) {
    .pricing-title {
        font-size: 3rem;
    }
}

.pricing-highlight {
    color: #fbbf24;
}

.pricing-description {
    font-size: 1.25rem;
    color: #bfdbfe;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 112rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pricing-card {
    border-radius: 8px;
    padding: 24px;
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-free {
    background: linear-gradient(135deg, #059669, #047857);
    border: 2px solid #10b981;
}

.pricing-bronze {
    background: linear-gradient(135deg, #b45309, #92400e);
    border: 2px solid #f59e0b;
}

.pricing-silver {
    background: linear-gradient(135deg, #6b7280, #4b5563);
    border: 2px solid #9ca3af;
}

.pricing-gold {
    background: linear-gradient(135deg, #d97706, #b45309);
    border: 2px solid #fbbf24;
}

.pricing-red {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border: 2px solid #ef4444;
}

.pricing-yellow {
    background: linear-gradient(135deg, #eab308, #ca8a04);
    border: 2px solid #fbbf24;
}

.pricing-indigo {
    background: linear-gradient(135deg, #4f46e5, #3730a3);
    border: 2px solid #6366f1;
}

.pricing-gray {
    background: linear-gradient(135deg, #6b7280, #4b5563);
    border: 2px solid #9ca3af;
}

.pricing-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 8px;
    text-align: center;
}

/* Tier Badge Styles */
.pricing-tier-badge {
    text-align: center;
    margin-bottom: 12px;
}

.tier-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid;
}

/* Badge Color Classes */
.pricing-free-badge {
    background: #10b981;
    color: white;
    border-color: #059669;
}

.pricing-bronze-badge {
    background: #f59e0b;
    color: #92400e;
    border-color: #d97706;
}

.pricing-silver-badge {
    background: #9ca3af;
    color: #374151;
    border-color: #6b7280;
}

.pricing-gold-badge {
    background: #fbbf24;
    color: #92400e;
    border-color: #d97706;
}

.pricing-red-badge {
    background: #ef4444;
    color: white;
    border-color: #dc2626;
}

.pricing-yellow-badge {
    background: #fbbf24;
    color: #92400e;
    border-color: #eab308;
}

.pricing-indigo-badge {
    background: #6366f1;
    color: white;
    border-color: #4f46e5;
}

.pricing-gray-badge {
    background: #9ca3af;
    color: #374151;
    border-color: #6b7280;
}

.pricing-price {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 4px;
    text-align: center;
}

.pricing-period {
    font-size: 14px;
    font-weight: normal;
    text-align: center;
    display: block;
}

.pricing-subtitle {
    font-size: 12px;
    margin-bottom: 16px;
    text-align: center;
}

.pricing-desc {
    margin-bottom: 16px;
    text-align: center;
}

.pricing-features {
    list-style: none;
    margin-bottom: 24px;
    flex-grow: 1;
    padding-left: 0;
}

.pricing-features li {
    margin-bottom: 8px;
    font-size: 14px;
    position: relative;
    padding-left: 20px;
}

.pricing-features li:before {
    content: "•";
    color: currentColor;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.pricing-btn {
    display: block;
    text-align: center;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    margin-top: auto;
}

.pricing-btn-free {
    background: #10b981;
    color: white;
}

.pricing-btn-free:hover {
    background: #059669;
}

.pricing-btn-bronze {
    background: #f59e0b;
    color: #92400e;
}

.pricing-btn-bronze:hover {
    background: #fbbf24;
}

.pricing-btn-silver {
    background: #9ca3af;
    color: white;
}

.pricing-btn-silver:hover {
    background: #6b7280;
}

.pricing-btn-gold {
    background: #fbbf24;
    color: black;
}

.pricing-btn-gold:hover {
    background: #f59e0b;
}

.pricing-btn-red {
    background: #ef4444;
    color: white;
}

.pricing-btn-red:hover {
    background: #dc2626;
}

.pricing-btn-yellow {
    background: #fbbf24;
    color: black;
}

.pricing-btn-yellow:hover {
    background: #eab308;
}

.pricing-btn-indigo {
    background: #6366f1;
    color: white;
}

.pricing-btn-indigo:hover {
    background: #4f46e5;
}

.pricing-btn-gray {
    background: #9ca3af;
    color: white;
}

.pricing-btn-gray:hover {
    background: #6b7280;
}

/* Final CTA Section */
.final-cta-section {
    padding: 80px 0;
    background: #1f2937;
    color: white;
}

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

.final-cta-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 24px;
    color: white;
}

@media (min-width: 768px) {
    .final-cta-title {
        font-size: 4rem;
    }
}

.final-cta-highlight {
    color: #f59e0b;
}

.final-cta-description {
    font-size: 1.25rem;
    margin-bottom: 32px;
    color: #d1d5db;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .final-cta-buttons {
        flex-direction: row;
    }
}

.btn-final-primary {
    background: #059669;
    color: white;
    padding: 16px 32px;
    font-size: 1.125rem;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.btn-final-primary:hover {
    background: #047857;
    transform: scale(1.05);
}

.btn-final-secondary {
    background: #374151;
    color: white;
    padding: 16px 32px;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-final-secondary:hover {
    background: #4b5563;
}

/* Transform Section */
.transform-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white;
}

.transform-content {
    text-align: center;
}

.transform-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 24px;
    color: white;
}

@media (min-width: 768px) {
    .transform-title {
        font-size: 4rem;
    }
}

.transform-description {
    font-size: 1.25rem;
    margin-bottom: 32px;
    color: #c7d2fe;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.btn-transform {
    background: #fbbf24;
    color: black;
    padding: 16px 32px;
    font-size: 1.125rem;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.btn-transform:hover {
    background: #f59e0b;
    transform: scale(1.05);
}

/* Footer */
.footer {
    padding: 16px 0;
    background: #111827;
    color: white;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

@media (min-width: 768px) {
    .footer-bottom {
        align-items: flex-end;
        text-align: right;
    }
}

.footer-logo {
    margin-bottom: -32px;
}

.footer-logo-img {
    height: 64px;
    width: auto;
    object-fit: contain;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .footer-links {
        gap: 24px;
        justify-content: flex-end;
    }
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-copyright {
    font-size: 14px;
    color: #9ca3af;
    text-align: center;
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1000;
    overflow-y: auto;
    padding: 16px;
}

.modal-container {
    background: white;
    border-radius: 12px;
    margin: 32px auto;
    max-width: 64rem;
    width: 100%;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    position: relative;
}

.modal-header {
    padding: 24px;
    border-bottom: 1px solid #e5e7eb;
    text-align: center;
    position: relative;
}

.modal-title {
    font-size: 2rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 8px;
}

.modal-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 32px;
    color: #6b7280;
    text-decoration: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: #f3f4f6;
    color: #111827;
}

.modal-content {
    padding: 24px;
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

@media (min-width: 640px) {
    .modal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.modal-card {
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.modal-card:nth-child(1) {
    background-color: #eff6ff;
    border: 1px solid #93c5fd;
}

.modal-card:nth-child(2) {
    background-color: #f0fdf4;
    border: 1px solid #86efac;
}

.modal-card:nth-child(3) {
    background-color: #faf5ff;
    border: 1px solid #c4b5fd;
}

.modal-card:nth-child(4) {
    background-color: #fef3c7;
    border: 1px solid #fbbf24;
}

.modal-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.modal-letter {
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-weight: bold;
    font-size: 20px;
}

.modal-letter-w {
    background-color: #1e40af;
}

.modal-letter-i {
    background-color: #15803d;
}

.modal-letter-s {
    background-color: #7c3aed;
}

.modal-letter-e {
    background-color: #d97706;
}

.modal-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    color: #111827;
}

.modal-card p {
    color: #374151;
    line-height: 1.6;
}

.modal-separator {
    height: 1px;
    background: #e5e7eb;
    margin: 32px 0;
}

.modal-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .modal-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
}

.modal-benefit-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 16px;
}

.modal-benefit-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.modal-benefit-section li {
    color: #374151;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.modal-benefit-section li:before {
    content: "•";
    color: #2563eb;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.modal-foundation {
    margin-bottom: 32px;
    text-align: center;
}

.modal-foundation h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 16px;
}

.modal-foundation p {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 16px;
}

.btn-research-modal {
    background: #fbbf24;
    color: black;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
    transition: background-color 0.2s ease;
}

.btn-research-modal:hover {
    background: #f59e0b;
}

.modal-cta {
    text-align: center;
    padding: 24px;
    background: #e5e7eb;
    border-radius: 8px;
}

.modal-cta p {
    font-size: 1.125rem;
    color: #374151;
    margin-bottom: 16px;
}

.btn-modal-cta {
    background: #2563eb;
    color: white;
    font-weight: bold;
    padding: 12px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1.125rem;
    transition: background-color 0.2s ease;
    white-space: nowrap;
}

@media (max-width: 640px) {
    .btn-modal-cta {
        font-size: 1rem;
        padding: 10px 28px;
    }
}

@media (max-width: 480px) {
    .btn-modal-cta {
        font-size: 0.875rem;
        padding: 8px 24px;
    }
}

.btn-modal-cta:hover {
    background: #1d4ed8;
}

/* Responsive Design */
@media (max-width: 767px) {
    .header-nav {
        height: 80px;
    }
    
    .logo {
        height: 120px;
        border-radius: 0.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .founder-grid {
        text-align: center;
    }
    
    .company-logos,
    .credentials {
        display: block;
    }
    
    .modal-container {
        margin: 16px;
        max-width: calc(100vw - 32px);
    }
    
    .modal-grid {
        grid-template-columns: 1fr;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus States for Accessibility */
a:focus,
button:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .header,
    .modal-overlay {
        display: none;
    }
}

/* Final CTA Section */
.final-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000, #7f1d1d);
    color: white;
}

.final-cta-header {
    text-align: center;
    margin-bottom: 32px;
}

.clock-icon {
    width: 80px;
    height: 80px;
    color: #ef4444;
    margin: 0 auto 24px auto;
    display: block;
}

.final-cta-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 24px;
}

.final-cta-highlight {
    color: #ef4444;
}

.final-cta-description {
    font-size: 1.5rem;
    color: #fca5a5;
    margin-bottom: 32px;
    line-height: 1.6;
}

.decision-box {
    background: #eab308;
    color: black;
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.decision-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 16px;
}

.decision-subtitle {
    font-size: 1.125rem;
    margin-bottom: 16px;
}

.decision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    text-align: left;
}

.decision-header {
    font-weight: bold;
    margin-bottom: 8px;
}

.decision-negative .decision-header {
    color: #b91c1c;
}

.decision-positive .decision-header {
    color: #15803d;
}

.decision-list {
    font-size: 0.875rem;
    line-height: 1.6;
    list-style: none;
    padding: 0;
}

.decision-list li {
    margin-bottom: 4px;
}

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

.btn-final-cta {
    background: #16a34a;
    color: white;
    font-size: 1.125rem;
    padding: 24px 48px;
    font-weight: bold;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 32px;
    transition: all 0.3s;
}

.btn-final-cta:hover {
    transform: scale(1.05);
}

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

.final-cta-guarantee p {
    font-size: 0.875rem;
    color: #d1d5db;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.contact-header {
    text-align: center;
    margin-bottom: 64px;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 16px;
}

.contact-description {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-icon-blue {
    background: #2563eb;
    color: white;
}

.contact-icon-green {
    background: #059669;
    color: white;
}

.contact-icon-purple {
    background: #7c3aed;
    color: white;
}

.contact-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.contact-content p {
    color: #6b7280;
    margin-bottom: 12px;
}

.contact-content a {
    color: #2563eb;
    font-weight: 500;
    text-decoration: none;
    display: block;
    margin-bottom: 4px;
}

.contact-content a:hover {
    text-decoration: underline;
}

.contact-hours {
    padding: 24px;
    background: #dbeafe;
    border-radius: 8px;
}

.contact-hours h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 12px;
}

.hours-list {
    color: #1e40af;
    line-height: 1.6;
}

.hours-list p {
    margin-bottom: 4px;
}

.hours-note {
    font-size: 0.875rem;
    color: #1d4ed8;
    margin-top: 12px;
}

.contact-form-section {
    background: white;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.form-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 24px;
    text-align: center;
}

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.btn-form-primary {
    width: 100%;
    font-size: 1.125rem;
    padding: 16px;
    font-weight: bold;
    border-radius: 6px;
    transition: all 0.2s;
    color: #000000;
    background: #dbeafe;
    border: none;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
}

.btn-form-primary:hover {
    background: #2563eb;
    color: #ffffff;
}

.btn-form-secondary {
    width: 100%;
    height: 40px;
    padding: 0 16px;
    background: #dbeafe;
    color: black;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
}

.btn-form-secondary:hover {
    background: #2563eb;
    color: white;
}

.form-disclaimer {
    text-align: center;
}

.form-disclaimer p {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 8px;
}

.form-note {
    font-size: 0.75rem;
    color: #9ca3af;
}

.contact-hours-section {
    background: #f9fafb;
    padding: 24px;
    border-radius: 8px;
    margin-top: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.pricing-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: #6b7280;
    font-size: 1.125rem;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .decision-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .final-cta-title {
        font-size: 2rem;
    }
    
    .final-cta-description {
        font-size: 1.125rem;
    }
    
    .contact-title {
        font-size: 2rem;
    }
}