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

:root {
    --primary: #ff3b3b;
    --primary-glow: rgba(255, 59, 59, 0.4);
    --accent: #ff6b6b;
    --bg: #0a0a0f;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 59, 59, 0.3);
    --text: #f0f0f5;
    --text-secondary: #8a8a9a;
    --text-tertiary: #55556a;
}

html {
    scroll-behavior: smooth;
}

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

.noise {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.015;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    transition: all 0.3s;
}

.header.scrolled {
    padding: 10px 0;
    background: rgba(10, 10, 15, 0.95);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
}

.logo-img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border);
    transition: border-color 0.3s;
}

.logo-img-svg {
    width: 120px;
    height: auto;
    border-radius: 0;
    border: none;
}

.logo:hover .logo-img {
    border-color: var(--primary);
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.3px;
    display: none;
}

.logo-accent {
    color: var(--primary);
}

.nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav a:not(.nav-cta):hover {
    color: var(--text);
}

.nav a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: width 0.3s;
}

.nav a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--primary);
    color: white !important;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px var(--primary-glow);
}

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

.mobile-menu-btn span {
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: 0.3s;
}

/* Contact Top */
.contact-top {
    padding: 120px 0 80px;
    margin-top: 60px;
}

.contact-top-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-top-text .section-tag {
    margin-bottom: 20px;
}

.contact-top-text h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 16px;
}

.contact-top-text p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
}

.contact-top-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-top-cards .contact-card {
    padding: 28px 24px;
}

.contact-top-cards .contact-card h3 {
    font-size: 16px;
    margin-bottom: 4px;
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 24px 100px;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background: url('img/hero-bg.jpg') center center / cover no-repeat;
    opacity: 0.06;
    filter: blur(3px);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
}

.hero-glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 59, 59, 0.18), transparent 70%);
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    animation: glowPulse 8s ease-in-out infinite;
}

.hero-glow-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 59, 59, 0.08), transparent 70%);
    bottom: 0;
    right: -100px;
    animation: glowPulse 10s ease-in-out infinite reverse;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 59, 59, 0.08);
    border: 1px solid rgba(255, 59, 59, 0.15);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 28px;
    animation: fadeUp 0.8s ease;
}

.hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.8rem, 8vw, 5.5rem);
    font-weight: 700;
    letter-spacing: -2px;
    line-height: 1.05;
    margin-bottom: 24px;
    animation: fadeUp 0.8s ease 0.1s both;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), #ff8a80, var(--primary));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s linear infinite;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
    animation: fadeUp 0.8s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 64px;
    animation: fadeUp 0.8s ease 0.3s both;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--primary-glow);
}

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

.btn-ghost:hover {
    color: var(--text);
    border-color: var(--text-tertiary);
    transform: translateY(-2px);
}

/* Hero Stats */
.hero-stats {
    display: inline-flex;
    align-items: center;
    gap: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px 40px;
    backdrop-filter: blur(10px);
    animation: fadeUp 0.8s ease 0.4s both;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
}

.hero-stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.hero-stat strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
}

.hero-stat span {
    font-size: 12px;
    color: var(--text-secondary);
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-tertiary);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.hero-scroll-line {
    width: 3px;
    height: 8px;
    background: var(--text-secondary);
    border-radius: 3px;
    animation: scrollBounce 2s ease-in-out infinite;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    background: rgba(255, 59, 59, 0.08);
    border: 1px solid rgba(255, 59, 59, 0.12);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 15px;
    max-width: 500px;
    margin: 16px auto 0;
    line-height: 1.7;
}

/* Portfolio / Platform Cards */
.portfolio {
    padding: 120px 0;
    position: relative;
}

.platform-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px 36px;
    transition: all 0.4s;
    overflow: hidden;
}

.platform-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255,59,59,0.04), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
}

.platform-card:hover .platform-card-glow {
    opacity: 1;
}

.platform-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.platform-featured {
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(255,59,59,0.04), var(--bg-card));
    border-color: rgba(255, 59, 59, 0.1);
}

.platform-with-image {
    display: grid;
    grid-template-columns: 1fr;
}

.platform-image {
    margin: -40px -36px 28px -36px;
    border-radius: 24px 24px 0 0;
    overflow: hidden;
    max-height: 320px;
}

.platform-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s;
}

.platform-card:hover .platform-image img {
    transform: scale(1.03);
}

.platform-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.platform-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.platform-yt {
    background: rgba(255, 0, 0, 0.12);
}

.platform-ig {
    background: linear-gradient(135deg, rgba(131, 58, 180, 0.12), rgba(253, 29, 29, 0.12), rgba(252, 176, 69, 0.12));
}

.platform-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
}

.platform-handle {
    font-size: 13px;
    color: var(--text-secondary);
}

.platform-badge {
    margin-left: auto;
    background: rgba(255, 59, 59, 0.12);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.platform-desc {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 700px;
}

.platform-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.platform-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.platform-stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
}

.platform-stat-label {
    font-size: 12px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.platform-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.tag {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
}

.platform-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.platform-link:hover {
    gap: 12px;
}

.platform-cards-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Reach Banner */
.reach-banner {
    padding: 40px 0;
}

.reach-inner {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 59, 59, 0.08), rgba(139, 92, 246, 0.04));
    border: 1px solid rgba(255, 59, 59, 0.15);
    border-radius: 24px;
    padding: 48px;
    overflow: hidden;
}

.reach-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 59, 59, 0.08), transparent 60%);
    pointer-events: none;
}

.reach-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    position: relative;
    z-index: 1;
}

.reach-item {
    text-align: center;
}

.reach-number {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
    margin-bottom: 8px;
}

.reach-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

.reach-divider {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.08);
}

/* Gallery Strip */
.gallery-strip {
    padding: 80px 0;
    overflow: hidden;
}

.gallery-strip-title {
    text-align: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-tertiary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.gallery-scroll {
    display: flex;
    gap: 16px;
    animation: galleryScroll 40s linear infinite;
    width: max-content;
}

.gallery-scroll:hover {
    animation-play-state: paused;
}

.gallery-img {
    width: 320px;
    height: 180px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid var(--border);
    flex-shrink: 0;
    transition: all 0.4s;
    opacity: 0.7;
}

.gallery-img:hover {
    opacity: 1;
    transform: scale(1.03);
    border-color: var(--border-hover);
}

/* Services */
.services {
    padding: 120px 0;
}

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

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 28px;
    transition: all 0.4s;
}

.service-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    background: var(--bg-card-hover);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.service-icon {
    color: var(--primary);
    margin-bottom: 20px;
    width: 56px;
    height: 56px;
    background: rgba(255, 59, 59, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* About */
.about {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(180deg, rgba(255,59,59,0.02) 0%, transparent 50%);
}

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

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.8;
}

.about-lead {
    font-size: 17px !important;
    color: var(--text) !important;
    font-weight: 500;
}

.about-features {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-secondary);
}

.about-feature-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
}

.about-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.about-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s;
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.03);
}

.about-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 10, 15, 0.7) 100%);
    pointer-events: none;
}

.about-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.about-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 24px;
    transition: all 0.4s;
}

.about-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.about-card-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
}

.about-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}

.about-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA */
.cta {
    padding: 80px 0 120px;
}

.cta-inner {
    position: relative;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 59, 59, 0.08), rgba(139, 92, 246, 0.04));
    border: 1px solid rgba(255, 59, 59, 0.15);
    border-radius: 32px;
    padding: 80px 48px;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 59, 59, 0.1), transparent 60%);
    pointer-events: none;
}

.cta-inner h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-inner p {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
}

.cta-emails {
    display: flex;
    justify-content: center;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.cta-emails span {
    font-size: 13px;
    color: var(--text-tertiary);
}

/* Contact Card (shared) */
.contact-card {
    position: relative;
    display: block;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 32px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.4s;
    overflow: hidden;
}

.contact-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255,59,59,0.06), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
}

.contact-card:hover .contact-card-glow {
    opacity: 1;
}

.contact-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.contact-icon {
    color: var(--primary);
    margin-bottom: 16px;
}

.contact-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.contact-email {
    font-size: 14px;
    color: var(--primary);
    display: block;
}

.contact-card:hover .contact-email {
    color: var(--accent);
}

/* Footer */
.footer {
    border-top: 1px solid var(--border);
    padding: 48px 0 24px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand p {
    color: var(--text-tertiary);
    font-size: 13px;
    margin-top: 10px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-tertiary);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--text);
}

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

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

/* Animations */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.4; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.6; transform: translateX(-50%) scale(1.1); }
}

@keyframes gradientShift {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(6px); opacity: 0.3; }
}

@keyframes galleryScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
    }

    .nav.active {
        display: flex;
    }

    .nav a::after {
        display: none;
    }

    .nav-cta {
        width: fit-content;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .contact-top-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
        padding: 24px;
        width: 100%;
        max-width: 320px;
    }

    .hero-stat-divider {
        width: 100%;
        height: 1px;
    }

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

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

    .platform-stats {
        gap: 20px;
    }

    .platform-stat-value {
        font-size: 22px;
    }

    .platform-badge {
        display: none;
    }

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-cards {
        grid-template-columns: 1fr;
    }

    .platform-image {
        margin: -28px -20px 20px -20px;
        max-height: 200px;
    }

    .platform-image img {
        height: 200px;
    }

    .about-image {
        height: 200px;
    }

    .gallery-img {
        width: 260px;
        height: 146px;
    }

    .reach-grid {
        flex-direction: column;
        gap: 24px;
    }

    .reach-divider {
        width: 100%;
        height: 1px;
    }

    .reach-inner {
        padding: 36px 24px;
    }

    .cta-inner {
        padding: 48px 24px;
    }

    .cta-emails {
        flex-direction: column;
        gap: 8px;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-scroll {
        display: none;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .logo-img-svg {
        width: 100px;
    }
}

@media (max-width: 480px) {
    .platform-card {
        padding: 28px 20px;
    }

    .platform-header h3 {
        font-size: 18px;
    }
}