/**
 * Design Enhancements
 * Refined spacing, alignment, and visual polish
 */

/* ========================================
   SECTION IMPROVEMENTS
   ======================================== */

/* Better section spacing */
.section {
    padding: clamp(100px, 14vw, 160px) 0 !important;
}

.hero-section + .section {
    padding-top: clamp(120px, 16vw, 180px) !important;
}

/* Section Headers - Typography Refinement */
.section > .container > div[style*="text-align: center"] {
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section h2 {
    font-size: clamp(2.25rem, 4.5vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}

.section h3 {
    font-size: clamp(1.375rem, 2.75vw, 1.625rem);
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 1rem;
}

.section p {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--text-secondary);
}

/* ========================================
   GRID IMPROVEMENTS
   ======================================== */

.grid {
    gap: clamp(2rem, 4vw, 3rem) !important;
}

.grid-2 {
    gap: clamp(2.5rem, 5vw, 3.5rem) !important;
}

.grid-3 {
    gap: clamp(2rem, 4vw, 2.5rem) !important;
}

/* Ensure consistent grid alignment */
.grid > * {
    height: 100%;
}

/* ========================================
   CARD ENHANCEMENTS
   ======================================== */

.card {
    background: var(--bg-surface);
    border: 1.5px solid rgba(217, 192, 162, 0.4);
    border-radius: 20px;
    padding: clamp(2rem, 4vw, 2.5rem);
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.02);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.card-elevated {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 251, 252, 0.95) 100%);
    border: 1.5px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06), 0 1px 4px rgba(15, 23, 42, 0.03);
}

.card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(217, 192, 162, 0.6);
    box-shadow: 0 20px 60px rgba(217, 192, 162, 0.15), 0 0 0 1.5px rgba(217, 192, 162, 0.3);
}

.card-elevated:hover {
    box-shadow: 0 24px 64px rgba(38, 74, 75, 0.14), 0 0 0 1.5px rgba(38, 74, 75, 0.1);
}

/* Card Icons - Better Visual Treatment */
.card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(38, 74, 75, 0.12) 0%, rgba(217, 192, 162, 0.18) 100%);
    border: 2px solid rgba(217, 192, 162, 0.35);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(38, 74, 75, 0.08);
    transition: all 0.3s ease;
}

.card:hover .card-icon {
    transform: scale(1.08) rotate(2deg);
    box-shadow: 0 6px 18px rgba(38, 74, 75, 0.15);
}

/* ========================================
   FRAMEWORK SECTION POLISH
   ======================================== */

.frameworks-section .card {
    border: 2px solid rgba(38, 74, 75, 0.12);
}

.framework-hero {
    background: linear-gradient(135deg, rgba(38, 74, 75, 0.04) 0%, rgba(217, 192, 162, 0.06) 100%);
    border: 2px solid rgba(38, 74, 75, 0.15) !important;
    padding: clamp(2.5rem, 5vw, 3.5rem) !important;
    box-shadow: 0 8px 32px rgba(38, 74, 75, 0.08);
}

.framework-pillar {
    text-align: center;
    padding: clamp(1.5rem, 3vw, 2rem);
    background: var(--bg-surface);
    border: 1px solid rgba(217, 192, 162, 0.4);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.framework-pillar:hover {
    transform: translateY(-4px);
    border-color: rgba(217, 192, 162, 0.6);
}

/* ========================================
   KPI/STATS SECTION
   ======================================== */

.grid-3 > div[style*="text-align: center"] {
    padding: clamp(2rem, 4vw, 3rem);
    background: linear-gradient(135deg, rgba(38, 74, 75, 0.02) 0%, rgba(217, 192, 162, 0.03) 100%);
    border-radius: 20px;
    border: 1.5px solid rgba(38, 74, 75, 0.08);
    transition: all 0.3s ease;
}

.grid-3 > div[style*="text-align: center"]:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(38, 74, 75, 0.1);
    border-color: rgba(38, 74, 75, 0.15);
}

/* ========================================
   CASE STUDIES CARDS
   ======================================== */

.hover-lift {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
    transform: translateY(-10px) scale(1.02);
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

/* ========================================
   NEWSLETTER CARD
   ======================================== */

.newsletter-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 251, 252, 0.95) 100%);
    border: 2px solid rgba(38, 74, 75, 0.12);
    border-radius: 24px;
    padding: clamp(2rem, 4vw, 3rem);
    margin-top: clamp(3rem, 6vw, 4rem);
    box-shadow: 0 8px 32px rgba(38, 74, 75, 0.08);
    transition: all 0.3s ease;
}

.newsletter-card:hover {
    border-color: rgba(38, 74, 75, 0.2);
    box-shadow: 0 12px 48px rgba(38, 74, 75, 0.12);
}

/* ========================================
   LABELS & BADGES
   ======================================== */

.trusted-by-label,
div[style*="letter-spacing: 0.1em"] {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 1rem;
    opacity: 0.9;
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 5rem);
    align-items: start;
}

.authority-signals {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.8) 0%, 
        rgba(250, 245, 238, 0.7) 50%,
        rgba(217, 192, 162, 0.3) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: clamp(2rem, 4vw, 2.5rem);
    border: 1.5px solid rgba(217, 192, 162, 0.4);
    box-shadow: 
        0 8px 32px rgba(217, 192, 162, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.authority-signals::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, 
        rgba(190, 165, 135, 0.5) 0%,
        rgba(217, 192, 162, 0.3) 30%,
        rgba(217, 192, 162, 0.25) 50%,
        rgba(217, 192, 162, 0.3) 70%,
        rgba(190, 165, 135, 0.5) 100%);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.authority-signals > * {
    position: relative;
    z-index: 2;
}

.credibility-item {
    padding: 0;
    margin: 0 0 0.75rem 0;
    padding-left: 1rem;
    border-left: 2px solid rgba(217, 192, 162, 0.6);
    border-bottom: 1px solid rgba(217, 192, 162, 0.2);
    padding-bottom: 0.75rem;
    transition: all 0.2s ease;
    line-height: 1.6;
    position: relative;
}

.credibility-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.credibility-item:hover {
    padding-left: 1.25rem;
    border-left-color: rgba(217, 192, 162, 0.9);
    color: var(--accent-color);
}

/* ========================================
   ECOSYSTEM SECTION
   ======================================== */

.ecosystem-grid-asymmetric {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 3rem);
    align-items: start;
}

.ecosystem-left {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
}

.ecosystem-right {
    height: 100%;
}

.ecosystem-card-simple {
    background: var(--bg-surface);
    border: 1.5px solid rgba(217, 192, 162, 0.25);
    border-radius: 20px;
    padding: clamp(2rem, 4vw, 2.5rem);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.ecosystem-card-simple:hover {
    transform: translateY(-6px);
    border-color: rgba(217, 192, 162, 0.4);
    box-shadow: 0 12px 32px rgba(217, 192, 162, 0.15);
}

.ecosystem-card-featured {
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: clamp(2.5rem, 5vw, 3.5rem);
}

.ecosystem-card-featured:hover {
    transform: translateY(-10px) scale(1.02);
}

.ecosystem-card-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(217, 192, 162, 0.2);
}

.ecosystem-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(38, 74, 75, 0.08) 0%, rgba(217, 192, 162, 0.15) 100%);
    border: 2px solid rgba(217, 192, 162, 0.3);
    color: var(--accent-color);
    box-shadow: 0 4px 12px rgba(217, 192, 162, 0.15);
    transition: all 0.3s ease;
}

.ecosystem-card-simple:hover .ecosystem-icon,
.ecosystem-card-featured:hover .ecosystem-icon {
    transform: scale(1.1) rotate(-3deg);
    box-shadow: 0 8px 24px rgba(217, 192, 162, 0.25);
    border-color: rgba(217, 192, 162, 0.5);
}

.ecosystem-icon-large {
    width: 96px;
    height: 96px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(38, 74, 75, 0.1) 0%, rgba(217, 192, 162, 0.2) 100%);
    border: 2px solid rgba(217, 192, 162, 0.4);
    color: var(--accent-color);
    box-shadow: 0 6px 18px rgba(217, 192, 162, 0.2);
    transition: all 0.3s ease;
}

.ecosystem-card-featured:hover .ecosystem-icon-large {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 32px rgba(217, 192, 162, 0.35);
    border-color: rgba(217, 192, 162, 0.6);
}

.ecosystem-status {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1.5px solid;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.ecosystem-status.building {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
    color: #2563eb;
    border-color: rgba(59, 130, 246, 0.3);
}

.ecosystem-status.coming-soon {
    background: linear-gradient(135deg, rgba(217, 192, 162, 0.15) 0%, rgba(217, 192, 162, 0.08) 100%);
    color: #92766c;
    border-color: rgba(217, 192, 162, 0.4);
}

.ecosystem-status.in-development {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    color: #059669;
    border-color: rgba(16, 185, 129, 0.3);
}

.ecosystem-card:hover .ecosystem-status {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.ecosystem-card-body h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.ecosystem-tagline {
    font-size: 1.0625rem;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-weight: 500;
}

.ecosystem-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.ecosystem-features li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #475569;
    transition: all 0.2s ease;
}

.ecosystem-features li:last-child {
    margin-bottom: 0;
}

.ecosystem-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, var(--accent-color) 0%, rgba(217, 192, 162, 0.8) 100%);
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(217, 192, 162, 0.2);
    transition: all 0.3s ease;
}

.ecosystem-card:hover .ecosystem-features li::before {
    transform: scale(1.3);
    box-shadow: 0 0 0 3px rgba(217, 192, 162, 0.3);
}

.ecosystem-features li:hover {
    padding-left: 2rem;
    color: var(--text-dark);
}

.ecosystem-screenshot {
    margin-top: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(217, 192, 162, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.ecosystem-screenshot img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.ecosystem-card-featured:hover .ecosystem-screenshot {
    border-color: rgba(217, 192, 162, 0.5);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.ecosystem-card-featured:hover .ecosystem-screenshot img {
    transform: scale(1.02);
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */

@media (max-width: 1024px) {
    .section {
        padding: clamp(80px, 12vw, 120px) 0 !important;
    }

    .about-section {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .section {
        padding: clamp(60px, 10vw, 80px) 0 !important;
    }

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 2rem !important;
    }

    .card {
        padding: 2rem;
    }

    .ecosystem-grid-asymmetric {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .ecosystem-icon {
        width: 64px;
        height: 64px;
    }

    .ecosystem-icon-large {
        width: 80px;
        height: 80px;
    }

    .ecosystem-card-body h3 {
        font-size: 1.25rem;
    }

    .ecosystem-card-featured {
        padding: 2rem;
    }
}

/* ========================================
   SUBTLE DECORATIVE ELEMENTS
   ======================================== */

/* Add subtle gradient overlays to alternating sections */
.section:nth-child(odd):not(.hero-section):not([style*="background-color"]) {
    background: linear-gradient(180deg, rgba(245, 247, 250, 0.5) 0%, rgba(250, 251, 252, 0.8) 100%);
}

/* Improve visual hierarchy with subtle dividers */
.section:not(.hero-section):not(:last-child)::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(15, 23, 42, 0.06) 50%, transparent 100%);
    position: absolute;
    bottom: 0;
    left: 0;
}

/* ========================================
   GLASSMORPHISM WITH TAN GRADIENTS
   ======================================== */

/* Base glassmorphism with tan gradient */
.glass-tan {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.7) 0%, 
        rgba(250, 245, 238, 0.6) 50%,
        rgba(217, 192, 162, 0.4) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    border: 1px solid rgba(217, 192, 162, 0.3);
    box-shadow: 
        0 8px 32px rgba(217, 192, 162, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(217, 192, 162, 0.2);
    position: relative;
    overflow: hidden;
}

/* Darker tan accents around corners */
.glass-tan::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, 
        rgba(190, 165, 135, 0.6) 0%,
        rgba(217, 192, 162, 0.4) 25%,
        rgba(217, 192, 162, 0.3) 50%,
        rgba(217, 192, 162, 0.4) 75%,
        rgba(190, 165, 135, 0.6) 100%);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

/* Enhanced glassmorphism for elevated cards */
.glass-tan-elevated {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.75) 0%, 
        rgba(250, 245, 238, 0.65) 50%,
        rgba(217, 192, 162, 0.45) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    border: 1.5px solid rgba(217, 192, 162, 0.35);
    box-shadow: 
        0 12px 48px rgba(217, 192, 162, 0.2),
        0 4px 16px rgba(190, 165, 135, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        inset 0 -1px 0 rgba(190, 165, 135, 0.25);
    position: relative;
    overflow: hidden;
}

.glass-tan-elevated::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    padding: 2.5px;
    background: linear-gradient(135deg, 
        rgba(190, 165, 135, 0.7) 0%,
        rgba(217, 192, 162, 0.5) 20%,
        rgba(217, 192, 162, 0.4) 50%,
        rgba(217, 192, 162, 0.5) 80%,
        rgba(190, 165, 135, 0.7) 100%);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

/* Subtle glassmorphism for lighter elements */
.glass-tan-subtle {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.85) 0%, 
        rgba(250, 245, 238, 0.75) 50%,
        rgba(217, 192, 162, 0.3) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 16px;
    border: 1px solid rgba(217, 192, 162, 0.25);
    box-shadow: 
        0 4px 24px rgba(217, 192, 162, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
}

.glass-tan-subtle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    padding: 1.5px;
    background: linear-gradient(135deg, 
        rgba(190, 165, 135, 0.5) 0%,
        rgba(217, 192, 162, 0.3) 30%,
        rgba(217, 192, 162, 0.25) 50%,
        rgba(217, 192, 162, 0.3) 70%,
        rgba(190, 165, 135, 0.5) 100%);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

/* Hover effects for glassmorphism */
.glass-tan:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 16px 48px rgba(217, 192, 162, 0.25),
        0 8px 24px rgba(190, 165, 135, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        inset 0 -1px 0 rgba(190, 165, 135, 0.3);
    border-color: rgba(217, 192, 162, 0.4);
}

.glass-tan-elevated:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 20px 64px rgba(217, 192, 162, 0.3),
        0 8px 32px rgba(190, 165, 135, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        inset 0 -1px 0 rgba(190, 165, 135, 0.35);
    border-color: rgba(217, 192, 162, 0.45);
}

/* Ensure content is above the border accent */
.glass-tan > *,
.glass-tan-elevated > *,
.glass-tan-subtle > * {
    position: relative;
    z-index: 2;
}

/* ========================================
   ENGAGEMENT CARDS - PROFESSIONAL EXECUTIVE STYLE
   ======================================== */

.engagement-grid {
    gap: 2rem !important;
}

.engagement-card {
    background: var(--bg-surface);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.02);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.engagement-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08), 0 4px 12px rgba(15, 23, 42, 0.04);
    border-color: rgba(217, 192, 162, 0.3);
}

.engagement-card-header {
    background: linear-gradient(135deg, rgba(38, 74, 75, 0.03) 0%, rgba(217, 192, 162, 0.05) 100%);
    padding: 2rem 2rem 1.5rem 2rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.engagement-card-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    background: linear-gradient(135deg, rgba(38, 74, 75, 0.08) 0%, rgba(217, 192, 162, 0.12) 100%);
    border: 1px solid rgba(217, 192, 162, 0.2);
    box-shadow: 0 2px 6px rgba(38, 74, 75, 0.06);
    transition: all 0.3s ease;
}

.engagement-card:hover .engagement-card-icon {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(38, 74, 75, 0.12);
    border-color: rgba(217, 192, 162, 0.3);
}

.engagement-card-title {
    flex: 1;
    margin: 0;
    padding-top: 0.25rem;
}

.engagement-card-body {
    padding: 1.75rem 2rem 2rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.engagement-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-dark);
    margin: 0;
    letter-spacing: -0.01em;
}

.engagement-card p {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #475569;
    margin: 0;
    margin-top: 0.75rem;
}
