:root {
    --electric-blue: #00A1FF;
    --violet-neon: #8C1AFF;
    --electric-cyan: #4DF6FF;
    --deep-blue-black: #070A12;
    --onyx-black: #0D0F15;
    --soft-grey: #C6C9D1;
    --medium-grey: #7D8090;
    --pure-white: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, #00A1FF 0%, #8C1AFF 100%);
    --gradient-hero: linear-gradient(180deg, #6B15CC 0%, #0080CC 25%, #004080 50%, #070A12 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--deep-blue-black);
    color: var(--soft-grey);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Sora', sans-serif;
    color: var(--pure-white);
}

/* Decorative Sparks */
.spark {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--pure-white);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--electric-cyan), 0 0 20px var(--electric-blue);
    animation: sparkle 3s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 5%;
    background: rgba(7, 10, 18, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(77, 246, 255, 0.1);
    transition: transform 0.3s ease, background 0.3s ease;
}

header.hidden {
    transform: translateY(-100%);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

.logo-img {
    height: 36px;
    width: auto;
}

.logo span {
    font-family: 'Sora', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand .logo-img {
    height: 32px;
}

.footer-brand .logo span {
    font-size: 1.25rem;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--soft-grey);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-links a:hover {
    color: var(--pure-white);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn-primary {
    background: var(--electric-blue);
    color: var(--pure-white);
    box-shadow: 0 4px 20px rgba(0, 161, 255, 0.3);
}

.btn-primary:hover {
    background: var(--gradient-primary);
    box-shadow: 0 4px 30px rgba(0, 161, 255, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--pure-white);
    border: 1px solid rgba(77, 246, 255, 0.4);
}

.btn-secondary:hover {
    border-color: var(--electric-cyan);
    box-shadow: 0 0 20px rgba(77, 246, 255, 0.2);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 5% 6rem;
    position: relative;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 50% 50%, rgba(7, 10, 18, 0.4) 0%, transparent 60%),
        radial-gradient(circle at 20% 30%, rgba(140, 26, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 161, 255, 0.15) 0%, transparent 50%);
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(77, 246, 255, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--electric-cyan);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--electric-cyan);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero h1 .gradient-text {
    background: linear-gradient(90deg, #FFFFFF 0%, #4DF6FF 30%, #00A1FF 60%, #C77DFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(77, 246, 255, 0.5)) drop-shadow(0 0 60px rgba(140, 26, 255, 0.3));
}

.hero p {
    font-size: 1.25rem;
    color: var(--soft-grey);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-visual {
    position: absolute;
    bottom: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 1000px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(0, 161, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* Section Common Styles */
section {
    padding: 7rem 5%;
    position: relative;
}

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

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--electric-blue);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-tag::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--gradient-primary);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--soft-grey);
    max-width: 600px;
}

/* About Section - Split Layout */
.about {
    background: var(--deep-blue-black);
}

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

.about-visual {
    position: relative;
    height: 500px;
    background: var(--onyx-black);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(77, 246, 255, 0.1);
}

.about-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(140, 26, 255, 0.2) 0%, transparent 50%),
        linear-gradient(225deg, rgba(0, 161, 255, 0.2) 0%, transparent 50%);
}

.about-visual-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
}

.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(77, 246, 255, 0.2);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.orbit-ring:nth-child(1) { width: 100px; height: 100px; }
.orbit-ring:nth-child(2) { width: 200px; height: 200px; animation-duration: 30s; }
.orbit-ring:nth-child(3) { width: 300px; height: 300px; animation-duration: 40s; }

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(0, 161, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbit-center svg {
    width: 30px;
    height: 30px;
    fill: var(--pure-white);
}

.about-content .section-subtitle {
    margin-bottom: 2rem;
}

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

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--onyx-black);
    border-radius: 12px;
    border: 1px solid rgba(77, 246, 255, 0.1);
}

.stat-number {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--medium-grey);
    margin-top: 0.25rem;
}

.about-cta-block {
    margin-top: 4rem;
    padding: 3rem;
    background: var(--onyx-black);
    border-radius: 20px;
    border: 1px solid rgba(77, 246, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

.about-cta-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.about-cta-content {
    flex: 1;
}

.about-cta-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.about-cta-content p {
    font-size: 1rem;
    color: var(--soft-grey);
    max-width: 600px;
}

.about-cta-block .btn {
    flex-shrink: 0;
}

/* Services Section - 3x3 Cards */
.services {
    background: var(--onyx-black);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--electric-cyan), transparent);
    opacity: 0.3;
}

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

.services-header .section-subtitle {
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--deep-blue-black);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(77, 246, 255, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    border-color: rgba(77, 246, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(0, 161, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--electric-blue);
    fill: none;
    stroke-width: 1.5;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--medium-grey);
    margin-bottom: 1.5rem;
}

.service-btn {
    padding: 0.65rem 1.25rem;
    font-size: 0.85rem;
}

/* Audience Section - 2x2 Cards with Different Styling */
.audience {
    background: var(--deep-blue-black);
    position: relative;
}

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

.audience-intro {
    position: sticky;
    top: 120px;
}

.audience-intro .section-subtitle {
    margin-bottom: 2rem;
}

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

.audience-card {
    background: var(--onyx-black);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    transition: all 0.4s ease;
}

.audience-card:nth-child(1) {
    border-color: rgba(0, 161, 255, 0.2);
}

.audience-card:nth-child(2) {
    border-color: rgba(140, 26, 255, 0.2);
}

.audience-card:nth-child(3) {
    border-color: rgba(77, 246, 255, 0.2);
}

.audience-card:nth-child(4) {
    border-color: rgba(255, 255, 255, 0.1);
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.audience-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.audience-card:nth-child(1) .audience-card-icon {
    background: rgba(0, 161, 255, 0.15);
}

.audience-card:nth-child(2) .audience-card-icon {
    background: rgba(140, 26, 255, 0.15);
}

.audience-card:nth-child(3) .audience-card-icon {
    background: rgba(77, 246, 255, 0.15);
}

.audience-card:nth-child(4) .audience-card-icon {
    background: rgba(255, 255, 255, 0.1);
}

.audience-card-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--pure-white);
    fill: none;
    stroke-width: 1.5;
}

.audience-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.audience-card p {
    font-size: 0.9rem;
    color: var(--medium-grey);
    line-height: 1.6;
}

/* Why Section - Horizontal Split */
.why {
    background: var(--onyx-black);
    position: relative;
    overflow: hidden;
}

.why::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(140, 26, 255, 0.05) 0%, transparent 70%);
}

.why-container {
    display: flex;
    gap: 0;
}

.why-left {
    flex: 1;
    padding-right: 4rem;
    border-right: 1px solid rgba(77, 246, 255, 0.1);
}

.why-right {
    flex: 1;
    padding-left: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.why-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.why-feature-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-feature-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--pure-white);
    fill: none;
    stroke-width: 2;
}

.why-feature h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.why-feature p {
    font-size: 0.9rem;
    color: var(--medium-grey);
}

.why-quote {
    font-family: 'Sora', sans-serif;
    font-size: 1.75rem;
    font-weight: 300;
    color: var(--pure-white);
    line-height: 1.4;
    margin-bottom: 2rem;
}

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

/* Vision Section - Full Width with Gradient */
.vision {
    background: linear-gradient(180deg, var(--deep-blue-black) 0%, var(--onyx-black) 50%, var(--deep-blue-black) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vision::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(140, 26, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

.vision .section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    max-width: 900px;
    margin: 0 auto 3rem;
}

.vision-points {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.vision-point {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--soft-grey);
}

.vision-point-icon {
    width: 32px;
    height: 32px;
    background: rgba(77, 246, 255, 0.1);
    border: 1px solid rgba(77, 246, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vision-point-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--electric-cyan);
    fill: none;
    stroke-width: 2;
}

/* Contact Section */
.contact {
    background: var(--deep-blue-black);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, transparent, rgba(140, 26, 255, 0.05));
}

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

.contact-info {
    position: relative;
    z-index: 1;
}

.contact-info .section-subtitle {
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-method-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
}

.contact-method-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--pure-white);
    fill: none;
    stroke-width: 1.5;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

/* Location Icon */
.icon-location {
    background: linear-gradient(135deg, #00A1FF 0%, #0066CC 100%);
    box-shadow: 0 8px 24px rgba(0, 161, 255, 0.3);
}

.icon-location svg {
    fill: rgba(255, 255, 255, 0.2);
}

.icon-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background: var(--electric-blue);
    animation: pulse-ring 2s ease-out infinite;
    z-index: 1;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* Email Icon */
.icon-email {
    background: linear-gradient(135deg, #8C1AFF 0%, #5C0DAA 100%);
    box-shadow: 0 8px 24px rgba(140, 26, 255, 0.3);
}

.icon-dot {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 10px;
    height: 10px;
    background: var(--electric-cyan);
    border-radius: 50%;
    z-index: 3;
    animation: blink 2s ease-in-out infinite;
    box-shadow: 0 0 8px var(--electric-cyan);
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Phone Icon */
.icon-phone {
    background: linear-gradient(135deg, #4DF6FF 0%, #00A1FF 100%);
    box-shadow: 0 8px 24px rgba(77, 246, 255, 0.3);
}

.icon-phone svg {
    stroke: var(--deep-blue-black);
}

.icon-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    border: 2px solid var(--electric-cyan);
    animation: ring-pulse 1.5s ease-out infinite;
    z-index: 1;
}

@keyframes ring-pulse {
    0% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.15); opacity: 0.3; }
    100% { transform: scale(1.3); opacity: 0; }
}

.contact-method:hover .contact-method-icon {
    transform: translateY(-3px);
}

.contact-method:hover .icon-location {
    box-shadow: 0 12px 32px rgba(0, 161, 255, 0.5);
}

.contact-method:hover .icon-email {
    box-shadow: 0 12px 32px rgba(140, 26, 255, 0.5);
}

.contact-method:hover .icon-phone {
    box-shadow: 0 12px 32px rgba(77, 246, 255, 0.5);
}

.contact-method-text h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-method-text p {
    font-size: 0.9rem;
    color: var(--medium-grey);
}

.contact-form-wrapper {
    background: var(--onyx-black);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(77, 246, 255, 0.1);
    position: relative;
    z-index: 1;
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    color: var(--soft-grey);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--deep-blue-black);
    border: 1px solid rgba(125, 128, 144, 0.3);
    border-radius: 10px;
    color: var(--pure-white);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--electric-cyan);
    box-shadow: 0 0 20px rgba(77, 246, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--medium-grey);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%237D8090' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 20px;
}

.form-group select option {
    background: var(--onyx-black);
    color: var(--pure-white);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 1rem;
}

/* Footer */
footer {
    background: var(--onyx-black);
    padding: 5rem 5% 2rem;
    border-top: 1px solid rgba(77, 246, 255, 0.1);
}

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

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand {
    max-width: 280px;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--medium-grey);
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--deep-blue-black);
    border: 1px solid rgba(77, 246, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    border-color: var(--electric-cyan);
    box-shadow: 0 0 20px rgba(77, 246, 255, 0.2);
    transform: translateY(-2px);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: var(--soft-grey);
    transition: fill 0.3s ease;
}

.footer-social a:hover svg {
    fill: var(--pure-white);
}

.footer-column h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--pure-white);
}

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

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: var(--medium-grey);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--electric-cyan);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(125, 128, 144, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--medium-grey);
}

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

.footer-bottom-links a {
    font-size: 0.85rem;
    color: var(--medium-grey);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--electric-cyan);
}

/* Responsive */
@media (max-width: 1024px) {
    .about-grid,
    .contact-wrapper,
    .audience-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-visual {
        height: 350px;
        order: -1;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-container {
        flex-direction: column;
    }

    .why-left {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid rgba(77, 246, 255, 0.1);
        padding-bottom: 3rem;
    }

    .why-right {
        padding-left: 0;
        padding-top: 3rem;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: span 2;
        max-width: 100%;
    }

    .audience-intro {
        position: static;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem 5%;
    }

    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero p {
        font-size: 1rem;
    }

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

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

    .vision-points {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: auto;
    }

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

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

    .about-cta-block {
        flex-direction: column;
        text-align: center;
    }

    .about-cta-content p {
        max-width: 100%;
    }
}

