:root {
    --color-sunset-orange: #FF6B35;
    --color-deep-teal: #004E64;
    --color-metallic-accent: #9FE2BF;
    --color-dark-surface: #252B2F;
    --color-light-surface: #F8F9FA;
    --gradient-sunset-teal: linear-gradient(135deg, var(--color-sunset-orange) 0%, #D84315 50%, var(--color-deep-teal) 100%);
    --gradient-metallic: linear-gradient(135deg, #E8E8E8 0%, #B8B8B8 50%, #E8E8E8 100%);
    --font-heading: 'Montserrat', system-ui, -apple-system, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --border-radius-sm: 4px;
    --border-radius-md: 12px;
    --border-radius-lg: 24px;
    --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-brutalist: 4px 4px 0 var(--color-dark-surface);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-light-surface);
    color: var(--color-dark-surface);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

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

ul {
    list-style: none;
}

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

strong, p {
    color: inherit;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid transparent;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
    min-height: 52px;
}

.btn-primary {
    background: var(--gradient-sunset-teal);
    color: white;
    box-shadow: var(--shadow-brutalist);
}

.btn-primary:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--color-dark-surface);
}

.btn-secondary {
    background: transparent;
    color: var(--color-deep-teal);
    border-color: var(--color-deep-teal);
}

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 3px solid var(--color-sunset-orange);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--color-deep-teal);
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-sunset-teal);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

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

.nav-link {
    padding: 10px 20px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-dark-surface);
    border-radius: var(--border-radius-sm);
    position: relative;
}

.nav-link:hover {
    color: var(--color-sunset-orange);
    background: rgba(255, 107, 53, 0.1);
}

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

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--color-dark-surface);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--gradient-sunset-teal);
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-diagonal {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: var(--color-deep-teal);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(5px);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 24px;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 40px;
    line-height: 1.8;
}

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

.hero-image {
    position: relative;
    z-index: 2;
    border-radius: var(--border-radius-lg);
    box-shadow: 20px 20px 0 rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.section {
    padding: 100px 0;
    position: relative;
}

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

.section-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 78, 100, 0.1);
    color: var(--color-deep-teal);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 50px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--color-dark-surface);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.grid-2 {
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 48px;
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius-md);
    padding: 32px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-sunset-teal);
}

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

.service-card {
    background: white;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.service-card:hover {
    border-color: var(--color-sunset-orange);
    box-shadow: var(--shadow-glass);
}

.service-icon {
    width: 72px;
    height: 72px;
    background: var(--gradient-sunset-teal);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 24px;
}

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

.service-description {
    color: #666;
    margin-bottom: 20px;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-sunset-orange);
    margin-bottom: 16px;
}

.process-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    position: relative;
}

.step-number {
    width: 56px;
    height: 56px;
    background: var(--gradient-sunset-teal);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.step-content {
    flex: 1;
    padding-top: 8px;
}

.step-title {
    font-size: 1.25rem;
    color: var(--color-dark-surface);
    margin-bottom: 8px;
}

.step-text {
    color: #666;
}

.testimonial-card {
    background: var(--color-dark-surface);
    color: white;
    border-radius: var(--border-radius-md);
    padding: 40px;
    position: relative;
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
    opacity: 0.9;
}

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

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-sunset-orange);
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 700;
    font-size: 1.1rem;
}

.author-role {
    font-size: 0.9rem;
    opacity: 0.7;
}

.rating {
    color: var(--color-sunset-orange);
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.stats-section {
    background: var(--gradient-sunset-teal);
    padding: 80px 0;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
    text-align: center;
}

.stat-item {
    padding: 24px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-section {
    background: var(--color-dark-surface);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 24px;
}

.cta-text {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer {
    background: #1a1d20;
    color: white;
    padding: 80px 0 40px;
    border-top: 4px solid var(--color-sunset-orange);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(2, 1fr);
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 20px;
}

.footer-tagline {
    opacity: 0.7;
    margin-bottom: 24px;
    line-height: 1.7;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--color-sunset-orange);
}

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

.footer-link {
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.footer-link:hover {
    opacity: 1;
    color: var(--color-sunset-orange);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.footer-contact-icon {
    width: 24px;
    height: 24px;
    color: var(--color-sunset-orange);
    flex-shrink: 0;
    margin-top: 4px;
}

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

.copyright {
    opacity: 0.6;
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    gap: 32px;
}

.legal-link {
    opacity: 0.6;
    font-size: 0.9rem;
}

.legal-link:hover {
    opacity: 1;
    color: var(--color-sunset-orange);
}

.cookie-banner {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    background: white;
    border-radius: var(--border-radius-md);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    padding: 24px;
    max-width: 420px;
    border: 2px solid var(--color-sunset-orange);
}

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

.cookie-text {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.cookie-btn {
    flex: 1;
    min-width: 120px;
    padding: 12px 20px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: center;
}

.cookie-btn-accept {
    background: var(--color-deep-teal);
    color: white;
    border: none;
}

.cookie-btn-accept:hover {
    background: #003847;
}

.cookie-btn-decline {
    background: transparent;
    color: var(--color-dark-surface);
    border: 2px solid #ddd;
}

.cookie-btn-decline:hover {
    border-color: var(--color-dark-surface);
}

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

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

.form-input,
.form-textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
    background: white;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-sunset-orange);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

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

.map-container {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 2px solid #e0e0e0;
    background: #f0f0f0;
    min-height: 400px;
}

.faq-item {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius-sm);
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-dark-surface);
    text-align: left;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gradient-sunset-teal);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #f8f9fa;
}

.faq-answer-content {
    padding: 0 24px 24px;
    color: #666;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.team-card {
    text-align: center;
}

.team-avatar {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 24px;
    border: 4px solid var(--color-sunset-orange);
}

.team-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.team-role {
    color: white;
    font-weight: 600;
    margin-bottom: 16px;
}

.team-bio {
    font-size: 0.95rem;
    color: white;
    line-height: 1.7;
}

.blog-card {
    background: white;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
}

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

.blog-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-content {
    padding: 24px;
}

.blog-meta {
    font-size: 0.85rem;
    color: var(--color-sunset-orange);
    font-weight: 600;
    margin-bottom: 12px;
}

.blog-title {
    font-size: 1.25rem;
    color: var(--color-dark-surface);
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-excerpt {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

.page-hero {
    padding: 160px 0 80px;
    background: var(--gradient-sunset-teal);
    text-align: center;
    color: white;
}

.page-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 16px;
}

.page-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info-card {
    background: white;
    border-radius: var(--border-radius-md);
    padding: 32px;
    text-align: center;
    border: 2px solid #e0e0e0;
    transition: var(--transition-smooth);
}

.contact-info-card:hover {
    border-color: var(--color-sunset-orange);
}

.contact-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-sunset-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    margin: 0 auto 20px;
}

.contact-label {
    font-weight: 600;
    color: var(--color-dark-surface);
    margin-bottom: 8px;
}

.contact-value {
    color: #666;
}

.price-table {
    width: 100%;
    background: white;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 2px solid #e0e0e0;
}

.price-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    padding: 20px 24px;
    border-bottom: 1px solid #e0e0e0;
    align-items: center;
}

.price-row:last-child {
    border-bottom: none;
}

.price-row:hover {
    background: #f8f9fa;
}

.price-service {
    font-weight: 600;
    color: var(--color-dark-surface);
}

.price-amount {
    font-weight: 800;
    color: var(--color-sunset-orange);
    text-align: right;
}

.price-note {
    font-size: 0.85rem;
    color: #888;
    padding: 16px 24px;
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .nav-list {
        position: fixed;
        top: 85px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 24px;
        gap: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition-smooth);
    }

    .nav-list.active {
        transform: translateY(0);
        opacity: 1;
    }

    .mobile-toggle {
        display: flex;
    }

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

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

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

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .section {
        padding: 60px 0;
    }

    .stats-grid {
        gap: 24px;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .grid-2 {
        grid-template-columns: 1fr; 
    }
    .grid-3 {
        grid-template-columns: 1fr; 
    }

    .grid-4 {
        grid-template-columns: 1fr; 
    }

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

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

    .btn {
        width: 100%;
    }

    .cookie-banner {
        left: 16px;
        right: 16px;
        bottom: 16px;
        max-width: none;
    }

    .price-row {
        grid-template-columns: 1fr;
        gap: 8px;
        text-align: center;
    }

    .price-amount {
        text-align: center;
    }
}