:root {
    --color-primary: #1a3a5c;
    --color-secondary: #c4933f;
    --color-dark: #0d1f2d;
    --color-light: #f8f6f3;
    --color-gray: #6b7d8a;
    --color-white: #ffffff;
    --color-accent: #e8dfd1;
    --shadow-soft: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-medium: 0 8px 32px rgba(0,0,0,0.12);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-dark);
    background-color: var(--color-white);
}

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

ul {
    list-style: none;
}

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

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

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

/* Navigation */
.nav-wrapper {
    background: var(--color-white);
    box-shadow: var(--shadow-soft);
    position: relative;
    z-index: 1000;
}

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

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

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

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

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

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

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

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

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

.nav-toggle span {
    width: 26px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="%23c4933f" opacity="0.1" x="20" y="20" width="60" height="60"/></svg>');
    background-size: 80px;
    opacity: 0.3;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
    color: var(--color-white);
}

.hero-badge {
    display: inline-block;
    background: var(--color-secondary);
    color: var(--color-white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.hero-description {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image-wrapper {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 4/3;
    background: var(--color-accent);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    position: relative;
}

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

.hero-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--color-accent), var(--color-light));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-placeholder svg {
    width: 120px;
    height: 120px;
    opacity: 0.4;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background: #b38536;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(196, 147, 63, 0.3);
}

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

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

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

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

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

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

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

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

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

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

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

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

.section-header-left {
    text-align: left;
    margin-bottom: 48px;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

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

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-gray);
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: var(--color-white);
    border-radius: 16px;
    padding: 36px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

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

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

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--color-white);
    fill: none;
    stroke-width: 2;
}

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

.service-description {
    color: var(--color-gray);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

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

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

/* Features Section */
.features-wrapper {
    display: flex;
    gap: 80px;
    align-items: center;
}

.features-content {
    flex: 1;
}

.features-visual {
    flex: 1;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 36px;
}

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

.feature-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: var(--color-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--color-white);
    fill: none;
    stroke-width: 2;
}

.feature-text h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--color-dark);
}

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

.features-image {
    width: 100%;
    aspect-ratio: 1;
    background: var(--color-accent);
    border-radius: 20px;
    overflow: hidden;
}

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

/* Stats Section */
.stats-wrapper {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    padding: 40px 0;
}

.stat-item {
    text-align: center;
}

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

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

.stat-label {
    font-size: 1rem;
    color: var(--color-gray);
    font-weight: 500;
}

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

/* Testimonials */
.testimonials-grid {
    display: flex;
    gap: 30px;
}

.testimonial-card {
    flex: 1;
    background: var(--color-white);
    padding: 36px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 6rem;
    color: var(--color-accent);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--color-dark);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    font-style: italic;
}

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

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

.testimonial-info h5 {
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 4px;
}

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

/* CTA Section */
.cta-wrapper {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-wrapper h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.cta-wrapper p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 36px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Form Styles */
.form-section {
    background: var(--color-light);
    padding: 80px 0;
}

.form-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-content {
    flex: 1;
}

.form-container {
    flex: 1;
    background: var(--color-white);
    padding: 48px;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 4px rgba(196, 147, 63, 0.1);
}

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

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

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

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

.contact-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: var(--color-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--color-white);
    fill: none;
    stroke-width: 2;
}

.contact-text h4 {
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--color-dark);
}

.contact-text p {
    color: var(--color-gray);
}

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

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

.footer-brand {
    flex: 1.5;
}

.footer-brand .logo {
    color: var(--color-white);
    margin-bottom: 20px;
    display: inline-block;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    max-width: 300px;
    line-height: 1.8;
}

.footer-links {
    flex: 1;
}

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

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

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

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

.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(--color-secondary);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-dark);
    color: var(--color-white);
    padding: 24px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    transform: translateY(100%);
    transition: var(--transition);
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-text {
    flex: 1;
}

.cookie-text p {
    font-size: 0.95rem;
    opacity: 0.9;
}

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

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

.cookie-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

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

.cookie-accept:hover {
    background: #b38536;
}

.cookie-reject {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255,255,255,0.3);
}

.cookie-reject:hover {
    border-color: var(--color-white);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    pointer-events: none;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.sticky-cta .btn {
    box-shadow: var(--shadow-medium);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--color-primary), var(--color-dark));
    padding: 120px 0 80px;
    text-align: center;
    color: var(--color-white);
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 1.15rem;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Page */
.content-page {
    padding: 80px 0;
}

.content-page h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: var(--color-dark);
}

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

.content-page p {
    margin-bottom: 16px;
    color: var(--color-gray);
}

.content-page ul {
    margin: 16px 0;
    padding-left: 24px;
}

.content-page li {
    margin-bottom: 10px;
    color: var(--color-gray);
    list-style: disc;
}

/* Thanks Page */
.thanks-wrapper {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

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

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

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

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

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

/* About Page */
.about-intro {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    aspect-ratio: 4/3;
    background: var(--color-accent);
    border-radius: 20px;
    overflow: hidden;
}

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

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

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

.team-card h4 {
    font-size: 1.15rem;
    margin-bottom: 6px;
    color: var(--color-dark);
}

.team-card span {
    color: var(--color-gray);
    font-size: 0.95rem;
}

/* Process Section */
.process-wrapper {
    display: flex;
    gap: 30px;
    counter-reset: process;
}

.process-step {
    flex: 1;
    position: relative;
    padding: 36px;
    background: var(--color-white);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
}

.process-step::before {
    counter-increment: process;
    content: counter(process);
    position: absolute;
    top: -20px;
    left: 36px;
    width: 48px;
    height: 48px;
    background: var(--color-secondary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
}

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

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

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

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

    .hero-description {
        margin: 0 auto 36px;
    }

    .features-wrapper {
        flex-direction: column;
    }

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

    .about-intro {
        flex-direction: column;
    }

    .footer-grid {
        flex-wrap: wrap;
    }

    .testimonials-grid {
        flex-direction: column;
    }

    .process-wrapper {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--color-white);
        flex-direction: column;
        padding: 80px 40px;
        gap: 24px;
        box-shadow: var(--shadow-medium);
        transition: var(--transition);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        min-height: 70vh;
    }

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

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .stats-wrapper {
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 1 1 calc(50% - 20px);
    }

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

    .sticky-cta {
        right: 20px;
        bottom: 80px;
    }

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

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

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

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .btn {
        padding: 14px 24px;
    }

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

    .form-container {
        padding: 32px 24px;
    }

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