/* ==================== CSS VARIABLES ==================== */
:root {
    /* Coterie Colors */
    --c-primary: #1a2634;
    --c-secondary: #2d3e50;
    --c-accent: #c9a86c;
    --c-accent-light: #e8d5b5;
    --c-cream: #faf8f5;
    --c-text: #3a3a3a;
    --c-text-light: #6b6b6b;

    /* Strada Arena Colors */
    --s-primary: #0a0a1a;
    --s-secondary: #12122a;
    --s-accent: #6c5ce7;
    --s-accent-glow: #a29bfe;
    --s-gold: #ffd700;
    --s-gold-light: #ffed4a;

    --white: #ffffff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
}

/* ==================== COTERIE CONSULTING ==================== */
.coterie-site {
    background: var(--c-cream);
    color: var(--c-text);
    transition: opacity 0.5s ease;
}

.coterie-site.hidden {
    display: none;
}

.coterie-site h1, .coterie-site h2, .coterie-site h3, .coterie-site h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    line-height: 1.2;
}

/* Coterie Navigation */
.c-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.4s ease;
    background: transparent;
}

.c-nav.scrolled {
    background: rgba(26, 38, 52, 0.98);
    padding: 1rem 5%;
    backdrop-filter: blur(10px);
}

.c-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 1px;
}

.c-logo span {
    color: var(--c-accent);
}

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

.c-nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}

.c-nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--c-accent);
    transition: width 0.3s ease;
}

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

.c-nav-links a:hover {
    color: var(--c-accent);
}

/* Coterie Hero */
.c-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.c-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(201, 168, 108, 0.08) 0%, transparent 70%);
}

.c-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--c-cream), transparent);
}

.c-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(201, 168, 108, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 168, 108, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
}

.c-hero-content {
    text-align: center;
    z-index: 10;
    padding: 0 5%;
    max-width: 900px;
}

.c-hero-tagline {
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--c-accent);
    margin-bottom: 2rem;
    font-weight: 500;
}

.c-hero h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.c-hero h1 em {
    font-style: italic;
    color: var(--c-accent-light);
}

.c-hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0 auto 3rem;
    font-weight: 300;
}

.c-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--c-accent);
    color: var(--c-accent);
    background: transparent;
    transition: all 0.4s ease;
    cursor: pointer;
}

.c-btn:hover {
    background: var(--c-accent);
    color: var(--c-primary);
}

.c-btn-filled {
    background: var(--c-accent);
    color: var(--c-primary);
}

.c-btn-filled:hover {
    background: var(--c-accent-light);
    border-color: var(--c-accent-light);
}

.c-scroll-indicator {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.c-scroll-indicator span {
    display: block;
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--c-accent), transparent);
    animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* Coterie Sections */
.c-section {
    padding: 8rem 5%;
}

.c-section-label {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--c-accent);
    margin-bottom: 1rem;
    font-weight: 500;
}

.c-section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--c-primary);
    margin-bottom: 1.5rem;
}

/* Coterie About - Simplified */
.c-about {
    background: var(--c-cream);
}

.c-about-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.c-about-container p {
    color: var(--c-text-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Products Section (formerly Initiatives) */
.c-products {
    background: var(--c-cream);
}

.c-initiative-card {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--s-primary) 0%, var(--s-secondary) 100%);
    border-radius: 20px;
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.c-initiative-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(108, 92, 231, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(108, 92, 231, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
}

.c-initiative-content {
    position: relative;
    z-index: 10;
}

.c-initiative-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--s-gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.c-initiative-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.c-initiative-content h3 span {
    color: var(--s-gold);
}

.c-initiative-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.c-initiative-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.c-initiative-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.c-initiative-feature span {
    color: var(--s-gold);
}

.c-initiative-visual {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.c-initiative-trophy {
    font-size: 10rem;
    animation: float 3s ease-in-out infinite;
}

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

.enter-arena-btn {
    padding: 1rem 2.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid var(--s-gold);
    background: transparent;
    color: var(--s-gold);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.enter-arena-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,215,0,0.3), transparent);
    transition: left 0.5s ease;
}

.enter-arena-btn:hover::before {
    left: 100%;
}

.enter-arena-btn:hover {
    background: var(--s-gold);
    color: var(--s-primary);
    box-shadow: 0 0 40px rgba(255,215,0,0.4);
}

/* Coterie Footer - Three Column Layout */
.c-footer {
    background: var(--c-primary);
    padding: 4rem 5% 2rem;
    border-top: 1px solid rgba(201, 168, 108, 0.1);
}

.c-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.c-footer-brand .c-footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.c-footer-brand .c-footer-logo span {
    color: var(--c-accent);
}

.c-footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
}

.c-footer-col h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.c-footer-col p,
.c-footer-col a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.8;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.c-footer-col a:hover {
    color: var(--c-accent);
}

.c-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* ==================== ARENA DOOR TRANSITION ==================== */
.arena-transition {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
}

.arena-transition.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.door-left, .door-right {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%);
    display: flex;
    align-items: center;
    transition: transform 1.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.door-left {
    left: 0;
    justify-content: flex-end;
    border-right: 3px solid var(--s-gold);
    box-shadow: inset -20px 0 60px rgba(0,0,0,0.5);
    transform: translateX(-100%);
}

.door-right {
    right: 0;
    justify-content: flex-start;
    border-left: 3px solid var(--s-gold);
    box-shadow: inset 20px 0 60px rgba(0,0,0,0.5);
    transform: translateX(100%);
}

.arena-transition.active .door-left,
.arena-transition.active .door-right {
    transform: translateX(0);
}

.arena-transition.open .door-left {
    transform: translateX(-100%);
}

.arena-transition.open .door-right {
    transform: translateX(100%);
}

.door-pattern {
    width: 100%;
    height: 100%;
    position: relative;
}

.door-pattern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border: 2px solid rgba(255,215,0,0.3);
    border-radius: 50%;
}

.door-pattern::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: var(--s-gold);
    opacity: 0.5;
}

.light-beams {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease 0.8s;
}

.arena-transition.open .light-beams {
    opacity: 1;
}

.beam {
    position: absolute;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--s-gold), transparent);
    opacity: 0.6;
    animation: beamFlicker 0.1s ease-in-out infinite;
}

.beam:nth-child(1) { left: 48%; }
.beam:nth-child(2) { left: 49%; }
.beam:nth-child(3) { left: 50%; width: 4px; }
.beam:nth-child(4) { left: 51%; }
.beam:nth-child(5) { left: 52%; }

@keyframes beamFlicker {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* ==================== STRADA ARENA PLATFORM ==================== */
.strada-site {
    display: none;
    background: var(--s-primary);
    color: var(--white);
    opacity: 0;
}

.strada-site.visible {
    display: block;
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.strada-site h1, .strada-site h2, .strada-site h3, .strada-site h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

/* Strada Navigation */
.s-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(108, 92, 231, 0.2);
}

.s-nav-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.back-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(201, 168, 108, 0.1);
    border: 1px solid rgba(201, 168, 108, 0.3);
    border-radius: 4px;
    color: var(--c-accent);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: var(--c-accent);
    color: var(--s-primary);
}

.s-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.s-logo span {
    color: var(--s-gold);
}

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

.s-nav-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.s-nav-links a:hover {
    color: var(--s-gold);
}

.s-nav-cta {
    padding: 0.6rem 1.5rem;
    background: var(--s-accent);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.s-nav-cta:hover {
    background: var(--s-accent-glow);
    box-shadow: 0 0 20px rgba(108, 92, 231, 0.5);
}

/* Strada Hero */
.s-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 5% 4rem;
    position: relative;
    overflow: hidden;
}

.s-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(108, 92, 231, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
}

.s-hero-content {
    max-width: 800px;
    z-index: 10;
}

.s-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--s-gold);
    margin-bottom: 1.5rem;
}

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

.s-hero h1 .highlight {
    background: linear-gradient(135deg, var(--s-gold) 0%, var(--s-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.s-hero p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.s-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.s-btn {
    padding: 1rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.s-btn-primary {
    background: linear-gradient(135deg, var(--s-accent) 0%, #8b7cf7 100%);
    color: white;
    border: none;
}

.s-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.4);
}

.s-btn-secondary {
    background: transparent;
    color: var(--s-gold);
    border: 2px solid var(--s-gold);
}

.s-btn-secondary:hover {
    background: var(--s-gold);
    color: var(--s-primary);
}

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

.s-btn-outline:hover {
    border-color: var(--s-accent);
    color: var(--s-accent-glow);
}

.s-stats-bar {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
}

.s-stat-item h3 {
    font-size: 2rem;
    color: var(--s-gold);
    margin-bottom: 0.25rem;
}

.s-stat-item p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

/* Strada Sections */
.s-section {
    padding: 6rem 5%;
}

.s-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.s-section-label {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(108, 92, 231, 0.1);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--s-accent-glow);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.s-section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.s-section-subtitle {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
}

/* Benefits Grid */
.s-why-section {
    background: var(--s-secondary);
}

.s-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.s-benefit-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(108, 92, 231, 0.2);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.s-benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--s-accent);
    box-shadow: 0 20px 40px rgba(108, 92, 231, 0.2);
}

.s-benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--s-accent) 0%, var(--s-accent-glow) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.s-benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.s-benefit-card p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

/* Audience Section */
.s-audience-section {
    background: var(--s-primary);
}

.s-audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.s-audience-card {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 1px solid rgba(108, 92, 231, 0.3);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.s-audience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--s-accent), var(--s-gold));
}

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

.s-audience-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.s-audience-card ul {
    list-style: none;
}

.s-audience-card li {
    color: rgba(255,255,255,0.7);
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.s-audience-card li::before {
    content: '';
    position: absolute;
    left: 0;
    color: var(--s-gold);
}

/* How It Works */
.s-how-section {
    background: var(--s-secondary);
}

.s-steps-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.s-step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
}

.s-step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--s-accent) 0%, var(--s-accent-glow) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.s-step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.s-step p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

/* CTA Section */
.s-cta-section {
    background: linear-gradient(135deg, var(--s-accent) 0%, #4a3db8 100%);
    text-align: center;
    padding: 5rem;
}

.s-cta-section h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.s-cta-section p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.s-btn-white {
    background: white;
    color: var(--s-accent);
    border: none;
}

.s-btn-white:hover {
    background: var(--s-gold);
    color: var(--s-primary);
}

.s-btn-ghost {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.s-btn-ghost:hover {
    background: white;
    color: var(--s-accent);
}

/* Strada Footer */
.s-footer {
    background: var(--s-primary);
    border-top: 1px solid rgba(108, 92, 231, 0.2);
    padding: 4rem 5% 2rem;
}

.s-footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.s-footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.s-footer-brand h3 span {
    color: var(--s-gold);
}

.s-footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.s-footer-brand .parent-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--c-accent);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.s-footer-brand .parent-link:hover {
    color: var(--c-accent-light);
}

.s-footer-col h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

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

.s-footer-col li {
    margin-bottom: 0.75rem;
}

.s-footer-col a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.s-footer-col a:hover {
    color: var(--s-gold);
}

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

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .c-initiative-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .c-initiative-features {
        justify-content: center;
    }
    .c-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    .s-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    .c-nav-links, .s-nav-links, .s-nav-cta {
        display: none;
    }
    .c-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .c-initiative-card {
        padding: 2rem;
    }
    .c-initiative-features {
        flex-direction: column;
        gap: 1rem;
    }
    .s-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
