/* ITC Avant Garde Self-hosted Fonts */
@font-face {
    font-family: 'ITC Avant Garde';
    src: url('ITC/ITCAvantGardeStd-XLt.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'ITC Avant Garde';
    src: url('ITC/ITCAvantGardeStd-Bk.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'ITC Avant Garde';
    src: url('ITC/ITCAvantGardeStd-Md.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'ITC Avant Garde';
    src: url('ITC/ITCAvantGardeStd-Demi.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'ITC Avant Garde';
    src: url('ITC/ITCAvantGardeStd-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'ITC Avant Garde';
    src: url('ITC/ITCAvantGardeStd-BkObl.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'ITC Avant Garde';
    src: url('ITC/ITCAvantGardeStd-BoldObl.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

:root {
    --primary: #00B8E6;
    --secondary: #E6007E;
    --accent: #5B3A8F;
    --bg-dark: #FFFFFF;
    --bg-card: #252538;
    --bg-card-gradient: linear-gradient(135deg, #0D3040, #3D1535);
    --text-primary: #1A1A2E;
    --text-muted: #5A5A6E;
    --text-on-card: #FFFFFF;
    --text-on-card-muted: #A0A0B8;
}

/* SVG Icons */
.icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.icon-lg {
    width: 48px;
    height: 48px;
}

.icon-cyan {
    stroke: var(--primary);
    fill: none;
}

.icon-magenta {
    stroke: var(--secondary);
    fill: none;
}

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

body {
    font-family: 'ITC Avant Garde', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'ITC Avant Garde', sans-serif;
    font-weight: 700;
}


/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: linear-gradient(180deg, var(--bg-dark) 0%, transparent 100%);
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

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

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

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

/* Page Header */
.page-header {
    padding: 10rem 5% 4rem;
    text-align: center;
}

.page-tag {
    color: var(--primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.page-header h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
}

.page-header h1 .highlight,
.hero h1 .highlight {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 5% 4rem;
}

.hero-content {
    max-width: 900px;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 3rem;
}

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

.stat {
    border-left: 2px solid var(--primary);
    padding-left: 1rem;
}

.stat-number {
    font-family: 'ITC Avant Garde', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Hero CTAs */
.hero-ctas {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

/* Section Styles */
.section-header {
    margin-bottom: 4rem;
}

.section-tag {
    color: var(--primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--text-on-card);
}

.section-intro {
    color: var(--text-muted);
    max-width: 700px;
    margin-top: 1rem;
    font-size: 1.1rem;
}

/* Services Section */
.services {
    padding: 6rem 5%;
}

.services-subsection {
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.subsection-title {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.subsection-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

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

@media (max-width: 1100px) {
    .services-grid-3 {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

.service-card-featured {
    border-top: 3px solid var(--primary);
}

.service-card-featured:nth-child(2) {
    border-top-color: var(--secondary);
}

.service-card-featured:nth-child(3) {
    border-top-color: var(--accent);
}

.service-card {
    background: var(--bg-card-gradient);
    border: 1px solid rgba(0, 184, 230, 0.2);
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.service-number {
    font-family: 'ITC Avant Garde', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(0, 184, 230, 0.2);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-on-card);
}

.service-card p {
    color: var(--text-on-card-muted);
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.service-link:hover {
    gap: 1rem;
}

/* Service Benefits & Course Tags */
.service-benefit {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.course-highlights {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.course-tag {
    background: rgba(0, 184, 230, 0.15);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    border-radius: 2px;
    border: 1px solid rgba(0, 184, 230, 0.3);
}

/* Expertise Section */
.expertise {
    padding: 6rem 5%;
    background: var(--bg-card-gradient);
}

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

.expertise-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
    color: var(--text-on-card);
}

.expertise-content p {
    color: var(--text-on-card-muted);
    margin-bottom: 1.5rem;
}

.code-block {
    background: #1A1A2E;
    border: 1px solid rgba(0, 184, 230, 0.3);
    padding: 2rem;
    font-family: 'ITC Avant Garde', sans-serif;
    font-size: 0.85rem;
    overflow-x: auto;
    color: var(--text-on-card);
}

.code-block .comment {
    color: var(--text-on-card-muted);
}

.code-block .keyword {
    color: var(--secondary);
}

.code-block .string {
    color: var(--primary);
}

/* CTA Section */
.cta {
    padding: 8rem 5%;
    text-align: center;
}

.cta h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
}

.cta p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2rem;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: 'ITC Avant Garde', sans-serif;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--text-primary);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 184, 230, 0.3);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--bg-dark);
}

/* Contact Form */
.contact-form {
    max-width: 500px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row input {
    flex: 1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    font-family: 'ITC Avant Garde', sans-serif;
    font-size: 0.9rem;
    background: var(--bg-card-gradient);
    border: 1px solid rgba(0, 184, 230, 0.3);
    color: var(--text-on-card);
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-on-card-muted);
}

.contact-form select {
    cursor: pointer;
}

.contact-form select option {
    background: var(--bg-card-gradient);
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form button {
    align-self: center;
    margin-top: 0.5rem;
}

/* Spinner for form submission */
.spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top-color: var(--text-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-left: 0.5rem;
}

.spinner.active {
    display: inline-block;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

#send-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#send-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-response {
    display: none;
    margin-top: 1.5rem;
    padding: 1rem;
    font-size: 0.95rem;
    text-align: center;
}

.form-response.show {
    display: block;
}

.form-response.success {
    color: #4ade80;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.3);
}

.form-response.error {
    color: #f87171;
    background: rgba(248, 113, 113, 0.1);
    border: 1px solid rgba(248, 113, 113, 0.3);
}

/* Trust Section */
.trust {
    padding: 6rem 5%;
}

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

.testimonial-card {
    background: var(--bg-card-gradient);
    border: 1px solid rgba(0, 184, 230, 0.2);
    padding: 2rem;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-family: 'ITC Avant Garde', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: 0.5rem;
    left: 1rem;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-on-card);
    margin-bottom: 1.5rem;
    padding-top: 1rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-name {
    color: var(--primary);
    font-weight: 600;
}

.author-company {
    color: var(--text-on-card-muted);
    font-size: 0.85rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
}

.badge-icon {
    font-size: 1.5rem;
}

.badge-text {
    font-size: 0.9rem;
}

/* Footer */
footer {
    padding: 3rem 5%;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

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

.footer-links a:hover {
    color: var(--primary);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
}

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

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

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

/* Mobile Menu Overlay */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-card-gradient);
    z-index: 99;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu.active {
    display: flex;
    opacity: 1;
}

.mobile-menu a {
    color: var(--text-on-card);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    transition: color 0.3s;
}

.mobile-menu a:hover,
.mobile-menu a.active {
    color: var(--primary);
}

/* Scroll Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* About Page Styles */
.about-content {
    padding: 4rem 5%;
    max-width: 900px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 4rem;
}

.about-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.about-section p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.8;
}

.mission-card {
    background: var(--bg-card-gradient);
    border-left: 3px solid var(--primary);
    padding: 2rem;
    margin: 2rem 0;
}

.mission-card p {
    color: var(--text-on-card);
    font-size: 1.1rem;
    font-style: italic;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.value-item {
    background: var(--bg-card-gradient);
    border: 1px solid rgba(0, 184, 230, 0.2);
    padding: 2rem;
    transition: all 0.3s ease;
}

.value-item:hover {
    border-color: var(--primary);
}

.value-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--text-on-card);
}

.value-item p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--text-on-card-muted);
}

.value-link {
    display: inline-block;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.85rem;
    margin-top: 1rem;
    transition: gap 0.3s;
}

.value-link:hover {
    text-decoration: underline;
}

/* Header CTAs & Stats */
.header-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.header-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

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

.header-stat .stat-value {
    display: block;
    font-family: 'ITC Avant Garde', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.header-stat .stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Outcomes Section */
.outcomes {
    padding: 6rem 5%;
    background: var(--bg-card-gradient);
}

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

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.outcome-card {
    background: var(--bg-dark);
    border: 1px solid rgba(0, 184, 230, 0.2);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.outcome-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

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

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

.outcome-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 5%;
}

.testimonials-container {
    max-width: 1000px;
    margin: 0 auto;
}

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

/* CTA Section (alternate) */
.cta-section {
    padding: 6rem 5%;
    background: var(--bg-card-gradient);
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: 1rem;
    color: var(--text-on-card);
}

.cta-section p {
    color: var(--text-on-card-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Services Overview Page */
.services-overview {
    padding: 4rem 5% 6rem;
}

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

.service-overview-card {
    background: var(--bg-card-gradient);
    border: 1px solid rgba(0, 184, 230, 0.2);
    padding: 2.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-overview-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 184, 230, 0.15);
}

.service-type {
    color: var(--primary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.service-overview-card h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-on-card);
}

.service-overview-card > p {
    color: var(--text-on-card-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

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

.service-features li {
    color: var(--text-on-card-muted);
    font-size: 0.9rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary);
    flex-shrink: 0;
}

/* Engagement Section */
.engagement-section {
    padding: 6rem 5%;
    background: var(--bg-card-gradient);
}

.engagement-container {
    max-width: 1000px;
    margin: 0 auto;
}

.engagement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.engagement-card {
    background: #1A1A2E;
    border: 1px solid rgba(0, 184, 230, 0.2);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.engagement-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.engagement-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-on-card);
}

.engagement-card p {
    color: var(--text-on-card-muted);
    font-size: 0.9rem;
}

/* Connect Section */
.connect-section {
    background: var(--bg-card-gradient);
    padding: 3rem;
    text-align: center;
    margin-top: 2rem;
}

.connect-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-on-card);
}

.connect-section p {
    color: var(--text-on-card-muted);
    margin-bottom: 1.5rem;
}

.connect-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.connect-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--primary);
    transition: all 0.3s;
}

.connect-link:hover {
    background: var(--primary);
    color: var(--bg-dark);
}

/* Workshop Page Styles */
.workshop {
    padding: 4rem 5%;
}

.workshop-container {
    max-width: 1000px;
    margin: 0 auto;
}

.workshop-card {
    background: var(--bg-card-gradient);
    border: 1px solid rgba(0, 184, 230, 0.2);
    padding: 3rem;
    margin-bottom: 3rem;
}

.workshop-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--text-primary);
    padding: 0.25rem 1rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.workshop-card h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-on-card);
}

.workshop-card > p {
    color: var(--text-on-card-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.workshop-benefit {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.learn-section {
    margin-bottom: 2.5rem;
}

.learn-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.learn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.learn-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.learn-icon {
    color: var(--primary);
    font-size: 1.25rem;
    line-height: 1;
}

.learn-item p {
    color: var(--text-on-card-muted);
    font-size: 0.9rem;
}

.audience-section {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: #1A1A2E;
    border-left: 3px solid var(--primary);
}

.audience-section h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-on-card);
}

.audience-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.audience-list li {
    background: rgba(0, 184, 230, 0.1);
    color: var(--text-on-card-muted);
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    border: 1px solid rgba(0, 184, 230, 0.2);
}

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

.detail-item {
    text-align: center;
    padding: 1.5rem;
    background: #1A1A2E;
    border: 1px solid rgba(0, 184, 230, 0.15);
}

.detail-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.detail-value {
    font-family: 'ITC Avant Garde', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-on-card);
}

.workshop-cta {
    text-align: center;
    padding-top: 1rem;
}

/* Quantum Page Styles */
.threat-section {
    padding: 4rem 5%;
    background: var(--bg-card-gradient);
}

.threat-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.threat-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--text-primary);
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.threat-container h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-on-card);
}

.threat-container p {
    color: var(--text-on-card-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.service-section {
    padding: 5rem 5%;
}

.service-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.service-intro h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-intro p {
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.process-section {
    margin-bottom: 4rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.process-step {
    background: var(--bg-card-gradient);
    border: 1px solid rgba(0, 184, 230, 0.2);
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.step-number {
    font-family: 'ITC Avant Garde', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(0, 184, 230, 0.2);
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--text-on-card);
}

.process-step p {
    color: var(--text-on-card-muted);
    font-size: 0.85rem;
}

.deliverables-section {
    background: var(--bg-card-gradient);
    padding: 3rem;
    margin-bottom: 4rem;
}

.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.deliverable-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.deliverable-icon {
    color: var(--primary);
    font-size: 1.25rem;
    line-height: 1;
}

.deliverable-item h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    font-family: 'ITC Avant Garde', sans-serif;
    font-weight: 600;
    color: var(--text-on-card);
}

.deliverable-item p {
    color: var(--text-on-card-muted);
    font-size: 0.85rem;
}

.outcomes-title {
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: var(--text-on-card);
}

/* Threat Modeling Page Styles */
.why-section {
    padding: 6rem 5%;
    background: var(--bg-card-gradient);
}

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

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-item {
    background: #1A1A2E;
    border: 1px solid rgba(0, 184, 230, 0.2);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.why-item:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.why-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.why-item p {
    color: var(--text-on-card-muted);
    font-size: 0.9rem;
}

.services-section {
    padding: 6rem 5%;
}

.deliverables {
    background: #1A1A2E;
    border-left: 3px solid var(--primary);
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.deliverables h4 {
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.deliverables-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.deliverables-list li {
    color: var(--text-on-card-muted);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.deliverables-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary);
    flex-shrink: 0;
}

.outcome-highlight {
    background: linear-gradient(135deg, rgba(0, 184, 230, 0.1), rgba(230, 0, 126, 0.1));
    border: 1px solid rgba(0, 184, 230, 0.2);
    padding: 1rem 1.5rem;
    margin-top: 1.5rem;
    font-style: italic;
    color: var(--text-on-card);
    font-size: 0.95rem;
}

.differentiators {
    padding: 6rem 5%;
    background: var(--bg-card-gradient);
}

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

.diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.diff-card {
    background: #1A1A2E;
    border: 1px solid rgba(0, 184, 230, 0.2);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.diff-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.diff-icon {
    margin-bottom: 1rem;
}

.diff-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-on-card);
}

.diff-card p {
    color: var(--text-on-card-muted);
    font-size: 0.9rem;
}

.cta-quote {
    background: var(--bg-card-gradient);
    border-left: 3px solid var(--primary);
    padding: 1.5rem 2rem;
    margin: 2rem auto;
    max-width: 600px;
    text-align: left;
}

.cta-quote p {
    font-style: italic;
    color: var(--text-on-card);
    font-size: 1.05rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-stats {
        gap: 2rem;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

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

    .form-row {
        flex-direction: column;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

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

    .connect-links {
        flex-direction: column;
        align-items: center;
    }

    .header-ctas {
        flex-direction: column;
        align-items: center;
    }

    .header-stats {
        gap: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
