:root {
    --primary: #1a2744;
    --secondary: #c9a227;
    --accent: #3d5a80;
    --light: #f7f9fc;
    --dark: #0d1520;
    --text: #2c3e50;
    --text-light: #6c7a89;
    --white: #ffffff;
    --shadow: 0 8px 32px rgba(26, 39, 68, 0.12);
    --shadow-sm: 0 4px 12px rgba(26, 39, 68, 0.08);
}

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

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);
}

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

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

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

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }

p { margin-bottom: 1rem; }

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

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

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

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

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

.ad-disclosure {
    background: var(--dark);
    color: var(--text-light);
    font-size: 0.75rem;
    padding: 6px 0;
    text-align: center;
}

.header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

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

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

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

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

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

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

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

.nav a:hover {
    color: var(--primary);
}

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
}

.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: -10%;
    width: 65%;
    height: 100%;
    background-color: var(--accent);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 560px;
    padding: 60px 0;
}

.hero-label {
    display: inline-block;
    background: var(--secondary);
    color: var(--dark);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero h1 {
    margin-bottom: 24px;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

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

.section {
    padding: 100px 0;
}

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

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

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

.section-header {
    margin-bottom: 56px;
}

.section-header h2 {
    margin-bottom: 16px;
}

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

.section-header-center {
    text-align: center;
}

.section-header-center p {
    margin-left: auto;
    margin-right: auto;
}

.asymmetric-intro {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.asymmetric-intro-text {
    flex: 1;
    padding-top: 40px;
}

.asymmetric-intro-visual {
    flex: 0 0 45%;
    position: relative;
}

.asymmetric-intro-visual img {
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.offset-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--secondary);
    color: var(--dark);
    padding: 20px 28px;
    border-radius: 8px;
    font-weight: 600;
}

.offset-badge span {
    display: block;
    font-size: 2rem;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 22px);
    min-width: 280px;
    background: var(--white);
    border-radius: 12px;
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--secondary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleY(1);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

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

.service-card h3 {
    margin-bottom: 12px;
}

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

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary);
}

.service-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-light);
}

.split-section {
    display: flex;
    align-items: center;
    gap: 80px;
}

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

.split-content {
    flex: 1;
}

.split-visual {
    flex: 1;
    position: relative;
}

.split-visual img {
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.overlap-card {
    position: absolute;
    bottom: -40px;
    right: -40px;
    background: var(--white);
    padding: 28px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    max-width: 260px;
}

.overlap-card h4 {
    margin-bottom: 8px;
}

.overlap-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.feature-list {
    list-style: none;
    margin: 24px 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.feature-list li::before {
    content: '';
    width: 20px;
    height: 20px;
    background: var(--secondary);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 4px;
}

.staggered-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.staggered-item {
    flex: 1 1 calc(50% - 12px);
    min-width: 300px;
}

.staggered-item:nth-child(even) {
    margin-top: 48px;
}

.process-card {
    background: var(--white);
    border-radius: 16px;
    padding: 36px;
    height: 100%;
    box-shadow: var(--shadow-sm);
}

.process-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--light);
    -webkit-text-stroke: 2px var(--secondary);
    margin-bottom: 16px;
}

.testimonials-wrapper {
    position: relative;
    padding: 40px 0;
}

.testimonial-card {
    background: rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 32px;
}

.testimonial-card:last-child {
    margin-bottom: 0;
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.8;
}

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

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--dark);
}

.testimonial-info strong {
    display: block;
    margin-bottom: 4px;
}

.testimonial-info span {
    font-size: 0.9rem;
    opacity: 0.7;
}

.cta-banner {
    background: var(--secondary);
    border-radius: 20px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-banner h2 {
    color: var(--dark);
    margin-bottom: 12px;
}

.cta-banner p {
    color: var(--dark);
    opacity: 0.8;
    margin: 0;
}

.cta-banner .btn {
    background: var(--dark);
    color: var(--white);
    flex-shrink: 0;
}

.cta-banner .btn:hover {
    background: var(--primary);
}

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

.contact-info {
    flex: 0 0 380px;
}

.contact-form-wrapper {
    flex: 1;
    background: var(--light);
    border-radius: 16px;
    padding: 48px;
}

.contact-block {
    margin-bottom: 36px;
}

.contact-block h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.contact-block p {
    color: var(--text-light);
    margin: 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e1e8ef;
    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(--secondary);
}

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

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

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

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

.footer-brand {
    flex: 0 0 300px;
}

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

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

.footer-nav {
    flex: 1;
    display: flex;
    gap: 60px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1rem;
}

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

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: var(--text-light);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

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

.footer-legal a {
    color: var(--text-light);
    font-size: 0.9rem;
}

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

.page-header {
    background: var(--primary);
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 16px;
}

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

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

.content-section h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.content-section h2:first-child {
    margin-top: 0;
}

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

.content-section ul {
    color: var(--text-light);
    margin-left: 24px;
    margin-bottom: 20px;
}

.content-section li {
    margin-bottom: 8px;
}

.about-intro {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 80px;
}

.about-intro-content {
    flex: 1;
}

.about-intro-image {
    flex: 0 0 45%;
    position: relative;
}

.about-intro-image img {
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.floating-stat {
    position: absolute;
    background: var(--white);
    padding: 20px 28px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.floating-stat.top-right {
    top: -20px;
    right: -20px;
}

.floating-stat.bottom-left {
    bottom: -20px;
    left: -20px;
}

.floating-stat span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
}

.floating-stat p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

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

.team-member {
    flex: 1 1 calc(25% - 24px);
    min-width: 220px;
    text-align: center;
}

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

.team-member h4 {
    margin-bottom: 4px;
}

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

.thanks-wrapper {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px;
}

.thanks-content {
    max-width: 560px;
}

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

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

.thanks-content h1 {
    margin-bottom: 16px;
}

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

.services-hero {
    position: relative;
    padding: 100px 0 80px;
    background: var(--primary);
    overflow: hidden;
}

.services-hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: var(--accent);
    opacity: 0.3;
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
}

.services-hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.services-hero h1 {
    color: var(--white);
    margin-bottom: 20px;
}

.services-hero p {
    color: rgba(255,255,255,0.8);
    font-size: 1.15rem;
}

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

.service-detail-card {
    display: flex;
    gap: 48px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #e1e8ef;
    align-items: center;
}

.service-detail-card:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

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

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

.service-detail-visual {
    flex: 0 0 40%;
    background: var(--light);
    border-radius: 16px;
    overflow: hidden;
}

.service-detail-visual img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.service-detail-content h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

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

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

.service-includes li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text);
}

.service-includes li::before {
    content: '✓';
    color: var(--secondary);
    font-weight: 700;
}

.service-detail-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--secondary);
}

.service-detail-price span {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-light);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-inner p {
    margin: 0;
    flex: 1;
    min-width: 280px;
    font-size: 0.95rem;
}

.cookie-inner a {
    color: var(--secondary);
}

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

.cookie-actions button {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.cookie-reject {
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
}

.disclaimer {
    background: #fef9e7;
    border-left: 4px solid var(--secondary);
    padding: 20px 24px;
    margin: 32px 0;
    border-radius: 0 8px 8px 0;
}

.disclaimer p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text);
}

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

    .nav.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-bg {
        width: 100%;
        right: 0;
        clip-path: none;
        opacity: 0.2;
    }

    .hero-content {
        max-width: 100%;
    }

    .asymmetric-intro,
    .split-section,
    .split-section.reverse,
    .about-intro,
    .contact-layout {
        flex-direction: column;
        gap: 40px;
    }

    .asymmetric-intro-visual,
    .split-visual,
    .about-intro-image,
    .contact-info {
        flex: none;
        width: 100%;
    }

    .offset-badge,
    .overlap-card,
    .floating-stat {
        position: static;
        margin-top: 20px;
    }

    .staggered-item:nth-child(even) {
        margin-top: 0;
    }

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

    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }

    .footer-nav {
        flex-wrap: wrap;
        gap: 32px;
    }

    .footer-brand {
        flex: none;
    }

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

    .service-detail-visual {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .service-card {
        flex: 1 1 100%;
    }

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

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

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}
