@charset "UTF-8";

:root {
    --emerald-primary: #059669;
    --emerald-dark: #064e3b;
    --emerald-light: #34d399;
    --forest-deep: #1a3a2f;
    --lime-fresh: #84cc16;
    --lime-bright: #a3e635;
    --white-crystal: #ffffff;
    --gray-warm: #f5f5f4;
    --gray-medium: #a8a29e;
    --text-dark: #1c1917;
    --text-light: #fafaf9;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 15px 40px rgba(0, 0, 0, 0.18);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.4);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white-crystal);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

strong, b, p {
    color: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--forest-deep);
}

h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.75rem);
}

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

a:hover {
    color: var(--emerald-dark);
}

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

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

.section-padding {
    padding: clamp(4rem, 8vw, 7rem) 0;
}

.bg-emerald-gradient {
    background: linear-gradient(135deg, var(--emerald-dark) 0%, var(--forest-deep) 100%);
}

.bg-forest-gradient {
    background: linear-gradient(180deg, var(--forest-deep) 0%, var(--emerald-dark) 100%);
}

.bg-lime-gradient {
    background: linear-gradient(135deg, var(--lime-fresh) 0%, var(--lime-bright) 100%);
}

.text-emerald {
    color: var(--emerald-primary);
}

.text-forest {
    color: var(--forest-deep);
}

.text-lime {
    color: var(--lime-fresh);
}

.text-white {
    color: var(--white-crystal) !important;
}

.text-dark {
    color: var(--text-dark) !important;
}

.bg-white {
    background-color: var(--white-crystal) !important;
}

.bg-gray-warm {
    background-color: var(--gray-warm) !important;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
    min-height: 52px;
}

.btn-lime {
    background: var(--lime-fresh);
    color: var(--forest-deep);
    box-shadow: 0 4px 15px rgba(132, 204, 22, 0.3);
}

.btn-lime:hover {
    background: var(--lime-bright);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(132, 204, 22, 0.4);
}

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

.btn-outline-white:hover {
    background: var(--white-crystal);
    color: var(--forest-deep);
}

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

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

.btn-forest {
    background: var(--forest-deep);
    color: var(--white-crystal);
}

.btn-forest:hover {
    background: var(--emerald-dark);
}

.header-main {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition-smooth);
}

.header-scrolled {
    background: var(--white-crystal);
    box-shadow: var(--shadow-medium);
    padding: 0.75rem 0;
}

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

.logo-display {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--forest-deep);
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--emerald-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-crystal);
    font-size: 1.5rem;
}

.nav-primary {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--forest-deep);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--lime-fresh);
    transition: var(--transition-smooth);
}

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-toggle span {
    width: 28px;
    height: 2.5px;
    background: var(--forest-deep);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--forest-deep) 0%, var(--emerald-dark) 50%, var(--emerald-primary) 100%);
    padding: 8rem 0 5rem;
}

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.7) 0%, rgba(26, 58, 47, 0.75) 100%);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: var(--white-crystal);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    color: var(--white-crystal);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--lime-fresh);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.25rem;
}

.hero-visual {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    max-width: 600px;
    z-index: 2;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(132, 204, 22, 0.2) 0%, rgba(5, 150, 105, 0.1) 100%);
    z-index: 1;
}

.hero-main-image {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    background: var(--white-crystal);
    padding: 1.25rem 1.75rem;
    border-radius: 16px;
    box-shadow: var(--shadow-strong);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.floating-card-top {
    top: 10%;
    left: -10%;
    animation: floatVertical 3s ease-in-out infinite;
}

.floating-card-bottom {
    bottom: 15%;
    right: -8%;
    animation: floatVertical 3s ease-in-out infinite 1.5s;
}

@keyframes floatVertical {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.floating-icon {
    width: 48px;
    height: 48px;
    background: var(--lime-fresh);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--forest-deep);
}

.floating-text {
    font-weight: 600;
    color: var(--forest-deep);
    font-size: 0.95rem;
}

.floating-subtext {
    font-size: 0.8rem;
    color: var(--emerald-primary);
}

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

.section-label {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(132, 204, 22, 0.15);
    color: var(--emerald-primary);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--gray-medium);
    font-size: 1.1rem;
}

.intro-section {
    background: var(--white-crystal);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-content h2 {
    margin-bottom: 1.5rem;
}

.intro-content p {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    opacity: 0.85;
}

.intro-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    width: 44px;
    height: 44px;
    background: rgba(132, 204, 22, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

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

.intro-image {
    position: relative;
}

.intro-main-image {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-medium);
}

.intro-badge {
    position: absolute;
    bottom: -2rem;
    left: 2rem;
    background: var(--white-crystal);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.intro-badge-icon {
    width: 56px;
    height: 56px;
    background: var(--lime-fresh);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.intro-badge-text {
    font-weight: 700;
    color: var(--forest-deep);
    font-size: 1.1rem;
}

.intro-badge-subtext {
    font-size: 0.85rem;
    color: var(--emerald-primary);
}

.services-section {
    background: var(--gray-warm);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--white-crystal);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--emerald-primary), var(--lime-fresh));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

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

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

.service-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--emerald-primary), var(--emerald-light));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--white-crystal);
}

.service-title {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

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

.service-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

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

.service-price-period {
    color: var(--gray-medium);
    font-size: 0.9rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--emerald-primary);
}

.service-link:hover {
    gap: 0.75rem;
}

.advantages-section {
    background: var(--white-crystal);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.advantage-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--gray-warm);
    border-radius: 20px;
    transition: var(--transition-smooth);
}

.advantage-card:hover {
    background: var(--emerald-primary);
}

.advantage-card:hover .advantage-icon,
.advantage-card:hover .advantage-title,
.advantage-card:hover .advantage-text {
    color: var(--white-crystal);
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    transition: var(--transition-smooth);
}

.advantage-title {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    transition: var(--transition-smooth);
}

.advantage-text {
    font-size: 0.9rem;
    color: var(--gray-medium);
    transition: var(--transition-smooth);
}

.gallery-section {
    background: var(--forest-deep);
    color: var(--white-crystal);
}

.gallery-section .section-title {
    color: var(--white-crystal);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 58, 47, 0.9) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
}

.gallery-title {
    color: var(--white-crystal);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.gallery-category {
    color: var(--lime-fresh);
    font-size: 0.85rem;
}

.testimonials-section {
    background: var(--gray-warm);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--white-crystal);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

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

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author {
    font-weight: 600;
    color: var(--forest-deep);
    font-size: 1.1rem;
}

.testimonial-location {
    font-size: 0.85rem;
    color: var(--gray-medium);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    color: var(--lime-fresh);
}

.testimonial-text {
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.7;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 3rem;
    color: var(--emerald-primary);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.process-section {
    background: var(--white-crystal);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -20%;
    width: 40%;
    height: 2px;
    background: linear-gradient(90deg, var(--emerald-primary), var(--gray-medium));
    opacity: 0.3;
}

.process-step:last-child::after {
    display: none;
}

.process-number {
    width: 80px;
    height: 80px;
    background: var(--emerald-primary);
    color: var(--white-crystal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.process-title {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.process-text {
    font-size: 0.9rem;
    color: var(--gray-medium);
    padding: 0 1rem;
}

.faq-section {
    background: var(--gray-warm);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white-crystal);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--forest-deep);
    text-align: left;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    color: var(--emerald-primary);
}

.faq-icon {
    width: 32px;
    height: 32px;
    background: var(--gray-warm);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--emerald-primary);
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    background: var(--emerald-primary);
    color: var(--white-crystal);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-content {
    padding: 0 2rem 1.5rem;
    color: var(--gray-medium);
    line-height: 1.7;
}

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

.contact-section {
    background: linear-gradient(135deg, var(--emerald-dark) 0%, var(--forest-deep) 100%);
    color: var(--white-crystal);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    color: var(--white-crystal);
    margin-bottom: 1.5rem;
}

.contact-info p {
    opacity: 0.9;
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-text strong {
    display: block;
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 0.25rem;
}

.contact-text span {
    font-size: 1.05rem;
}

.contact-form-wrapper {
    background: var(--white-crystal);
    border-radius: 24px;
    padding: 3rem;
    color: var(--text-dark);
}

.contact-form-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--gray-warm);
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--transition-smooth);
    background: var(--white-crystal);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--emerald-primary);
    box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.1);
}

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

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

.form-message {
    padding: 1rem;
    border-radius: 12px;
    margin-top: 1rem;
    display: none;
}

.form-message.success {
    background: rgba(132, 204, 22, 0.15);
    color: var(--emerald-primary);
    display: block;
}

.map-section {
    padding: 0;
    height: 450px;
    background: var(--gray-warm);
}

.map-frame {
    width: 100%;
    height: 100%;
    border: none;
}

.footer-main {
    background: var(--forest-deep);
    color: var(--white-crystal);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    opacity: 0.8;
    margin-top: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-title {
    color: var(--white-crystal);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.footer-link:hover {
    color: var(--lime-fresh);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.footer-contact-text {
    font-size: 0.95rem;
    opacity: 0.9;
}

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

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

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal-link {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal-link:hover {
    color: var(--lime-fresh);
}

.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white-crystal);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-strong);
    max-width: 500px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cookie-icon {
    width: 48px;
    height: 48px;
    background: var(--lime-fresh);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cookie-text h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.cookie-text p {
    font-size: 0.85rem;
    color: var(--gray-medium);
}

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

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.cookie-accept {
    background: var(--emerald-primary);
    color: var(--white-crystal);
}

.cookie-accept:hover {
    background: var(--emerald-dark);
}

.cookie-decline {
    background: var(--gray-warm);
    color: var(--text-dark);
}

.cookie-decline:hover {
    background: var(--gray-medium);
    color: var(--white-crystal);
}

.cookie-settings {
    background: transparent;
    color: var(--emerald-primary);
    text-decoration: underline;
}

.page-hero {
    padding: 10rem 0 5rem;
    background: linear-gradient(135deg, var(--forest-deep) 0%, var(--emerald-dark) 100%);
    text-align: center;
    min-height: 45vh;
    display: flex;
    align-items: center;
}

.page-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.page-hero-title {
    color: var(--white-crystal);
    margin-bottom: 1rem;
}

.page-hero-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.page-hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

.page-hero-breadcrumb a:hover {
    color: var(--lime-fresh);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-card {
    background: var(--white-crystal);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

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

.team-image-wrapper {
    aspect-ratio: 1;
    overflow: hidden;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.team-card:hover .team-image {
    transform: scale(1.05);
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-name {
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
}

.team-role {
    color: var(--emerald-primary);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.team-bio {
    font-size: 0.85rem;
    color: var(--gray-medium);
    line-height: 1.6;
}

.service-detail-header {
    background: var(--gray-warm);
    padding: 3rem;
    border-radius: 24px;
    margin-bottom: 3rem;
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    background: var(--emerald-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white-crystal);
    margin-bottom: 1.5rem;
}

.service-detail-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-detail-description {
    color: var(--gray-medium);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-detail-pricing {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.service-detail-period {
    color: var(--gray-medium);
}

.process-steps-vertical {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step-horizontal {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.process-step-number {
    width: 60px;
    height: 60px;
    background: var(--emerald-primary);
    color: var(--white-crystal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.process-step-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.process-step-content p {
    color: var(--gray-medium);
}

.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-page-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.gallery-page-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-page-item:hover .gallery-page-image {
    transform: scale(1.05);
}

.thank-you-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--gray-warm);
}

.thank-you-content {
    max-width: 600px;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    background: var(--lime-fresh);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thank-you-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.thank-you-text {
    color: var(--gray-medium);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

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

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section p {
    color: var(--text-dark);
    opacity: 0.85;
    line-height: 1.8;
}

.legal-section ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.legal-section li {
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    opacity: 0.85;
}

@media (max-width: 1024px) {
    .hero-visual {
        display: none;
    }

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

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-step::after {
        display: none;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item:first-child {
        grid-column: span 2;
    }
}
@media (min-width: 768px) {
    .nav-link {
        color: var(--text-light);
    }
    .header-scrolled .nav-link {
        color: var(--forest-deep);
    }
    .logo-display {
        color: var(--text-light);
    }
    .header-scrolled .logo-display {
        color: var(--forest-deep);
    }
}
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-primary {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background: var(--white-crystal);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 1.5rem;
        box-shadow: var(--shadow-strong);
        transition: var(--transition-smooth);
    }

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

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

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

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

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

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

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

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

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .intro-features {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary {
        width: 100%;
    }

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

    .gallery-item:first-child {
        grid-column: span 1;
    }

    .gallery-page-grid {
        grid-template-columns: 1fr;
    }

    .cookie-banner {
        width: 95%;
        left: 50%;
        transform: translateX(-50%);
        bottom: 1rem;
        padding: 1.25rem;
    }

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

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

    .cookie-btn {
        width: 100%;
    }
}