/* ============================================
   AFATH TECHNOLOGIES — DESIGN SYSTEM
   Deep Maroon Theme (matching existing brand)
   ============================================ */

:root {
    /* Primary Palette — Deep Maroon / Plum */
    --primary-900: #1e0819;
    --primary-800: #2a0c23;
    --primary-700: #350e2d;
    --primary-600: #4a1640;
    --primary-500: #5e1d52;
    --primary-400: #7a2a6b;
    --primary-300: #9e4090;
    --primary-200: #c5acbe;
    --primary-100: #e8d8e4;

    /* Accent — Warm Rose / Blush */
    --accent-500: #e8a0c8;
    --accent-400: #f0b8d8;
    --accent-300: #f5d0e6;
    --accent-200: #fae8f2;
    --accent-glow: rgba(232, 160, 200, 0.3);

    /* Neutrals */
    --white: #ffffff;
    --gray-50: #f9f7f8;
    --gray-100: #f0ecee;
    --gray-200: #ddd6da;
    --gray-300: #b8aeb4;
    --gray-400: #8a7f86;
    --gray-500: #635960;
    --gray-600: #4a4046;
    --gray-700: #2e2630;
    --gray-800: #1b1b1b;
    --gray-900: #0f0a0d;

    /* Feedback */
    --success: #22c55e;
    --error: #ef4444;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-pad: 100px;
    --container-max: 1200px;

    /* Transitions */
    --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(53, 14, 45, 0.06);
    --shadow-md: 0 8px 30px rgba(53, 14, 45, 0.10);
    --shadow-lg: 0 20px 60px rgba(53, 14, 45, 0.16);
    --shadow-glow: 0 0 40px rgba(232, 160, 200, 0.15);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

/* ============================================
   RESET & BASE
   ============================================ */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--gray-700);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s var(--ease-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all 0.4s var(--ease-smooth);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(53, 14, 45, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    gap: 0;
    line-height: 1;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 4px;
}

.logo-tagline {
    font-family: var(--font-body);
    font-size: 0.55rem;
    font-weight: 500;
    color: var(--accent-400);
    letter-spacing: 5px;
    text-transform: uppercase;
}

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

.nav-link {
    padding: 8px 22px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    border-radius: 100px;
    transition: all 0.3s var(--ease-smooth);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
    background: rgba(232, 160, 200, 0.15);
    color: var(--accent-400);
}

/* Hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    position: relative;
    transition: all 0.3s var(--ease-smooth);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s var(--ease-smooth);
}

.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.nav-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* ============================================
   HERO SECTION
   ============================================ */

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

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(135deg, #1e0819 0%, #350e2d 35%, #4a1640 65%, #2a0c23 100%);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(232, 160, 200, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(158, 64, 144, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(30, 8, 25, 0.5) 0%, transparent 60%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(232, 160, 200, 0.25);
    border-radius: 50%;
    animation: float-particle linear infinite;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 860px;
}

.hero-title {
    font-family: var(--font-heading);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-company {
    display: block;
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--white) 0%, var(--primary-200) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-pvt {
    display: block;
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

.hero-motto {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2vw, 1.35rem);
    font-weight: 500;
    color: var(--accent-400);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 34px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-500) 0%, var(--accent-400) 100%);
    color: var(--primary-900);
    box-shadow: 0 4px 20px rgba(232, 160, 200, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(232, 160, 200, 0.45);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.stat-label {
    display: block;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.12);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fade-in-up 1s ease 2s both;
}

.scroll-mouse {
    width: 22px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-dot {
    width: 3px;
    height: 8px;
    background: var(--accent-400);
    border-radius: 3px;
    animation: scroll-anim 2s ease infinite;
}

@keyframes scroll-anim {
    0% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.3; }
    100% { transform: translateY(0); opacity: 1; }
}

/* ============================================
   BRANDS MARQUEE
   ============================================ */

.brands-section {
    background: var(--primary-700);
    padding: 48px 0 40px;
    overflow: hidden;
    position: relative;
}

.brands-section .section-label {
    text-align: center;
    display: block;
    margin-bottom: 28px;
    color: var(--accent-400);
}

.brands-marquee-wrapper {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.brands-marquee {
    display: flex;
    gap: 50px;
    animation: marquee-scroll 30s linear infinite;
    width: max-content;
}

.brands-marquee:hover {
    animation-play-state: paused;
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s var(--ease-smooth);
    min-width: 140px;
    height: 70px;
}

.brand-item img {
    height: 32px;
    width: auto;
    object-fit: contain;
    opacity: 0.7;
    transition: all 0.3s var(--ease-smooth);
}

.brand-fallback {
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s var(--ease-smooth);
}

.brand-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(232, 160, 200, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.brand-item:hover img {
    opacity: 1;
    transform: scale(1.05);
}

.brand-item:hover .brand-fallback {
    color: var(--white);
}

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

/* EMI Banner */
.emi-banner {
    margin-top: 28px;
    text-align: center;
}

.emi-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 28px;
    background: rgba(232, 160, 200, 0.1);
    border: 1px solid rgba(232, 160, 200, 0.2);
    border-radius: 100px;
    color: var(--accent-400);
    font-size: 0.85rem;
    font-weight: 500;
}

.emi-badge i {
    font-size: 0.9rem;
}

.emi-badge strong {
    color: var(--white);
    font-weight: 700;
}

/* ============================================
   SHARED SECTION STYLES
   ============================================ */

.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 30px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent-500);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: var(--primary-700);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-700), var(--accent-500));
    border-radius: 3px;
    margin: 0 auto;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
    padding: var(--section-pad) 0;
    background: var(--gray-50);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-200), transparent);
    pointer-events: none;
}

.about-overview {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 80px;
    align-items: start;
}

.about-text {
    padding-top: 12px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-lead {
    font-size: 1.15rem;
    color: var(--primary-700);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-text p {
    color: var(--gray-500);
    margin-bottom: 16px;
    line-height: 1.8;
}

/* Certified Startup Badge */
.startup-badge {
    margin-bottom: 80px;
}

.badge-content {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 36px 44px;
    background: linear-gradient(135deg, var(--primary-700), var(--primary-600));
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.badge-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 160, 200, 0.1), transparent 70%);
}

.startup-img {
    width: 180px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.badge-text {
    position: relative;
    z-index: 1;
}

.badge-text h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.badge-text h3 i {
    color: var(--success);
}

.badge-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
}

/* Leadership */
.leadership {
    margin-bottom: 80px;
}

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

.leaders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    max-width: 800px;
    margin: 0 auto;
}

.leader-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: all 0.5s var(--ease-smooth);
}

.leader-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.leader-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-700), var(--primary-500));
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-smooth);
}

.leader-card:hover .leader-image img {
    transform: scale(1.05);
}

.leader-image.no-photo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.leader-initials {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.2);
}

.leader-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(53, 14, 45, 0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    opacity: 0;
    transition: opacity 0.4s var(--ease-smooth);
}

.leader-card:hover .leader-overlay {
    opacity: 1;
}

.leader-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
    transition: all 0.3s var(--ease-smooth);
}

.leader-social a:hover {
    background: var(--accent-500);
    color: var(--primary-900);
    transform: translateY(-3px);
}

.leader-info {
    padding: 28px 24px;
    text-align: center;
}

.leader-info h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-700);
    margin-bottom: 6px;
}

.leader-role {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary-500);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}

.leader-info p {
    font-size: 0.88rem;
    color: var(--gray-400);
    line-height: 1.7;
}

/* About Connect Cards */
.about-connect {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.connect-card {
    text-align: center;
    padding: 36px 28px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: all 0.4s var(--ease-smooth);
}

.connect-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(232, 160, 200, 0.25);
}

.connect-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-700), var(--primary-500));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-400);
    font-size: 1.2rem;
    margin: 0 auto 18px;
}

.connect-card h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-700);
    margin-bottom: 10px;
}

.connect-card a {
    font-weight: 500;
    color: var(--primary-500);
}

.connect-card a:hover {
    color: var(--accent-500);
}

.connect-card p {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.7;
}

.social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
}

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-600);
    font-size: 1rem;
    transition: all 0.3s var(--ease-smooth);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary-700), var(--primary-500));
    color: var(--accent-400);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
    padding: var(--section-pad) 0;
    background: var(--white);
    position: relative;
}

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

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-700);
    margin-bottom: 12px;
}

.contact-info > p {
    font-size: 0.95rem;
    color: var(--gray-400);
    margin-bottom: 36px;
    line-height: 1.7;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 28px;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary-700), var(--primary-500));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-400);
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-detail h4 {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}

.contact-detail a {
    font-weight: 500;
    color: var(--primary-700);
    transition: color 0.3s;
}

.contact-detail a:hover {
    color: var(--primary-500);
}

.contact-detail p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.7;
}

.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.contact-social a {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-600);
    font-size: 1.1rem;
    transition: all 0.3s var(--ease-smooth);
}

.contact-social a:hover {
    background: linear-gradient(135deg, var(--primary-700), var(--primary-500));
    color: var(--accent-400);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Contact Form */
.contact-form-wrapper {
    padding: 44px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
}

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

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--gray-800);
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    outline: none;
    transition: all 0.3s var(--ease-smooth);
    resize: vertical;
}

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

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-500);
    box-shadow: 0 0 0 4px rgba(94, 29, 82, 0.08);
}

.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 16px 34px;
    font-size: 1rem;
}

.form-status {
    text-align: center;
    margin-top: 16px;
    font-size: 0.9rem;
    font-weight: 500;
    min-height: 24px;
    transition: all 0.3s;
}

.form-status.success {
    color: var(--success);
}

.form-status.error {
    color: var(--error);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--primary-900);
    color: rgba(255, 255, 255, 0.6);
    padding-top: 64px;
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 4px;
    display: block;
    margin-bottom: 6px;
}

.footer-tagline {
    font-size: 0.78rem;
    color: var(--accent-400);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 340px;
}

.footer-links h4,
.footer-contact-info h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--accent-400);
    padding-left: 6px;
}

.footer-contact-info p {
    font-size: 0.88rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-info i {
    color: var(--accent-400);
    font-size: 0.8rem;
}

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

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.3s var(--ease-smooth);
}

.footer-social a:hover {
    background: var(--accent-500);
    color: var(--primary-900);
    border-color: var(--accent-500);
    transform: translateY(-2px);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   ANIMATIONS
   ============================================ */

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.35s; }
.delay-4 { transition-delay: 0.5s; }
.delay-5 { transition-delay: 0.65s; }

@keyframes fade-in-up {
    from { opacity: 0; transform: translate(-50%, 20px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

/* ============================================
   RESPONSIVE
   ============================================ */

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

    .leaders-grid {
        max-width: 600px;
    }

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

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

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    :root {
        --section-pad: 72px;
    }

    /* Mobile Nav */
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        flex-direction: column;
        background: rgba(53, 14, 45, 0.97);
        backdrop-filter: blur(30px);
        padding: 100px 40px 40px;
        gap: 8px;
        transition: right 0.4s var(--ease-smooth);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    }

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

    .nav-link {
        font-size: 1.1rem;
        padding: 14px 22px;
        width: 100%;
        border-radius: var(--radius-sm);
    }

    /* Hero Adjustments */
    .hero {
        padding: 100px 20px 70px;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-divider {
        display: none;
    }

    .scroll-indicator {
        display: none;
    }

    /* Brands */
    .brand-item {
        min-width: 100px;
        height: 56px;
        padding: 10px 16px;
    }
    
    .brand-item img {
        height: 24px;
    }
    
    .brand-fallback {
        font-size: 0.9rem;
    }

    /* About */
    .badge-content {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
        gap: 24px;
    }

    .startup-img {
        width: 140px;
    }

    .leaders-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

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

    /* Contact Form */
    .contact-form-wrapper {
        padding: 28px 24px;
    }

    /* Footer */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

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