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

:root {
    --color-primary: #1a5f7a;
    --color-secondary: #57837b;
    --color-accent: #c38e70;
    --color-dark: #1e2a38;
    --color-light: #f8f9fa;
    --color-white: #ffffff;
    --color-text: #3d4f5f;
    --color-text-light: #6b7d8a;
    --color-border: #e2e8ed;
    --color-success: #2e7d6a;
    --font-primary: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-white);
}

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

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

img, svg {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.header {
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--color-dark);
}

.logo svg {
    width: 40px;
    height: 40px;
}

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

.nav-links a {
    color: var(--color-dark);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-dark);
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--color-white);
    padding: 20px;
    border-top: 1px solid var(--color-border);
}

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

.mobile-nav a {
    padding: 12px 0;
    color: var(--color-dark);
    border-bottom: 1px solid var(--color-border);
}

.mobile-nav a:last-child {
    border-bottom: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-white);
    padding: 60px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero p {
    font-size: 1.1rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto 30px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
}

.hero-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(255,255,255,0.15);
    padding: 12px 20px;
    border-radius: var(--radius-md);
}

.hero-feature svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
}

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

.btn-primary:hover {
    background: #b07d60;
    color: var(--color-white);
}

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

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

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

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

/* Section Styles */
section {
    padding: 60px 20px;
}

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

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

.section-accent {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-white);
}

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

.section-header h2 {
    font-size: 1.8rem;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.section-dark .section-header h2,
.section-accent .section-header h2 {
    color: var(--color-white);
}

.section-header p {
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-dark .section-header p,
.section-accent .section-header p {
    color: rgba(255,255,255,0.85);
}

/* Cards */
.card-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-white);
}

.card h3 {
    font-size: 1.2rem;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.card p {
    color: var(--color-text-light);
    line-height: 1.7;
}

.card-price {
    margin-top: 16px;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-primary);
}

/* Feature List */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item-icon {
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-item-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-white);
}

.feature-item h3 {
    font-size: 1.1rem;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.feature-item p {
    color: var(--color-text-light);
}

/* Statistics */
.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 140px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.section-dark .stat-number,
.section-accent .stat-number {
    color: var(--color-white);
}

.stat-label {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.section-dark .stat-label,
.section-accent .stat-label {
    color: rgba(255,255,255,0.85);
}

/* Testimonials */
.testimonial-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.testimonial {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.testimonial::before {
    content: '"';
    font-size: 4rem;
    color: var(--color-primary);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-weight: 600;
    font-size: 1.1rem;
}

.testimonial-info strong {
    display: block;
    color: var(--color-dark);
}

.testimonial-info span {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 18px 24px;
    background: var(--color-white);
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: background var(--transition);
}

.faq-question:hover {
    background: var(--color-light);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform var(--transition);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 24px 18px;
    color: var(--color-text-light);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

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

.step-content h3 {
    color: var(--color-dark);
    margin-bottom: 8px;
}

.step-content p {
    color: var(--color-text-light);
}

/* Quote Section */
.quote-section {
    text-align: center;
    padding: 80px 20px;
}

.quote-text {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 24px;
    position: relative;
}

.quote-author {
    font-weight: 600;
    color: var(--color-accent);
}

/* Content Blocks */
.content-block {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

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

.content-block-text h3 {
    font-size: 1.3rem;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.content-block-text p {
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

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

.content-block-image {
    background: var(--color-light);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-block-image svg {
    width: 100%;
    max-width: 300px;
    height: auto;
}

/* Comparison Table */
.comparison-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    min-width: 500px;
    border-collapse: collapse;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.comparison-table th {
    background: var(--color-primary);
    color: var(--color-white);
    font-weight: 600;
}

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

.comparison-table tr:hover td {
    background: var(--color-light);
}

/* Industries */
.industries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.industry-tag {
    background: var(--color-white);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    color: var(--color-dark);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 8px;
}

.industry-tag svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-border);
}

.timeline-item {
    position: relative;
    padding-bottom: 32px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -34px;
    top: 4px;
    width: 12px;
    height: 12px;
    background: var(--color-primary);
    border-radius: 50%;
}

.timeline-date {
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 8px;
}

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

.timeline-item p {
    color: var(--color-text-light);
}

/* Values Grid */
.values-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.value-icon {
    width: 56px;
    height: 56px;
    background: var(--color-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

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

.value-content p {
    color: var(--color-text-light);
}

/* Contact Info */
.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-md);
}

.contact-card h3 {
    color: var(--color-dark);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-card h3 svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
}

.contact-card p {
    color: var(--color-text-light);
    line-height: 1.7;
}

.contact-card a {
    color: var(--color-primary);
    word-break: break-all;
}

/* Highlighted Panel */
.highlight-panel {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: var(--radius-lg);
    padding: 40px 28px;
    color: var(--color-white);
    text-align: center;
}

.highlight-panel h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.highlight-panel p {
    opacity: 0.95;
    margin-bottom: 24px;
}

/* Tips List */
.tips-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tip-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--color-primary);
}

.tip-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    flex-shrink: 0;
}

.tip-content h4 {
    color: var(--color-dark);
    margin-bottom: 8px;
}

.tip-content p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 60px 20px 30px;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.footer-brand .logo {
    justify-content: center;
    color: var(--color-white);
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    max-width: 300px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}

.footer-links-column h4 {
    margin-bottom: 16px;
    font-size: 1rem;
}

.footer-links-column ul {
    list-style: none;
}

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

.footer-links-column a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    transition: color var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

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

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cookie-text h4 {
    color: var(--color-dark);
    margin-bottom: 8px;
}

.cookie-text p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

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

.cookie-buttons .btn {
    padding: 12px 20px;
    font-size: 0.95rem;
}

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

.cookie-modal.active {
    display: flex;
}

.cookie-modal-content {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 28px;
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.cookie-modal-header h3 {
    color: var(--color-dark);
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text-light);
    padding: 4px;
    line-height: 1;
}

.cookie-modal-close:hover {
    color: var(--color-dark);
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border);
}

.cookie-option:last-of-type {
    border-bottom: none;
}

.cookie-option-info h4 {
    color: var(--color-dark);
    margin-bottom: 4px;
}

.cookie-option-info p {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.cookie-toggle {
    position: relative;
    width: 48px;
    height: 26px;
    flex-shrink: 0;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-border);
    border-radius: 26px;
    transition: var(--transition);
}

.cookie-toggle-slider::before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: var(--color-white);
    border-radius: 50%;
    transition: var(--transition);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background: var(--color-primary);
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
    transform: translateX(22px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    opacity: 0.7;
    cursor: not-allowed;
}

.cookie-modal-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.cookie-modal-actions .btn {
    flex: 1;
}

/* Thank You Page */
.thank-you-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.thank-you-content svg {
    width: 80px;
    height: 80px;
    color: var(--color-success);
    margin-bottom: 24px;
}

.thank-you-content h1 {
    color: var(--color-dark);
    margin-bottom: 16px;
}

.thank-you-content p {
    color: var(--color-text-light);
    margin-bottom: 32px;
    max-width: 500px;
}

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

.legal-content h1 {
    color: var(--color-dark);
    margin-bottom: 24px;
    font-size: 2rem;
}

.legal-content h2 {
    color: var(--color-dark);
    margin: 32px 0 16px;
    font-size: 1.4rem;
}

.legal-content h3 {
    color: var(--color-dark);
    margin: 24px 0 12px;
    font-size: 1.2rem;
}

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

.legal-content ul, .legal-content ol {
    margin: 16px 0;
    padding-left: 24px;
    color: var(--color-text);
}

.legal-content li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.legal-content .last-updated {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 32px;
}

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

.page-header h1 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.page-header p {
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: var(--color-white);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    z-index: 10001;
    transition: top var(--transition);
}

.skip-link:focus {
    top: 10px;
    color: var(--color-white);
}

/* Media Queries */
@media (min-width: 600px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-features {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .card-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .card {
        flex: 1 1 calc(50% - 12px);
    }

    .testimonial-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial {
        flex: 1 1 calc(50% - 12px);
    }

    .contact-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-card {
        flex: 1 1 calc(50% - 12px);
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .cookie-buttons {
        flex-shrink: 0;
    }

    .content-block {
        flex-direction: row;
        align-items: center;
    }

    .content-block-text,
    .content-block-image {
        flex: 1;
    }

    .content-block.reverse {
        flex-direction: row-reverse;
    }

    .feature-item {
        flex-direction: row;
        align-items: flex-start;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-item {
        flex: 1 1 calc(50% - 12px);
    }
}

@media (min-width: 900px) {
    .nav-links {
        display: flex;
    }

    .menu-toggle {
        display: none;
    }

    .hero {
        padding: 100px 20px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    section {
        padding: 80px 20px;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .card {
        flex: 1 1 calc(33.333% - 16px);
    }

    .footer-grid {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .footer-brand {
        text-align: left;
    }

    .footer-brand .logo {
        justify-content: flex-start;
    }

    .footer-brand p {
        margin: 0;
    }

    .footer-links {
        gap: 48px;
    }

    .process-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .process-step {
        flex: 1 1 calc(50% - 16px);
    }
}

@media (min-width: 1100px) {
    .card {
        flex: 1 1 calc(25% - 18px);
    }

    .process-step {
        flex: 1 1 calc(25% - 24px);
    }
}
