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

:root {
    --primary: #1a5d4a;
    --primary-light: #2d8a6e;
    --secondary: #d4af37;
    --dark: #1c2833;
    --light: #f8f9fa;
    --text: #2c3e50;
    --text-light: #6c7a89;
    --white: #ffffff;
    --accent: #e8f5e9;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
}

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

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

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

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: #c9a227;
}

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

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

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

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--secondary);
}

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

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

.nav-links a {
    font-weight: 500;
    color: var(--text);
    position: relative;
}

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

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

.nav-cta {
    padding: 10px 24px;
    font-size: 0.95rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: var(--dark);
    transition: all 0.3s ease;
}

/* Split Section Base */
.split-section {
    display: flex;
    min-height: 100vh;
}

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

.split-content,
.split-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-content {
    padding: 80px 60px;
}

.split-visual {
    position: relative;
    overflow: hidden;
}

.split-visual img,
.split-visual svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hero */
.hero {
    padding-top: 80px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--white) 100%);
}

.hero .split-content {
    padding: 100px 80px;
}

.hero-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.hero h1 {
    font-size: 3.2rem;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 24px;
    font-weight: 700;
}

.hero h1 span {
    color: var(--primary);
}

.hero-text {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 480px;
}

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

.hero-visual {
    background: var(--primary);
    min-height: 600px;
}

.hero-visual svg {
    padding: 60px;
}

/* Section Styles */
.section {
    padding: 100px 0;
}

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

.section-accent {
    background: var(--accent);
}

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

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-dark .section-label {
    color: var(--secondary);
}

.section-header h2 {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-light);
}

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

/* Features Split */
.features-split {
    padding: 0;
}

.features-split .split-content {
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
}

.features-split .split-visual {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

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

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

/* Services */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-card {
    flex: 1 1 calc(33.333% - 22px);
    min-width: 300px;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.service-card-image {
    height: 200px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-image svg {
    width: 80px;
    height: 80px;
    stroke: var(--white);
    opacity: 0.9;
}

.service-card-content {
    padding: 32px;
}

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

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

.service-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
}

.service-price .amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.service-price .unit {
    color: var(--text-light);
    font-size: 0.95rem;
}

.service-card .btn {
    width: 100%;
}

/* Stats */
.stats-section {
    background: linear-gradient(135deg, var(--dark) 0%, #2c3e50 100%);
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    justify-content: center;
}

.stat-item {
    text-align: center;
    flex: 1 1 200px;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Process */
.process-flow {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.process-step {
    flex: 1 1 calc(25% - 18px);
    min-width: 240px;
    padding: 40px 32px;
    background: var(--white);
    border-radius: 16px;
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.process-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 24px;
}

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

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

/* Testimonials */
.testimonials-wrapper {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 320px;
    background: var(--white);
    padding: 48px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.testimonial-quote {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 32px;
    font-style: italic;
}

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

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.3rem;
}

.author-info h4 {
    font-size: 1.05rem;
    color: var(--dark);
    margin-bottom: 4px;
}

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

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 80px 0;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
}

.cta-text h2 {
    font-size: 2.4rem;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
}

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

/* Values */
.values-split .split-content {
    background: var(--dark);
    color: var(--white);
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

.value-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(212, 175, 55, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--secondary);
}

.value-item h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--white);
}

.value-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* Contact Form */
.contact-split .split-content {
    background: var(--white);
}

.contact-split .split-visual {
    background: var(--dark);
    padding: 60px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-info-item .icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(212, 175, 55, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-item .icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--secondary);
}

.contact-info-item h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.contact-info-item p,
.contact-info-item a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

.contact-form {
    width: 100%;
    max-width: 480px;
}

.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.contact-form > p {
    color: var(--text-light);
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

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

.form-submit {
    width: 100%;
    padding: 16px;
    font-size: 1.05rem;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand {
    flex: 1.5 1 280px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    max-width: 320px;
}

.footer-links {
    flex: 1 1 180px;
}

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: var(--white);
}

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

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

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

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--secondary);
}

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

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

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-text {
    flex: 1;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

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

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

.cookie-actions .btn {
    padding: 12px 28px;
    font-size: 0.95rem;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: 998;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.sticky-cta .btn {
    padding: 16px 28px;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(26, 93, 74, 0.35);
}

/* Thanks Page */
.thanks-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--white) 100%);
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.thanks-icon svg {
    width: 50px;
    height: 50px;
    stroke: var(--white);
}

.thanks-content h1 {
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.thanks-details {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    text-align: left;
}

.thanks-details h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: var(--dark);
}

.thanks-details ul {
    list-style: none;
}

.thanks-details li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    color: var(--text-light);
}

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

.thanks-details li strong {
    color: var(--dark);
}

/* About Page */
.about-hero {
    padding-top: 80px;
    background: var(--dark);
    color: var(--white);
}

.about-hero .split-content {
    padding: 100px 80px;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 24px;
}

.about-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 480px;
}

.about-hero .split-visual {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.team-section .section-header {
    margin-bottom: 48px;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.team-member {
    flex: 1 1 calc(33.333% - 22px);
    min-width: 280px;
    text-align: center;
}

.team-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: var(--primary);
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
}

.team-member h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.team-member span {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 12px;
}

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

/* Services Page */
.services-hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    text-align: center;
}

.services-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.services-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.services-detailed {
    padding: 100px 0;
}

.service-detailed-item {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid #eee;
}

.service-detailed-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.service-detailed-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-detailed-image {
    flex: 1;
    min-height: 350px;
    background: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-detailed-image svg {
    width: 120px;
    height: 120px;
    stroke: var(--white);
    opacity: 0.9;
}

.service-detailed-content {
    flex: 1;
}

.service-detailed-content h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--dark);
}

.service-detailed-content > p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    padding: 10px 0;
    padding-left: 32px;
    position: relative;
    color: var(--text);
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: var(--accent);
    border-radius: 50%;
}

.service-detailed-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
}

.service-detailed-price .from {
    color: var(--text-light);
    font-size: 1rem;
}

.service-detailed-price .amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

/* Contact Page */
.contact-hero {
    padding: 160px 0 100px;
    background: var(--dark);
    color: var(--white);
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 1.2rem;
    opacity: 0.8;
}

.contact-main {
    padding: 100px 0;
}

.contact-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-form-wrapper {
    flex: 1.5 1 400px;
}

.contact-info-wrapper {
    flex: 1 1 320px;
}

.contact-info-card {
    background: var(--accent);
    padding: 48px;
    border-radius: 20px;
}

.contact-info-card h3 {
    font-size: 1.4rem;
    margin-bottom: 32px;
    color: var(--dark);
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

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

.info-item .icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-item .icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--white);
}

.info-item h4 {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.info-item p,
.info-item a {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Legal Pages */
.legal-page {
    padding: 160px 0 100px;
}

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

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

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

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 48px;
    margin-bottom: 20px;
    color: var(--dark);
}

.legal-content p {
    margin-bottom: 20px;
    color: var(--text);
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 10px;
    color: var(--text);
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--white);
    z-index: 1001;
    padding: 80px 32px 32px;
    transition: right 0.3s ease;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav-links {
    list-style: none;
}

.mobile-nav-links li {
    margin-bottom: 24px;
}

.mobile-nav-links a {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
}

.mobile-nav-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    background: var(--accent);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* Responsive */
@media (max-width: 992px) {
    .split-section {
        flex-direction: column;
        min-height: auto;
    }

    .split-section.reverse {
        flex-direction: column;
    }

    .split-content,
    .split-visual {
        width: 100%;
    }

    .split-content {
        padding: 60px 32px;
    }

    .split-visual {
        min-height: 400px;
    }

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

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

    .service-detailed-item,
    .service-detailed-item:nth-child(even) {
        flex-direction: column;
    }

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

    .cta-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero .split-content {
        padding: 80px 24px;
    }

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

    .section {
        padding: 60px 0;
    }

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

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

    .testimonial-card {
        padding: 32px;
    }

    .footer-grid {
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .contact-split .split-visual {
        padding: 40px 24px;
    }

    .about-hero .split-content {
        padding: 80px 24px;
    }

    .about-hero h1 {
        font-size: 2.2rem;
    }

    .cta-text h2 {
        font-size: 1.8rem;
    }

    .thanks-content h1 {
        font-size: 2rem;
    }
}
