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

:root {
    /* BTS Brand Colors */
    --primary: #2563EB;
    --primary-hover: #1E40AF;
    --text-primary: #111827;
    --bg-main: #FFFFFF;
    --bg-alt: #F9FAFB;
    --border: #E5E7EB;
    --accent: #F97316;
    --footer-bg: #111827;
    --footer-text: #FFFFFF;
    --text-secondary: #6B7280;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Max width */
    --container-width: 1200px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    background: linear-gradient(-45deg, #f0f4ff, #ffffff, #f8faff, #e8f1ff);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    line-height: 1.65;
    font-size: 18px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(249, 115, 22, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

body > * {
    position: relative;
    z-index: 1;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Typography */
h1, h2, h3 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.75rem;
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

h2 {
    font-size: 2.75rem;
    margin-bottom: var(--spacing-md);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

p {
    margin-bottom: var(--spacing-sm);
}

/* Header */
.header {
    position: relative;
    background: #E8EEF5;
    border-bottom: none;
    padding: 1.25rem 0;
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-mark {
    height: 90px;
    width: auto;
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.01em;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #475569;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.cta-button-small {
    padding: 0.65rem 1.75rem;
    background: linear-gradient(135deg, var(--primary) 0%, #1E40AF 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.cta-button-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #E8EEF5 0%, #F5F7FA 100%);
    padding: 10rem 0 8rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
}

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

@media (max-width: 1024px) {
    .hero-content {
        text-align: center;
    }
}

.hero-badge {
    display: inline-block;
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(37, 99, 235, 0.15);
    letter-spacing: 0.01em;
}

.hero-title {
    font-size: 3.75rem;
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin-bottom: 1.75rem;
    font-weight: 700;
    color: #0f172a;
}

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

.hero-description {
    font-size: 1.2rem;
    line-height: 1.75;
    color: #475569;
    font-weight: 400;
    margin-bottom: 3rem;
    max-width: 620px;
}

@media (max-width: 1024px) {
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
}


.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #4a5568;
    font-weight: 400;
    margin-bottom: 3rem;
    max-width: 600px;
}

.hero-highlight {
    position: relative;
    display: inline;
    color: #1a1a1a;
}

.hero-highlight::after {
    content: '';
    position: absolute;
    bottom: 0.15em;
    left: -0.1em;
    right: -0.1em;
    height: 0.4em;
    background: #FFC107;
    z-index: -1;
    border-radius: 2px;
}

.hero-checklist {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin: 2.5rem 0 3rem;
    max-width: 650px;
}

@media (max-width: 1024px) {
    .hero-checklist {
        margin-left: auto;
        margin-right: auto;
    }
}

.hero-check-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-check-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.hero-check-item p {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
}

@media (max-width: 1024px) {
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.hero-badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
    transition: all 0.3s ease;
}

.hero-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.25);
    background: var(--primary);
    color: white;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

@media (max-width: 1024px) {
    .hero-cta-group {
        justify-content: center;
    }
}

.cta-button-secondary {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: none;
}

.cta-button-secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (max-width: 1024px) {
    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }
}

.hero-badge-large {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.75rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.hero-badge-large:hover {
    background: #fafbfc;
    border-color: rgba(37, 99, 235, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.badge-icon-box {
    width: 56px;
    height: 56px;
    background: #f0f7ff;
    border: 1px solid #e0effe;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.hero-badge-large:hover .badge-icon-box {
    background: #e0effe;
    border-color: rgba(37, 99, 235, 0.4);
}

.badge-icon-svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
    stroke-width: 2;
}

.badge-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f172a;
    letter-spacing: 0;
}

.client-trust {
    background: #f8fafc;
    padding: 2rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.trust-text {
    text-align: center;
    font-size: 1.05rem;
    color: #64748b;
    margin: 0;
    font-weight: 400;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, var(--primary) 0%, #1E40AF 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 20px rgba(37, 99, 235, 0.25),
        0 2px 8px rgba(37, 99, 235, 0.15);
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
}

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

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

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 16px 40px rgba(37, 99, 235, 0.35),
        0 4px 12px rgba(37, 99, 235, 0.2);
}

.cta-button.large {
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
}

/* What We Do Section */
.what-we-do {
    background: linear-gradient(180deg, #2d3748 0%, #f1f5f9 100%);
    padding: var(--spacing-xl) 0;
}

.what-we-do .section-title {
    color: #ffffff;
}

.what-we-do .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.what-we-do-single {
    max-width: 1000px;
    margin: 3rem auto 0;
}

.what-single-card {
    background: white;
    padding: 4rem;
    border-radius: 16px;
    border: 3px solid var(--primary);
    box-shadow: 0 20px 80px rgba(37, 99, 235, 0.2);
}

.what-single-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.what-lead {
    font-size: 1.35rem;
    line-height: 1.8;
    color: var(--text-secondary);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.what-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 3rem;
}

.what-feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.what-feature-icon {
    width: 32px;
    height: 32px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.what-feature h4 {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.what-feature p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .what-single-card {
        padding: 2.5rem;
    }
    
    .what-single-card h3 {
        font-size: 2rem;
    }
    
    .what-lead {
        font-size: 1.15rem;
    }
}

/* Section Styles */
section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 820px;
    margin: 0 auto var(--spacing-lg);
    line-height: 1.7;
    font-weight: 400;
}

/* Challenges Section */
.challenges {
    background: linear-gradient(180deg, #f1f5f9 0%, #f8fafc 100%);
    position: relative;
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

@media (max-width: 1024px) {
    .challenges-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.challenge-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    transition: all 0.25s ease;
    border: 1px solid var(--border);
}

.challenge-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: #D1D5DB;
}

.challenge-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.25rem;
    color: var(--primary);
    stroke-width: 1.5;
}

.challenge-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-weight: 600;
}

.challenge-card p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 0;
}

/* Process Section */
.process {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    border-top: none;
    border-bottom: none;
}

.process-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: var(--spacing-lg);
}

.process-header-content .section-title,
.process-header-content .section-subtitle {
    text-align: left;
}

.process-header-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.process-header-image img {
    width: 100%;
    height: auto;
    display: block;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.process-step {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
}

.process-step h3 {
    margin-top: 0.5rem;
}

.process-step p {
    color: var(--text-secondary);
}

/* Capabilities Section */
.capabilities {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    border-bottom: none;
    padding: var(--spacing-xl) 0;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

@media (max-width: 1024px) {
    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .capabilities-grid {
        grid-template-columns: 1fr;
    }
}

.capability-category {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.capability-category:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.capability-category h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary);
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tech-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: all 0.2s ease;
}

.tech-badge:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: scale(1.05);
}

/* Value Section */
.value {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-top: none;
}

.cto-callout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 800px;
    margin: 2rem auto 3rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    border: 2px solid var(--primary);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.15);
}

.cto-callout span {
    font-size: 1.05rem;
    color: var(--text-primary);
    line-height: 1.6;
}

.service-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    position: relative;
}

.cto-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: help;
    transition: all 0.3s ease;
}

.cto-badge:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.service-cto-note {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: #F0F9FF;
    border-left: 3px solid var(--primary);
    border-radius: 4px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.featured-service {
    position: relative;
    border: 2px solid var(--primary) !important;
    background: linear-gradient(135deg, #FEFEFE 0%, #F8FAFC 100%);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent);
    color: white;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
    text-align: left;
}

.service-features li {
    padding: 0.5rem 0;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    border-bottom: 1px solid var(--border);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-category-header {
    text-align: center;
    margin-bottom: 2rem;
}

.service-category-header h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.service-category-header p {
    font-size: 1.15rem;
    color: var(--text-secondary);
}

.service-includes {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
    text-align: left;
}

.service-includes li {
    padding: 0.5rem 0 0.5rem 1.75rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
}

.service-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.1rem;
}

.value-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.value-intro-image {
    width: 100%;
    height: auto;
    display: block;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

@media (max-width: 1024px) {
    .value-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .value-grid {
        grid-template-columns: 1fr;
    }
}

.value-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.25s ease;
    border: 1px solid var(--border);
}

.value-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: #D1D5DB;
}

.value-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1.25rem;
    color: var(--primary);
    stroke-width: 1.5;
}

.value-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.value-card p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 0;
}

/* Pricing Section */
.pricing {
    background: linear-gradient(180deg, #f1f5f9 0%, #f8fafc 100%);
    border-top: none;
    border-bottom: none;
}

.pricing-card {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
}

.pricing-header {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 2rem;
}

.pricing-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.price-duration {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.pricing-capacity {
    font-size: 1rem;
    color: var(--text-secondary);
    font-style: italic;
}

.pricing-promise {
    text-align: center;
    padding: 1.5rem 0 2rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 2rem;
}

.pricing-promise p {
    font-size: 1.25rem;
    color: var(--text-primary);
    line-height: 1.6;
    font-weight: 500;
}

.pricing-features h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.feature-icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.pricing-features strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.pricing-features p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.pricing-why {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.pricing-why h4 {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.pricing-why p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.pricing-cta {
    margin-top: 2.5rem;
    text-align: center;
}

.pricing-note {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* Founder Section */
.founder {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    padding: var(--spacing-xl) 0;
}

.founder-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.founder-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.founder-image img {
    width: 100%;
    height: auto;
    display: block;
}

.founder-text .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.founder-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.founder-signature {
    font-style: italic;
    color: var(--text-primary);
    font-weight: 500;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .founder-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .founder-text .section-title {
        text-align: center;
    }
    
    .founder-image {
        max-width: 250px;
        margin: 0 auto;
    }
}

/* Trust Section */
.trust {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-top: none;
    border-bottom: none;
}

.trust-grid {
    max-width: 900px;
    margin: var(--spacing-lg) auto 0;
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    position: relative;
    padding-left: 7rem;
}

.trust-card {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    position: relative;
}

.trust-card-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.12;
    line-height: 1;
    flex-shrink: 0;
    width: 5rem;
    position: absolute;
    left: -7rem;
    top: -0.5rem;
}

.trust-card-content {
    flex: 1;
}

.trust-card-content h3 {
    font-size: 1.65rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
}

.trust-card-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0;
}

/* FAQ Section */
.faq {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    border-top: none;
    border-bottom: none;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.faq-item {
    background: #fff;
    padding: 2rem;
    border: 1px solid var(--border);
    border-radius: 10px;
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* AI-Built Section */
.ai-built {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    text-align: center;
    border-bottom: none;
}

.ai-built-text {
    max-width: 820px;
    margin: 0 auto;
    font-size: 1.25rem;
    color: var(--text-primary);
    line-height: 1.75;
    font-weight: 400;
}

.disqualifier-box {
    max-width: 820px;
    margin: 3rem auto 0;
    padding: 2rem;
    background-color: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 8px;
}

.disqualifier-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.disqualifier-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.disqualifier-list li {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0.75rem;
    padding-left: 1.75rem;
    position: relative;
}

.disqualifier-list li::before {
    content: "✕";
    position: absolute;
    left: 0;
    color: #EF4444;
    font-weight: 600;
    font-size: 1.1rem;
}

.disqualifier-for {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.disqualifier-for strong {
    color: var(--text-primary);
}

.strategic-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 1024px) {
    .strategic-benefits {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.benefit-item {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.15);
}

.benefit-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.benefit-item p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Certifications Badges Section */
.certifications-badges {
    background: white;
    padding: 2.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.certifications-label {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.cert-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
}

.cert-badge:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.cert-img {
    height: 28px;
    width: auto;
    display: block;
}

/* Founder Video Intro Section */
.founder-video-intro {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding: var(--spacing-xl) 0;
}

.video-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 1024px) {
    .video-intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.video-placeholder {
    position: relative;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.video-play-icon {
    width: 80px;
    height: 80px;
    opacity: 0.9;
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-placeholder:hover .video-play-icon {
    opacity: 1;
    transform: scale(1.1);
}

.video-note {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    font-style: italic;
}

.video-intro-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.video-intro-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.video-highlights {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.video-highlights li {
    padding: 0.75rem 0;
    font-size: 1.05rem;
    color: var(--text-secondary);
    border-bottom: 1px solid #e2e8f0;
}

.video-highlights li:last-child {
    border-bottom: none;
}

/* Process Step Featured */
.process-step-featured {
    position: relative;
    border: 3px solid var(--primary);
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    padding-top: 3rem;
    margin-top: 1.5rem;
}

.featured-label {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    white-space: nowrap;
    z-index: 1;
}

/* Inline CTAs */
.inline-cta {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.inline-cta:hover {
    color: var(--primary-hover);
    transform: translateX(4px);
}

.service-cta {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.875rem 2rem;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-align: center;
}

.service-cta:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

/* Final CTA Section */
.final-cta {
    background-color: var(--footer-bg);
    color: white;
    text-align: center;
}

.final-cta .section-title,
.final-cta .section-subtitle {
    color: white;
}

.final-cta .section-subtitle {
    color: #D1D5DB;
}

/* Footer */
.footer {
    background-color: var(--footer-bg);
    color: #9CA3AF;
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: #D1D5DB;
    font-size: 1rem;
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-links a,
.footer-contact a {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: #6B7280;
}

.footer-bottom a {
    color: #6B7280;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom a:hover {
    color: var(--primary);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-logo {
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
}

/* Legal Pages */
.legal-page {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-main);
    min-height: 70vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.legal-updated {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content p,
.legal-content ul {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.legal-content ul {
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.75rem;
}

.legal-content a {
    color: var(--primary);
    text-decoration: none;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, #1E40AF 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.4);
}

.chat-icon,
.close-icon {
    width: 28px;
    height: 28px;
    color: white;
    stroke-width: 2;
}

.chat-panel {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 340px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-header {
    background: linear-gradient(135deg, var(--primary) 0%, #1E40AF 100%);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.chat-header h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    color: white;
}

.chat-header p {
    font-size: 0.875rem;
    margin: 0;
    opacity: 0.9;
}

.chat-body {
    padding: 1.5rem;
}

.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.quick-action-btn {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 1rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.quick-action-btn:hover {
    background: #f0f7ff;
    border-color: rgba(37, 99, 235, 0.3);
    transform: translateX(4px);
}

.quick-action-btn svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    stroke-width: 2;
    flex-shrink: 0;
}

.chat-contact-info {
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.chat-contact-info p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0 0 0.5rem 0;
}

.phone-link {
    display: block;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: var(--primary-hover);
}

@media (max-width: 480px) {
    .chat-widget {
        bottom: 16px;
        right: 16px;
    }
    
    .chat-panel {
        width: calc(100vw - 32px);
        right: -8px;
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    body {
        font-size: 16px;
        padding-top: 70px;
    }
    
    .nav {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: var(--spacing-lg) 0;
    }
    
    .hero-grid,
    .process-header {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        text-align: center;
    }
    
    .hero-subtitle {
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .process-header-content .section-title,
    .process-header-content .section-subtitle {
        text-align: center;
    }
    
    section {
        padding: var(--spacing-lg) 0;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .challenges-grid,
    .value-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }
}

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

/* Selection Color */
::selection {
    background-color: var(--primary);
    color: white;
}
