/* ===================================
   NextFrame Studios - Landing Page Styles
   =================================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gradient: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    --primary-color: #ff6b35;
    --secondary-color: #f7931e;
    --dark-bg: #0a0a0a;
    --dark-card: #141414;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ===================================
   Logo Styles
   =================================== */

.logo {
    height: 60px;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 0 12px rgba(255, 107, 53, 0.4));
}

.logo:hover {
    filter: brightness(1.1) drop-shadow(0 0 20px rgba(255, 107, 53, 0.7));
    transform: scale(1.08);
}

.logo-link {
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

.logo-link:hover {
    transform: translateY(-2px);
}

.hero-logo {
    height: 100px;
    width: auto;
    margin-bottom: 32px;
    animation: fadeInDown 0.8s ease-out;
    filter: drop-shadow(0 4px 30px rgba(255, 107, 53, 0.5));
    transition: var(--transition);
}

.hero-logo:hover {
    filter: brightness(1.15) drop-shadow(0 8px 40px rgba(255, 107, 53, 0.8));
    transform: scale(1.1);
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 12px;
    filter: drop-shadow(0 0 12px rgba(255, 107, 53, 0.3));
    transition: var(--transition);
}

.footer-logo:hover {
    filter: brightness(1.1) drop-shadow(0 0 20px rgba(255, 107, 53, 0.6));
    transform: scale(1.08);
}

/* Responsive Logo Sizes */
@media (max-width: 768px) {
    .logo {
        height: 50px;
    }
    
    .hero-logo {
        height: 80px;
        margin-bottom: 24px;
    }
    
    .footer-logo {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 45px;
    }
    
    .hero-logo {
        height: 70px;
        margin-bottom: 20px;
    }
    
    .footer-logo {
        height: 36px;
    }
}

/* ===================================
   Navigation
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: var(--transition);
}

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

.nav-menu a:hover,
.nav-menu a:focus {
    color: var(--primary-color);
}

.cta-nav {
    background: var(--primary-gradient);
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
}

.cta-nav::after {
    display: none;
}

.cta-nav:hover {
    color: var(--text-primary) !important;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    transform: translateY(-2px);
}

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

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: var(--transition);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 40px 24px;
        gap: 24px;
        transition: var(--transition);
        border-left: 1px solid rgba(255, 107, 53, 0.2);
        align-items: flex-start;
    }

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

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

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

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

/* ===================================
   Hero Section
   =================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInLeft 0.8s ease-out;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.hero-tagline {
    color: var(--text-secondary);
    font-size: 14px;
    font-style: italic;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 0.8s ease-out;
}

.phone-mockup {
    position: relative;
    width: 300px;
    height: 600px;
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(255, 107, 53, 0.3);
    animation: float 6s ease-in-out infinite;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 107, 53, 0.3) 0%, rgba(247, 147, 30, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.play-indicator {
    width: 60px;
    height: 60px;
    border: 3px solid white;
    border-radius: 50%;
    position: relative;
}

.play-indicator::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-40%, -50%);
    width: 0;
    height: 0;
    border-left: 20px solid white;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Responsive */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        order: -1;
    }

    .phone-mockup {
        width: 250px;
        height: 500px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }

    .phone-mockup {
        width: 200px;
        height: 400px;
    }
}

/* ===================================
   Buttons
   =================================== */

.btn {
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    font-family: inherit;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--text-primary);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover,
.btn-primary:focus {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.2);
}

.btn-large {
    padding: 18px 48px;
    font-size: 18px;
}

/* ===================================
   Sections
   =================================== */

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

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

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.section-cta {
    text-align: center;
    margin-top: 60px;
}

/* ===================================
   What We Do - Pillars
   =================================== */

.pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.pillar-card {
    background: var(--dark-card);
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.pillar-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.2);
}

.pillar-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.pillar-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.pillar-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===================================
   Vertical Branding Section
   =================================== */

.content-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.content-text {
    animation: fadeIn 0.8s ease-out;
}

.lead-paragraph {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.8;
}

.benefits-list {
    list-style: none;
    margin-top: 40px;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 17px;
    color: var(--text-secondary);
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--primary-gradient);
    border-radius: 50%;
    flex-shrink: 0;
    font-weight: 700;
    color: white;
    font-size: 14px;
}

.stat-callout {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(247, 147, 30, 0.15) 100%);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    animation: pulse 3s ease-in-out infinite;
}

.stat-callout::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    background: var(--primary-gradient);
    opacity: 0.1;
    animation: gradientShift 4s ease-in-out infinite;
}

.stat-content {
    position: relative;
    z-index: 1;
}

.stat-text {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.6;
    color: var(--text-primary);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 107, 53, 0.5);
    }
}

@keyframes gradientShift {
    0%, 100% {
        opacity: 0.1;
    }
    50% {
        opacity: 0.2;
    }
}

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

@media (max-width: 968px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ===================================
   Features & Investment Grids
   =================================== */

.features-grid,
.investment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.feature-card,
.investment-card {
    background: var(--dark-card);
    padding: 40px 32px;
    border-radius: 16px;
    transition: var(--transition);
    border: 1px solid rgba(255, 107, 53, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before,
.investment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.feature-card:hover::before,
.investment-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover,
.investment-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.2);
}

.feature-number,
.investment-number {
    font-size: 40px;
    font-weight: 900;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    display: inline-block;
}

.feature-card h3,
.investment-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-card p,
.investment-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===================================
   Team Section
   =================================== */

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    margin: 60px 0;
}

.team-card {
    background: var(--dark-card);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 16px 48px rgba(255, 107, 53, 0.2);
}

.team-image-placeholder {
    width: 140px;
    height: 140px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 800;
    color: white;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

.team-card h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.team-title {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 16px;
}

.team-bio {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 15px;
}

.team-photo {
    width: 140px;
    height: 140px;
    margin: 0 auto 24px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
    border: 3px solid rgba(255, 107, 53, 0.3);
    transition: var(--transition);
}

.team-photo:hover {
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.6);
    transform: scale(1.05);
}

.team-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
    align-items: center;
}

.btn-view-bio {
    padding: 10px 24px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.btn-view-bio:hover {
    background: var(--primary-gradient);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

.btn-linkedin {
    width: 40px;
    height: 40px;
    background: #0077b5;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
    text-decoration: none;
}

.btn-linkedin:hover {
    background: #006399;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 119, 181, 0.4);
}

.team-footer {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
    font-style: italic;
}

/* Bio Modal */
.bio-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease-out;
    overflow-y: auto;
}

.bio-modal-content {
    background: var(--dark-card);
    margin: 5% auto;
    padding: 48px;
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    width: 90%;
    max-width: 700px;
    position: relative;
    animation: slideUp 0.4s ease-out;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
}

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

.bio-modal-close {
    position: absolute;
    right: 24px;
    top: 24px;
    font-size: 32px;
    font-weight: 300;
    color: var(--text-secondary);
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.bio-modal-close:hover {
    background: rgba(255, 107, 53, 0.2);
    color: var(--primary-color);
    transform: rotate(90deg);
}

#bio-modal-body h2 {
    font-size: 28px;
    margin-bottom: 8px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#bio-modal-body h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 600;
}

#bio-modal-body p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 16px;
}

#bio-modal-body ul {
    list-style: none;
    margin: 20px 0;
}

#bio-modal-body ul li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

#bio-modal-body ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

@media (max-width: 768px) {
    .bio-modal-content {
        width: 95%;
        padding: 32px 24px;
        margin: 10% auto;
    }
    
    .team-actions {
        flex-direction: column;
        gap: 16px;
    }
    
    .btn-view-bio {
        width: 100%;
    }
}

/* ===================================
   Contact Form
   =================================== */

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--dark-card);
    padding: 48px;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
}

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

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

.form-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 16px;
    font-style: italic;
}

.form-success {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(247, 147, 30, 0.15) 100%);
    padding: 60px 40px;
    border-radius: 20px;
    border: 2px solid var(--primary-color);
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    animation: scaleIn 0.5s ease-out;
}

.form-success h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.form-success p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form {
        padding: 32px 24px;
    }
}

/* ===================================
   Footer
   =================================== */

.footer {
    background: var(--dark-card);
    padding: 60px 0 24px;
    border-top: 1px solid rgba(255, 107, 53, 0.1);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 14px;
    font-style: italic;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-gradient);
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 14px;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }
}

/* ===================================
   Scroll Animation
   =================================== */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   Utility Classes
   =================================== */

.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glow {
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
}

/* ===================================
   Accessibility
   =================================== */

:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
}

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