/* CSS Variables for Triadic Color Scheme with Brutalism & Biomorphic Design */
:root {
    /* Triadic Color Scheme - Bold and Vibrant */
    --primary-color: #FF4444;
    --secondary-color: #44FF44;
    --tertiary-color: #4444FF;
    
    /* Color Variations */
    --primary-dark: #CC0000;
    --secondary-dark: #00CC00;
    --tertiary-dark: #0000CC;
    --primary-light: #FF8888;
    --secondary-light: #88FF88;
    --tertiary-light: #8888FF;
    
    /* Brutalism Colors */
    --brutalism-black: #000000;
    --brutalism-white: #FFFFFF;
    --brutalism-gray-dark: #333333;
    --brutalism-gray-medium: #666666;
    --brutalism-gray-light: #CCCCCC;
    
    /* Background Colors */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F5F5F5;
    --bg-dark: #1A1A1A;
    --bg-hero: var(--brutalism-black);
    
    /* Text Colors */
    --text-primary: #000000;
    --text-secondary: #333333;
    --text-light: #666666;
    --text-white: #FFFFFF;
    --text-hero: #FFFFFF;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--tertiary-color) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    --gradient-tertiary: linear-gradient(135deg, var(--tertiary-color) 0%, var(--secondary-color) 100%);
    --gradient-hero: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.4));
    --gradient-overlay: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.3));
    
    /* Typography */
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Font Weights */
    --fw-light: 300;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-black: 900;
    
    /* Font Sizes */
    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-lg: 1.125rem;
    --fs-xl: 1.25rem;
    --fs-2xl: 1.5rem;
    --fs-3xl: 1.875rem;
    --fs-4xl: 2.25rem;
    --fs-5xl: 3rem;
    --fs-6xl: 4rem;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    
    /* Border Radius - Biomorphic Elements */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-2xl: 48px;
    --radius-organic: 30px 60px 40px 20px;
    --radius-blob: 60% 40% 30% 70% / 60% 30% 70% 40%;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-brutalism: 8px 8px 0px var(--brutalism-black);
    --shadow-brutalism-hover: 12px 12px 0px var(--brutalism-black);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Layout */
    --container-max: 1200px;
    --header-height: 80px;
    --section-padding: var(--space-3xl) 0;
}

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

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

body {
    font-family: var(--font-body);
    font-weight: var(--fw-regular);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-sm);
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: var(--fw-bold);
    line-height: 1.2;
    margin-bottom: var(--space-sm);
}

h1 {
    font-size: var(--fs-6xl);
    font-weight: var(--fw-black);
}

h2 {
    font-size: var(--fs-5xl);
}

h3 {
    font-size: var(--fs-4xl);
}

h4 {
    font-size: var(--fs-3xl);
}

h5 {
    font-size: var(--fs-2xl);
}

h6 {
    font-size: var(--fs-xl);
}

p {
    margin-bottom: var(--space-md);
    color: var(--text-secondary);
}

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

a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Global Button Styles */
.btn,
button,
input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-heading);
    font-weight: var(--fw-semibold);
    font-size: var(--fs-base);
    text-decoration: none;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-brutalism);
}

.btn:hover,
button:hover,
input[type="submit"]:hover {
    transform: translate(-4px, -4px);
    box-shadow: var(--shadow-brutalism-hover);
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-white);
    border: 3px solid var(--brutalism-black);
}

.btn-primary:hover {
    background: var(--gradient-secondary);
    color: var(--text-white);
}

.btn-secondary {
    background: var(--text-white);
    color: var(--text-primary);
    border: 3px solid var(--brutalism-black);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--text-white);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 3px solid var(--primary-color);
}

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

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Background Image Defaults */
.parallax-bg,
.hero,
[style*="background-image"] {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: var(--bg-primary);
    border-bottom: 4px solid var(--brutalism-black);
    z-index: 1000;
    transition: var(--transition-base);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: var(--fw-black);
}

.logo h2 {
    font-size: var(--fs-2xl);
    color: var(--primary-color);
    margin-bottom: 0;
    margin-right: var(--space-xs);
}

.logo span {
    font-size: var(--fs-lg);
    color: var(--text-primary);
    font-weight: var(--fw-medium);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
}
@media(max-width: 768px) {
  .nav-list{
    flex-direction: column;
  }
}
.nav-link {
    font-family: var(--font-heading);
    font-weight: var(--fw-medium);
    color: var(--text-primary);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
}

.nav-link:hover {
    background: var(--secondary-color);
    color: var(--text-white);
    text-decoration: none;
    transform: translateY(-2px);
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: var(--brutalism-black);
    transition: var(--transition-base);
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-overlay);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-hero);
}

.hero-title {
    font-size: var(--fs-6xl);
    font-weight: var(--fw-black);
    margin-bottom: var(--space-md);
    text-shadow: 4px 4px 0px var(--brutalism-black);
    color: var(--text-white);
}

.hero-subtitle {
    font-size: var(--fs-xl);
    margin-bottom: var(--space-2xl);
    color: var(--text-white);
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.7);
}

.hero-buttons {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.stat {
    text-align: center;
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-organic);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    display: block;
    font-size: var(--fs-4xl);
    font-weight: var(--fw-black);
    color: var(--secondary-color);
    text-shadow: 2px 2px 0px var(--brutalism-black);
}

.stat-label {
    font-size: var(--fs-sm);
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: var(--fs-4xl);
    }
    
    .hero-subtitle {
        font-size: var(--fs-lg);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
}

/* Section Styles */
.section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: var(--fs-5xl);
    font-weight: var(--fw-black);
    margin-bottom: var(--space-md);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
}

.section-description {
    font-size: var(--fs-lg);
    color: var(--text-light);
    margin-bottom: 0;
}

/* Innovation Section */
.innovation {
    background: var(--bg-secondary);
    padding: var(--section-padding);
}

.innovation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-2xl);
}

.innovation-card {
    background: var(--bg-primary);
    border-radius: var(--radius-organic);
    border: 4px solid var(--brutalism-black);
    overflow: hidden;
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-brutalism);
}

.innovation-card:hover {
    transform: translate(-6px, -6px);
    box-shadow: var(--shadow-brutalism-hover);
}

.card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
    margin: 0 auto;
}

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

.card-content {
    padding: var(--space-lg);
    text-align: center;
}

.card-content h3 {
    font-size: var(--fs-2xl);
    color: var(--primary-color);
    margin-bottom: var(--space-sm);
}

.progress-indicator {
    width: 100%;
    height: 8px;
    background: var(--brutalism-gray-light);
    border-radius: var(--radius-sm);
    margin-top: var(--space-md);
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    transition: width 2s ease;
    width: 0;
}

.progress-bar[data-progress="95"] {
    width: 95%;
}

.progress-bar[data-progress="88"] {
    width: 88%;
}

.progress-bar[data-progress="92"] {
    width: 92%;
}

/* Webinars Section */
.webinars {
    padding: var(--section-padding);
}

.webinars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-2xl);
}

.webinar-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    border: 3px solid var(--brutalism-black);
    overflow: hidden;
    transition: var(--transition-base);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.webinar-card:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: var(--shadow-lg);
}

.webinar-info {
    display: flex;
    gap: var(--space-md);
    margin: var(--space-md) 0;
    font-size: var(--fs-sm);
    color: var(--text-light);
}

.webinar-info span {
    background: var(--tertiary-light);
    color: var(--text-white);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-weight: var(--fw-medium);
}

/* Process Section */
.process {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: var(--section-padding);
}

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

.process .section-description {
    color: var(--brutalism-gray-light);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
}

.process-step {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.process-step:nth-child(even) {
    grid-template-columns: 1fr 120px;
}

.process-step:nth-child(even) .step-content {
    order: -1;
    text-align: right;
}

.step-number {
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: var(--radius-blob);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-4xl);
    font-weight: var(--fw-black);
    color: var(--text-white);
    border: 4px solid var(--secondary-color);
    animation: float 6s ease-in-out infinite;
}

.step-number:nth-child(even) {
    animation-delay: -3s;
}

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

.step-content h3 {
    font-size: var(--fs-3xl);
    color: var(--secondary-color);
    margin-bottom: var(--space-sm);
}

.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.step-features span {
    background: var(--tertiary-color);
    color: var(--text-white);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
}

@media (max-width: 768px) {
    .process-step {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .process-step:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .process-step:nth-child(even) .step-content {
        order: 0;
        text-align: center;
    }
}

/* Press Section */
.press {
    background: var(--bg-secondary);
    padding: var(--section-padding);
}

.press-grid {
    display: grid;
    gap: var(--space-2xl);
}

.press-item {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: var(--space-xl);
    background: var(--bg-primary);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 3px solid var(--brutalism-black);
    box-shadow: var(--shadow-md);
    align-items: center;
}

.press-item:nth-child(even) {
    grid-template-columns: 1fr 250px;
}

.press-item:nth-child(even) .press-content {
    order: -1;
    text-align: right;
}

.press-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.press-logo img {
    max-width: 200px;
    height: 100px;
    object-fit: contain;
    margin: 0 auto;
    border: 2px solid var(--brutalism-gray-light);
    border-radius: var(--radius-sm);
    padding: var(--space-sm);
}

.press-content h3 {
    color: var(--primary-color);
    margin-bottom: var(--space-sm);
}

.press-date {
    font-size: var(--fs-sm);
    color: var(--text-light);
    font-weight: var(--fw-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .press-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .press-item:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .press-item:nth-child(even) .press-content {
        order: 0;
        text-align: center;
    }
}

/* Accolades Section */
.accolades {
    padding: var(--section-padding);
    background: var(--gradient-tertiary);
    color: var(--text-white);
}

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

.accolades .section-description {
    color: rgba(255, 255, 255, 0.8);
}

.accolades-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-2xl);
}

.accolade-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-organic);
    padding: var(--space-xl);
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.accolade-item:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.15);
}

.accolade-image {
    width: 100%;
    height: 200px;
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.accolade-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin: 0 auto;
}

.accolade-content h3 {
    color: var(--secondary-color);
    margin-bottom: var(--space-sm);
}

.award-stats {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
    margin-top: var(--space-md);
}

.award-stats span {
    background: var(--primary-color);
    color: var(--text-white);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.contact-item {
    padding: var(--space-lg);
    background: var(--bg-primary);
    border-radius: var(--radius-organic);
    border: 3px solid var(--brutalism-black);
    box-shadow: var(--shadow-md);
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: var(--space-sm);
}

/* Form Styles */
.contact-form {
    background: var(--bg-primary);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    border: 4px solid var(--brutalism-black);
    box-shadow: var(--shadow-brutalism);
}

.form-group {
    position: relative;
    margin-bottom: var(--space-xl);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: var(--space-md) var(--space-sm);
    border: 3px solid var(--brutalism-black);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: var(--fs-base);
    background: var(--bg-primary);
    transition: var(--transition-base);
}

.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(255, 68, 68, 0.1);
}

.form-group label {
    position: absolute;
    top: var(--space-md);
    left: var(--space-sm);
    font-size: var(--fs-base);
    color: var(--text-light);
    transition: var(--transition-base);
    pointer-events: none;
    background: var(--bg-primary);
    padding: 0 var(--space-xs);
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    font-size: var(--fs-sm);
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: var(--space-3xl) 0 var(--space-lg) 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-section h3,
.footer-section h4 {
    color: var(--secondary-color);
    margin-bottom: var(--space-md);
}

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

.footer-section ul li {
    margin-bottom: var(--space-xs);
}

.footer-section ul li a {
    color: var(--brutalism-gray-light);
    transition: var(--transition-fast);
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
    text-decoration: none;
    padding-left: var(--space-xs);
}

/* Social Links - Text Only */
.social-links {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.social-links a {
    color: var(--brutalism-gray-light);
    font-weight: var(--fw-medium);
    padding: var(--space-xs) var(--space-sm);
    border: 2px solid var(--brutalism-gray-medium);
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
}

.social-links a:hover {
    color: var(--text-white);
    border-color: var(--secondary-color);
    background: var(--secondary-color);
    text-decoration: none;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--brutalism-gray-medium);
    color: var(--brutalism-gray-light);
    font-size: var(--fs-sm);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .social-links {
        flex-wrap: wrap;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--bg-primary);
    margin: 5% auto;
    padding: var(--space-2xl);
    border: 4px solid var(--brutalism-black);
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: var(--shadow-brutalism);
}

.close {
    color: var(--text-light);
    float: right;
    font-size: var(--fs-4xl);
    font-weight: var(--fw-bold);
    cursor: pointer;
    line-height: 1;
}

.close:hover {
    color: var(--primary-color);
}

/* External Resources Section */
.external-resources {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-2xl);
}

.resource-card {
    background: var(--bg-secondary);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 3px solid var(--brutalism-black);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.resource-card:hover {
    transform: translateY(-4px) rotate(-1deg);
    box-shadow: var(--shadow-lg);
}

.resource-card h3 {
    color: var(--primary-color);
    margin-bottom: var(--space-lg);
}

.resource-links {
    list-style: none;
    width: 100%;
}

.resource-links li {
    margin-bottom: var(--space-sm);
}

.resource-links a {
    display: block;
    padding: var(--space-sm) var(--space-md);
    background: var(--bg-primary);
    border: 2px solid var(--tertiary-color);
    border-radius: var(--radius-sm);
    color: var(--tertiary-color);
    font-weight: var(--fw-medium);
    transition: var(--transition-base);
}

.resource-links a:hover {
    background: var(--tertiary-color);
    color: var(--text-white);
    text-decoration: none;
    transform: translateX(4px);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

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

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

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

.mb-sm {
    margin-bottom: var(--space-sm);
}

.mb-md {
    margin-bottom: var(--space-md);
}

.mb-lg {
    margin-bottom: var(--space-lg);
}

.mt-0 {
    margin-top: 0;
}

.mt-sm {
    margin-top: var(--space-sm);
}

.mt-md {
    margin-top: var(--space-md);
}

.mt-lg {
    margin-top: var(--space-lg);
}

/* Success Page Styles */
.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    padding: var(--space-xl) 0;
}

.success-content {
    text-align: center;
    background: var(--bg-primary);
    padding: var(--space-3xl);
    border-radius: var(--radius-organic);
    border: 4px solid var(--brutalism-black);
    box-shadow: var(--shadow-brutalism);
    max-width: 600px;
    margin: 0 var(--space-md);
}

/* Privacy and Terms Page Styles */
.privacy-page,
.terms-page {
    padding-top: 120px;
    padding-bottom: var(--space-3xl);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.legal-content h1 {
    color: var(--primary-color);
    margin-bottom: var(--space-xl);
    text-align: center;
}

.legal-content h2 {
    color: var(--text-primary);
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-lg);
    font-size: var(--fs-3xl);
}

.legal-content h3 {
    color: var(--text-secondary);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    font-size: var(--fs-2xl);
}

.legal-content p {
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.legal-content ul {
    margin-bottom: var(--space-lg);
    padding-left: var(--space-xl);
}

.legal-content li {
    margin-bottom: var(--space-sm);
}

/* Scroll-dependent animations */
[data-aos] {
    opacity: 0;
    transition-duration: 0.6s;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="slide-up"] {
    transform: translateY(100px);
}

[data-aos="slide-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="slide-right"] {
    transform: translateX(-100px);
}

[data-aos="slide-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="slide-left"] {
    transform: translateX(100px);
}

[data-aos="slide-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.6);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    :root {
        --fs-6xl: 3rem;
        --fs-5xl: 2.5rem;
        --fs-4xl: 2rem;
    }
}

@media (max-width: 768px) {
    :root {
        --fs-6xl: 2.5rem;
        --fs-5xl: 2rem;
        --fs-4xl: 1.75rem;
        --fs-3xl: 1.5rem;
        --section-padding: var(--space-2xl) 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    :root {
        --fs-6xl: 2rem;
        --fs-5xl: 1.75rem;
        --fs-4xl: 1.5rem;
        --space-3xl: 3rem;
    }
    
    .container {
        padding: 0 var(--space-sm);
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .stat {
        padding: var(--space-md);
    }
}

/* Performance Optimizations */
* {
    will-change: auto;
}

.hero,
.innovation-card,
.webinar-card,
.process-step,
.press-item,
.accolade-item {
    contain: layout style paint;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .btn,
    .modal {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        background: none !important;
    }
    
    * {
        box-shadow: none !important;
        text-shadow: none !important;
    }
}