/* Органично-футуристический дизайн | Рукописный + Моноширинный | Изумруд + Коралл + Янтарь */

@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;700&family=Space+Mono:wght@400;700&display=swap');

:root {
    --emerald: #10b981;
    --coral: #ff6b6b;
    --amber: #fbbf24;
    --dark-bg: #0a0e1a;
    --darker-bg: #050810;
    --text-light: #e5e7eb;
    --text-dim: #9ca3af;
    --accent-glow: rgba(16, 185, 129, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Mono', monospace;
    background: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Caveat', cursive;
    font-weight: 700;
    line-height: 1.2;
}

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

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--emerald);
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-family: 'Caveat', cursive;
    font-size: 2rem;
    font-weight: 700;
    color: var(--emerald);
    text-decoration: none;
    text-shadow: 0 0 20px var(--accent-glow);
    transition: all 0.3s ease;
}

.logo:hover {
    color: var(--amber);
    text-shadow: 0 0 30px rgba(251, 191, 36, 0.5);
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
}

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

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

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

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.burger span {
    width: 30px;
    height: 3px;
    background: var(--emerald);
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 107, 107, 0.08) 0%, transparent 50%);
    z-index: -1;
}

.hero-content {
    flex: 1;
    padding: 4rem 2rem;
    z-index: 2;
    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 1.5rem;
    color: var(--emerald);
    text-shadow: 0 0 40px var(--accent-glow);
    line-height: 1.1;
}

.hero-title .word {
    display: inline-block;
    animation: wordFloat 3s ease-in-out infinite;
}

.hero-title .word:nth-child(1) {
    animation-delay: 0s;
}

.hero-title .word:nth-child(2) {
    animation-delay: 0.2s;
    color: var(--coral);
}

.hero-title .word:nth-child(3) {
    animation-delay: 0.4s;
}

.hero-title .word:nth-child(4) {
    animation-delay: 0.6s;
    color: var(--amber);
}

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

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--emerald), var(--coral));
    color: white;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
}

.hero-image {
    flex: 1;
    position: relative;
    animation: fadeInRight 1s ease-out 0.6s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 3px solid var(--emerald);
}

/* ===== MISSION SECTION ===== */
.mission {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
}

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

.mission-text h2 {
    font-size: 3.5rem;
    color: var(--coral);
    margin-bottom: 1.5rem;
}

.mission-text p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: var(--text-dim);
}

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

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(16, 185, 129, 0.05);
    border-radius: 15px;
    border: 2px solid var(--emerald);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--accent-glow);
}

.stat-number {
    display: block;
    font-family: 'Caveat', cursive;
    font-size: 3rem;
    color: var(--amber);
    font-weight: 700;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mission-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(255, 107, 107, 0.2);
    border: 3px solid var(--coral);
}

/* ===== PRODUCTS SECTION ===== */
.products {
    padding: 6rem 0;
    background: var(--darker-bg);
}

.section-title {
    font-size: 3.5rem;
    text-align: center;
    color: var(--emerald);
    margin-bottom: 4rem;
}

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

.product-card {
    background: rgba(16, 185, 129, 0.03);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    border-color: var(--coral);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.2);
}

.product-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.product-card h3 {
    font-size: 1.8rem;
    color: var(--amber);
    margin-bottom: 1rem;
}

.product-card p {
    color: var(--text-dim);
    margin-bottom: 1.5rem;
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 1rem;
}

/* ===== RESEARCH SECTION ===== */
.research {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

.research h2 {
    font-size: 3.5rem;
    text-align: center;
    color: var(--coral);
    margin-bottom: 4rem;
}

.research-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.research-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-left: 2rem;
    border-left: 3px solid var(--emerald);
    position: relative;
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.research-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 0;
    width: 14px;
    height: 14px;
    background: var(--amber);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--amber);
}

.research-year {
    font-family: 'Caveat', cursive;
    font-size: 2rem;
    color: var(--amber);
    font-weight: 700;
}

.research-content h3 {
    font-size: 1.8rem;
    color: var(--emerald);
    margin-bottom: 1rem;
}

.research-content p {
    color: var(--text-dim);
    margin-bottom: 1rem;
}

.research-source {
    display: block;
    font-size: 0.85rem;
    color: var(--coral);
    font-style: italic;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.testimonials h2 {
    font-size: 3.5rem;
    text-align: center;
    color: var(--amber);
    margin-bottom: 4rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: rgba(255, 107, 107, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid var(--coral);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.2);
}

.testimonial-stars {
    color: var(--amber);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--emerald);
}

.author-name {
    font-weight: 700;
    color: var(--emerald);
}

.author-location {
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* ===== GALLERY ===== */
.gallery {
    padding: 6rem 0;
    background: var(--darker-bg);
}

.gallery h2 {
    font-size: 3.5rem;
    text-align: center;
    color: var(--emerald);
    margin-bottom: 4rem;
}

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

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ===== FAQ SECTION ===== */
.faq {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.faq h2 {
    font-size: 3.5rem;
    text-align: center;
    color: var(--coral);
    margin-bottom: 4rem;
}

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

.faq-item {
    margin-bottom: 1.5rem;
    border: 2px solid rgba(16, 185, 129, 0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--emerald);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: rgba(16, 185, 129, 0.05);
    border: none;
    font-family: 'Space Mono', monospace;
    font-size: 1.05rem;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.faq-question:hover {
    background: rgba(16, 185, 129, 0.1);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--emerald);
    transition: transform 0.3s ease;
}

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

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

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

.faq-answer p {
    padding: 1.5rem 2rem;
    color: var(--text-dim);
    line-height: 1.8;
}

/* ===== CONTACT FORM ===== */
.contact-form-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 3.5rem;
    color: var(--amber);
    margin-bottom: 1rem;
}

.form-intro p {
    color: var(--text-dim);
    font-size: 1.1rem;
}

.contact-form {
    background: rgba(16, 185, 129, 0.05);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--emerald);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--emerald);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 10px;
    color: var(--text-light);
    font-family: 'Space Mono', monospace;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--coral);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.2);
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--coral), var(--amber));
    color: white;
    border: none;
    border-radius: 10px;
    font-family: 'Space Mono', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.4);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--darker-bg);
    padding: 4rem 0 2rem;
    border-top: 2px solid var(--emerald);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    font-size: 2rem;
    color: var(--emerald);
    margin-bottom: 1rem;
}

.footer-col h4 {
    font-size: 1.5rem;
    color: var(--coral);
    margin-bottom: 1rem;
}

.footer-col p,
.footer-col ul li {
    color: var(--text-dim);
    margin-bottom: 0.5rem;
}

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

.footer-col ul a {
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--text-dim);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 26, 0.98);
    padding: 1.5rem;
    border-top: 2px solid var(--coral);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

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

.cookie-content p {
    color: var(--text-light);
    flex: 1;
}

.cookie-btn {
    padding: 0.8rem 2rem;
    background: var(--emerald);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cookie-btn:hover {
    background: var(--coral);
    transform: scale(1.05);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        padding: 2rem;
    }
    
    .hero-subtitle {
        max-width: 100%;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(10, 14, 26, 0.98);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        transition: right 0.4s ease;
        border-left: 2px solid var(--emerald);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .burger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title,
    .mission-text h2,
    .research h2,
    .testimonials h2,
    .gallery h2,
    .faq h2,
    .form-intro h2 {
        font-size: 2.5rem;
    }
    
    .products-grid,
    .testimonials-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .research-item {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 1rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .cta-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ===== ABOUT PAGE STYLES ===== */
.about-hero {
    padding: 10rem 0 4rem;
    text-align: center;
    background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

.about-hero h1 {
    font-size: 4rem;
    color: var(--emerald);
    margin-bottom: 1rem;
}

.about-subtitle {
    font-size: 1.3rem;
    color: var(--text-dim);
}

.about-story {
    padding: 6rem 0;
}

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

.story-text h2 {
    font-size: 3rem;
    color: var(--coral);
    margin-bottom: 1.5rem;
}

.story-text p {
    color: var(--text-dim);
    margin-bottom: 1.5rem;
}

.story-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 3px solid var(--emerald);
}

.values {
    padding: 6rem 0;
    background: var(--darker-bg);
}

.values h2 {
    font-size: 3.5rem;
    text-align: center;
    color: var(--amber);
    margin-bottom: 4rem;
}

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

.value-card {
    background: rgba(16, 185, 129, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid var(--emerald);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.2);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.8rem;
    color: var(--coral);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-dim);
}

.team {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.team h2 {
    font-size: 3.5rem;
    text-align: center;
    color: var(--emerald);
    margin-bottom: 4rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
}

.team-member {
    text-align: center;
    background: rgba(255, 107, 107, 0.05);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid var(--coral);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.2);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    border: 3px solid var(--emerald);
}

.team-member h3 {
    font-size: 1.8rem;
    color: var(--amber);
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--emerald);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.team-member p {
    color: var(--text-dim);
}

.timeline {
    padding: 6rem 0;
    background: var(--darker-bg);
}

.timeline h2 {
    font-size: 3.5rem;
    text-align: center;
    color: var(--coral);
    margin-bottom: 4rem;
}

.timeline-container {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-left: 2rem;
    border-left: 3px solid var(--emerald);
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 0;
    width: 14px;
    height: 14px;
    background: var(--amber);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--amber);
}

.timeline-year {
    font-family: 'Caveat', cursive;
    font-size: 2rem;
    color: var(--amber);
    font-weight: 700;
}

.timeline-content h3 {
    font-size: 1.8rem;
    color: var(--emerald);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-dim);
}

.impact {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.impact h2 {
    font-size: 3.5rem;
    text-align: center;
    color: var(--amber);
    margin-bottom: 4rem;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.impact-item {
    text-align: center;
    padding: 2rem;
    background: rgba(16, 185, 129, 0.05);
    border-radius: 15px;
    border: 2px solid var(--emerald);
    transition: all 0.3s ease;
}

.impact-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--accent-glow);
}

.impact-number {
    display: block;
    font-family: 'Caveat', cursive;
    font-size: 3rem;
    color: var(--coral);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.impact-label {
    display: block;
    color: var(--text-dim);
    font-size: 0.95rem;
}

.cta-section {
    padding: 6rem 0;
    text-align: center;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
}

.cta-section h2 {
    font-size: 3.5rem;
    color: var(--emerald);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-bottom: 2.5rem;
}

/* ===== CONTACTS PAGE STYLES ===== */
.contacts-hero {
    padding: 10rem 0 4rem;
    text-align: center;
    background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

.contacts-hero h1 {
    font-size: 4rem;
    color: var(--emerald);
    margin-bottom: 1rem;
}

.contacts-subtitle {
    font-size: 1.3rem;
    color: var(--text-dim);
}

.contacts-main {
    padding: 6rem 0;
}

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

.contact-info h2 {
    font-size: 2.5rem;
    color: var(--coral);
    margin-bottom: 2rem;
}

.info-block {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(16, 185, 129, 0.05);
    border-radius: 15px;
    border: 2px solid var(--emerald);
}

.info-icon {
    font-size: 2.5rem;
}

.info-block h3 {
    font-size: 1.5rem;
    color: var(--amber);
    margin-bottom: 0.5rem;
}

.info-block p {
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.info-block span {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.contact-form-wrapper h2 {
    font-size: 2.5rem;
    color: var(--emerald);
    margin-bottom: 1rem;
}

.contact-form-wrapper p {
    color: var(--text-dim);
    margin-bottom: 2rem;
}

.map-section {
    padding: 6rem 0;
    background: var(--darker-bg);
}

.map-section h2 {
    font-size: 3.5rem;
    text-align: center;
    color: var(--coral);
    margin-bottom: 3rem;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid var(--emerald);
}

.offices {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.offices h2 {
    font-size: 3.5rem;
    text-align: center;
    color: var(--amber);
    margin-bottom: 4rem;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.office-card {
    background: rgba(255, 107, 107, 0.05);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid var(--coral);
    transition: all 0.3s ease;
}

.office-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.2);
}

.office-card h3 {
    font-size: 1.8rem;
    color: var(--emerald);
    margin-bottom: 1rem;
}

.office-card p {
    color: var(--text-dim);
    margin-bottom: 0.5rem;
}

.office-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 1rem;
}

.faq-contacts {
    padding: 6rem 0;
    background: var(--darker-bg);
}

.faq-contacts h2 {
    font-size: 3.5rem;
    text-align: center;
    color: var(--emerald);
    margin-bottom: 4rem;
}

/* ===== RESPONSIVE UPDATES ===== */
@media (max-width: 1024px) {
    .story-grid,
    .contacts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero h1,
    .contacts-hero h1 {
        font-size: 2.5rem;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
    }
    
    .team-grid,
    .values-grid,
    .offices-grid {
        grid-template-columns: 1fr;
    }
}
