/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* COOKIE BANNER */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    text-align: center;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* NAVIGATION */
.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 500;
    color: #4b5563;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: #2563eb;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: #2563eb;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    display: block;
    transition: all 0.3s ease;
}

/* BUTTONS */
.btn-primary,
.btn-secondary,
.btn-outlined,
.btn-hero {
    padding: 0.9rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 1rem;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
}

.btn-primary:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37,99,235,0.3);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #1a1a1a;
}

.btn-outlined {
    background: transparent;
    color: #2563eb;
    border-color: #2563eb;
}

.btn-outlined:hover {
    background: #2563eb;
    color: #ffffff;
}

.btn-hero {
    background: #2563eb;
    color: #ffffff;
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-hero:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,99,235,0.4);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

/* SPLIT LAYOUT (ARCHETYPE: SPLIT-SCREEN MODERN) */
.split-layout {
    display: flex;
    align-items: stretch;
    min-height: 400px;
}

.split-layout.reverse {
    flex-direction: row-reverse;
}

.content-block,
.image-block {
    flex: 1;
    min-width: 0;
}

.content-block {
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-block.dark-bg {
    background: #1a1a1a;
    color: #ffffff;
}

.content-block.centered {
    text-align: center;
    align-items: center;
}

.image-block {
    position: relative;
    overflow: hidden;
}

.image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* HERO SECTION */
.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-content-side {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
}

.hero-content-side h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #0f172a;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #475569;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2563eb;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 0.5rem;
}

.hero-image-side {
    flex: 1;
}

/* SECTIONS */
section {
    padding: 5rem 2rem;
}

.intro-section,
.trust-section,
.services-preview,
.testimonial-section,
.process-section,
.contact-form-section,
.final-cta {
    padding: 5rem 0;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: #dbeafe;
    color: #2563eb;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.section-tag.light {
    background: rgba(255,255,255,0.2);
    color: #ffffff;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #0f172a;
    font-weight: 700;
}

.content-block h2 {
    margin-top: 0;
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 1.2rem;
}

.content-block.dark-bg p {
    color: #cbd5e1;
}

/* TRUST SECTION */
.trust-section {
    background: #f8fafc;
}

.trust-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.trust-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.trust-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.trust-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.trust-card p {
    color: #64748b;
    line-height: 1.7;
}

/* SERVICE QUICK LIST */
.service-quick-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.service-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.service-item p {
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.price-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.15);
    color: #ffffff;
    font-weight: 700;
    border-radius: 6px;
    font-size: 1.1rem;
}

/* TESTIMONIALS */
.testimonial-block {
    padding: 2.5rem;
    background: #f8fafc;
    border-left: 4px solid #2563eb;
    margin-bottom: 2rem;
    border-radius: 8px;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: #334155;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author strong {
    display: block;
    color: #0f172a;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    color: #64748b;
    font-size: 0.95rem;
}

/* PROCESS STEPS */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

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

.step-number {
    font-size: 2rem;
    font-weight: 800;
    color: #2563eb;
    min-width: 60px;
}

.step h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.step p {
    color: #64748b;
    line-height: 1.7;
}

/* FORMS */
.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    margin-bottom: 1rem;
}

.form-header p {
    font-size: 1.1rem;
    color: #64748b;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: #334155;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: #475569;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.3rem;
    width: auto;
}

.checkbox-label a {
    color: #2563eb;
    text-decoration: underline;
}

/* SERVICES DETAILED */
.service-detail {
    padding: 4rem 0;
}

.service-detail.alt-bg {
    background: #f8fafc;
}

.service-lead {
    font-size: 1.25rem;
    color: #334155;
    margin-bottom: 2rem;
    font-weight: 500;
}

.service-features {
    margin: 2rem 0;
}

.service-features h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

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

.service-features li {
    padding: 0.7rem 0 0.7rem 1.8rem;
    position: relative;
    color: #475569;
    line-height: 1.6;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

.service-pricing {
    background: #f1f5f9;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.price-main {
    font-size: 3rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.price-description {
    color: #64748b;
    line-height: 1.6;
}

/* PRICING INFO */
.pricing-info {
    background: #f8fafc;
    padding: 4rem 2rem;
}

.pricing-info h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.info-grid {
    display: flex;
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.info-card {
    flex: 1;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.info-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

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

.info-card li {
    padding: 0.6rem 0;
    color: #475569;
    border-bottom: 1px solid #e2e8f0;
}

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

/* ABOUT PAGE */
.page-header {
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    padding: 4rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.header-subtitle {
    font-size: 1.3rem;
    color: #475569;
    max-width: 700px;
    margin: 0 auto;
}

.about-intro {
    padding: 5rem 0;
}

.stats-section {
    background: #1a1a1a;
    color: #ffffff;
    padding: 5rem 2rem;
}

.stats-section h2 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
}

.stats-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-box {
    flex: 1;
    min-width: 220px;
    text-align: center;
    padding: 2rem;
}

.stat-box .stat-number {
    font-size: 4rem;
    color: #60a5fa;
    margin-bottom: 0.5rem;
}

.stat-box .stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.stat-box p {
    color: #94a3b8;
    font-size: 0.95rem;
}

.philosophy-section,
.approach-section,
.team-section,
.values-section,
.certifications-section {
    padding: 5rem 0;
}

.highlight-box {
    background: #eff6ff;
    border-left: 4px solid #2563eb;
    padding: 1.5rem;
    margin-top: 2rem;
    border-radius: 6px;
}

.highlight-box p {
    color: #334155;
    margin: 0;
}

.team-grid {
    display: flex;
    gap: 2.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.team-member {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 10px;
}

.team-member h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.team-member p {
    color: #64748b;
    line-height: 1.7;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 3rem;
}

.approach-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.approach-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: #0f172a;
}

.approach-item p {
    color: #64748b;
    line-height: 1.7;
}

.values-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 10px;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.value-card p {
    color: #64748b;
    line-height: 1.7;
}

.cert-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.cert-item {
    padding: 2rem;
    background: #f8fafc;
    border-radius: 10px;
}

.cert-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #0f172a;
}

.cert-item p {
    color: #64748b;
    line-height: 1.7;
}

.cta-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    padding: 5rem 2rem;
}

.cta-section h2 {
    text-align: center;
}

.cta-section p {
    text-align: center;
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 2rem;
}

/* CONTACT PAGE */
.contact-main {
    padding: 4rem 0;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
    color: #0f172a;
}

.contact-item p {
    color: #64748b;
    line-height: 1.7;
}

.contact-item a {
    color: #2563eb;
    text-decoration: underline;
}

.small-note {
    font-size: 0.9rem;
    color: #94a3b8;
}

.contact-note {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.contact-note h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.contact-note ol {
    padding-left: 1.5rem;
    color: #64748b;
    line-height: 1.8;
}

.contact-note li {
    margin-bottom: 0.7rem;
}

.form-container-box {
    background: #f8fafc;
    padding: 3rem;
    border-radius: 12px;
}

.form-container-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.form-intro {
    color: #64748b;
    margin-bottom: 2rem;
}

.faq-section {
    background: #f8fafc;
    padding: 5rem 2rem;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.faq-item {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
}

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.faq-item p {
    color: #64748b;
    line-height: 1.7;
}

.map-section {
    padding: 4rem 2rem;
}

.map-placeholder {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 400px;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: rgba(255,255,255,0.95);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.map-overlay p {
    color: #334155;
    margin: 0;
    line-height: 1.6;
}

/* THANKS PAGE */
.thanks-page {
    padding: 6rem 2rem;
    min-height: 60vh;
}

.thanks-content {
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #10b981;
    color: #ffffff;
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.thanks-message {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 3rem;
}

.service-info {
    background: #eff6ff;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    color: #1e40af;
    font-size: 1.1rem;
}

.next-steps {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 12px;
    margin: 3rem 0;
}

.next-steps h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #0f172a;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.step-num {
    width: 40px;
    height: 40px;
    background: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-item p {
    color: #475569;
    margin: 0;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.contact-reminder {
    background: #fffbeb;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 3rem;
}

.contact-reminder p {
    color: #92400e;
    margin: 0.3rem 0;
}

.contact-reminder a {
    color: #2563eb;
    text-decoration: underline;
}

/* LEGAL PAGES */
.legal-page {
    padding: 4rem 2rem;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.updated-date {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

.legal-content {
    font-size: 1rem;
    line-height: 1.8;
    color: #334155;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #1e293b;
}

.legal-content h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.7rem;
    color: #334155;
}

.legal-content p {
    margin-bottom: 1.2rem;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

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

.legal-content a {
    color: #2563eb;
    text-decoration: underline;
}

.intro-text {
    background: #f8fafc;
    padding: 1.5rem;
    border-left: 4px solid #2563eb;
    margin-bottom: 2rem;
    border-radius: 6px;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookies-table thead {
    background: #f1f5f9;
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.cookies-table th {
    font-weight: 600;
    color: #0f172a;
}

.cookies-table td {
    color: #475569;
}

/* FOOTER */
.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: #ffffff;
}

.footer-column p,
.footer-column a {
    color: #94a3b8;
    display: block;
    margin-bottom: 0.7rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    text-align: center;
}

.footer-bottom p {
    color: #64748b;
    font-size: 0.9rem;
}

/* STICKY CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-btn {
    background: #2563eb;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(37,99,235,0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #1d4ed8;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(37,99,235,0.5);
}

/* RESPONSIVE */
@media (max-width: 968px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        padding: 1rem 0;
    }

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

    .nav-links a {
        padding: 1rem 2rem;
    }

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

    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
    }

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content-side {
        padding: 3rem 2rem;
    }

    .hero-content-side h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .trust-grid,
    .info-grid,
    .stats-grid,
    .team-grid,
    .values-grid {
        flex-direction: column;
    }

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

    h2 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 640px) {
    .hero-content-side h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .content-block,
    .image-block {
        padding: 2.5rem 1.5rem;
    }

    section {
        padding: 3rem 1rem;
    }

    .form-container-box {
        padding: 2rem 1.5rem;
    }
}