/* CSS Variables - Color Theming */
:root {
    --primary: #0f1b3d;
    --primary-light: #1a2b5e;
    --accent: #00a8e8;
    --accent-dark: #0090c8;
    --accent-light: #e0f4fb;
    --text-dark: #0f1b3d;
    --text-light: #5a6c7d;
    --text-white: #ffffff;
    --bg-white: #ffffff;
    --bg-light: #f5f8fc;
    --bg-accent: #0f1b3d;
    --border: #e2e8f0;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.12);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
    --max-width: 1200px;
    --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--bg-white);
    font-size: 16px;
    overflow-x: hidden;
}

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

a {
    color: var(--accent-dark);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent);
}

ul {
    list-style-position: inside;
}

/* Container */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border: 2px solid transparent;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-family: var(--font-main);
}

.btn-primary {
    background: var(--accent);
    color: var(--text-white);
}

.btn-primary:hover {
    background: var(--accent-dark);
    color: var(--text-white);
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--bg-light);
    color: var(--text-dark);
    border-color: var(--border);
}

.btn-secondary:hover {
    background: var(--border);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border-color: var(--text-white);
}

.btn-outline:hover {
    background: var(--text-white);
    color: var(--primary);
}

.btn-full {
    width: 100%;
    display: block;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    z-index: 1000;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-lg);
}

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

.logo {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: -0.5px;
}

.logo:hover {
    color: var(--accent);
}

.nav-menu {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-menu a {
    color: var(--text-white);
    font-size: 15px;
    font-weight: 500;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 3px;
    background: var(--text-white);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--text-white);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 168, 232, 0.15);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero .btn-outline {
    border-color: rgba(255, 255, 255, 0.3);
}

.hero .btn-outline:hover {
    background: var(--text-white);
    color: var(--primary);
    border-color: var(--text-white);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--text-white);
    padding: 140px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.page-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

/* Content Sections */
.content-section {
    padding: 80px 0;
}

.content-section h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

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

.content-section p {
    margin-bottom: 16px;
    color: var(--text-light);
}

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

.bg-light {
    background: var(--bg-light);
}

.bg-accent {
    background: var(--bg-accent);
    color: var(--text-white);
}

.bg-accent h2,
.bg-accent p {
    color: var(--text-white);
}

.bg-accent p {
    color: rgba(255, 255, 255, 0.85);
}

/* Two Column Layout */
.two-column {
    display: flex;
    align-items: center;
    gap: 60px;
}

.two-column.reverse {
    flex-direction: row-reverse;
}

.column-text {
    flex: 1;
}

.column-image {
    flex: 1;
}

.column-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

/* Problem Grid */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.problem-card {
    background: var(--bg-white);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border);
    border-top: 3px solid var(--accent);
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.problem-icon {
    font-size: 40px;
    margin-bottom: 16px;
    display: block;
}

.problem-card h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.problem-card p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* Standards Grid */
.standards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.standard-card {
    background: var(--bg-white);
    padding: 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.standard-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.standard-card h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 8px;
}

.standard-card p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.feature-card {
    background: var(--bg-white);
    padding: 32px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 16px;
    display: block;
}

.feature-card h3 {
    color: var(--primary);
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.value-card {
    background: var(--bg-white);
    padding: 32px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-top: 3px solid var(--accent);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.value-card h3 {
    color: var(--primary);
    margin-bottom: 8px;
}

.value-card p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* Commitment Grid */
.commitment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.commitment-item {
    text-align: center;
    padding: 24px;
}

.commitment-item h3 {
    color: var(--primary);
    margin-bottom: 8px;
}

.commitment-item p {
    font-size: 14px;
    color: var(--text-light);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.service-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-card h3 {
    padding: 20px 24px 8px;
    color: var(--primary);
}

.service-card p {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.service-card .btn {
    margin: 0 24px 24px;
}

/* Service Features List */
.service-features {
    margin: 20px 0 24px;
    list-style: none;
}

.service-features li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    color: var(--text-light);
    font-size: 15px;
}

.service-features li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* Industries Grid */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.industry-card {
    background: var(--bg-white);
    padding: 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
}

.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.industry-card h3 {
    color: var(--primary);
    font-size: 18px;
    margin-bottom: 8px;
}

.industry-card p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
}

.testimonial-card p {
    font-size: 15px;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.7;
}

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

/* Examples Grid */
.examples-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.example-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    text-align: center;
}

.example-card h3 {
    color: var(--primary);
    margin-bottom: 12px;
}

.example-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.example-result {
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.result-metric {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.result-label {
    font-size: 13px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Demo / Lead Form Section */
.demo-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.demo-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.demo-info {
    flex: 1;
}

.demo-info h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
}

.demo-info p {
    color: var(--text-light);
    margin-bottom: 24px;
}

.contact-details-box {
    background: var(--bg-white);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.contact-details-box p {
    margin-bottom: 8px;
    font-size: 14px;
}

.demo-form-container {
    flex: 1;
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.demo-form-container h2 {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--primary);
}

/* Contact Page */
.contact-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 16px;
}

.contact-info > p {
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item h3 {
    font-size: 15px;
    color: var(--accent-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.contact-item p {
    margin: 0;
    color: var(--text-dark);
    font-size: 16px;
}

.contact-form-container {
    flex: 1;
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.contact-form-container h2 {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--primary);
}

/* Map */
.map-container {
    margin-top: 40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 15px;
    font-family: var(--font-main);
    transition: var(--transition);
    background: var(--bg-white);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 168, 232, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e74c3c;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
    margin-top: 4px;
}

.checkbox-group label {
    font-weight: 400;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

.checkbox-group label a {
    font-weight: 600;
}

/* Legal Content */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 26px;
    font-weight: 700;
    margin: 32px 0 12px;
    color: var(--primary);
}

.legal-content h3 {
    font-size: 19px;
    font-weight: 600;
    margin: 20px 0 8px;
    color: var(--primary);
}

.legal-content p {
    margin-bottom: 14px;
    color: var(--text-light);
    line-height: 1.8;
}

.legal-content ul {
    margin: 12px 0 20px;
    padding-left: 20px;
    list-style: disc;
}

.legal-content ul li {
    margin-bottom: 8px;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-block {
    background: var(--bg-light);
    padding: 24px;
    border-radius: var(--radius);
    margin: 16px 0;
    border-left: 3px solid var(--accent);
}

.contact-block p {
    margin: 0;
    color: var(--text-dark);
    line-height: 1.8;
}

/* Data Table */
.data-table-wrapper {
    overflow-x: auto;
    margin: 24px 0;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.data-table th,
.data-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.data-table th {
    background: var(--primary);
    color: var(--text-white);
    font-weight: 600;
    font-size: 14px;
}

.data-table td {
    font-size: 14px;
    color: var(--text-light);
}

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

.data-table tr:hover {
    background: var(--bg-light);
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 12px;
}

.cta-section p {
    font-size: 17px;
    margin-bottom: 24px;
}

.cta-section .btn-primary {
    background: var(--accent);
    color: var(--text-white);
}

.cta-section .btn-primary:hover {
    background: var(--accent-dark);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: var(--text-white);
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 20px;
}

.cookie-content p {
    margin: 0;
    font-size: 14px;
    flex: 1;
}

.cookie-content a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-buttons .btn {
    padding: 8px 20px;
    font-size: 14px;
}

.cookie-banner .btn-outline {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text-white);
}

.cookie-banner .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}

.modal-content h2 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary);
}

.modal-content > p {
    color: var(--text-light);
    margin-bottom: 24px;
}

.cookie-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.cookie-option label {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.cookie-option input {
    margin-bottom: 8px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.cookie-option strong {
    font-size: 15px;
    color: var(--text-dark);
}

.cookie-desc {
    font-size: 13px;
    color: var(--text-light);
}

.modal-buttons {
    display: flex;
    gap: 12px;
}

.modal-buttons .btn {
    flex: 1;
}

/* Footer */
.footer {
    background: var(--primary);
    color: var(--text-white);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--accent);
}

.footer-section p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
}

.disclaimer {
    margin-bottom: 16px;
}

.disclaimer p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin: 0;
}

.copyright {
    text-align: center;
}

.copyright p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 36px;
    }

    .problem-grid,
    .standards-grid,
    .features-grid,
    .industries-grid,
    .testimonials-grid,
    .examples-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.show {
        display: flex;
    }

    .nav-menu li {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu a {
        display: block;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero .container,
    .two-column,
    .demo-wrapper,
    .contact-wrapper {
        flex-direction: column;
        gap: 32px;
    }

    .two-column.reverse {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 30px;
    }

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

    .content-section {
        padding: 50px 0;
    }

    .content-section h2,
    .demo-info h2 {
        font-size: 26px;
    }

    .page-header {
        padding: 110px 0 40px;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .problem-grid,
    .standards-grid,
    .features-grid,
    .industries-grid,
    .testimonials-grid,
    .examples-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

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

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }

    .demo-form-container,
    .contact-form-container {
        padding: 24px;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero h1 {
        font-size: 24px;
    }

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

    .hero-cta .btn {
        width: 100%;
    }

    .btn {
        padding: 10px 22px;
        font-size: 14px;
    }

    .page-header h1 {
        font-size: 24px;
    }

    .content-section h2 {
        font-size: 22px;
    }

    .modal-content {
        padding: 24px;
    }

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

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .modal,
    .mobile-menu-btn {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }

    a {
        color: #000;
        text-decoration: underline;
    }
}
