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

:root {
    --primary-blue: #3B82F6;
    --accent-purple: #8B5CF6;
    --dark-navy: #0F172A;
    --darker-navy: #020617;
    --card-bg: #1E293B;
    --card-darker: #162033;
    --text-white: #FFFFFF;
    --text-gray: #94A3B8;
    --text-light-gray: #CBD5E1;
    --border-color: rgba(148, 163, 184, 0.2);
    --success-green: #10B981;
    --warning-orange: #F59E0B;
    --gradient: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-white);
    background-color: var(--darker-navy);
}

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

/* Navigation */
.navbar {
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(148, 163, 184, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.logo-text {
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light-gray);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 15px;
}

.nav-links a:hover {
    color: var(--text-white);
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background: var(--gradient);
    color: var(--text-white);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-small {
    padding: 10px 24px;
    font-size: 15px;
}

.btn-large {
    padding: 18px 36px;
    font-size: 18px;
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--darker-navy) 100%);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(59, 130, 246, 0.15);
    color: var(--primary-blue);
    padding: 10px 20px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 32px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 28px;
    letter-spacing: -1px;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 22px;
    color: var(--text-light-gray);
    margin-bottom: 48px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.hero-features {
    text-align: center;
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 80px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 42px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Sections */
.section {
    padding: 60px 0;
    background-color: var(--darker-navy);
}

.section-dark {
    background-color: var(--dark-navy);
}

.section-header {
    margin-bottom: 40px;
}

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

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-gray);
    max-width: 700px;
    line-height: 1.6;
}

.section-header.center .section-subtitle {
    margin: 0 auto;
}

/* Grid System */
.grid {
    display: grid;
    gap: 32px;
}

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

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* Cards - PDF Style */
.card {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--card-darker) 100%);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-white);
}

/* Lists */
.list-check, .list-cross {
    list-style: none;
    padding: 0;
}

.list-check li, .list-cross li {
    padding: 14px 0 14px 36px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light-gray);
}

.list-check li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: bold;
    font-size: 20px;
}

.list-cross li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #EF4444;
    font-weight: bold;
    font-size: 20px;
}

/* Problem Cards */
.card-problem {
    border-left: 4px solid var(--primary-blue);
}

/* Process Steps */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.process-step {
    text-align: center;
    padding: 24px 20px;
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--card-darker) 100%);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.process-step:hover {
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-4px);
}

.process-number {
    width: 64px;
    height: 64px;
    background: var(--gradient);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-white);
}

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

/* Use Cases */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.use-case-card {
    display: flex;
    flex-direction: column;
    text-align: center;
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--card-darker) 100%);
    border: 1px solid var(--border-color);
    padding: 20px 16px;
}

.use-case-card:hover {
    border-color: rgba(59, 130, 246, 0.5);
}

.use-case-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.use-case-card h3 {
    font-size: 19px;
    margin-bottom: 14px;
    color: var(--text-white);
}

.use-case-desc {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 0;
    line-height: 1.5;
}

.use-case-details {
    color: var(--text-gray);
    font-size: 13px;
    line-height: 1.6;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.use-case-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.benefit-value {
    font-size: 26px;
    font-weight: 800;
    color: var(--success-green);
    letter-spacing: -0.5px;
}

.benefit-label {
    font-size: 12px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.roi-badge {
    background: linear-gradient(135deg, var(--success-green) 0%, #059669 100%);
    color: var(--text-white);
    padding: 10px 20px;
    border-radius: 24px;
    font-weight: 700;
    font-size: 14px;
    margin-top: auto;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* Trust Section */
.trust-section {
    background-color: var(--darker-navy);
}

.trust-pillar-card {
    text-align: center;
    border-top: 3px solid var(--primary-blue);
}

.trust-icon {
    font-size: 56px;
    margin-bottom: 24px;
}

.trust-stats {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: 20px;
}

.trust-stats li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 15px;
    color: var(--text-light-gray);
    line-height: 1.6;
}

.trust-stats li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: bold;
    font-size: 20px;
}

/* Trust Cards */
.trust-card {
    border-top: 3px solid var(--primary-blue);
}

.trust-card h3 {
    margin-bottom: 24px;
    font-size: 22px;
}

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

.trust-list li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 15px;
    color: var(--text-light-gray);
    line-height: 1.6;
}

.trust-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-size: 24px;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.pricing-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: var(--text-white);
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

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

.price {
    font-size: 52px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.price-label {
    font-size: 14px;
    color: var(--text-gray);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 14px 0;
    padding-left: 36px;
    position: relative;
    font-size: 15px;
    color: var(--text-light-gray);
    line-height: 1.6;
}

.feature-check:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: bold;
    font-size: 22px;
}

.pricing-example {
    background: rgba(59, 130, 246, 0.1);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 32px;
    font-size: 14px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: var(--text-light-gray);
}

/* Success Stories */
.success-card {
    border-top: 4px solid var(--success-green);
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--card-darker) 100%);
}

.success-type {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-gray);
    margin-bottom: 8px;
    font-weight: 700;
}

.success-revenue {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.success-results {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.success-results li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 15px;
    color: var(--text-light-gray);
}

.success-results li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: bold;
    font-size: 18px;
}

.success-roi {
    background: linear-gradient(135deg, var(--success-green) 0%, #059669 100%);
    color: var(--text-white);
    padding: 14px;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    margin-top: auto;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* Ideal Client */
.ideal-client-card {
    border-left: 4px solid var(--primary-blue);
}

.ideal-client-card ul li strong {
    color: var(--primary-blue);
    font-weight: 700;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1E3A5F 0%, #0F172A 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.cta-content p {
    font-size: 22px;
    margin-bottom: 48px;
    color: var(--text-light-gray);
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Implementation Timeline */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 40px;
    bottom: 40px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-blue) 0%, var(--accent-purple) 100%);
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 48px;
}

.timeline-item-final {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 4px var(--dark-navy), 0 8px 24px rgba(59, 130, 246, 0.4);
    z-index: 2;
}

.timeline-marker-final {
    background: linear-gradient(135deg, var(--success-green) 0%, #059669 100%);
    box-shadow: 0 0 0 4px var(--dark-navy), 0 8px 24px rgba(16, 185, 129, 0.4);
}

.timeline-number {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-white);
}

.timeline-content {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--card-darker) 100%);
    border-radius: 12px;
    padding: 28px;
    border: 1px solid var(--border-color);
}

.timeline-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
}

.timeline-duration {
    display: inline-block;
    background: rgba(59, 130, 246, 0.15);
    color: var(--primary-blue);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.timeline-desc {
    color: var(--text-light-gray);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.timeline-details {
    font-size: 14px;
    color: var(--text-gray);
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
}

.timeline-details strong {
    color: var(--text-white);
    font-weight: 700;
}

.timeline-footer {
    text-align: center;
    margin-top: 48px;
    padding: 32px;
    background: rgba(59, 130, 246, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.timeline-footer p {
    font-size: 16px;
    color: var(--text-light-gray);
    margin-bottom: 8px;
}

.timeline-footer p:last-child {
    margin-bottom: 0;
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    margin-bottom: 60px;
}

.faq-category {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--card-darker) 100%);
    border-radius: 12px;
    padding: 32px;
    border: 1px solid var(--border-color);
}

.faq-category-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--primary-blue);
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border-color);
}

.faq-item {
    margin-bottom: 28px;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-question {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 12px;
    line-height: 1.4;
}

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

.faq-answer p {
    margin-bottom: 12px;
}

.faq-answer ul {
    list-style: none;
    padding: 0;
    margin-top: 12px;
}

.faq-answer ul li {
    padding: 6px 0 6px 24px;
    position: relative;
    font-size: 14px;
}

.faq-answer ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

.faq-answer strong {
    color: var(--text-white);
    font-weight: 700;
}

.faq-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--card-darker) 100%);
    border-radius: 12px;
    padding: 48px 32px;
    border: 2px solid var(--primary-blue);
}

.faq-cta h3 {
    font-size: 32px;
    margin-bottom: 16px;
    font-weight: 700;
}

.faq-cta p {
    font-size: 18px;
    color: var(--text-light-gray);
    margin-bottom: 32px;
}

.faq-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* About Section */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text p {
    font-size: 18px;
    margin-bottom: 24px;
    line-height: 1.8;
    color: var(--text-light-gray);
}

.about-values {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--card-darker) 100%);
    padding: 40px;
    border-radius: 12px;
    margin-top: 48px;
    border-left: 4px solid var(--primary-blue);
    border: 1px solid var(--border-color);
}

.about-values h3 {
    margin-bottom: 24px;
    font-size: 24px;
}

.about-values ul {
    list-style: none;
    padding: 0;
}

.about-values ul li {
    padding: 10px 0 10px 32px;
    position: relative;
    font-size: 16px;
    color: var(--text-light-gray);
}

.about-values ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-size: 28px;
}

/* Footer */
.footer {
    background-color: var(--darker-navy);
    color: var(--text-white);
    padding: 48px 0 24px;
    border-top: 1px solid var(--border-color);
}

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-section p {
    margin-bottom: 12px;
    color: var(--text-gray);
    line-height: 1.6;
}

.footer-section a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent-purple);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--text-white);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
    color: var(--text-gray);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 52px;
    }

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

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

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-features {
        font-size: 14px;
    }

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

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

    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
    }

    .use-cases-grid {
        grid-template-columns: 1fr;
    }

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

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

    .nav-links {
        flex-direction: column;
        gap: 16px;
    }

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

    .cta-buttons {
        flex-direction: column;
    }

    .cta-content h2 {
        font-size: 36px;
    }

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

    .faq-cta-buttons {
        flex-direction: column;
    }
}

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content, .section-header, .card {
    animation: fadeInUp 0.6s ease-out;
}

/* Add subtle background pattern */
body {
    background-image:
        radial-gradient(circle at 25% 0%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 100%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
}

/* Data Sovereignty Section */
.deployment-options {
    margin-bottom: 60px;
}

.deployment-card {
    position: relative;
    padding-top: 60px;
    height: 100%;
}

.deployment-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.deployment-badge-premium {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.deployment-icon {
    font-size: 48px;
    margin-bottom: 16px;
    text-align: center;
}

.deployment-desc {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 16px;
}

.deployment-features {
    margin-bottom: 24px;
}

.deployment-features h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--primary-blue);
}

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

.deployment-features li {
    padding: 8px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.deployment-timeline {
    background: rgba(59, 130, 246, 0.1);
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    border-left: 3px solid var(--primary-blue);
}

.deployment-cost {
    background: var(--gradient-subtle);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.deployment-cost-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary-blue);
}

.deployment-cost p {
    margin: 8px 0;
    color: var(--text-secondary);
}

.deployment-cost .highlight {
    color: #10b981;
    font-weight: 600;
}

.deployment-cost-breakdown {
    list-style: none;
    padding-left: 16px;
    margin: 12px 0;
}

.deployment-cost-breakdown li {
    color: var(--text-secondary);
    margin: 6px 0;
    position: relative;
}

.deployment-cost-breakdown li:before {
    content: "•";
    color: var(--primary-blue);
    position: absolute;
    left: -16px;
}

.deployment-best-for {
    margin-top: 24px;
}

.deployment-best-for strong {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-blue);
}

.deployment-best-for ul {
    list-style: none;
    padding: 0;
}

.deployment-best-for li {
    padding: 6px 0 6px 24px;
    color: var(--text-secondary);
    position: relative;
}

.deployment-best-for li:before {
    content: "→";
    color: var(--primary-blue);
    position: absolute;
    left: 0;
}

/* Comparison Table */
.comparison-table-wrapper {
    margin: 60px 0;
}

.comparison-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 32px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--gradient-subtle);
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table thead {
    background: rgba(59, 130, 246, 0.15);
}

.comparison-table th {
    padding: 16px 20px;
    text-align: left;
    font-weight: 600;
    color: var(--primary-blue);
    border-bottom: 2px solid rgba(59, 130, 246, 0.3);
}

.comparison-table td {
    padding: 14px 20px;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: rgba(59, 130, 246, 0.05);
}

/* Security Certifications */
.security-certifications {
    margin: 60px 0;
    text-align: center;
}

.security-certifications h3 {
    font-size: 28px;
    margin-bottom: 32px;
}

.cert-badge {
    background: var(--gradient-subtle);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.cert-badge:hover {
    transform: translateY(-4px);
    border-color: var(--primary-blue);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.2);
}

.cert-icon {
    font-size: 36px;
    color: #10b981;
    margin-bottom: 12px;
    font-weight: bold;
}

.cert-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

/* Decision Framework */
.decision-framework {
    margin: 60px 0;
}

.decision-framework h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
}

.decision-card {
    background: var(--gradient-subtle);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    height: 100%;
}

.decision-card h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

/* Hybrid Option */
.hybrid-option {
    margin: 60px 0 40px;
}

.hybrid-option .card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.hybrid-option h3 {
    color: var(--accent-purple);
    margin-bottom: 16px;
}

.hybrid-option ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.hybrid-option li {
    padding: 10px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.hybrid-option li:last-child {
    border-bottom: none;
}

.hybrid-note {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    font-style: italic;
    color: var(--text-secondary);
}

/* Section CTA */
.section-cta {
    text-align: center;
    background: var(--gradient-subtle);
    padding: 48px;
    border-radius: 16px;
    border: 2px solid rgba(59, 130, 246, 0.2);
    margin-top: 60px;
}

.section-cta h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.section-cta p {
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 24px;
    font-size: 16px;
    line-height: 1.6;
}

.cta-note {
    margin-top: 16px;
    font-size: 14px;
    font-style: italic;
    color: var(--text-secondary);
    opacity: 0.8;
}

/* Mobile Responsive - Data Sovereignty */
@media (max-width: 768px) {
    .deployment-badge {
        position: static;
        display: inline-block;
        margin-bottom: 16px;
    }

    .comparison-table {
        font-size: 14px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px 12px;
    }

    .cert-badge {
        padding: 16px;
    }

    .decision-card {
        padding: 24px;
    }

    .section-cta {
        padding: 32px 24px;
    }

    .section-cta h3 {
        font-size: 24px;
    }
}

/* Risk Mitigation Section */
.risk-mitigation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.risk-card {
    background: var(--gradient-subtle);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.risk-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
}

.risk-card[open] {
    border-color: var(--primary-blue);
}

.risk-summary {
    padding: 24px;
    cursor: pointer;
    list-style: none;
    position: relative;
    user-select: none;
}

.risk-summary::-webkit-details-marker {
    display: none;
}

.risk-icon {
    font-size: 40px;
    margin-bottom: 12px;
    display: block;
}

.risk-summary h3 {
    margin: 0 0 8px 0;
    font-size: 20px;
    color: var(--text-primary);
}

.risk-label {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 12px;
}

.expand-icon {
    position: absolute;
    right: 24px;
    top: 24px;
    font-size: 28px;
    color: var(--primary-blue);
    font-weight: 300;
    transition: transform 0.3s ease;
}

.risk-card[open] .expand-icon {
    transform: rotate(45deg);
}

.risk-content {
    padding: 0 24px 24px 24px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.risk-content h4 {
    color: var(--primary-blue);
    margin: 20px 0 12px 0;
    font-size: 16px;
}

.risk-content ol,
.risk-content ul {
    margin: 12px 0;
    padding-left: 24px;
}

.risk-content ol li,
.risk-content ul li {
    margin: 8px 0;
}

.risk-guarantee {
    background: rgba(59, 130, 246, 0.1);
    padding: 16px;
    border-radius: 8px;
    border-left: 3px solid var(--primary-blue);
    margin-bottom: 20px;
}

.performance-benchmarks {
    background: var(--gradient-subtle);
    padding: 16px;
    border-radius: 8px;
    margin-top: 16px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.performance-benchmarks ul {
    list-style: none;
    padding: 0;
    margin-top: 12px;
}

.performance-benchmarks li {
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.performance-benchmarks li:last-child {
    border-bottom: none;
}

.pilot-program {
    background: rgba(16, 185, 129, 0.1);
    padding: 16px;
    border-radius: 8px;
    border-left: 3px solid #10b981;
    margin-bottom: 20px;
}

.pilot-program h4 {
    color: #10b981;
}

.highlight-text {
    color: #10b981;
    font-weight: 600;
    font-size: 16px;
}

.contract-structure {
    background: var(--gradient-subtle);
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.contract-structure ul {
    list-style: none;
    padding: 0;
    margin-top: 12px;
}

.do-dont-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.do-list,
.dont-list {
    padding: 16px;
    border-radius: 8px;
}

.do-list {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.do-list h4 {
    color: #10b981;
}

.dont-list {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.dont-list h4 {
    color: #ef4444;
}

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

.list-x li {
    position: relative;
    padding-left: 24px;
}

.list-x li:before {
    content: "✗";
    color: #ef4444;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.data-access-box {
    background: rgba(59, 130, 246, 0.1);
    padding: 16px;
    border-radius: 8px;
    border-left: 3px solid var(--primary-blue);
    margin: 20px 0;
}

.data-access-box ul {
    margin-top: 12px;
    list-style: none;
    padding: 0;
}

.data-access-box li {
    padding: 6px 0;
    position: relative;
    padding-left: 20px;
}

.data-access-box li:before {
    content: "•";
    color: var(--primary-blue);
    position: absolute;
    left: 0;
}

.model-portability {
    background: var(--gradient-subtle);
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.model-portability ul {
    margin-top: 12px;
}

.alert-box {
    background: rgba(245, 158, 11, 0.1);
    padding: 16px;
    border-radius: 8px;
    border-left: 3px solid #f59e0b;
    margin-top: 16px;
}

.alert-box strong {
    color: #f59e0b;
}

.timeline-guarantees {
    background: var(--gradient-subtle);
    padding: 16px;
    border-radius: 8px;
    margin: 20px 0;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.timeline-guarantees ul {
    margin-top: 12px;
}

.simple-ui-option {
    background: rgba(139, 92, 246, 0.1);
    padding: 16px;
    border-radius: 8px;
    border-left: 3px solid var(--accent-purple);
    margin-top: 20px;
}

.simple-ui-option strong {
    color: var(--accent-purple);
}

/* Risk Philosophy */
.risk-philosophy {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    padding: 48px;
    border-radius: 16px;
    border: 2px solid rgba(59, 130, 246, 0.3);
    margin-bottom: 60px;
    text-align: center;
}

.risk-philosophy h3 {
    font-size: 28px;
    margin-bottom: 24px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.philosophy-quote {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.philosophy-answer {
    font-size: 24px;
    margin: 24px 0;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.philosophy-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 12px 0;
}

/* CTA Benefits List */
.cta-benefits {
    list-style: none;
    padding: 0;
    margin: 24px auto;
    max-width: 600px;
    text-align: left;
}

.cta-benefits li {
    padding: 10px 0;
    font-size: 16px;
    color: var(--text-secondary);
}

/* Mobile Responsive - Risk Mitigation */
@media (max-width: 1024px) {
    .risk-mitigation-grid {
        grid-template-columns: 1fr;
    }

    .do-dont-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .risk-summary {
        padding: 20px;
    }

    .risk-content {
        padding: 0 20px 20px 20px;
    }

    .expand-icon {
        right: 20px;
        top: 20px;
    }

    .risk-philosophy {
        padding: 32px 24px;
    }

    .philosophy-answer {
        font-size: 20px;
    }
}

/* Ideal Client Section - Enhanced */
.subsection-title {
    font-size: 32px;
    margin: 60px 0 32px;
    text-align: center;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.warning-title {
    color: #ef4444;
    background: none;
    -webkit-text-fill-color: #ef4444;
}

/* Ideal Fit Criteria */
.ideal-fit-section {
    margin-bottom: 80px;
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.criteria-card {
    background: var(--gradient-subtle);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 28px;
    transition: all 0.3s ease;
}

.criteria-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-blue);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.2);
}

.criteria-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.criteria-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.criteria-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-blue);
    margin: 12px 0;
}

.criteria-sweet {
    font-size: 14px;
    color: #10b981;
    font-style: italic;
    margin: 8px 0;
}

.criteria-why {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 12px 0;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.criteria-detail,
.criteria-requirements,
.criteria-examples {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 12px 0;
    line-height: 1.6;
}

/* Not Right Fit Section */
.not-fit-section {
    margin-bottom: 80px;
}

.warning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 32px;
}

.warning-card {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.warning-card:hover {
    border-color: #ef4444;
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.2);
}

.warning-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.warning-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #ef4444;
}

.warning-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 8px 0;
    line-height: 1.6;
}

/* Sweet Spot Box */
.sweet-spot-box {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 80px;
    text-align: center;
}

.sweet-spot-box h3 {
    font-size: 32px;
    margin-bottom: 24px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sweet-spot-label {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.sweet-spot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    text-align: left;
    max-width: 1000px;
    margin: 0 auto;
}

.sweet-spot-grid div {
    background: var(--gradient-subtle);
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.sweet-spot-grid strong {
    color: var(--primary-blue);
}

/* Industry Fit Section */
.industry-fit-section {
    margin-bottom: 80px;
}

.industry-card {
    background: var(--gradient-subtle);
    border-radius: 12px;
    padding: 28px;
    border: 2px solid rgba(59, 130, 246, 0.2);
}

.industry-card h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.excellent-fit {
    border-color: #10b981;
}

.excellent-fit h4 {
    color: #10b981;
}

.good-fit {
    border-color: var(--primary-blue);
}

.good-fit h4 {
    color: var(--primary-blue);
}

.not-fit {
    border-color: #ef4444;
}

.not-fit h4 {
    color: #ef4444;
}

.industry-card ul {
    list-style: none;
    padding: 0;
}

.industry-card li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

/* Self-Assessment Section */
.self-assessment-section {
    margin-bottom: 80px;
}

.assessment-intro {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 16px;
}

.assessment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.assessment-category {
    background: var(--gradient-subtle);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 24px;
}

.assessment-category h4 {
    font-size: 18px;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

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

.checklist li {
    padding: 10px 0 10px 28px;
    font-size: 14px;
    color: var(--text-secondary);
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.checklist li:before {
    content: "☐";
    position: absolute;
    left: 0;
    font-size: 18px;
    color: var(--primary-blue);
}

.assessment-scoring {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    padding: 24px;
}

.assessment-scoring p {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary-blue);
}

.assessment-scoring ul {
    list-style: none;
    padding: 0;
}

.assessment-scoring li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

/* Qualification Philosophy */
.qualification-philosophy {
    margin-bottom: 60px;
}

.qualification-philosophy h3 {
    font-size: 28px;
    margin-bottom: 24px;
    text-align: center;
}

.philosophy-box {
    background: var(--gradient-subtle);
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-box p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 16px 0;
    font-size: 15px;
}

.philosophy-box strong {
    color: var(--primary-blue);
}

/* Mobile Responsive - Ideal Client */
@media (max-width: 768px) {
    .subsection-title {
        font-size: 24px;
        margin: 40px 0 24px;
    }

    .criteria-grid,
    .warning-grid,
    .assessment-grid {
        grid-template-columns: 1fr;
    }

    .sweet-spot-box {
        padding: 24px;
    }

    .sweet-spot-grid {
        grid-template-columns: 1fr;
    }

    .criteria-card,
    .warning-card,
    .assessment-category {
        padding: 20px;
    }

    .industry-card {
        padding: 20px;
    }

    .philosophy-box {
        padding: 24px;
    }
}

/* Why Now Section */
.why-now-section {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
}

.why-now-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.why-now-card {
    background: var(--gradient-subtle);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: all 0.3s ease;
}

.why-now-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-blue);
    box-shadow: 0 16px 40px rgba(59, 130, 246, 0.2);
}

.why-now-number {
    position: absolute;
    top: -16px;
    left: 32px;
    width: 48px;
    height: 48px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.why-now-card h3 {
    font-size: 24px;
    margin: 16px 0 16px 0;
    color: var(--text-primary);
}

.why-now-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 12px 0;
}

.why-now-card ul {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.why-now-card li {
    padding: 8px 0 8px 24px;
    color: var(--text-secondary);
    position: relative;
}

.why-now-card li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
}

.technology-advances,
.ai-advantage {
    background: rgba(59, 130, 246, 0.1);
    padding: 16px;
    border-radius: 8px;
    margin: 16px 0;
    border-left: 3px solid var(--primary-blue);
}

.why-now-highlight {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    font-size: 16px;
}

.why-now-highlight strong {
    color: var(--primary-blue);
}

/* About Us Section */
.about-section {
    padding: 80px 0;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-story {
    text-align: center;
    margin-bottom: 60px;
}

.about-story h3 {
    font-size: 28px;
    margin-bottom: 24px;
    color: var(--primary-blue);
}

.about-story p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 16px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.about-box {
    background: var(--gradient-subtle);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 32px;
}

.about-box h4 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-blue);
}

.about-box p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 12px 0;
}

.about-box ul {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.about-box li {
    padding: 8px 0 8px 24px;
    color: var(--text-secondary);
    position: relative;
}

.about-box li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.about-values {
    margin-bottom: 60px;
}

.about-values h3 {
    font-size: 28px;
    margin-bottom: 32px;
    text-align: center;
    color: var(--primary-blue);
}

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

.value-card {
    background: var(--gradient-subtle);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-blue);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.2);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.value-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.value-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.about-location h3 {
    font-size: 28px;
    margin-bottom: 24px;
    text-align: center;
    color: var(--primary-blue);
}

.location-content {
    max-width: 600px;
    margin: 0 auto;
}

.location-box {
    background: var(--gradient-subtle);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 32px;
}

.location-box p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 12px 0;
}

.location-box ul {
    list-style: none;
    padding: 0;
    margin: 12px 0 12px 20px;
}

.location-box li {
    padding: 6px 0;
    color: var(--text-secondary);
}

/* Newsletter Section */
.newsletter-section {
    background: var(--dark-navy);
    padding: 60px 0;
}

.newsletter-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: var(--gradient-subtle);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 16px;
    padding: 48px;
}

.newsletter-box h3 {
    font-size: 32px;
    margin-bottom: 16px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.newsletter-box p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 12px 0;
}

.newsletter-promise {
    font-style: italic;
    font-size: 14px;
    margin-top: 16px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    margin: 32px 0 16px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-input {
    flex: 1;
    padding: 14px 20px;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 16px;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-privacy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 16px;
}

/* Trust Badges Pre-Footer */
.trust-badges-section {
    background: var(--darker-navy);
    padding: 48px 0;
    text-align: center;
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto 24px;
}

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

.badge-icon {
    width: 60px;
    height: 60px;
    background: rgba(16, 185, 129, 0.2);
    border: 2px solid #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #10b981;
    font-weight: bold;
}

.badge-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.trust-badges-tagline {
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 16px;
}

/* Final CTA Section */
.final-cta-section {
    background: var(--darker-navy);
    padding: 80px 0;
}

.final-cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    padding: 64px;
}

.final-cta-box h2 {
    font-size: 42px;
    margin-bottom: 16px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.final-cta-box p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.final-cta-contact {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.final-cta-contact p {
    font-size: 14px;
    margin: 8px 0;
}

.final-cta-contact a {
    color: var(--primary-blue);
}

/* Footer Enhanced */
.footer {
    background: var(--darker-navy);
    padding: 60px 0 32px;
    border-top: 1px solid rgba(59, 130, 246, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.footer-section h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 16px;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 16px;
}

.footer-location,
.footer-coverage {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 8px 0;
}

.footer-contact-info {
    margin-top: 24px;
}

.footer-contact-info p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 8px 0;
}

.footer-contact-info a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-info a:hover {
    color: #60a5fa;
}

.footer-cta-link {
    display: inline-block;
    margin-top: 8px;
    padding: 8px 16px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.footer-cta-link:hover {
    background: rgba(59, 130, 246, 0.2);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin: 12px 0;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(59, 130, 246, 0.1);
}

.copyright {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-tagline-bottom {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    font-style: italic;
}

/* Mobile Responsive - Phase 3 */
@media (max-width: 1024px) {
    .why-now-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .why-now-card {
        padding: 24px;
    }

    .why-now-number {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

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

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

    .newsletter-box {
        padding: 32px 24px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .trust-badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .final-cta-box {
        padding: 40px 24px;
    }

    .final-cta-box h2 {
        font-size: 32px;
    }

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

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

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
}

.back-to-top:active {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
}

/* ====================
   INDUSTRIES TABLE
   ==================== */

.industries-table-container {
    margin-top: 3rem;
    overflow-x: auto;
}

.industries-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 12px;
    overflow: hidden;
}

.industries-table thead {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}

.industries-table th {
    padding: 1.5rem 1.5rem;
    text-align: left;
    font-weight: 600;
    color: white;
    font-size: 1.1rem;
}

.industries-table td {
    padding: 1.5rem 1.5rem;
    border-bottom: 1px solid rgba(71, 85, 105, 0.3);
    color: #e2e8f0;
}

.industries-table tbody tr:last-child td {
    border-bottom: none;
}

.industries-table tbody tr {
    transition: background-color 0.3s ease;
}

.industries-table tbody tr:hover {
    background: rgba(59, 130, 246, 0.1);
}

.industries-table td:first-child {
    font-weight: 500;
    color: white;
}

@media (max-width: 768px) {
    .industries-table {
        font-size: 0.9rem;
    }

    .industries-table th,
    .industries-table td {
        padding: 1rem;
    }
}

/* ====================
   PRICING ICONS
   ==================== */

.pricing-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

/* ====================
   CONTACT FORM
   ==================== */

.contact-form {
    width: 100%;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #e2e8f0;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(71, 85, 105, 0.5);
    border-radius: 8px;
    color: #e2e8f0;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    background: rgba(30, 41, 59, 0.8);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #64748b;
}

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

@media (max-width: 768px) {
    .contact-form {
        padding: 1.5rem;
    }
}
