@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* --- DESIGN SYSTEM & TOKENS --- */
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-card: rgba(255, 255, 255, 0.75);
    --border-glass: rgba(9, 9, 11, 0.08);
    
    --accent-emerald: #059669;
    --accent-emerald-glow: rgba(5, 150, 105, 0.08);
    --accent-amber: #d97706;
    --accent-amber-glow: rgba(217, 119, 6, 0.08);
    
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

/* --- RESET & GLOBAL STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    user-select: auto;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 18px;
    font-weight: 400;
}

p, li, .hero-desc, .hero-subtitle, .section-desc, .accordion-content, .spotlight-desc, .bento-desc, .footer-brand-text, .footer-links a {
    font-size: 18px;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 900;
    letter-spacing: -0.03em;
}

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

/* --- GLASSMORPHISM & UTILITIES --- */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.05);
    transition: var(--transition-smooth);
}

.glass-panel:hover {
    border-color: rgba(9, 9, 11, 0.15);
    box-shadow: 0 12px 40px rgba(5, 150, 105, 0.08);
}

/* --- NAVIGATION PILL DOCK --- */
.nav-dock {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    z-index: 1000;
    width: 90%;
    max-width: 1300px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 32px;
    border-radius: 100px;
    transition: var(--transition-smooth);
}

.nav-dock.scroll-hidden {
    transform: translateX(-50%) translateY(-120px);
}

.nav-dock.scroll-scrolled {
    background: rgba(15, 23, 42, 0.96); /* Deep slate black */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.2);
}


.nav-dock.scroll-scrolled .nav-item {
    color: #cbd5e1;
}

.nav-dock.scroll-scrolled .nav-item:hover,
.nav-dock.scroll-scrolled .nav-item.active {
    color: #ffffff;
}

.nav-dock.scroll-scrolled .nav-item::after {
    background-color: #ffffff;
}

.nav-dock.scroll-scrolled .lang-btn {
    color: #cbd5e1;
}

.nav-dock.scroll-scrolled .lang-btn.active {
    color: #ffffff;
    background: var(--accent-emerald);
}

.nav-dock.scroll-scrolled .mobile-menu-toggle {
    color: #ffffff;
}

.logo img {
    height: 40px;
    width: auto;
    animation: rotate3dY 10s linear infinite;
    transform-style: preserve-3d;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-item {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    position: relative;
    padding: 8px 0;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-emerald);
    transition: var(--transition-smooth);
}

.nav-item:hover, .nav-item.active {
    color: var(--text-primary);
}

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

/* --- LANGUAGE SWITCHER --- */
.lang-switcher {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 2px;
}

.lang-btn {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-secondary);
    padding: 6px 14px;
    border-radius: 20px;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lang-btn.active {
    color: var(--text-primary);
    background: var(--accent-emerald);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
}

/* --- ASYMMETRIC HERO SECTION --- */
.hero-section {
    min-height: 100vh;
    padding: 160px 5% 80px 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.07) 0%, transparent 60%);
}

.hero-section.products-hero {
    min-height: 65vh !important;
    padding: 140px 5% 40px 5% !important;
}

.hero-container {
    max-width: 1300px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 64px;
    align-items: center;
}

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

.hero-tagline {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-emerald);
    letter-spacing: 0.2em;
    margin-bottom: 16px;
    padding: 6px 16px;
    background: var(--accent-emerald-glow);
    border-radius: 100px;
}

.hero-title {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    font-weight: 300;
    margin-bottom: 32px;
}

.hero-desc {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 100px;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent-emerald);
    color: var(--bg-primary);
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(5, 150, 105, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(15, 23, 42, 0.15);
}

.btn-secondary:hover {
    background: rgba(15, 23, 42, 0.03);
    border-color: var(--text-primary);
    transform: translateY(-3px);
}

.hero-media-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-media-panel {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-media-panel img {
    width: 80%;
    height: auto;
    object-fit: contain;
    animation: rotate3dY 12s linear infinite;
    transform-style: preserve-3d;
}

.hero-products-panel {
    width: 100%;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid var(--border-glass);
    transition: var(--transition-smooth);
}

.hero-products-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.hero-products-panel:hover {
    transform: scale(1.02) translateY(-4px);
    border-color: var(--accent-emerald);
    box-shadow: 0 30px 60px rgba(5, 150, 105, 0.12);
}

.hero-products-panel:hover img {
    transform: scale(1.05);
}

@keyframes rotate3dY {
    0% { transform: perspective(1000px) rotateY(0deg); }
    100% { transform: perspective(1000px) rotateY(360deg); }
}

/* --- BENTO ACCORDION SECTION (THE PILLARS) --- */
.section {
    padding: 100px 5%;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
}

.section-header {
    margin-bottom: 60px;
}

.section-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-emerald);
    letter-spacing: 0.15em;
    margin-bottom: 12px;
}

.section-title {
    font-size: 40px;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
}

.pillars-accordion {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

@media (max-width: 992px) {
    .pillars-accordion {
        grid-template-columns: 1fr;
    }
}

.accordion-item {
    padding: 40px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.accordion-title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.accordion-icon {
    font-size: 28px;
    color: var(--accent-emerald);
    background: var(--accent-emerald-glow);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.accordion-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
}

.accordion-arrow {
    display: none; /* Hide toggle arrow */
}

.accordion-content {
    opacity: 1;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

/* --- PARTNER SPOTLIGHT (MARTHA STEWART) --- */
.spotlight-section {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spotlight-container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}

.spotlight-panel {
    width: 480px;
    max-width: 100%;
    background: #e2dfda; /* Solid elegant warm-grey linen background matching Martha branding */
    border: 1px solid rgba(9, 9, 11, 0.08);
    border-radius: 28px;
    padding: 60px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
}

.spotlight-logo-wrapper {
    display: inline-flex;
    padding: 12px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 100px; /* Circular logo container */
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.spotlight-logo-wrapper img {
    height: 88px;
    width: 88px;
    object-fit: contain;
    border-radius: 100px;
}

.spotlight-title {
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    color: #000000;
}

.spotlight-desc {
    color: #333333;
    margin-bottom: 32px;
    font-size: 14px;
    line-height: 1.6;
}

.spotlight-panel .btn {
    background: #000000;
    color: #ffffff;
    border-radius: 4px;
    padding: 14px 36px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid #000000;
    width: auto;
    transition: var(--transition-fast);
}

.spotlight-panel .btn:hover {
    background: transparent;
    color: #000000;
}

.spotlight-image-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.spotlight-image-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- FOOTER --- */
footer {
    background-color: var(--bg-secondary);
    border-top: 1px solid rgba(15, 23, 42, 0.05);
    padding: 80px 5% 40px 5%;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-brand-logo {
    height: 100px;
    width: auto;
    align-self: flex-start;
}

.footer-brand-text {
    font-size: 14px;
    color: var(--text-secondary);
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.2;
}

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

.footer-socials {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 44px;
    height: 44px;
    background: rgba(15, 23, 42, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.social-icon:hover {
    color: var(--bg-primary);
    background: var(--accent-emerald);
    border-color: var(--accent-emerald);
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    border-top: 1px solid rgba(15, 23, 42, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-muted);
}

.footer-bottom p {
    font-size: 10px;
}

/* --- BENTO DETAILS GRID --- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bento-card {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bento-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.bento-card p {
    color: var(--text-secondary);
    font-size: 14px;
}

.bento-card-large {
    grid-column: span 2;
}

/* --- CAROUSEL SLIDER SHOWCASE (PRODUCTS) --- */
.carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 40px 0;
}

.carousel-container {
    display: flex;
    gap: 24px;
    animation: infiniteScroll 45s linear infinite;
    width: max-content;
}

.carousel-container:hover {
    animation-play-state: paused;
}

.carousel-card {
    width: 320px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.carousel-card img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.carousel-card:hover img {
    transform: translateY(-8px) scale(1.05);
}

.carousel-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.carousel-card span {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

@keyframes infiniteScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- INTERACTIVE VERTICAL DETAIL VIEW (SERVICES) --- */
.services-split {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-nav-item {
    padding: 24px 32px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border-left: 3px solid transparent;
}

.service-nav-item.active {
    background: rgba(255, 255, 255, 0.02);
    border-left-color: var(--accent-emerald);
}

.service-nav-item h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.service-nav-item p {
    font-size: 14px;
    color: var(--text-muted);
}

.service-detail-view {
    padding: 48px;
    position: sticky;
    top: 140px;
}

.service-detail-title {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--accent-emerald);
}

.service-detail-desc {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.service-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 15px;
    font-weight: 600;
}

.service-feature i {
    color: var(--accent-emerald);
    font-size: 18px;
}

/* --- MINIMALIST FORM FIELDS --- */
.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-input {
    width: 100%;
    padding: 16px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(15, 23, 42, 0.15);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    transition: var(--transition-fast);
    outline: none;
}

.form-label {
    position: absolute;
    top: 16px;
    left: 0;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    pointer-events: none;
    transition: var(--transition-fast);
}

.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
    top: -12px;
    font-size: 11px;
    color: var(--accent-emerald);
}

.form-input:focus {
    border-bottom-color: var(--accent-emerald);
    box-shadow: 0 1px 0 var(--accent-emerald);
}

/* Map */
.map-container {
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid var(--border-glass);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Scroll top button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background: var(--accent-emerald);
    color: var(--bg-primary);
    transform: translateY(-4px);
}

/* --- MOBILE STYLING & RESPONSIVENESS --- */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }
    
    .hero-container, .services-split {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .spotlight-section {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .spotlight-image-panel {
        position: relative;
        height: 350px;
        width: 100%;
        z-index: 1;
    }

    .spotlight-container {
        width: 100%;
        padding: 0 20px;
        margin: -60px auto 40px auto;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        height: auto;
        z-index: 2;
    }

    .spotlight-panel {
        width: 100%;
        max-width: 500px;
        padding: 48px 32px;
        border-top: none;
    }
    
    .hero-media-wrapper {
        order: -1;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-card-large {
        grid-column: span 1;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-dock {
        padding: 12px 24px;
        border-radius: 20px;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(9, 9, 11, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 30px;
        border-radius: 20px;
        border: 1px solid var(--border-glass);
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }
    
    .nav-links.show {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* --- CORE DIVISION CAPABILITIES & PARTNERSHIP SECTIONS --- */
.capabilities-section {
    padding: clamp(60px, 8vw, 100px) 0;
    background-color: var(--bg-secondary);
}

.capabilities-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.capabilities-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.capabilities-tagline {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--accent-emerald);
    letter-spacing: 0.1em;
}

.capabilities-title {
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    color: var(--text-primary);
}

.capabilities-desc {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: clamp(16px, 1.8vw, 18px);
}

.capabilities-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 12px;
}

.capabilities-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 16px;
    color: var(--text-primary);
}

.capabilities-list-item i {
    color: var(--accent-emerald);
    font-size: 18px;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.capability-card {
    background: var(--bg-primary);
    padding: 32px;
    border-radius: 20px;
    border: 1px solid var(--border-glass);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: var(--transition-smooth);
}

.capability-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-emerald);
    box-shadow: 0 12px 30px rgba(5, 150, 105, 0.06);
}

.capability-card-icon {
    font-size: 28px;
    color: var(--text-primary);
    background: rgba(5, 150, 105, 0.06);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: var(--transition-fast);
}

.capability-card:hover .capability-card-icon {
    background: var(--accent-emerald);
    color: #ffffff;
}

.capability-card-title {
    font-size: 18px;
    font-weight: 900;
    color: var(--text-primary);
}

.capability-card-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Partner CTA Section */
.partner-cta-section {
    padding: clamp(80px, 10vw, 120px) 0;
    text-align: center;
    background-color: var(--bg-primary);
    border-top: 1px solid var(--border-glass);
}

.partner-cta-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.partner-cta-title {
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.1;
    color: var(--text-primary);
}

.partner-cta-desc {
    font-size: clamp(16px, 2.2vw, 20px);
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 750px;
}

.partner-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--text-primary);
    color: var(--bg-primary);
    padding: 16px 36px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 100px;
    border: 1px solid var(--text-primary);
    margin-top: 12px;
    transition: var(--transition-smooth);
}

.partner-cta-btn:hover {
    background-color: transparent;
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

@media (max-width: 1024px) {
    .capabilities-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

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

