/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: #3A3834;
    background: #FFF9F2;
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; transition: color .25s; }
a:hover { color: #88A396; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
h1,h2,h3,h4 { line-height: 1.3; font-weight: 700; }
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: .6em; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); margin-bottom: .5em; }
p { margin-bottom: 1em; }

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 70px 0; }
.section--dark { background: #2E2B27; color: #FAF8F4; }
.section--beige { background: #E8E5DE; }
.section--cream { background: #FFF9F2; }
.text-center { text-align: center; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
    border: none;
    text-align: center;
}
.btn--primary {
    background: #88A396;
    color: #fff;
    box-shadow: 0 4px 14px rgba(136,163,150,.35);
}
.btn--primary:hover {
    background: #769685;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(136,163,150,.45);
}
.btn--outline {
    background: transparent;
    color: #88A396;
    border: 2px solid #88A396;
}
.btn--outline:hover {
    background: #88A396;
    color: #fff;
}
.btn--white {
    background: #fff;
    color: #2E2B27;
}
.btn--white:hover { background: #E8E5DE; color: #2E2B27; }

/* ===== HEADER ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #2E2B27;
    box-shadow: 0 2px 12px rgba(0,0,0,.15);
}
.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 20px;
    background: #252220;
    font-size: 13px;
    color: #ccc;
    max-width: 1200px;
    margin: 0 auto;
}
.header-top a { color: #88A396; font-weight: 500; }
.header-top a:hover { color: #a5c4b4; }
.header-top-contacts { display: flex; gap: 20px; align-items: center; }
.header-top-contacts svg { width: 14px; height: 14px; fill: #88A396; margin-right: 5px; vertical-align: middle; }

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    height: 70px;
}
.logo {
    font-size: 18px;
    font-weight: 700;
    color: #FAF8F4;
    white-space: nowrap;
}
.logo span { color: #88A396; }

/* ===== NAVIGATION ===== */
.nav { display: flex; align-items: center; gap: 0; }
.nav__item { position: relative; }
.nav__link {
    display: block;
    padding: 24px 16px;
    color: #FAF8F4;
    font-size: 14px;
    font-weight: 500;
    transition: color .25s;
    white-space: nowrap;
}
.nav__link:hover { color: #88A396; }

/* Dropdown */
.nav__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: #2E2B27;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all .35s cubic-bezier(.4,0,.2,1);
    padding: 8px 0;
    z-index: 100;
}
.nav__item:hover .nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav__dropdown a {
    display: block;
    padding: 10px 22px;
    color: #ccc;
    font-size: 13px;
    transition: all .25s;
    opacity: 0;
    transform: translateY(-6px);
}
.nav__item:hover .nav__dropdown a {
    opacity: 1;
    transform: translateY(0);
}
.nav__item:hover .nav__dropdown a:nth-child(1) { transition-delay: .05s; }
.nav__item:hover .nav__dropdown a:nth-child(2) { transition-delay: .1s; }
.nav__item:hover .nav__dropdown a:nth-child(3) { transition-delay: .15s; }
.nav__item:hover .nav__dropdown a:nth-child(4) { transition-delay: .2s; }
.nav__item:hover .nav__dropdown a:nth-child(5) { transition-delay: .25s; }
.nav__item:hover .nav__dropdown a:nth-child(6) { transition-delay: .3s; }
.nav__item:hover .nav__dropdown a:nth-child(7) { transition-delay: .35s; }
.nav__item:hover .nav__dropdown a:nth-child(8) { transition-delay: .4s; }
.nav__item:hover .nav__dropdown a:nth-child(9) { transition-delay: .45s; }
.nav__item:hover .nav__dropdown a:nth-child(10) { transition-delay: .5s; }
.nav__item:hover .nav__dropdown a:nth-child(11) { transition-delay: .55s; }
.nav__dropdown a:hover { color: #88A396; background: rgba(255,255,255,.05); }

/* Arrow icon for dropdown items */
.nav__link--has-dropdown::after {
    content: '';
    display: inline-block;
    width: 0; height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    margin-left: 6px;
    vertical-align: middle;
    transition: transform .3s;
}
.nav__item:hover .nav__link--has-dropdown::after { transform: rotate(180deg); }

/* ===== MOBILE MENU ===== */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
    background: none;
    border: none;
}
.burger span {
    display: block;
    width: 26px;
    height: 2px;
    background: #FAF8F4;
    border-radius: 2px;
    transition: all .3s;
}
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
    z-index: 1050;
}
.mobile-overlay.active { display: block; }

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 50vw;
    min-width: 280px;
    height: 100%;
    background: #2E2B27;
    z-index: 1100;
    transition: right .4s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
    padding: 0;
    display: flex;
    flex-direction: column;
}
.mobile-menu.active { right: 0; }

.mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.mobile-menu__close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.mobile-menu__close svg {
    width: 28px;
    height: 28px;
    stroke: #FAF8F4;
    transition: stroke .25s;
}
.mobile-menu__close:hover svg { stroke: #88A396; }

.mobile-menu__nav {
    padding: 16px 0;
    flex: 1;
}
.mobile-menu__link {
    display: block;
    padding: 14px 24px;
    color: #FAF8F4;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: all .25s;
    text-align: left;
    text-decoration: none;
}
.mobile-menu__link:hover { color: #88A396; background: rgba(255,255,255,.04); }

.mobile-menu__group-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    color: #88A396;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.mobile-menu__group-title svg {
    width: 16px;
    height: 16px;
    stroke: #88A396;
    transition: transform .3s;
}
.mobile-menu__group-title.active svg { transform: rotate(180deg); }

.mobile-menu__submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
    background: rgba(0,0,0,.15);
}
.mobile-menu__submenu.active { max-height: 600px; }
.mobile-menu__submenu a {
    display: block;
    padding: 12px 24px 12px 36px;
    color: #ccc;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,.04);
    transition: all .25s;
    text-align: left;
    text-decoration: none;
}
.mobile-menu__submenu a:hover { color: #88A396; }

.mobile-menu__contacts {
    padding: 20px 24px;
    border-top: 1px solid rgba(255,255,255,.1);
}
.mobile-menu__contacts a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    font-size: 14px;
    padding: 8px 0;
}
.mobile-menu__contacts svg { width: 16px; height: 16px; fill: #88A396; flex-shrink: 0; }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(46,43,39,.88) 0%, rgba(46,43,39,.55) 100%);
    z-index: 1;
}
.hero__content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    width: 100%;
}
.hero__text { color: #FAF8F4; }
.hero__text h1 { margin-bottom: 18px; }
.hero__text p { font-size: 17px; opacity: .9; margin-bottom: 24px; line-height: 1.7; }
.hero__badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(4px);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    color: #FAF8F4;
}
.hero__badge svg { width: 16px; height: 16px; fill: #88A396; }

/* ===== FEEDBACK FORM ===== */
.feedback-form-container {
    background: rgba(255,249,242,.97);
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 12px 40px rgba(0,0,0,.2);
}
.feedback-form-container h3 {
    color: #2E2B27;
    font-size: 22px;
    margin-bottom: 20px;
    text-align: center;
}
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}
.contact-form .form-group { margin-bottom: 0; }
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #d5d0c8;
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    background: #fff;
    color: #3A3834;
    transition: border-color .25s, box-shadow .25s;
    outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #88A396;
    box-shadow: 0 0 0 3px rgba(136,163,150,.15);
}
.contact-form textarea { min-height: 100px; resize: vertical; margin-bottom: 12px; }
.contact-form .form-submit { text-align: center; }
.submit-btn {
    display: inline-block;
    padding: 14px 40px;
    background: #88A396;
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s;
    box-shadow: 0 4px 14px rgba(136,163,150,.35);
}
.submit-btn:hover {
    background: #769685;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(136,163,150,.45);
}
#form-success {
    text-align: center;
    padding: 30px;
}
#form-success p {
    color: #88A396;
    font-size: 16px;
    font-weight: 500;
}

/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.service-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.07);
    transition: transform .3s, box-shadow .3s;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,.12);
}
.service-card__img {
    height: 200px;
    overflow: hidden;
}
.service-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}
.service-card:hover .service-card__img img { transform: scale(1.05); }
.service-card__body { padding: 22px; }
.service-card__body h3 { font-size: 18px; margin-bottom: 8px; }
.service-card__body p { font-size: 14px; color: #666; margin-bottom: 14px; }

/* ===== AREAS GRID ===== */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}
.area-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    transition: all .3s;
    border: 1px solid transparent;
}
.area-card:hover {
    border-color: #88A396;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,.1);
}
.area-card svg { width: 24px; height: 24px; fill: #88A396; margin-bottom: 8px; }
.area-card h3 { font-size: 16px; margin-bottom: 4px; }
.area-card p { font-size: 13px; color: #888; }

/* ===== CTA SECTION ===== */
.cta-section {
    text-align: center;
    padding: 50px 20px;
}
.cta-section h2 { margin-bottom: 16px; }
.cta-section p { max-width: 600px; margin: 0 auto 24px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== MAP ===== */
.map-container {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.1);
}
.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

/* ===== CONTENT SECTIONS ===== */
.content-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.content-with-image--reverse { direction: rtl; }
.content-with-image--reverse > * { direction: ltr; }
.content-image {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,.1);
}
.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
}

/* ===== FAQ ===== */
.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
    overflow: hidden;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    transition: background .25s;
}
.faq-question:hover { background: rgba(136,163,150,.06); }
.faq-question svg {
    width: 20px;
    height: 20px;
    stroke: #88A396;
    flex-shrink: 0;
    transition: transform .3s;
}
.faq-item.active .faq-question svg { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .4s ease;
    padding: 0 22px;
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}
.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 22px 18px;
}

/* ===== PROCESS STEPS ===== */
.process-steps {
    counter-reset: step;
    max-width: 700px;
    margin: 0 auto;
}
.process-step {
    position: relative;
    padding: 20px 20px 20px 70px;
    margin-bottom: 16px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
}
.process-step::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 18px;
    top: 18px;
    width: 36px;
    height: 36px;
    background: #88A396;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

/* ===== FEATURES LIST ===== */
.features-list { list-style: none; }
.features-list li {
    padding: 10px 0 10px 32px;
    position: relative;
    font-size: 15px;
}
.features-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 18px;
    height: 18px;
    background: #88A396;
    border-radius: 50%;
    opacity: .2;
}
.features-list li::after {
    content: '✓';
    position: absolute;
    left: 3px;
    top: 10px;
    color: #88A396;
    font-weight: 700;
    font-size: 13px;
}

/* ===== NEIGHBORHOODS ===== */
.neighborhoods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 10px;
}
.neighborhood-tag {
    background: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
    box-shadow: 0 1px 6px rgba(0,0,0,.06);
    border-left: 3px solid #88A396;
}

/* ===== FOOTER ===== */
.site-footer {
    background: #2E2B27;
    color: #ccc;
    padding: 50px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px;
}
.footer-col h4 {
    color: #FAF8F4;
    font-size: 16px;
    margin-bottom: 16px;
}
.footer-col p { font-size: 14px; line-height: 1.7; margin-bottom: 10px; }
.footer-col a {
    display: block;
    font-size: 14px;
    padding: 4px 0;
    color: #aaa;
    transition: color .25s;
}
.footer-col a:hover { color: #88A396; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    text-align: center;
    padding: 20px;
    font-size: 13px;
    color: #888;
}

/* ===== STICKY QUOTE BUTTON ===== */
.sticky-quote {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
}
.sticky-quote__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #88A396;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 6px 25px rgba(136,163,150,.4);
    transition: all .3s;
    animation: pulse-glow 2s infinite;
}
.sticky-quote__btn:hover {
    background: #769685;
    transform: translateY(-2px);
}
.sticky-quote__btn svg { width: 18px; height: 18px; fill: #fff; }

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 6px 25px rgba(136,163,150,.4); }
    50% { box-shadow: 0 6px 35px rgba(136,163,150,.6); }
}

/* ===== MODAL ===== */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal-overlay.active { display: flex; }
.modal-content {
    background: #FFF9F2;
    border-radius: 18px;
    max-width: 520px;
    width: 100%;
    padding: 36px 32px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalIn .35s ease;
}
@keyframes modalIn {
    from { opacity: 0; transform: scale(.92) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.modal-close svg { width: 24px; height: 24px; stroke: #3A3834; transition: stroke .25s; }
.modal-close:hover svg { stroke: #88A396; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
    background: #2E2B27;
    color: #FAF8F4;
    padding: 60px 0 50px;
    text-align: center;
}
.page-hero p { opacity: .8; max-width: 600px; margin: 10px auto 0; }
.breadcrumb {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 14px;
}
.breadcrumb a { color: #88A396; }
.breadcrumb span { margin: 0 6px; }

/* ===== CONTACT PAGE ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}
.contact-info-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,.07);
    margin-bottom: 20px;
}
.contact-info-card h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.contact-info-card svg { width: 22px; height: 22px; fill: #88A396; flex-shrink: 0; }
.contact-info-card p { font-size: 14px; color: #555; }
.contact-info-card a { color: #88A396; font-weight: 500; }

/* ===== ABOUT PAGE ===== */
.about-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.value-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,.07);
}
.value-card svg { width: 40px; height: 40px; fill: #88A396; margin-bottom: 14px; }
.value-card h3 { font-size: 17px; margin-bottom: 8px; }
.value-card p { font-size: 14px; color: #666; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .nav { display: none; }
    .burger { display: flex; }
    .hero__content { grid-template-columns: 1fr; text-align: center; }
    .hero__badges { justify-content: center; }
    .content-with-image { grid-template-columns: 1fr; }
    .content-with-image--reverse { direction: ltr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .header-top { display: none; }
    .hero { min-height: 70vh; }
    .section { padding: 50px 0; }
    .footer-grid { grid-template-columns: 1fr; }
    .sticky-quote { bottom: 16px; right: 50%; transform: translateX(50%); }
    .contact-form .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero { min-height: 60vh; }
    .feedback-form-container { padding: 24px 18px; }
    .mobile-menu { width: 75vw; min-width: 260px; }
    .mobile-menu__header { padding: 16px 20px; }
    .mobile-menu__link { padding: 13px 20px; font-size: 14px; }
    .mobile-menu__group-title { padding: 13px 20px; font-size: 13px; }
    .mobile-menu__submenu a { padding: 11px 20px 11px 32px; font-size: 13px; }
    .mobile-menu__contacts { padding: 16px 20px; }
    .mobile-menu__contacts a { font-size: 13px; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
