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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

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

/* Header & Navigation */
header {
    background: #2c3e50;
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.2s;
}

.nav-links a:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    background: #34495e;
    color: white;
    padding: 5rem 0;
    text-align: left;
}

.hero-title {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 400;
    margin-bottom: 2rem;
}

.hero-cta {
    display: inline-block;
}

/* Sections */
.section {
    padding: 4rem 0;
}

.alt-bg {
    background-color: #f8f9fa;
}

.section h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.section-icon--problem {
    color: #e74c3c;
}

.section-icon--solution {
    color: #27ae60;
}

.content-block {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #34495e;
}

.content-block p {
    margin-bottom: 1.5rem;
}

.content-block p:last-child {
    margin-bottom: 0;
}

.scenario {
    font-size: 1.05rem;
    font-style: normal;
}

.content-block .cta-buttons {
    margin-top: 2rem;
}

/* Lists */
.problem-list,
.solution-list {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.problem-list li,
.solution-list li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.problem-list li::marker {
    color: #e74c3c;
}

.solution-list li::marker {
    color: #27ae60;
}

/* Emphasis */
.emphasis {
    font-size: 1.15rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 2rem !important;
}

/* Comparison table */
.comparison-table-wrap {
    margin: 2rem 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.comparison-table {
    width: 100%;
    min-width: 320px;
    border-collapse: collapse;
    font-size: 1rem;
    background: white;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid #e8eaed;
    vertical-align: middle;
}

.comparison-table thead th {
    background: #2c3e50;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
}

.comparison-table thead th:nth-child(2),
.comparison-table thead th:nth-child(3) {
    text-align: center;
}

.comparison-table tbody td:nth-child(2),
.comparison-table tbody td:nth-child(3) {
    text-align: center;
}

.comparison-table tbody td:first-child {
    font-weight: 500;
    color: #2c3e50;
}

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

.comparison-table tbody tr:nth-child(even) {
    background: #f8f9fa;
}

.comparison-table tbody tr:hover {
    background: #f1f3f5;
}

.comparison-table .check-yes {
    color: #27ae60;
}

.comparison-table .check-no {
    color: #7f8c8d;
}

/* Target Grid */
.target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.target-box {
    background: white;
    padding: 2rem;
    border-left: 4px solid #3498db;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.target-box.not-for {
    border-left-color: #95a5a6;
}

.target-box h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.target-box ul {
    list-style: none;
    padding-left: 0;
}

.target-box ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    line-height: 1.6;
}

.target-box ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
    font-size: 1.2rem;
}

.target-box.not-for ul li:before {
    color: #95a5a6;
}

/* CTA Section */
.cta-section {
    background: #2c3e50;
    color: white;
}

.cta-section h2 {
    color: white;
}

.cta-section .content-block {
    color: #ecf0f1;
}

.cta-section ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.cta-section ul li {
    margin-bottom: 0.8rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    min-height: 48px;
    min-width: 44px;
    background: #e67e22;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
    line-height: 1.4;
}

.cta-button:hover {
    background: #d35400;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.8);
    color: white;
}

.cta-button.secondary:hover {
    background: rgba(255,255,255,0.15);
    color: white;
}

.section .cta-button.secondary {
    border-color: #e67e22;
    color: #e67e22;
}

.section .cta-button.secondary:hover {
    background: #e67e22;
    color: white;
}

.cta-buttons--after-form {
    margin-top: 1.5rem;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-info p {
    margin-bottom: 1.5rem;
    color: #34495e;
}

.contact-email {
    padding: 1.5rem;
    background: white;
    border-left: 4px solid #e67e22;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.contact-email strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.contact-email a {
    color: #e67e22;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.2s;
}

.contact-email a:hover {
    color: #d35400;
    text-decoration: underline;
}

.contact-form-container h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.early-access-form {
    max-width: 560px;
    margin-top: 1.5rem;
}

.early-access-form-title,
.early-access-form .form-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: white;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e67e22;
}

.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
    border-color: #e74c3c;
}

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

.error-message {
    display: block;
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    min-height: 1.2rem;
}

.submit-button {
    width: 100%;
    padding: 1rem 2rem;
    min-height: 48px;
    background: #e67e22;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    font-family: inherit;
}

.submit-button:hover {
    background: #d35400;
}

.submit-button:active {
    background: #ba4a00;
}

.submit-button:disabled {
    background: #95a5a6;
    cursor: not-allowed;
}

.form-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 4px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-status.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-status.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Footer */
footer {
    background: #1a252f;
    color: #bdc3c7;
    text-align: center;
    padding: 2rem 0;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section h2,
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .comparison-table-wrap {
        margin: 1.5rem 0;
        overflow-x: visible;
    }
    
    .comparison-table {
        min-width: 0;
        display: block;
    }
    
    .comparison-table thead {
        display: none;
    }
    
    .comparison-table tbody {
        display: block;
    }
    
    .comparison-table tbody tr {
        display: block;
        padding: 1rem 1.25rem;
        margin-bottom: 0.75rem;
        background: white;
        border: 1px solid #e8eaed;
        border-radius: 8px;
        box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    }
    
    .comparison-table tbody tr:nth-child(even) {
        background: #f8f9fa;
    }
    
    .comparison-table tbody tr:hover {
        background: #f8f9fa;
    }
    
    .comparison-table tbody td {
        display: block;
        padding: 0.4rem 0 0.5rem;
        border-bottom: none;
        text-align: left;
    }
    
    .comparison-table tbody td:first-child {
        padding-top: 0;
        padding-bottom: 0.5rem;
        border-bottom: 1px solid #e8eaed;
        margin-bottom: 0.5rem;
        font-size: 1rem;
        font-weight: 600;
        color: #2c3e50;
    }
    
    .comparison-table tbody td:nth-child(2),
    .comparison-table tbody td:nth-child(3) {
        text-align: left;
    }
    
    .comparison-table tbody td::before {
        content: attr(data-label);
        font-weight: 600;
        font-size: 0.85rem;
        color: #2c3e50;
        display: inline-block;
        min-width: 5.5em;
        margin-right: 0.5rem;
    }
    
    .comparison-table tbody td:first-child::before {
        display: none;
    }
    
    .target-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-button {
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form,
    .early-access-form {
        padding: 1.5rem;
    }
}
