/* ===================================
   MySkillDB - Modern Gradient Design
   Inspired by SYNQ & Vibrant Theme
   =================================== */

/* === CSS Variables === */
:root {
    /* Gradient Colors */
    --gradient-pink: #ec4899;
    --gradient-purple: #a855f7;
    --gradient-blue: #3b82f6;
    --gradient-cyan: #06b6d4;
    --gradient-orange: #f97316;
    
    /* Primary Colors */
    --primary-color: #ec4899;
    --primary-dark: #db2777;
    --secondary-color: #06b6d4;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    
    /* Gradients */
    --gradient-main: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-vibrant: linear-gradient(135deg, #ec4899 0%, #a855f7 50%, #06b6d4 100%);
    --gradient-soft: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    --gradient-hero: linear-gradient(135deg, #fef3f9 0%, #f0f9ff 100%);
    
    /* Backgrounds */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-gradient: linear-gradient(135deg, #fef3f9 0%, #fef7f8 25%, #f0f9ff 75%, #ecfeff 100%);
    
    /* Text */
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-white: #ffffff;
    
    /* Borders & Shadows */
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(236, 72, 153, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(236, 72, 153, 0.2);
    --shadow-xl: 0 20px 25px -5px rgba(236, 72, 153, 0.25);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-gradient);
    position: relative;
    min-height: 100vh;
}

/* Gradient Background Blobs */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: float 20s ease-in-out infinite;
}

body::after {
    content: '';
    position: fixed;
    bottom: -50%;
    left: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

body > * {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

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

.highlight-text {
    color: #fff;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}

/* === Header === */
.main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(236, 72, 153, 0.1);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

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

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

body.menu-open {
    overflow: hidden;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo-section .logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-placeholder h1 {
    background: var(--gradient-vibrant);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
    font-weight: 800;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.main-nav a:hover {
    background: var(--gradient-vibrant);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-nav .hp-nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.main-nav .hp-nav-link.is-active {
    background: var(--gradient-vibrant);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.main-nav .hp-nav-link.is-active span::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 2px;
    border-radius: 999px;
    background: var(--gradient-vibrant);
}

.main-nav .hp-nav-link-home {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    justify-content: center;
    padding: 0;
    -webkit-text-fill-color: var(--primary-color);
}

.main-nav .hp-nav-link-home.is-active {
    background: rgba(236, 72, 153, 0.12);
    box-shadow: 0 0 0 2px rgba(236, 72, 153, 0.3);
    -webkit-text-fill-color: var(--primary-color);
}

.main-nav .hp-nav-link-home.is-active span::after {
    display: none;
}

/* === Buttons === */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-gradient {
    background: var(--gradient-vibrant);
    color: white;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.4);
}

.btn-gradient-large {
    background: var(--gradient-vibrant);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.btn-gradient-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(236, 72, 153, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid transparent;
    background-image: linear-gradient(white, white), var(--gradient-vibrant);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.btn-outline:hover {
    background: var(--gradient-vibrant);
    color: white;
}

.btn-outline-large {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-outline-large:hover {
    border-color: var(--primary-color);
    background: var(--gradient-soft);
}

.btn-white-large {
    background: white;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    box-shadow: var(--shadow-lg);
}

.btn-white-large:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-outline-white-large {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

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

.btn-gradient-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid transparent;
    background-image: linear-gradient(white, white), var(--gradient-vibrant);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.btn-gradient-outline:hover {
    background: var(--gradient-vibrant);
    color: white;
}

.btn-small {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

/* === Hero Section === */
.hero-gradient {
    padding: 3rem 0 2rem;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.03) 0%, rgba(6, 182, 212, 0.03) 100%);
    position: relative;
    overflow: hidden;
}

.hero-gradient::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1200px;
    height: 1200px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.06) 0%, transparent 60%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.7;
    }
}

/* Hero Split Layout */
.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: left;
    animation: slideInLeft 0.8s ease-out;
}

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

.hero-badge {
    margin-bottom: 2rem;
}

.badge-gradient {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--gradient-soft);
    border: 2px solid transparent;
    background-image: linear-gradient(white, white), var(--gradient-vibrant);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    max-width: 580px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.hero-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-badges {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.hero-badge i {
    color: var(--success-color);
    font-size: 1.1rem;
}

.hero-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-stats .stat-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-vibrant);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 6px 16px rgba(236, 72, 153, 0.3);
}

.hero-stats .stat-info {
    display: flex;
    flex-direction: column;
}

.hero-stats .stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 3px;
}

.hero-stats .stat-label {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

/* Hero Visual Animation */
.hero-visual {
    position: relative;
    height: 450px;
    animation: slideInRight 0.8s ease-out;
}

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

.visual-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Main Illustration */
.main-illustration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.illustration-person {
    width: 120px;
    height: 120px;
    background: var(--gradient-vibrant);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    box-shadow: 0 20px 60px rgba(236, 72, 153, 0.4);
    animation: float 3s ease-in-out infinite;
}

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

.illustration-circles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid;
}

.circle-1 {
    width: 180px;
    height: 180px;
    border-color: rgba(236, 72, 153, 0.2);
    animation: ripple 3s ease-in-out infinite;
}

.circle-2 {
    width: 240px;
    height: 240px;
    border-color: rgba(168, 85, 247, 0.15);
    animation: ripple 3s ease-in-out 1s infinite;
}

.circle-3 {
    width: 300px;
    height: 300px;
    border-color: rgba(6, 182, 212, 0.1);
    animation: ripple 3s ease-in-out 2s infinite;
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

/* Floating Cards */
.float-element {
    position: absolute;
    animation: floatAround 6s ease-in-out infinite;
}

.float-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.float-2 {
    top: 15%;
    right: 15%;
    animation-delay: 1.5s;
}

.float-3 {
    bottom: 20%;
    left: 5%;
    animation-delay: 3s;
}

.float-4 {
    bottom: 15%;
    right: 10%;
    animation-delay: 4.5s;
}

@keyframes floatAround {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(2deg);
    }
    50% {
        transform: translateY(-10px) rotate(-2deg);
    }
    75% {
        transform: translateY(-20px) rotate(1deg);
    }
}

.float-card {
    background: white;
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
    border: 2px solid rgba(236, 72, 153, 0.1);
    transition: all 0.3s ease;
}

.float-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(236, 72, 153, 0.2);
}

.float-card i {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.float-card.success {
    background: var(--gradient-vibrant);
    color: white;
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.3);
}

.float-card.success i {
    color: white;
}

/* === Section Styles === */
.section-white {
    padding: 5rem 0;
    background: white;
}

.section-gradient {
    padding: 5rem 0;
    background: var(--gradient-vibrant);
    position: relative;
    overflow: hidden;
}

.section-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.1) 100%);
}

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

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--gradient-soft);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-badge-white {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-title-white {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* === Workflow Grid === */
.workflow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.workflow-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.workflow-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.workflow-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-vibrant);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
}

.workflow-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.workflow-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

/* === Features Grid === */
.features-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.feature-card-large {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.feature-card-large:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: white;
}

.feature-icon-large {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.feature-card-large h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-vibrant);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card-large p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* === Pricing Grid === */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    transition: all 0.3s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.pricing-featured {
    border-color: var(--primary-color);
    border-width: 3px;
    transform: scale(1.05);
}

.pricing-featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-vibrant);
    color: white;
    padding: 0.4rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
}

.pricing-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    background: var(--gradient-vibrant);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-vibrant);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* === Roles Grid === */
.roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.role-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.role-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.role-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.role-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    background: var(--gradient-vibrant);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* === Tech Grid === */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.tech-feature {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.tech-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-5px);
}

.tech-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tech-feature h4 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.tech-feature p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* === CTA Section === */
.cta-section {
    padding: 5rem 0;
    background: var(--gradient-vibrant);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.75rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 800;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
}

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

/* === Footer === */
.main-footer {
    background: #1e293b;
    color: rgba(255, 255, 255, 0.8);
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #fff 0%, #ec4899 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: white;
}

.main-footer .hp-social-follow {
    margin-top: 1.25rem;
}

.main-footer .hp-social-follow-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.75rem;
}

.main-footer .hp-social-follow-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.main-footer .hp-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    transition: transform 0.2s, box-shadow 0.2s;
}

.main-footer .hp-social-btn:hover {
    transform: translateY(-2px);
    color: #fff;
}

.main-footer .footer-col .hp-social-btn,
.main-footer .footer-col .hp-social-btn span,
.main-footer .footer-col .hp-social-btn i {
    color: #fff;
}

.main-footer .footer-col .hp-social-btn:hover,
.main-footer .footer-col .hp-social-btn:hover span {
    color: #fff;
}

.main-footer .hp-social-instagram {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
}

.main-footer .hp-social-linkedin {
    background: #0a66c2;
}

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

/* === Admin Login Page === */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-vibrant);
    position: relative;
    overflow: hidden;
}

.login-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.login-container::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite reverse;
}

.login-box {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 400px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 10;
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header h1 {
    background: var(--gradient-vibrant);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.login-header p {
    color: var(--text-secondary);
}

.login-form {
    margin-bottom: 1rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input[type="text"],
.form-group input[type="password"],
.form-group input[type="email"],
.form-group input[type="file"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.1);
}

.form-group small {
    display: block;
    margin-top: 0.25rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.login-footer {
    text-align: center;
    margin-top: 1.5rem;
}

.login-footer a {
    background: var(--gradient-vibrant);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    font-weight: 600;
}

.login-footer a:hover {
    text-decoration: underline;
}

/* === Alert Styles === */
.alert {
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
}

.alert-success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.alert-error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid var(--danger-color);
}

/* === Admin Layout === */
.admin-wrapper {
    display: flex;
    min-height: 100vh;
    background: var(--bg-secondary);
}

.admin-sidebar {
    width: 250px;
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    color: white;
    padding: 2rem 0;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    border-right: 1px solid rgba(236, 72, 153, 0.2);
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
}

.sidebar-header {
    padding: 0 1.5rem;
    margin-bottom: 2rem;
}

.sidebar-header h2 {
    background: linear-gradient(90deg, #fff 0%, #ec4899 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.sidebar-header p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.sidebar-nav ul {
    list-style: none;
}

.sidebar-nav a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    background: linear-gradient(90deg, rgba(236, 72, 153, 0.2) 0%, transparent 100%);
    color: white;
    border-left: 3px solid var(--primary-color);
}

.sidebar-section-label {
    padding: 1.25rem 1.5rem 0.35rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #64748b;
    list-style: none;
}

.admin-content {
    flex: 1;
    margin-left: 250px;
}

.admin-header {
    background: white;
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid transparent;
    border-image: var(--gradient-vibrant) 1;
    border-image-slice: 1;
}

.admin-header h1 {
    font-size: 1.75rem;
    background: var(--gradient-vibrant);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.admin-user {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
}

.admin-main {
    padding: 2rem;
}

/* === Card Styles === */
.card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.card h2 {
    margin-bottom: 1.5rem;
    background: var(--gradient-vibrant);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.card h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 600;
}

/* === Utility Classes === */
.text-muted {
    color: var(--text-secondary);
}

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

.btn-block {
    width: 100%;
}

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

.btn-danger:hover {
    background-color: #dc2626;
    transform: translateY(-2px);
}

/* === Responsive Design === */
@media (max-width: 768px) {
    /* Mobile Menu */
    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .header-content {
        position: relative;
        justify-content: center !important;
    }

    .logo-section {
        margin: 0 auto;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        box-shadow: 2px 0 20px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        z-index: 99;
        overflow-y: auto;
        padding-top: 80px;
    }

    .main-nav.active {
        left: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0;
    }

    .main-nav ul li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .main-nav ul li a {
        display: block;
        padding: 1rem 1.5rem;
        width: 100%;
    }

    .main-nav ul li a:hover {
        background: var(--gradient-soft);
    }

    .main-nav .hp-nav-link.is-active {
        background: rgba(236, 72, 153, 0.12) !important;
        -webkit-text-fill-color: var(--primary-color) !important;
        color: var(--primary-color);
    }

    .main-nav .hp-nav-link.is-active span::after {
        display: none;
    }

    .user-menu {
        position: relative;
    }

    .user-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        min-width: 100%;
    }

    .user-dropdown::before {
        display: none;
    }

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

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

    .hero-subtitle {
        max-width: 100%;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-badges {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        height: 400px;
    }

    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
    }
    
    .section-title,
    .section-title-white {
        font-size: 2rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .workflow-grid,
    .features-grid-large,
    .pricing-grid,
    .roles-grid,
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .admin-sidebar {
        width: 100%;
        position: relative;
        height: auto;
    }
    
    .admin-content {
        margin-left: 0;
    }
    
    .admin-wrapper {
        flex-direction: column;
    }
    
    .admin-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .pricing-featured {
        transform: scale(1);
    }
    
    .pricing-featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .hero-title {
        font-size: 2rem;
    }

    .hero-visual {
        height: 350px;
    }

    .float-card {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .illustration-person {
        width: 100px;
        height: 100px;
        font-size: 3rem;
    }

    .hero-stats {
        justify-content: center;
        gap: 0.5rem;
    }

    .hero-stats .stat-item {
        flex-direction: column;
        text-align: center;
        gap: 6px;
        flex: 0 0 auto;
    }

    .hero-stats .stat-icon {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
        border-radius: 8px;
    }

    .hero-stats .stat-number {
        font-size: 0.95rem;
        font-weight: 700;
    }

    .hero-stats .stat-label {
        font-size: 0.6rem;
        white-space: nowrap;
        line-height: 1.2;
    }
    
    .btn-gradient-large,
    .btn-outline-large,
    .btn-white-large,
    .btn-outline-white-large {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
}

/* === Logo Management === */
.current-logo {
    margin-bottom: 2rem;
}

.logo-preview {
    margin: 1rem 0;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    display: inline-block;
}

.logo-preview img {
    max-width: 300px;
    max-height: 150px;
    object-fit: contain;
}

.upload-section {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

/* === Stats Grid === */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--gradient-soft);
    border-radius: var(--radius-md);
    border: 1px solid rgba(236, 72, 153, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-vibrant);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* === Settings Form === */
.settings-form hr {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 2rem 0;
}

.form-actions {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

/* === Info List === */
.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.info-list li:last-child {
    border-bottom: none;
}

/* === User Dropdown Menu === */
.user-menu {
    position: relative;
}

.user-menu-trigger {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.user-menu-trigger:hover {
    background: rgba(102, 126, 234, 0.1);
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.user-menu:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
}

.user-dropdown-header {
    padding: 1.25rem 1.25rem 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.user-dropdown-header p {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.user-dropdown-header small {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.user-dropdown-menu {
    padding: 0.5rem 0;
}

.user-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.2s ease;
}

.user-dropdown-item:hover {
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary-color);
}

.user-dropdown-item i {
    width: 20px;
    text-align: center;
    font-size: 1rem;
}

.user-dropdown-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 0.5rem 0;
}

/* === Lead Capture & Bridge Homepage === */
.hero-split-lead {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    align-items: start;
}

.hero-pillars {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

.hero-pillar {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.hero-pillar i {
    color: var(--primary-color);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.hero-lead-card {
    background: white;
    border-radius: var(--radius-2xl);
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(236, 72, 153, 0.12);
    animation: slideInRight 0.8s ease-out;
}

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

.lead-form-title {
    font-size: 1.5rem;
    margin-bottom: 0.35rem;
}

.lead-form-subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.lead-form .form-group {
    margin-bottom: 1rem;
}

.lead-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
}

.lead-form label .optional {
    font-weight: 400;
    color: var(--text-secondary);
}

.lead-form input,
.lead-form select,
.lead-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: var(--bg-secondary);
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.15);
    background: white;
}

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

.btn-block {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.lead-form-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.75rem;
}

.lead-form-note i {
    margin-right: 0.25rem;
}

.lead-alert {
    display: flex;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
}

.lead-alert i {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.lead-alert p {
    margin: 0.25rem 0 0;
    font-size: 0.85rem;
}

.lead-alert-success {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}

.lead-alert-success i {
    color: #10b981;
}

.lead-alert-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.lead-alert-error i {
    color: #ef4444;
}

/* Bridge section */
.bridge-section {
    padding-top: 4rem;
}

.bridge-diagram {
    display: grid;
    grid-template-columns: 1fr auto auto auto 1fr;
    align-items: center;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.bridge-diagram-bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    margin-bottom: 3rem;
}

.bridge-node {
    background: white;
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    text-align: center;
}

.bridge-node-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    border-radius: var(--radius-lg);
    background: var(--gradient-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.bridge-node h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.bridge-node p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.bridge-hub {
    display: flex;
    justify-content: center;
}

.bridge-hub-inner {
    background: var(--gradient-vibrant);
    color: white;
    border-radius: var(--radius-full);
    padding: 1.25rem 1.75rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    min-width: 140px;
}

.bridge-hub-inner strong {
    display: block;
    font-size: 1.1rem;
}

.bridge-hub-inner span {
    font-size: 0.75rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bridge-connector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
}

.bridge-line {
    display: block;
    width: 40px;
    height: 2px;
    background: var(--gradient-vibrant);
    border-radius: 2px;
}

.bridge-connector-vertical {
    flex-direction: column;
    padding: 0.5rem 0;
}

.bridge-line-vertical {
    display: block;
    width: 2px;
    height: 32px;
    background: var(--gradient-vibrant);
    border-radius: 2px;
}

.bridge-node-student .bridge-cta {
    margin-top: 1rem;
}

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

.audience-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.audience-card.audience-featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.audience-card-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-vibrant);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.audience-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.audience-card-header i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.audience-card-header h3 {
    margin: 0;
    font-size: 1.15rem;
}

.audience-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
}

.audience-card li {
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding-left: 1.25rem;
    position: relative;
}

.audience-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.audience-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: gap 0.2s;
}

.audience-link:hover {
    gap: 0.75rem;
}

@media (max-width: 968px) {
    .hero-split-lead {
        grid-template-columns: 1fr;
    }

    .hero-lead-card {
        max-width: 520px;
        margin: 0 auto;
    }

    .bridge-diagram {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .bridge-connector-left,
    .bridge-connector-right {
        display: none;
    }

    .bridge-hub {
        order: -1;
        margin-bottom: 0.5rem;
    }

    .audience-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

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