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

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

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

@keyframes patternMove {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

.slide-in-item {
    opacity: 0;
}

.slide-in-item.in-view {
    animation: slideInFromBottom 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.back-btn {
    position: fixed;
    top: 2rem;
    left: 2rem;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.5rem;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    color: white;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateX(-4px);
}

.back-btn svg {
    transition: transform 0.3s ease;
}

.back-btn:hover svg {
    transform: translateX(-3px);
}

.page-hero {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 215, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 215, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: patternMove 20s linear infinite;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.7) 50%,
        rgba(0, 0, 0, 0.95) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 2rem;
    max-width: 1000px;
}

.hero-eyebrow {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0.5;
    margin-bottom: 1.5rem;
    font-weight: 500;
    animation: fadeIn 1s ease-out 0.3s forwards;
    opacity: 0;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 10vw, 7rem);
    letter-spacing: 0.1em;
    line-height: 0.9;
    margin: 0 0 1rem;
    animation: slideInFromBottom 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
    opacity: 0;
}

.hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.6;
    margin: 0 0 3rem;
    animation: fadeIn 1s ease-out 0.7s forwards;
    opacity: 0;
}

.hero-stats-row {
    display: flex;
    justify-content: center;
    gap: 4rem;
    animation: fadeIn 1s ease-out 0.9s forwards;
    opacity: 0;
}

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

.hero-stat-number {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: #ffd700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.hero-stat-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.6;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4rem 4rem;
}

.section-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 6rem 0;
}

.about-section {
    padding: 2rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-eyebrow {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0.4;
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 0.08em;
    margin: 0 0 0.5rem;
    line-height: 1;
}

.section-subtitle {
    font-size: 1rem;
    opacity: 0.5;
    margin-top: 0.75rem;
}

.intro-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.intro-icon {
    color: #ffd700;
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

.intro-block h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    letter-spacing: 0.08em;
    margin-bottom: 2rem;
    line-height: 1;
}

.intro-text {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.9;
    opacity: 0.8;
}

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

.passion-card {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
}

.passion-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-8px);
}

.passion-icon {
    color: #ffd700;
    margin-bottom: 1.5rem;
}

.passion-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.passion-content p {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.7;
}

.dream-content {
    max-width: 900px;
    margin: 0 auto;
}

.dream-block {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dream-block:last-child {
    border-bottom: none;
}

.dream-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: #ffd700;
    line-height: 1;
    opacity: 0.5;
}

.dream-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    opacity: 0.8;
}

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

.why-card {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    transition: all 0.4s ease;
}

.why-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-4px);
}

.why-icon {
    color: #ffd700;
    margin-bottom: 1.5rem;
}

.why-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.why-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    opacity: 0.7;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    display: grid;
    grid-template-columns: 70px 1fr 30px;
    gap: 1.5rem;
    align-items: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    color: inherit;
    transition: all 0.4s ease;
}

.contact-card:hover {
    border-color: rgba(255, 215, 0, 0.4);
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(8px);
}

.contact-visual {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
}

.contact-card:hover .contact-visual {
    border-color: rgba(255, 215, 0, 0.5);
    background: rgba(255, 215, 0, 0.1);
}

.contact-visual svg {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.contact-card:hover .contact-visual svg {
    color: #ffd700;
}

.contact-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-handle {
    font-size: 0.85rem;
    opacity: 0.5;
}

.contact-arrow {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-arrow {
    opacity: 0.5;
    transform: translateX(0);
}

.closing-banner {
    margin-top: 4rem;
    padding: 6rem 4rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), transparent);
    border: 1px solid rgba(255, 215, 0, 0.15);
    text-align: center;
}

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

.quote-icon {
    color: rgba(255, 215, 0, 0.3);
    margin-bottom: 2rem;
}

.closing-quote {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: 0.05em;
    line-height: 1.2;
    margin: 0 0 1rem;
}

.quote-author {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    opacity: 0.5;
}

.closing-divider {
    width: 60px;
    height: 2px;
    background: rgba(255, 215, 0, 0.5);
    margin: 3rem auto;
}

.closing-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    letter-spacing: 0.15em;
    opacity: 0.6;
}

.page-footer {
    margin-top: 6rem;
    padding: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.page-footer .footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    margin: 0 0 0.5rem;
}

.footer-brand p {
    font-size: 0.85rem;
    opacity: 0.5;
    margin: 0;
    font-style: italic;
}

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

.footer-links a {
    font-size: 0.8rem;
    opacity: 0.6;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    color: white;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-legal {
    text-align: right;
}

.footer-legal p {
    font-size: 0.75rem;
    opacity: 0.4;
    margin: 0.3rem 0;
}

@media (max-width: 1200px) {
    .about-container {
        padding: 0 2rem 3rem;
    }

    .passion-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .back-btn {
        top: 1rem;
        left: 1rem;
        padding: 0.75rem 1.25rem;
    }

    .back-btn span {
        display: none;
    }

    .page-hero {
        height: 70vh;
        min-height: 400px;
    }

    .hero-title {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

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

    .about-container {
        padding: 0 1.5rem 2rem;
    }

    .section-divider {
        margin: 4rem 0;
    }

    .intro-block {
        padding: 2.5rem 2rem;
    }

    .dream-block {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .dream-number {
        font-size: 2rem;
    }

    .closing-banner {
        padding: 4rem 2rem;
    }

    .page-footer {
        padding: 3rem 1.5rem;
    }

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

    .footer-links {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .footer-legal {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .back-btn {
        padding: 0.6rem 1rem;
    }

    .page-hero {
        height: 60vh;
        min-height: 350px;
    }

    .hero-content {
        padding: 0 1rem;
    }

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

    .about-container {
        padding: 0 1rem 2rem;
    }

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

    .intro-block {
        padding: 2rem 1.5rem;
    }

    .passion-card,
    .why-card {
        padding: 2rem 1.5rem;
    }

    .contact-card {
        grid-template-columns: 60px 1fr 24px;
        gap: 1rem;
        padding: 1.5rem;
    }

    .contact-visual {
        width: 60px;
        height: 60px;
    }

    .contact-visual svg {
        width: 24px;
        height: 24px;
    }

    .closing-banner {
        padding: 3rem 1.5rem;
    }

    .closing-quote {
        font-size: 1.8rem;
    }
}

@media (hover: none) and (pointer: coarse) {
    .passion-card:hover,
    .why-card:hover,
    .contact-card:hover {
        transform: none;
    }

    .passion-card:active,
    .why-card:active,
    .contact-card:active {
        transform: scale(0.98);
    }

    .contact-arrow {
        opacity: 0.3;
        transform: translateX(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .slide-in-item {
        opacity: 1;
    }

    .intro-icon {
        animation: none;
    }

    .hero-pattern {
        animation: none;
    }
}