/* ==========================================================================
   CSS VARIABLES & GLOBAL RESET
   ========================================================================== */
:root {
    /* Brand Colors */
    --primary-green: #14532D;
    --secondary-green: #166534;
    --dark-green: #0F3D24;
    --exec-black: #0D0D0D;
    --white: #FFFFFF;
    --light-grey: #F5F7F8;
    --border-grey: #E5E7EB;
    --text-grey: #6B7280;
    --success-green: #22C55E;
    --header-bg: rgba(255, 255, 255, 0.95);

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-stats: 'Poppins', sans-serif;

    /* Shadows & Transitions */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-premium: 0 20px 40px rgba(13, 13, 13, 0.08);
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Dark theme overrides specifically designed for the Admin Dashboard */
html[data-theme="dark"] {
    --primary-green: #22c55e; /* Bright vibrant green for dark mode contrast */
    --secondary-green: #16a34a; /* Medium bright green */
    --dark-green: #15803d; /* Darker accent green */
    --white: #0b0b0c; /* Dark charcoal/black panel */
    --exec-black: #FFFFFF; /* Pure white text */
    --light-grey: #000000; /* Pure black background */
    --border-grey: #1c1c1e; /* Very dark neutral border */
    --text-grey: #a1a1aa; /* Neutral light grey text */
    --header-bg: rgba(10, 10, 10, 0.95); /* Semi-transparent black header */
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.8);
    
    /* Contact Section Overrides */
    --contact-primary: #000000;
    --contact-text: #FFFFFF;
    --contact-text-muted: #a1a1aa;
    --contact-border: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(18, 18, 18, 0.85);
    --glass-border: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .glass-card {
    background: rgba(15, 15, 15, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .service-card:hover,
html[data-theme="dark"] .industry-card:hover,
html[data-theme="dark"] .insight-card:hover {
    border-color: var(--primary-green) !important;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.25), var(--shadow-premium) !important;
    transition: none !important;
}

html[data-theme="dark"] .btn-primary:hover,
html[data-theme="dark"] .btn-success:hover {
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.45) !important;
    transition: none !important;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--exec-black);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--exec-black);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--light-grey);
}

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

.text-white {
    color: var(--white);
}

.text-grey {
    color: var(--text-grey);
}

.text-success {
    color: var(--success-green);
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mb-0 {
    margin-bottom: 0;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.d-flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

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

/* ==========================================================================
   BUTTONS & COMPONENTS
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 15px;
    text-align: center;
    cursor: pointer;
    transition: none;
    border: 1px solid transparent;
}

.btn:hover {
    transition: none !important;
}

.btn-small {
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
}

.btn-large {
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 600;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-primary {
    background-color: var(--primary-green);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(20, 83, 45, 0.2);
}

.btn-success {
    background-color: var(--success-green);
    color: #ffffff;
}

.btn-success:hover {
    background-color: #1ea34d;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.2);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--exec-black);
    color: var(--exec-black);
}

.btn-outline:hover {
    background-color: var(--exec-black);
    color: var(--white);
}

.btn-outline-light {
    background-color: transparent;
    border-color: #ffffff;
    color: #ffffff;
}

.btn-outline-light:hover {
    background-color: #ffffff;
    color: #0D0D0D;
}

.btn-link {
    color: var(--primary-green);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-link:hover {
    color: var(--dark-green);
    gap: 12px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-grey);
    max-width: 800px;
    margin-bottom: 3rem;
}

/* Glassmorphism utility */
.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-premium);
    border-radius: 12px;
}

.glass-card-dark {
    background: rgba(20, 83, 45, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-radius: 12px;
}

/* ==========================================================================
   PAGE LOADER
   ========================================================================== */
.page-loader {
    position: fixed;
    inset: 0;
    background-color: transparent;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: all;
    visibility: visible;
    overflow: hidden;
}

.page-loader.hidden {
    pointer-events: none;
    visibility: hidden;
}

.loader-sheet {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: translateX(0);
    transition: transform 0.8s cubic-bezier(0.85, 0, 0.15, 1);
}

.loader-sheet.sheet-1 {
    background-color: var(--primary-green);
    z-index: 1;
}

.loader-sheet.sheet-2 {
    background-color: #86EFAC; /* Staggered mint green color layer */
    z-index: 2;
}

.loader-sheet.sheet-3 {
    background-color: var(--white);
    z-index: 3;
}

.page-loader.slide-out .sheet-3 {
    transform: translateX(100%);
    transition-delay: 0s;
}

.page-loader.slide-out .sheet-2 {
    transform: translateX(100%);
    transition-delay: 0.15s;
}

.page-loader.slide-out .sheet-1 {
    transform: translateX(100%);
    transition-delay: 0.3s;
}

.loader-content {
    display: none !important;
}

.loader-logo {
    color: var(--primary-green);
    animation: loader-pulse 1.5s infinite ease-in-out;
}

.loader-counter {
    font-family: var(--font-stats);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--exec-black);
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.loader-suffix {
    font-size: 1.25rem;
    color: var(--text-grey);
}

@keyframes loader-pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(0.9);
        opacity: 0.8;
    }
}

.loader-laser-track {
    width: 250px;
    height: 3px;
    background-color: var(--light-grey);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.loader-laser {
    height: 100%;
    width: 10%;
    /* Initial width for count=1 */
    background-color: var(--success-green);
    box-shadow: 0 0 8px var(--success-green), 0 0 16px var(--success-green);
    border-radius: 3px;
    transition: width 0.15s ease-out;
}

/* ==========================================================================
   1. TOP ANNOUNCEMENT BAR
   ========================================================================== */
.announcement-bar {
    background-color: var(--exec-black);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.announcement-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.announcement-content p {
    margin: 0;
    font-weight: 500;
}

/* ==========================================================================
   2. STICKY HEADER
   ========================================================================== */
.header {
    background-color: var(--header-bg);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-grey);
    transition: var(--transition-smooth);
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 80px;
    gap: 40px;
    max-width: 100%;
    padding: 0 40px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    justify-self: start;
}

.logo-mark {
    color: var(--primary-green);
    animation: logo-flip 6s infinite ease-in-out;
    transform-style: preserve-3d;
}

@keyframes logo-flip {
    0% {
        transform: rotateY(0deg);
    }

    15% {
        transform: rotateY(180deg);
    }

    50% {
        transform: rotateY(180deg);
    }

    65% {
        transform: rotateY(360deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--exec-black);
}

.logo-text span {
    color: var(--primary-green);
    font-weight: 700;
    margin-left: 4px;
}

.text-white {
    color: #ffffff !important;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.desktop-nav {
    justify-self: center;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-self: end;
}

.header-actions .btn {
    white-space: nowrap;
    flex-shrink: 0;
}

/* Theme Toggle Button */
.theme-toggle-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--exec-black);
    font-size: 1.2rem;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.theme-toggle-btn:hover {
    color: var(--primary-green);
    background-color: rgba(20, 83, 45, 0.05);
    transform: scale(1.05);
}

html[data-theme="dark"] .theme-toggle-btn:hover {
    background-color: rgba(248, 250, 252, 0.05);
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--exec-black);
    position: relative;
    white-space: nowrap;
}

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

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-green);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--exec-black);
    cursor: pointer;
}

.mobile-nav {
    display: none;
    background-color: var(--white);
    padding: 20px;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--border-grey);
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.mobile-nav-links a {
    font-size: 16px;
    font-weight: 500;
    color: var(--exec-black);
    display: block;
}

/* ==========================================================================
   3. HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #020704 url('images/hero-network-bg.png') no-repeat center right / cover;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 60% 50%, rgba(34, 197, 94, 0.15) 0%, transparent 60%);
    border-radius: 0;
    z-index: 0;
    pointer-events: none;
}

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

.hero-label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #22c55e;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 6px 12px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 4px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    color: #FFFFFF;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-visual {
    position: relative;
    min-height: 400px;
    width: 100%;
}

.main-dashboard {
    padding: 16px;
    border-radius: 12px;
    overflow: hidden;
}

.dashboard-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    gap: 12px;
}

.dots {
    display: flex;
    gap: 6px;
}

.dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--border-grey);
}

.dots span:nth-child(1) {
    background-color: #FF5F56;
}

.dots span:nth-child(2) {
    background-color: #FFBD2E;
}

.dots span:nth-child(3) {
    background-color: #27C93F;
}

.dashboard-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-grey);
}

.dashboard-img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--border-grey);
}

.floating-tags {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.float-tag {
    position: absolute;
    background: rgba(15, 23, 42, 0.85);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    color: #FFFFFF;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(34, 197, 94, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: float 6s ease-in-out infinite;
}

.tag-1 {
    top: -20px;
    right: 10%;
    animation-delay: 0s;
}

.tag-2 {
    bottom: 20%;
    left: -30px;
    animation-delay: 1.5s;
}

.tag-3 {
    bottom: -20px;
    right: 20%;
    animation-delay: 3s;
}

.tag-4 {
    top: 30%;
    right: -30px;
    animation-delay: 4.5s;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* ==========================================================================
   4. SOCIAL PROOF SECTION
   ========================================================================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    padding: 30px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-grey);
    transition: var(--transition-smooth);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-green);
}

.stat-number {
    font-family: var(--font-stats);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-weight: 500;
    color: var(--exec-black);
}

/* ==========================================================================
   5. ABOUT SARANGI CONSULTING
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.founder-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.founder-img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.founder-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(13, 13, 13, 0.9) 0%, rgba(13, 13, 13, 0) 100%);
    color: var(--white);
}

.founder-name {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.founder-title {
    color: var(--success-green);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founder-social {
    position: absolute;
    bottom: 30px;
    right: 30px;
}

.founder-social a {
    color: var(--white);
    font-size: 1.5rem;
}

.founder-social a:hover {
    color: var(--success-green);
}

/* Testimonials */
.testimonials-section {
    width: 100%;
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.testimonials-header-left {
    display: flex;
    flex-direction: column;
}

.testimonials-subtitle {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-grey);
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.testimonials-arrows {
    display: flex;
    gap: 12px;
}

.slider-nav-btn {
    background: var(--light-grey);
    border: 1px solid var(--border-grey);
    cursor: pointer;
    font-size: 1rem;
    color: var(--exec-black);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.slider-nav-btn:hover {
    background-color: var(--primary-green);
    color: var(--white);
    transform: scale(1.05);
}

.testimonials-slider-container {
    position: relative;
    width: 100%;
}

.testimonials-track {
    display: flex;
    gap: 0; /* Flat layout with zero gaps, card left borders serve as dividers */
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    cursor: grab;
    user-select: none;
    padding: 25px 0;
    padding-left: 24px;
    padding-right: 24px;
}

.testimonials-track::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.testimonials-track:active {
    cursor: grabbing;
}

.testimonials-track .testimonial-card {
    flex: 0 0 460px;
    width: 460px;
}

@media (max-width: 500px) {
    .testimonials-track .testimonial-card {
        flex: 0 0 85vw;
        width: 85vw;
        padding: 0 20px;
    }
}

.testimonial-card {
    background: transparent;
    padding: 0 40px;
    border-radius: 0;
    border: none;
    border-left: 1px solid var(--border-grey);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: none;
    transition: border-left-color var(--transition-fast);
}

.testimonial-card:hover {
    border-left-color: var(--primary-green);
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--light-grey);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

html[data-theme="dark"] .author-avatar {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--success-green);
}

.review-stars {
    color: #FFD700;
    margin-bottom: 16px;
    font-size: 1.1rem;
    display: flex;
    gap: 4px;
}

.testimonial-content {
    margin-bottom: 24px;
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary-green);
    opacity: 0.3;
    margin-bottom: 16px;
}

.testimonial-content p {
    font-style: italic;
    color: var(--exec-black);
    font-size: 1.2rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: none;
    padding-top: 0;
    margin-top: 24px;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.author-info p {
    font-size: 0.875rem;
    color: var(--text-grey);
    margin: 0;
}

/* ==========================================================================
   6. SERVICES SECTION
   ========================================================================== */
.services .container {
    max-width: 1500px;
}

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

.service-card {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--border-grey);
    text-align: left;
    transition: none;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 0;
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    background: var(--white);
    color: var(--exec-black);
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
    border-color: var(--primary-green);
    transition: none !important;
}

.service-img-container {
    width: 100%;
    height: 140px;
    position: relative;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease-out;
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 13, 13, 0.3);
    transition: background 0.4s ease-out;
}

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

.service-card:hover .service-overlay {
    background: rgba(13, 13, 13, 0.15);
}

.service-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--exec-black);
}

.service-desc {
    font-size: 0.8rem;
    color: var(--text-grey);
    margin-bottom: 20px;
    line-height: 1.5;
}

.service-lists {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-list-col strong {
    display: block;
    font-size: 0.8rem;
    color: var(--exec-black);
    margin-bottom: 8px;
}

.service-list-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list-col li {
    font-size: 0.8rem;
    color: var(--text-grey);
    margin-bottom: 6px;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.service-list-col .text-green {
    color: var(--success-green);
    font-size: 0.75rem;
    margin-top: 2px;
    transition: transform 0.3s ease-out;
}

.service-card:hover .text-green {
    transform: scale(1.1);
}

.service-content .btn-link {
    margin-top: auto;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-green);
    position: relative;
    width: fit-content;
}

.service-content .btn-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-green);
    transition: width 0.3s ease-out;
}

.service-card:hover .btn-link::after {
    width: 100%;
}

.service-content .btn-link i {
    transition: transform 0.3s ease-out;
}

.service-card:hover .btn-link i {
    transform: translateX(6px);
}

/* ==========================================================================
   7. INDUSTRIES SECTION
   ========================================================================== */
.industries .container {
    max-width: 1500px;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.industry-card {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--border-grey);
    text-align: left;
    transition: none;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0;
    box-shadow: var(--shadow-sm);
}

.industry-card:hover {
    background: var(--white);
    color: var(--exec-black);
    transform: translateY(-6px);
    box-shadow: var(--shadow-premium);
    border-color: var(--primary-green);
    transition: none !important;
}

.industry-img-container {
    width: 100%;
    height: 140px;
    position: relative;
    overflow: hidden;
}

.industry-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease-out;
}

.industry-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 13, 13, 0.3);
}

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

.industry-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    height: 100%;
}

.explore-btn {
    margin-top: auto !important;
}

.industry-content a {
    margin-top: auto;
}

.industry-card h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--exec-black);
}

.industry-sub {
    font-size: 0.7rem;
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 12px;
}

.industry-desc {
    font-size: 0.8rem;
    color: var(--text-grey);
    margin-bottom: 20px;
    line-height: 1.5;
    min-height: 120px;
}

.industry-lists {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
    flex-grow: 1;
}

.industry-list-col strong {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--exec-black);
    align-items: flex-start;
    margin-bottom: 10px;
    gap: 6px;
}

.industry-list-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.industry-list-col li {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-grey);
    margin-bottom: 6px;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.text-green {
    color: var(--success-green);
    font-size: 0.95rem;
    margin-top: 2px;
    transition: transform 0.3s ease-out;
}

.industry-card:hover .text-green {
    transform: scale(1.1);
}

.industry-content .btn-link {
    margin-top: auto;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-green);
}

.industry-content .btn-link i {
    transition: transform 0.3s ease-out;
}

.industry-card:hover .btn-link i {
    transform: translateX(4px);
}

/* ==========================================================================
   8. WHY CHOOSE SECTION
   ========================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.feature-item {
    perspective: 1000px;
    height: 280px;
    /* Fixed height for consistent flip cards */
    background-color: transparent;
}

.feature-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    cursor: pointer;
}

.feature-item:hover .feature-inner {
    transform: rotateY(180deg);
}

.feature-front,
.feature-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    /* Safari */
    backface-visibility: hidden;
    border-radius: 12px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.feature-front {
    background-color: var(--white);
    border: 1px solid var(--border-grey);
    box-shadow: var(--shadow-sm);
}

.feature-back {
    background-color: var(--primary-green);
    color: var(--white);
    transform: rotateY(180deg);
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--primary-green);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(20, 83, 45, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-green);
}

.feature-front h4 {
    font-size: 1.25rem;
    margin: 0;
}

.feature-back h4 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 16px;
}

.feature-back p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
    margin: 0;
}

/* ==========================================================================
   9. CONSULTING FRAMEWORK
   ========================================================================== */
.dark-section {
    background-color: var(--dark-green);
    color: var(--white);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 24px;
    width: 2px;
    background: rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.timeline-line::after {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--success-green), var(--white));
    box-shadow: 0 0 10px 2px var(--success-green);
    animation: laser-drop 4s linear infinite;
}

@keyframes laser-drop {
    0% {
        top: -100px;
    }

    100% {
        top: 100%;
    }
}

.timeline-item {
    position: relative;
    padding-left: 70px;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--success-green);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 0 0 8px var(--dark-green);
    z-index: 1;
}

.timeline-content h4 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 8px;
    padding-top: 10px;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
}

/* ==========================================================================
   10. STARTUP ADVISORY SECTION
   ========================================================================== */
.black-section {
    background-color: var(--exec-black);
    color: var(--white);
}

.advisory-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

.advisory-subtitle {
    font-size: 1.25rem;
    color: var(--text-grey);
    margin-bottom: 30px;
}

.advisory-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.advisory-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.125rem;
}

.pricing-card {
    padding: 40px;
    text-align: center;
}

.pricing-header {
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--success-green);
    margin-bottom: 20px;
}

.pricing-amount {
    font-family: var(--font-stats);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.pricing-period {
    color: var(--text-grey);
    margin-bottom: 30px;
}

/* ==========================================================================
   11. CASE STUDIES SECTION
   ========================================================================== */
.case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.case-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-grey);
    transition: var(--transition-smooth);
}

.case-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium);
}

.case-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.case-content {
    padding: 30px;
}

.case-industry {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-green);
    margin-bottom: 12px;
}

.case-content h4 {
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.case-content p {
    font-size: 0.9375rem;
    color: var(--text-grey);
    margin-bottom: 12px;
}

.case-content strong {
    color: var(--exec-black);
}

/* ==========================================================================
   12. FOUNDER MESSAGE
   ========================================================================== */
.quote-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 60px;
    background: var(--light-grey);
    border-radius: 12px;
    position: relative;
}

.quote-block .quote-icon {
    font-size: 40px;
    color: rgba(20, 83, 45, 0.1);
    position: absolute;
    top: 40px;
    left: 40px;
}

.executive-quote {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--exec-black);
    margin: 30px 0;
    position: relative;
    z-index: 1;
}

.quote-author strong {
    display: block;
    font-size: 1.125rem;
    color: var(--primary-green);
}

.quote-author span {
    font-size: 0.875rem;
    color: var(--text-grey);
}

/* ==========================================================================
   13. INSIGHTS SECTION
   ========================================================================== */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.insight-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-grey);
    transition: none;

    display: flex;
    flex-direction: column;
    height: 100%;
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-green);
    transition: none !important;
}

.insight-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    transition: var(--transition-smooth);
}

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

.insight-content {
    padding: 24px;
    background: var(--white);
    position: relative;

    display: flex;
    flex-direction: column;
    flex: 1;
}

.insight-category {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-green);
    margin-bottom: 12px;
}

.insight-title {
    font-size: 1.125rem;
    margin-bottom: 12px;
    line-height: 1.4;
    min-height: 70px;
}

.insight-title a:hover {
    color: var(--primary-green);
}

.insight-excerpt {
    font-size: 0.9375rem;
    color: var(--text-grey);
    margin-bottom: 20px;
    flex: 1;
}

.insight-meta {
    font-size: 0.8125rem;
    color: var(--text-grey);
    border-top: 1px solid var(--border-grey);
    padding-top: 16px;
}

.apply-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.apply-card-btn:hover {
    color: var(--dark-green);
    gap: 12px;
}
/* ==========================================================================
   14. FINAL CTA
   ========================================================================== */
.final-cta {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
}

.cta-box {
    max-width: 600px;
    margin: 0 auto;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* ==========================================================================
   15. FOOTER
   ========================================================================== */
.footer {
    background-color: #0b0b0c;
    color: #a1a1aa;
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-links h4 {
    color: #ffffff;
    font-size: 1.125rem;
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #a1a1aa;
    font-size: 0.9375rem;
}

.footer-links a:hover {
    color: var(--success-green);
    padding-left: 5px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    margin-right: 12px;
    font-size: 1rem;
    line-height: 1;
    transition: var(--transition-fast);
}

.social-links a i {
    font-size: 1rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    background: var(--success-green);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
    color: #a1a1aa;
}

.legal-links a {
    margin-left: 20px;
}

.legal-links a:hover {
    color: #ffffff;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

.reveal-up.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translate(0);
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVE)
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .industry-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .advisory-pricing {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 1100px) {
    .desktop-nav,
    .d-none-mobile {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-bg {
        width: 100%;
        height: 50%;
        border-radius: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

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

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

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

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

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

    .advisory-features {
        grid-template-columns: 1fr;
    }

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

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

    .quote-block {
        padding: 40px 20px;
    }

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

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

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

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

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

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

    .announcement-content {
        flex-direction: column;
        gap: 10px;
    }
}

/* ==========================================================================
   SPA ROUTING STYLES
   ========================================================================== */
.page-section {
    display: none;
}

.page-section.active-page {
    display: block;
}

section.hero.page-section.active-page {
    display: flex;
    /* Override to maintain flex layout */
}

/* ==========================================================================
   SERVICE DETAIL PAGES
   ========================================================================== */
.service-hero {
    border-bottom: 5px solid var(--primary-green);
}

.process-flow {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
}

.process-flow::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 24px;
    width: 2px;
    background: var(--border-grey);
    z-index: 0;
}

.process-step {
    display: flex;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.step-num {
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 2px solid var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-green);
    flex-shrink: 0;
    box-shadow: 0 0 0 5px var(--white);
}

.step-text h4 {
    margin-top: 12px;
    margin-bottom: 8px;
    font-size: 1.2rem;
    color: var(--exec-black);
}

.step-text p {
    color: var(--text-grey);
    font-size: 0.95rem;
    margin: 0;
}


/* ==========================================================================
   CONTACT SECTION (MASSIVE OVERHAUL)
   ========================================================================== */

:root {
    --contact-primary: #f8fcf9;
    /* Very light green-white */
    --contact-secondary: var(--primary-green);
    --contact-accent: var(--primary-green);
    --contact-text: var(--exec-black);
    --contact-text-muted: var(--text-grey);
    --contact-border: rgba(0, 0, 0, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(0, 0, 0, 0.05);
}

.contact-section {
    position: relative;
    background-color: var(--contact-primary);
    overflow: hidden;
    color: var(--contact-text);
    padding: 100px 0;
}

/* Map Background */
.contact-bg-map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" xmlns="http://www.w3.org/2000/svg"><pattern id="dots" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle fill="rgba(0,255,136,0.15)" cx="2" cy="2" r="1"></circle></pattern><rect x="0" y="0" width="100%" height="100%" fill="url(%23dots)"></rect></svg>');
    background-size: cover;
    z-index: 1;
    pointer-events: none;
}

/* Stats */
.contact-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.contact-stat-item {
    text-align: center;
    padding: 20px 30px;
    background: var(--glass-bg);
    border: 1px solid var(--contact-border);
    border-radius: 16px;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.contact-stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--contact-accent);
}

.stat-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--contact-accent);
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--contact-text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Grid Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: flex-start;
}

/* Left Panel */
.info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--contact-secondary);
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(0, 255, 136, 0.1);
    color: var(--contact-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-card:hover .info-icon {
    background: var(--contact-secondary);
    color: #fff;
}

.info-text h5 {
    color: var(--contact-text);
    margin-bottom: 5px;
    font-size: 1.1rem;
    font-weight: 600;
}

.info-text p {
    color: var(--contact-text-muted);
    margin: 0;
    font-size: 0.95rem;
}

.why-choose-card {
    background: linear-gradient(145deg, rgba(0, 255, 136, 0.1), rgba(0, 255, 136, 0.05));
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 16px;
    padding: 30px;
}

.why-choose-card h4 {
    color: var(--contact-accent);
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.why-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--contact-text);
    font-size: 0.95rem;
}

.why-list li i {
    color: var(--contact-accent);
}

.contact-socials {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--contact-text);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--contact-secondary);
    border-color: var(--contact-secondary);
    color: #fff;
    transform: translateY(-3px);
}

/* Right Panel Form */
.glass-form {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.form-title {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--contact-text);
    font-weight: 700;
}

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

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

.form-control {
    width: 100%;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid var(--contact-border);
    border-radius: 12px;
    padding: 16px 20px;
    color: var(--contact-text);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--contact-accent);
    background: rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 0 4px rgba(0, 255, 136, 0.1);
}

/* Floating Labels */
.floating-group label {
    position: absolute;
    top: 18px;
    left: 20px;
    color: var(--contact-text-muted);
    font-size: 1rem;
    transition: 0.3s ease all;
    pointer-events: none;
    background: transparent;
    padding: 0 5px;
}

.floating-group input:focus~label,
.floating-group input:not(:placeholder-shown)~label,
.floating-group textarea:focus~label,
.floating-group textarea:not(:placeholder-shown)~label,
.floating-group .form-control:valid~label {
    top: -10px;
    left: 15px;
    font-size: 0.8rem;
    color: var(--contact-accent);
    background: var(--contact-primary);
    /* Masks border behind label */
    border-radius: 4px;
}

/* Hack for empty placeholder shown pseudo class since required inputs might be invalid initially */
.floating-group input:focus~label,
.floating-group input.has-value~label,
.floating-group textarea:focus~label,
.floating-group textarea.has-value~label {
    top: -10px;
    left: 15px;
    font-size: 0.8rem;
    color: var(--contact-accent);
    background: var(--contact-primary);
}


/* Dark Mode overrides for Contact Section */
html[data-theme="dark"] .glass-form {
    background: rgba(18, 18, 18, 0.85) !important;
}

html[data-theme="dark"] .form-control {
    background: rgba(0, 0, 0, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
}

html[data-theme="dark"] .form-control:focus {
    background: rgba(0, 0, 0, 0.3) !important;
    border-color: var(--primary-green) !important;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.15) !important;
}

html[data-theme="dark"] .floating-group label {
    color: var(--text-grey);
}

html[data-theme="dark"] .floating-group input:focus~label,
html[data-theme="dark"] .floating-group input:not(:placeholder-shown)~label,
html[data-theme="dark"] .floating-group textarea:focus~label,
html[data-theme="dark"] .floating-group textarea:not(:placeholder-shown)~label,
html[data-theme="dark"] .floating-group .form-control:valid~label {
    background: #121212 !important;
    color: var(--primary-green) !important;
}

html[data-theme="dark"] .floating-group input:focus~label,
html[data-theme="dark"] .floating-group input.has-value~label,
html[data-theme="dark"] .floating-group textarea:focus~label,
html[data-theme="dark"] .floating-group textarea.has-value~label {
    background: #121212 !important;
    color: var(--primary-green) !important;
}

html[data-theme="dark"] select.form-control option {
    background-color: #121212 !important;
    color: #ffffff !important;
}


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

.form-divider {
    border: 0;
    height: 1px;
    background: var(--glass-border);
    margin: 30px 0;
}

/* Custom Select */
.custom-select-wrapper {
    position: relative;
}

.custom-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' 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 15px center;
    background-size: 16px;
    cursor: pointer;
}

.custom-select option {
    background: var(--contact-primary);
    color: var(--contact-text);
}

/* Custom Radio */
.radio-group-label {
    display: block;
    margin-bottom: 15px;
    color: var(--contact-text);
    font-weight: 500;
}

.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.custom-radio {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--contact-text-muted);
    user-select: none;
    transition: color 0.3s;
}

.custom-radio:hover {
    color: var(--contact-text);
}

.custom-radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-mark {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 20px;
    width: 20px;
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--contact-border);
    border-radius: 50%;
    transition: all 0.3s;
}

.custom-radio:hover input~.radio-mark {
    border-color: var(--contact-secondary);
}

.custom-radio input:checked~.radio-mark {
    background-color: var(--contact-secondary);
    border-color: var(--contact-secondary);
}

.radio-mark:after {
    content: "";
    position: absolute;
    display: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

.custom-radio input:checked~.radio-mark:after {
    display: block;
}

.custom-radio input:checked~span {
    color: var(--contact-text);
}

/* File Upload */
.file-upload-group {
    margin-top: 10px;
}

.hidden-file-input {
    display: none;
}

.file-upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    background: rgba(0, 255, 136, 0.05);
    border: 2px dashed rgba(0, 255, 136, 0.3);
    border-radius: 12px;
    color: var(--contact-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.file-upload-label:hover {
    background: rgba(0, 255, 136, 0.1);
    border-color: var(--contact-secondary);
}

.file-name-display {
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--contact-accent);
    text-align: center;
}

/* Checkbox */
.custom-checkbox {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--contact-text-muted);
    user-select: none;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--contact-border);
    border-radius: 4px;
    transition: all 0.2s;
}

.custom-checkbox input:checked~.checkmark {
    background-color: var(--contact-accent);
    border-color: var(--contact-accent);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-checkbox input:checked~.checkmark:after {
    display: block;
}

/* Submit Button */
.btn-submit-massive {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, var(--primary-green), #00cc6a);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}

.btn-submit-massive:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(0, 255, 136, 0.5);
}

.btn-submit-massive:active {
    transform: translateY(0);
}

/* Success Popup */
.success-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.success-popup-card {
    background: white;
    padding: 50px;
    border-radius: 24px;
    text-align: center;
    max-width: 450px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(0.9);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-popup-overlay.show .success-popup-card {
    transform: scale(1);
}

.success-popup-card h3 {
    color: var(--exec-black);
    font-size: 2rem;
    margin-bottom: 15px;
}

.success-popup-card p {
    color: var(--text-grey);
    margin-bottom: 0;
    font-size: 1.1rem;
}

/* Animated Checkmark */
.success-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
}

.success-checkmark {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: block;
    stroke-width: 4;
    stroke: #4caf50;
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px #4caf50;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.success-checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 4;
    stroke-miterlimit: 10;
    stroke: #4caf50;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.success-checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {

    0%,
    100% {
        transform: none;
    }

    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 30px rgba(76, 175, 80, 0.1);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .glass-form {
        padding: 30px;
    }

    .contact-stats {
        gap: 20px;
    }

    .contact-stat-item {
        flex: 1 1 40%;
    }
}

@media (max-width: 768px) {
    .contact-stat-item {
        flex: 1 1 100%;
    }
}


/* ==========================================================================
   STARTUP ADVISORY PAGE - MASSIVE OVERHAUL
   ========================================================================== */

.startup-advisory-page {
    position: relative;
    background-color: var(--white);
}

/* --- Hero Section --- */
.sa-hero {
    position: relative;
    padding: 140px 0 100px;
    background: var(--exec-black);
    color: var(--white);
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.sa-hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.sa-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    z-index: 1;
}

.sa-shape-1 {
    width: 600px;
    height: 600px;
    background: var(--primary-green);
    top: -200px;
    right: -200px;
}

.sa-shape-2 {
    width: 400px;
    height: 400px;
    background: #D4AF37;
    /* Luxury Gold */
    bottom: -100px;
    left: -100px;
}

.sa-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 2;
}

.sa-hero-container {
    position: relative;
    z-index: 10;
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.sa-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #00ff88;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sa-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    font-family: var(--font-heading);
}

.text-gradient-gold {
    background: linear-gradient(135deg, #F9D423 0%, #FF4E50 100%);
    background: linear-gradient(135deg, #D4AF37 0%, #FFF3A1 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.sa-subtitle {
    font-size: 1.6rem;
    font-weight: 500;
    color: #E5E7EB;
    margin-bottom: 25px;
    font-style: italic;
}

.sa-description {
    font-size: 1.15rem;
    color: #9CA3AF;
    max-width: 750px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

/* --- Metrics Section --- */
.sa-metrics-section {
    background: var(--exec-black);
    padding: 0 0 80px;
    position: relative;
    z-index: 10;
}

.sa-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.sa-metric-card {
    text-align: center;
}

.sa-metric-icon {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.sa-metric-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.sa-metric-label {
    color: #9CA3AF;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Pricing Section --- */
.sa-pricing-section {
    padding: 100px 0;
    background: var(--light-grey);
}

.sa-pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    align-items: center;
}

.sa-pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid var(--border-grey);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.sa-pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-green);
}

.sa-plan-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-grey);
}

.sa-plan-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 255, 136, 0.1);
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.sa-plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--exec-black);
    margin-bottom: 10px;
}

.sa-plan-target {
    font-size: 0.9rem;
    color: var(--text-grey);
    height: 45px;
    margin-bottom: 15px;
}

.sa-plan-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--exec-black);
    margin-bottom: 10px;
}

.sa-plan-price span {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-grey);
}

.sa-plan-duration {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(0, 255, 136, 0.05);
    padding: 6px 12px;
    border-radius: 20px;
    display: inline-flex;
}

.sa-plan-body {
    flex-grow: 1;
}

.sa-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.sa-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
    color: var(--exec-black);
}

.sa-feature-list li i {
    color: var(--success-green);
    margin-top: 3px;
}

.sa-plan-footer {
    margin-top: auto;
}

.sa-btn-full {
    width: 100%;
    padding: 14px 20px;
    font-size: 1rem;
    border-radius: 8px;
}

/* Featured / Growth Plan */
.sa-featured-card {
    background: linear-gradient(145deg, var(--exec-black) 0%, #0F3D24 100%);
    color: var(--white);
    border-color: #D4AF37;
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 20px 50px rgba(15, 61, 36, 0.3);
}

.sa-featured-card:hover {
    transform: scale(1.05) translateY(-10px);
}

.sa-popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #D4AF37 0%, #F9D423 100%);
    color: var(--exec-black);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.sa-featured-card .sa-plan-name,
.sa-featured-card .sa-plan-price,
.sa-featured-card .sa-feature-list li {
    color: var(--white);
}

.sa-featured-card .sa-plan-target,
.sa-featured-card .sa-plan-price span {
    color: rgba(255, 255, 255, 0.7);
}

.sa-featured-card .sa-plan-header {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.sa-featured-card .sa-plan-icon {
    background: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
}

.sa-featured-card .sa-feature-list li i {
    color: #00ff88;
}

.sa-btn-gold {
    background: linear-gradient(135deg, #D4AF37 0%, #F9D423 100%);
    color: var(--exec-black);
    border: none;
    font-weight: 700;
}

.sa-btn-gold:hover {
    background: linear-gradient(135deg, #F9D423 0%, #D4AF37 100%);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

/* Scale Up Plan */
.sa-pricing-card:nth-child(3) {
    border-top: 4px solid var(--success-green);
}

.sa-btn-success-green {
    border-color: var(--success-green);
    color: var(--success-green);
}

.sa-btn-success-green:hover {
    background: var(--success-green);
    color: var(--white);
}

/* Enterprise Plan */
.sa-enterprise-card {
    background: var(--exec-black);
    border-color: var(--exec-black);
}

.sa-enterprise-card .sa-plan-name,
.sa-enterprise-card .sa-plan-price,
.sa-enterprise-card .sa-feature-list li {
    color: var(--white);
}

.sa-enterprise-card .sa-plan-target,
.sa-enterprise-card .sa-plan-price span {
    color: rgba(255, 255, 255, 0.6);
}

.sa-enterprise-card .sa-plan-header {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.sa-enterprise-card .sa-feature-list li i {
    color: var(--primary-green);
}

.sa-btn-enterprise {
    border-color: var(--white);
    color: var(--white);
}

.sa-btn-enterprise:hover {
    background: var(--white);
    color: var(--exec-black);
}

/* --- Additional Services Grid --- */
.sa-additional-services {
    background: var(--white);
    padding: 100px 0;
}

.sa-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.sa-service-item {
    background: var(--light-grey);
    border: 1px solid var(--border-grey);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sa-service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), #00ff88);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.sa-service-item:hover {
    background: var(--white);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
    transform: translateY(-5px);
}

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

.sa-service-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 255, 136, 0.1);
    color: var(--primary-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.sa-service-item:hover .sa-service-icon {
    background: var(--primary-green);
    color: var(--white);
    transform: rotateY(180deg);
}

.sa-service-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--exec-black);
    margin-bottom: 12px;
}

.sa-service-item p {
    color: var(--text-grey);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* --- Final CTA --- */
.sa-final-cta {
    position: relative;
    padding: 120px 0;
    background: var(--exec-black);
    overflow: hidden;
}

.sa-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.sa-cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.sa-cta-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.sa-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.sa-cta-btn {
    padding: 16px 32px;
    font-size: 1.1rem;
    background: linear-gradient(135deg, var(--primary-green), #00cc6a);
    border: none;
}

.sa-cta-btn:hover {
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
}

.sa-cta-btn-alt {
    padding: 16px 32px;
    font-size: 1.1rem;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.sa-cta-btn-alt:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

/* --- Responsive Adjustments --- */
@media (max-width: 1200px) {
    .sa-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }

    .sa-featured-card {
        transform: scale(1);
    }

    .sa-featured-card:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 992px) {
    .sa-title {
        font-size: 3rem;
    }

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

@media (max-width: 768px) {
    .sa-pricing-grid {
        grid-template-columns: 1fr;
    }

    .sa-cta-buttons {
        flex-direction: column;
    }

    .sa-hero {
        padding: 120px 0 80px;
    }
}

/* ==========================================================================
   ADMIN DASHBOARD LAYOUT
   ========================================================================== */
body { overflow-x: hidden; }
.dashboard-layout { min-height: 100vh; background-color: #f8fafc; }
.sidebar { position: fixed; top: 0; left: 0; width: 260px; height: 100vh; overflow-y: auto; z-index: 1000; background: var(--exec-black); color: white; padding: 20px 0; display: flex; flex-direction: column; justify-content: space-between; }
.sidebar-logo { padding: 0 20px 30px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 20px; flex-shrink: 0; }
.nav-item { padding: 12px 20px; color: #a1a1aa; text-decoration: none; font-weight: 500; display: flex; align-items: center; gap: 12px; transition: 0.3s; }
.nav-item:hover, .nav-item.active { background: rgba(34, 197, 94, 0.1); color: var(--primary-green); border-right: 3px solid var(--primary-green); }
.main-content { margin-left: 260px; min-height: 100vh; padding: 40px; background-color: #f4f7f6; overflow-x: hidden; }
.dashboard-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }

@media (max-width: 768px) {
    .sidebar { position: relative; height: auto; width: 100%; }
    .main-content { margin-left: 0; padding: 20px; }
}

/* ==========================================================================
   DASHBOARD STATS CARDS
   ========================================================================== */
.stat-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-bottom: 40px; }

/* ==========================================================================
   HEADER CTA BUTTON (PREMIUM LOOK)
   ========================================================================== */
.header-cta {
    background: linear-gradient(135deg, var(--primary-green), #22c55e) !important;
    color: var(--white) !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    padding: 12px 28px !important;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.25) !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    border: none !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    font-size: 13px !important;
    text-decoration: none !important;
    white-space: nowrap !important;
}
.header-cta:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4) !important;
}

/* ==========================================================================
   STARTUP APPLICATION PAGE
   ========================================================================== */

.startup-application .dark-section {
    background-color: var(--exec-black);
    color: var(--white);
    padding: 120px 0 100px;
}
.startup-application-hero .hero-label {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(34, 197, 94, 0.1);
    color: var(--success-green);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.startup-application-hero h1 {
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 24px;
    color: var(--white);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.startup-application-hero p {
    font-size: 18px;
    color: #A0AAB0;
    max-width: 600px;
    margin: 0 auto 40px;
}

.startup-application-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.startup-application-kicker {
    display: block;
    font-family: var(--font-heading);
    color: var(--primary-green);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    margin-bottom: 16px;
}

.startup-application-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.startup-application-card {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    text-align: center;
}
.startup-application-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.startup-application-card i {
    font-size: 36px;
    color: var(--primary-green);
    margin-bottom: 20px;
}
.startup-application-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.startup-application-steps {
    max-width: 800px;
    margin: 40px auto 0;
    counter-reset: step;
}
.startup-application-steps li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}
.startup-application-steps li span {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-green);
    background: rgba(20, 83, 45, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 24px;
    flex-shrink: 0;
}
.startup-application-steps h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.startup-application-faq {
    max-width: 800px;
    margin: 0 auto;
}
.startup-application-faq details {
    background: var(--white);
    margin-bottom: 16px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.startup-application-faq summary {
    padding: 24px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    list-style: none;
    position: relative;
    outline: none;
}
.startup-application-faq summary::-webkit-details-marker {
    display: none;
}
.startup-application-faq summary::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--primary-green);
}
.startup-application-faq details[open] summary::after {
    content: '-';
}
.startup-application-faq p {
    padding: 0 24px 24px;
    color: var(--text-grey);
}

.startup-application-form-wrap {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-premium);
}
.startup-application-form-heading {
    text-align: center;
    margin-bottom: 40px;
}
.startup-application-form fieldset {
    border: none;
    margin-bottom: 40px;
    padding: 0;
}
.startup-application-form legend {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 24px;
    width: 100%;
    border-bottom: 1px solid var(--border-grey);
    padding-bottom: 12px;
}
.startup-application-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}
.startup-application-form .form-group {
    margin-bottom: 24px;
}
.startup-application-form .form-row .form-group {
    margin-bottom: 0;
}
.startup-application-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--exec-black);
}
.startup-application-form .form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-grey);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition-fast);
}
.startup-application-form .form-control:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(20, 83, 45, 0.1);
}
.startup-application-form textarea.form-control {
    min-height: 120px;
    resize: vertical;
}
.startup-application-optional {
    font-size: 13px;
    color: var(--text-grey);
    font-weight: 400;
    margin-left: 8px;
    background: var(--light-grey);
    padding: 2px 8px;
    border-radius: 4px;
}
.startup-application-upload-note {
    font-size: 14px;
    color: var(--text-grey);
    margin-bottom: 16px;
}
.startup-application-upload {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    border: 2px dashed var(--border-grey);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-fast);
    background: var(--light-grey);
}
.startup-application-upload:hover {
    border-color: var(--primary-green);
    background: rgba(20, 83, 45, 0.02);
}
.startup-application-upload i {
    font-size: 32px;
    color: var(--primary-green);
    margin-bottom: 12px;
}
.startup-application-upload span {
    font-weight: 600;
    margin-bottom: 4px;
}
.startup-application-upload small {
    color: var(--text-grey);
}
.startup-application-form input[type="file"] {
    display: none;
}
.startup-application-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}
.startup-application-check input {
    margin-top: 4px;
}
.startup-application-check span {
    font-size: 14px;
    color: var(--text-grey);
}

@media (max-width: 768px) {
    .startup-application-form .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .startup-application-form-wrap {
        padding: 30px 20px;
    }
    .startup-application-steps li {
        flex-direction: column;
    }
    .startup-application-steps li span {
        margin-bottom: 16px;
    }
}

/* ==========================================================================
   20. SERVICE DETAIL PAGES DARK THEME OVERRIDES
   ========================================================================== */
html[data-theme="dark"] .service-detail-content {
    background-color: #000000 !important;
}

html[data-theme="dark"] .service-detail-lists,
html[data-theme="dark"] .process-flow {
    background: #0b0b0c !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: var(--shadow-premium) !important;
}

html[data-theme="dark"] .service-list-col strong,
html[data-theme="dark"] .process-step h4,
html[data-theme="dark"] .service-detail-content h3 {
    color: #ffffff !important;
}

html[data-theme="dark"] .service-list-col li,
html[data-theme="dark"] .process-step p,
html[data-theme="dark"] .service-list-col span {
    color: var(--text-grey) !important;
}

html[data-theme="dark"] .service-list-col li strong,
html[data-theme="dark"] .process-step strong {
    color: #ffffff !important;
}

html[data-theme="dark"] .service-list-col li[style*="background"] {
    background: rgba(255, 255, 255, 0.03) !important;
}

html[data-theme="dark"] .service-list-col li[style*="background"] span[style*="color"] {
    color: var(--text-grey) !important;
}

html[data-theme="dark"] .service-list-col li[style*="background"] strong {
    color: #ffffff !important;
}

html[data-theme="dark"] .service-list-col li[style*="0b132b"] {
    border-left-color: var(--primary-green) !important;
}

html[data-theme="dark"] .service-list-col {
    border-top-color: rgba(255, 255, 255, 0.08) !important;
}

html[data-theme="dark"] .step-num {
    background: #121212 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
}

html[data-theme="dark"] .btn-outline {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    background: transparent !important;
}

html[data-theme="dark"] .btn-outline:hover {
    background: var(--primary-green) !important;
    color: #ffffff !important;
    border-color: var(--primary-green) !important;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.45) !important;
    transition: none !important;
}