/* =============================================
   CLÍNICA SOLVIT - ULTRA MODERN CSS
   O Site Mais Lindo do Universo
   ============================================= */

/* CSS Variables */
:root {
    /* Brand Colors - Clínica Solvit */
    --primary: #f07d00;
    --secondary: #099c40;
    --accent: #f07d00;
    --dark-gray: #2b2b2b;
    --gradient-primary: linear-gradient(135deg, #f07d00 0%, #ff9933 100%);
    --gradient-secondary: linear-gradient(135deg, #099c40 0%, #0bc450 100%);
    --gradient-accent: linear-gradient(135deg, #f07d00 0%, #099c40 100%);
    --gradient-dark: linear-gradient(135deg, #2b2b2b 0%, #404040 100%);
    
    /* Modern Colors */
    --white: #ffffff;
    --light: #f8f9fa;
    --gray: #6c757d;
    --dark: #212529;
    --success: #00d4aa;
    --danger: #ff5757;
    --warning: #ffaa00;
    --info: #00b4d8;
    
    /* Glassmorphism */
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    
    /* Shadows - Startup Style */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 12px 40px -8px rgba(240, 125, 0, 0.15);
    --shadow-lg: 0 24px 60px -12px rgba(0, 0, 0, 0.12);
    --shadow-hover: 0 20px 40px -5px rgba(240, 125, 0, 0.2);
    
    /* Radius */
    --radius-sm: 12px;
    --radius-md: 24px;
    --radius-lg: 32px;
    --radius-pill: 100px;
    
    /* Typography */
    --font-primary: 'Lexend', sans-serif;
    --font-secondary: 'Raleway', sans-serif;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    font-family: var(--font-secondary);
    color: var(--dark);
    overflow-x: hidden;
    background-color: #fffbf7; /* Very light orange tint for warmth */
    position: relative;
}

/* Animated Background - Subtle Startup Vibe */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: #fffbf7;
}

.gradient-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15; /* Very subtle */
    animation: float 20s infinite ease-in-out;
}

.sphere-1 {
    width: 800px;
    height: 800px;
    background: var(--primary);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.sphere-2 {
    width: 1000px;
    height: 1000px;
    background: #ff9933;
    bottom: -300px;
    right: -300px;
    animation-delay: -7s;
}

.sphere-3 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
    opacity: 0.1;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

/* Floating Particles */
.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    opacity: 0.3;
    animation: particle-float 15s infinite linear;
}

@keyframes particle-float {
    from {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    to {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

/* Ultra Modern Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding: 1.2rem 0;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.navbar.scrolled {
    padding: 0.8rem 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    position: relative;
    z-index: 10;
}

.navbar-logo {
    height: 60px;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.navbar-logo:hover {
    transform: scale(1.1);
}

.brand-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.3) 0%, transparent 70%);
    filter: blur(20px);
    opacity: 0;
    transition: var(--transition);
}

.navbar-brand:hover .brand-glow {
    opacity: 1;
}

/* Hamburger Menu Animation */
.hamburger-menu {
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
}

.hamburger-menu span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--primary);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
}

.hamburger-menu span:nth-child(1) {
    top: 0px;
}

.hamburger-menu span:nth-child(2) {
    top: 8px;
}

.hamburger-menu span:nth-child(3) {
    top: 16px;
}

.navbar-toggler[aria-expanded="true"] .hamburger-menu span:nth-child(1) {
    top: 8px;
    transform: rotate(135deg);
}

.navbar-toggler[aria-expanded="true"] .hamburger-menu span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.navbar-toggler[aria-expanded="true"] .hamburger-menu span:nth-child(3) {
    top: 8px;
    transform: rotate(-135deg);
}

.navbar-toggler {
    border: none;
    padding: 0;
    background: transparent;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Nav Links */
.nav-link {
    color: var(--dark) !important;
    font-weight: 500;
    font-size: 0.95rem;
    margin: 0 1rem;
    position: relative;
    transition: var(--transition);
    padding: 0.5rem 0 !important;
}

.nav-text {
    position: relative;
    z-index: 2;
}

.nav-indicator {
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
    transition: var(--transition);
}

.nav-link:hover .nav-indicator,
.nav-link.active .nav-indicator {
    transform: translateX(-50%) scaleX(1);
}

.nav-link:hover {
    color: var(--accent) !important;
}

/* Glow Button */
.btn-glow {
    --primary-color: #099c40;
    --secondary-color: #fff;
    --hover-color: #2b2b2b;
    --arrow-width: 10px;
    --arrow-stroke: 2px;
    box-sizing: border-box;
    border: 0;
    border-radius: 20px;
    color: var(--secondary-color);
    padding: 1em 1.8em;
    background: var(--primary-color);
    display: inline-flex;
    transition: 0.2s background;
    align-items: center;
    gap: 0.6em;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
}

.btn-glow .arrow-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-glow .arrow {
    margin-top: 1px;
    width: var(--arrow-width);
    background: var(--secondary-color);
    height: var(--arrow-stroke);
    position: relative;
    transition: 0.2s;
}

.btn-glow .arrow::before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    border: solid var(--secondary-color);
    border-width: 0 var(--arrow-stroke) var(--arrow-stroke) 0;
    display: inline-block;
    top: -3px;
    right: 3px;
    transition: 0.2s;
    padding: 3px;
    transform: rotate(-45deg);
}

.btn-glow:hover {
    background-color: var(--hover-color);
}

.btn-glow:hover .arrow::before {
    right: 0;
}

/* Hero Section - Startup Style */
.hero-section {
    min-height: 100vh;
    padding-top: 140px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    position: relative;
    background: transparent; /* Let body background show */
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 24px;
    background: white;
    border: 1px solid rgba(240, 125, 0, 0.1);
    border-radius: 100px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2.5rem;
    transition: var(--transition);
}

.hero-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: rgba(240, 125, 0, 0.3);
}

.badge-glow {
    display: none; /* Cleaner look without glow */
}

.hero-badge i {
    color: var(--primary);
    font-size: 1.1rem;
}

.hero-badge span {
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(3rem, 6vw, 4.5rem); /* Bigger */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.title-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.title-main {
    display: block;
    color: var(--dark);
}

.title-highlight {
    display: block;
    color: var(--accent);
    position: relative;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid rgba(240, 125, 0, 0.1);
    border-radius: 1rem;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-card:hover {
    box-shadow: 0 8px 15px rgba(240, 125, 0, 0.15);
    transform: translateY(-2px);
}

.stat-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background-color: #f07d00;
    padding: 0.5rem;
    color: white;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2b2b2b;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(107, 114, 128, 1);
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary-modern {
    --primary-color: #f07d00;
    --secondary-color: #fff;
    --hover-color: #d66f00;
    --arrow-width: 10px;
    --arrow-stroke: 2px;
    box-sizing: border-box;
    border: 0;
    border-radius: 100px; /* Pill shape */
    color: var(--secondary-color);
    padding: 1.2em 2.5em; /* Larger padding */
    background: var(--primary-color);
    display: inline-flex;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    align-items: center;
    gap: 0.8em;
    font-weight: 700;
    cursor: pointer;
    font-size: 1.1rem;
    text-decoration: none;
    font-family: var(--font-secondary);
    box-shadow: 0 10px 20px -5px rgba(240, 125, 0, 0.4); /* Orange shadow */
}

.btn-primary-modern:hover {
    background-color: var(--hover-color);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(240, 125, 0, 0.5);
}

.btn-primary-modern .arrow-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-primary-modern .arrow {
    margin-top: 1px;
    width: var(--arrow-width);
    background: var(--secondary-color);
    height: var(--arrow-stroke);
    position: relative;
    transition: 0.2s;
}

.btn-primary-modern .arrow::before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    border: solid var(--secondary-color);
    border-width: 0 var(--arrow-stroke) var(--arrow-stroke) 0;
    display: inline-block;
    top: -3px;
    right: 3px;
    transition: 0.2s;
    padding: 3px;
    transform: rotate(-45deg);
}

.btn-primary-modern:hover .arrow {
    background: var(--secondary-color);
    transform: translateX(3px);
}

.btn-primary-modern:hover .arrow::before {
    right: 0;
}

.btn-secondary-modern {
    --primary-color: transparent;
    --secondary-color: #2b2b2b;
    --hover-color: rgba(0, 0, 0, 0.05);
    --arrow-width: 10px;
    --arrow-stroke: 2px;
    box-sizing: border-box;
    border: 2px solid #e5e7eb; /* Subtle border */
    border-radius: 100px; /* Pill shape */
    color: var(--secondary-color);
    padding: 1.1em 2.4em;
    background: var(--primary-color);
    display: inline-flex;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    align-items: center;
    gap: 0.8em;
    font-weight: 700;
    cursor: pointer;
    font-size: 1.1rem;
    text-decoration: none;
    font-family: var(--font-secondary);
}

.btn-secondary-modern:hover {
    background-color: var(--hover-color);
    border-color: #d1d5db;
    transform: translateY(-3px);
}
    text-decoration: none;
    font-family: var(--font-secondary);
}

.btn-secondary-modern .arrow-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-secondary-modern .arrow {
    margin-top: 1px;
    width: var(--arrow-width);
    background: var(--secondary-color);
    height: var(--arrow-stroke);
    position: relative;
    transition: 0.2s;
}

.btn-secondary-modern .arrow::before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    border: solid var(--secondary-color);
    border-width: 0 var(--arrow-stroke) var(--arrow-stroke) 0;
    display: inline-block;
    top: -3px;
    right: 3px;
    transition: 0.2s;
    padding: 3px;
    transform: rotate(-45deg);
}

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

.btn-secondary-modern:hover .arrow {
    background: var(--secondary-color);
}

.btn-secondary-modern:hover .arrow::before {
    right: 0;
}


/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 5;
}

.hero-image-container {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

/* Floating Elements - Reduced movement for better stability */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.float-card {
    position: absolute;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(240, 125, 0, 0.1);
    border-radius: 0.75rem;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 0.9rem;
    animation: float-up 6s infinite ease-in-out;
}

.float-card i {
    font-size: 1.5rem;
    color: #f07d00;
}

.card-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 30%;
    left: -20px;
    animation-delay: 2s;
}

.card-3 {
    bottom: 10%;
    right: 10%;
    animation-delay: 4s;
}

@keyframes float-up {
    0%, 100% {
        transform: translateY(0) rotate(-2deg);
    }
    50% {
        transform: translateY(-10px) rotate(2deg); /* Reduced movement */
    }
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background: radial-gradient(
        125% 125% at -2% 101%,
        rgba(245, 125, 0, 1) 10.5%,
        rgba(245, 140, 2, 1) 16%,
        rgba(255, 153, 51, 1) 17.5%,
        rgba(255, 178, 102, 1) 25%,
        rgba(255, 204, 153, 1) 40%,
        rgba(255, 230, 204, 1) 65%,
        rgba(255, 245, 235, 1) 100%
    );
    position: relative;
    border-radius: 30px;
    margin: 0 15px;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--dark);
    letter-spacing: -0.03em; /* Tighter, more modern */
    line-height: 1.1;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
}

.value-card {
    padding: 2.5rem 2rem;
    border: 1px solid rgba(0,0,0,0.03);
    border-radius: var(--radius-md);
    background-color: white;
    text-align: center;
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(240, 125, 0, 0.1);
}
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(240, 125, 0, 0.15);
    border-color: rgba(240, 125, 0, 0.2);
}

.value-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 20px;
    opacity: 0.1;
    transform: rotate(45deg);
}

.value-icon i {
    position: relative;
    font-size: 2.5rem;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.value-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Services Preview */
.services-preview {
    padding: 100px 0;
    background: transparent;
    position: relative;
}

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

.service-modern {
    position: relative;
    padding: 3rem 2.5rem;
    background: white;
    border-radius: var(--radius-md);
    transition: var(--transition);
    overflow: hidden;
    cursor: pointer;
    user-select: none;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.03);
    height: 100%;
}

.service-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(240, 125, 0, 0.1);
}

.service-bg {
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-slow);
    transform: rotate(45deg);
}

.service-modern:hover .service-bg {
    opacity: 0.05;
}

.service-modern:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.service-modern:active {
    transform: translateY(-5px) scale(1.01);
    transition: transform 0.1s ease;
}

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 20px;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: white;
    transition: var(--transition);
}

.service-modern:hover .service-icon {
    transform: rotate(10deg) scale(1.1);
}

.service-modern h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-modern p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--accent);
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
    position: relative;
    padding: 8px 16px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.05) 0%, rgba(108, 99, 255, 0.1) 100%);
}

.service-link:hover {
    gap: 10px;
    color: white;
    background: var(--gradient-primary);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Card click feedback */
.service-modern.clicking {
    animation: cardClick 0.3s ease;
}

@keyframes cardClick {
    0% { transform: scale(1); }
    50% { transform: scale(0.98); }
    100% { transform: scale(1); }
}

/* Why Choose Section */
.why-choose {
    padding: 100px 0;
    background: white;
}

.content-modern h2 {
    margin-bottom: 2rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.1) 0%, rgba(108, 99, 255, 0.2) 100%);
    border-radius: 10px;
    flex-shrink: 0;
}

.feature-icon i {
    color: var(--accent);
    font-size: 1.2rem;
}

.feature-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--gray);
    line-height: 1.6;
}

/* Metrics Grid */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.metric-card {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(9, 156, 64, 0.15);
    border-color: rgba(9, 156, 64, 0.2);
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #099c40;
    margin-bottom: 0.5rem;
}

.metric-label {
    color: rgba(107, 114, 128, 1);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-modern {
    padding: 100px 0;
    position: relative;
}

.cta-card {
    position: relative;
    padding: 60px 40px;
    border: 1px solid rgba(240, 125, 0, 0.2);
    border-radius: 1rem;
    background: linear-gradient(135deg, #2b2b2b 0%, #1a1a1a 100%);
    overflow: hidden;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.cta-bg-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

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

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

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

.btn-cta-primary {
    --primary-color: #f07d00;
    --secondary-color: #fff;
    --hover-color: #2b2b2b;
    --arrow-width: 10px;
    --arrow-stroke: 2px;
    box-sizing: border-box;
    border: 0;
    border-radius: 20px;
    color: var(--secondary-color);
    padding: 1em 1.8em;
    background: var(--primary-color);
    display: inline-flex;
    transition: 0.2s background;
    align-items: center;
    gap: 0.6em;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
}

.btn-cta-primary .arrow-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-cta-primary .arrow {
    margin-top: 1px;
    width: var(--arrow-width);
    background: var(--secondary-color);
    height: var(--arrow-stroke);
    position: relative;
    transition: 0.2s;
}

.btn-cta-primary .arrow::before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    border: solid var(--secondary-color);
    border-width: 0 var(--arrow-stroke) var(--arrow-stroke) 0;
    display: inline-block;
    top: -3px;
    right: 3px;
    transition: 0.2s;
    padding: 3px;
    transform: rotate(-45deg);
}

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

.btn-cta-primary:hover .arrow::before {
    right: 0;
}

.btn-cta-secondary {
    --primary-color: #099c40;
    --secondary-color: #fff;
    --hover-color: #2b2b2b;
    box-sizing: border-box;
    border: 0;
    border-radius: 20px;
    color: var(--secondary-color);
    padding: 1em 1.8em;
    background: var(--primary-color);
    display: inline-flex;
    transition: 0.2s background;
    align-items: center;
    gap: 0.6em;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
    text-decoration: none;
}

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

/* Page Headers */
.page-header-modern {
    position: relative;
    padding: 150px 0 80px;
    background: var(--gradient-primary);
    overflow: hidden;
}

.header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.2" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,106.7C1248,96,1344,96,1392,96L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* About Page - UPDATED */
.about-content {
    padding: 80px 0;
    background: white;
}

/* Centered main image */
.about-main-image {
    margin-bottom: 3rem;
}

.about-main-image img {
    max-width: 100%;
    max-height: 500px;
    object-fit: cover;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

/* Centered text section */
.about-text-centered {
    text-align: center;
    margin-bottom: 4rem;
}

.about-text-centered h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
}

.about-text-centered p.lead {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.about-text-centered .text-primary {
    color: var(--primary) !important;
}

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

.about-stats .stat {
    text-align: center;
}

.about-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
}

.about-stats .stat-text {
    color: var(--gray);
}

/* Structure Carousel */
.structure-section {
    padding: 80px 0;
}

.structure-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.carousel-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background: white;
    transform: scale(1.3);
}

/* Mission Vision */
.mission-vision {
    padding: 80px 0;
}

.mv-card {
    padding: 2rem;
    border: 1px solid rgba(9, 156, 64, 0.1);
    border-radius: 1rem;
    background-color: rgba(255, 255, 255, 1);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(9, 156, 64, 0.15);
    border-color: rgba(9, 156, 64, 0.2);
}

.mv-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #099c40;
    border-radius: 9999px;
    font-size: 2rem;
    color: white;
}

.mv-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2b2b2b;
    margin-bottom: 1rem;
}

.mv-card p {
    color: rgba(107, 114, 128, 1);
    line-height: 1.8;
}

/* Services Page */
.services-detailed {
    padding: 80px 0;
    background: white;
    border-radius: 30px;
    margin: 0 15px;
}

.service-card-modern {
    padding: 2rem;
    border: 1px solid rgba(240, 125, 0, 0.1);
    border-radius: 1rem;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(240, 125, 0, 0.15);
    border-color: rgba(240, 125, 0, 0.2);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-icon-wrapper {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f07d00;
    border-radius: 9999px;
    font-size: 1.5rem;
    color: white;
}

.service-card-modern h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2b2b2b;
    margin: 0;
}

.service-card-modern p {
    color: rgba(107, 114, 128, 1);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.service-features li {
    padding: 0.75rem 0;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features i {
    color: var(--success);
    font-size: 1.2rem;
}

.btn-service {
    --primary-color: #f07d00;
    --secondary-color: #fff;
    --hover-color: #2b2b2b;
    --arrow-width: 10px;
    --arrow-stroke: 2px;
    width: 100%;
    box-sizing: border-box;
    border: 0;
    border-radius: 20px;
    color: var(--secondary-color);
    padding: 1em 1.8em;
    background: var(--primary-color);
    display: inline-flex;
    transition: 0.2s background;
    align-items: center;
    justify-content: center;
    gap: 0.6em;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
}

.btn-service .arrow-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-service .arrow {
    margin-top: 1px;
    width: var(--arrow-width);
    background: var(--secondary-color);
    height: var(--arrow-stroke);
    position: relative;
    transition: 0.2s;
}

.btn-service .arrow::before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    border: solid var(--secondary-color);
    border-width: 0 var(--arrow-stroke) var(--arrow-stroke) 0;
    display: inline-block;
    top: -3px;
    right: 3px;
    transition: 0.2s;
    padding: 3px;
    transform: rotate(-45deg);
}

.btn-service:hover {
    background-color: var(--hover-color);
}

.btn-service:hover .arrow::before {
    right: 0;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: radial-gradient(
        125% 125% at -2% 101%,
        rgba(245, 125, 0, 1) 10.5%,
        rgba(245, 140, 2, 1) 16%,
        rgba(255, 153, 51, 1) 17.5%,
        rgba(255, 178, 102, 1) 25%,
        rgba(255, 204, 153, 1) 40%,
        rgba(255, 230, 204, 1) 65%,
        rgba(255, 245, 235, 1) 100%
    );
    border-radius: 30px;
    margin: 0 15px;
}

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

.benefit-card {
    padding: 2.5rem 2rem;
    background: white;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.03);
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(240, 125, 0, 0.1);
}

.benefit-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: var(--transition);
}

.benefit-card:hover i {
    transform: scale(1.1);
}
    margin-bottom: 1rem;
}

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

.benefit-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Exams Page */
.exams-content {
    padding: 80px 0;
    background: white;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto;
}

.lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--gray);
}

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

.exam-card {
    padding: 2rem;
    background: linear-gradient(135deg, white 0%, #f8f9fa 100%);
    border-radius: 25px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.exam-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

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

.exam-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.exam-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.1) 0%, rgba(108, 99, 255, 0.2) 100%);
    border-radius: 20px;
    font-size: 2.5rem;
    color: var(--accent);
}

.exam-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.exam-card p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.exam-badge {
    display: inline-block;
    padding: 5px 15px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Exam Differentials */
.exam-differentials {
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 30px;
}

.diff-item {
    text-align: center;
}

.diff-item i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.diff-item h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.diff-item p {
    color: var(--gray);
}

/* Training Page */
.training-content {
    padding: 80px 0;
    background: white;
}

.training-card {
    padding: 2.5rem;
    background: white;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
}

.training-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.training-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 20px;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
}

.training-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.training-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.training-card ul {
    list-style: none;
    padding: 0;
}

.training-card li {
    padding: 0.5rem 0;
    color: var(--dark);
    position: relative;
    padding-left: 25px;
}

.training-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

/* NR Grid */
.nr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.nr-item {
    padding: 1rem;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.1) 0%, rgba(108, 99, 255, 0.05) 100%);
    border-radius: 15px;
    text-align: center;
    font-weight: 500;
    color: var(--primary);
    transition: var(--transition);
}

.nr-item:hover {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.05);
}

/* Platform Access */
.platform-access {
    margin-top: 60px;
}

.platform-card {
    padding: 3rem;
    background: var(--gradient-primary);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
    gap: 3rem;
}

.platform-content h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1rem;
}

.platform-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.btn-platform {
    --primary-color: #f07d00;
    --secondary-color: #fff;
    --hover-color: #2b2b2b;
    --arrow-width: 10px;
    --arrow-stroke: 2px;
    box-sizing: border-box;
    border: 0;
    border-radius: 20px;
    color: var(--secondary-color);
    padding: 1em 1.8em;
    background: var(--primary-color);
    display: inline-flex;
    transition: 0.2s background;
    align-items: center;
    gap: 0.6em;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
    text-decoration: none;
}

.btn-platform .arrow-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-platform .arrow {
    margin-top: 1px;
    width: var(--arrow-width);
    background: var(--secondary-color);
    height: var(--arrow-stroke);
    position: relative;
    transition: 0.2s;
}

.btn-platform .arrow::before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    border: solid var(--secondary-color);
    border-width: 0 var(--arrow-stroke) var(--arrow-stroke) 0;
    display: inline-block;
    top: -3px;
    right: 3px;
    transition: 0.2s;
    padding: 3px;
    transform: rotate(-45deg);
}

.btn-platform:hover {
    background-color: var(--hover-color);
}

.btn-platform:hover .arrow::before {
    right: 0;
}

/* Platform Visual - Interface Mock */
.platform-visual {
    flex-shrink: 0;
}

.platform-mockup {
    background: #1a202c;
    border-radius: 15px;
    padding: 0.5rem;
    width: 400px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-15deg);
    transition: transform var(--transition-slow);
}

.platform-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.mockup-screen {
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

.mockup-header {
    background: #f7fafc;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e2e8f0;
}

.mockup-dots {
    display: flex;
    gap: 0.3rem;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
}

.mockup-dots span:nth-child(1) { background: #ef4444; }
.mockup-dots span:nth-child(2) { background: #f59e0b; }
.mockup-dots span:nth-child(3) { background: #10b981; }

.mockup-url {
    font-size: 0.7rem;
    color: var(--gray);
    background: #e2e8f0;
    padding: 0.2rem 0.6rem;
    border-radius: 5px;
}

.mockup-content {
    padding: 1.5rem;
}

.course-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: var(--transition);
}

.course-item:hover {
    background: var(--primary-light);
    transform: translateX(5px);
}

.course-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.course-info h6 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.course-progress {
    width: 100%;
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--gradient-success);
    border-radius: 2px;
    transition: width 0.3s ease;
}

/* Map Section */
.map-section {
    padding: 60px 0;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Contact Page */
.contact-content {
    padding: 80px 0;
    background: white;
}

.contact-form-modern {
    padding: 3rem;
    background: linear-gradient(135deg, white 0%, #f8f9fa 100%);
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.contact-form-modern h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.contact-form-modern p {
    color: var(--gray);
    margin-bottom: 2rem;
}

/* Modern Form */
.modern-form .form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.modern-form .form-control {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.modern-form .form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.1);
}

.modern-form label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: var(--gray);
    transition: var(--transition);
    pointer-events: none;
    background: white;
    padding: 0 5px;
}

.modern-form .form-control:focus + label,
.modern-form .form-control:not(:placeholder-shown) + label,
.modern-form .form-control:valid + label,
.modern-form select + label {
    top: -10px;
    font-size: 0.85rem;
    color: var(--accent);
}

.modern-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.modern-form textarea {
    resize: none;
}

.btn-submit {
    --primary-color: #f07d00;
    --secondary-color: #fff;
    --hover-color: #2b2b2b;
    --arrow-width: 10px;
    --arrow-stroke: 2px;
    width: 100%;
    box-sizing: border-box;
    border: 0;
    border-radius: 20px;
    color: var(--secondary-color);
    padding: 1em 1.8em;
    background: var(--primary-color);
    display: flex;
    justify-content: center;
    transition: 0.2s background;
    align-items: center;
    gap: 0.6em;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    text-decoration: none;
}

.btn-submit .arrow-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-submit .arrow {
    margin-top: 1px;
    width: var(--arrow-width);
    background: var(--secondary-color);
    height: var(--arrow-stroke);
    position: relative;
    transition: 0.2s;
}

.btn-submit .arrow::before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    border: solid var(--secondary-color);
    border-width: 0 var(--arrow-stroke) var(--arrow-stroke) 0;
    display: inline-block;
    top: -3px;
    right: 3px;
    transition: 0.2s;
    padding: 3px;
    transform: rotate(-45deg);
}

.btn-submit:hover {
    background-color: var(--hover-color);
}

.btn-submit:hover .arrow::before {
    right: 0;
}

/* Contact Info */
.contact-info-modern {
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.05) 0%, rgba(108, 99, 255, 0.1) 100%);
    border-radius: 30px;
    height: 100%;
}

.contact-info-modern h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.3rem;
    color: var(--accent);
}

.info-content h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.info-content p {
    color: var(--gray);
    line-height: 1.6;
}

.contact-cta {
    margin-top: 2rem;
}

.btn-whatsapp {
    --primary-color: #25D366;
    --secondary-color: #fff;
    --hover-color: #128C7E;
    --arrow-width: 10px;
    --arrow-stroke: 2px;
    width: 100%;
    box-sizing: border-box;
    border: 0;
    border-radius: 20px;
    color: var(--secondary-color);
    padding: 1em 1.8em;
    background: var(--primary-color);
    display: flex;
    justify-content: center;
    transition: 0.2s background;
    align-items: center;
    gap: 0.6em;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
}

.btn-whatsapp .arrow-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-whatsapp .arrow {
    margin-top: 1px;
    width: var(--arrow-width);
    background: var(--secondary-color);
    height: var(--arrow-stroke);
    position: relative;
    transition: 0.2s;
}

.btn-whatsapp .arrow::before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    border: solid var(--secondary-color);
    border-width: 0 var(--arrow-stroke) var(--arrow-stroke) 0;
    display: inline-block;
    top: -3px;
    right: 3px;
    transition: 0.2s;
    padding: 3px;
    transform: rotate(-45deg);
}

.btn-whatsapp:hover {
    background-color: var(--hover-color);
}

.btn-whatsapp:hover .arrow::before {
    right: 0;
}

/* Footer */
.footer-modern {
    padding: 80px 0 30px;
    background: var(--gradient-dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,106.7C1248,96,1344,96,1392,96L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo {
    height: 70px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-logo-white {
    filter: brightness(0) invert(1);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.footer-section h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent);
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: white;
    transform: translateX(5px);
    display: inline-block;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    padding: 12px 20px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: white;
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 5px 0;
}

.footer-developer {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-developer span {
    color: rgba(255, 255, 255, 0.6);
}

.developer-link {
    transition: var(--transition);
}

.developer-link:hover {
    transform: scale(1.1);
}

.developer-logo {
    height: 30px;
    filter: brightness(0) invert(1);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid #25D366;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #128C7E;
}

.whatsapp-tooltip {
    position: absolute;
    right: 85px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--dark);
    color: white;
    padding: 10px 15px;
    border-radius: 10px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

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

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(108, 99, 255, 0.3);
}

/* Pages */
.page {
    display: none;
    animation: pageIn 0.6s ease;
}

.page.active {
    display: block;
}

@keyframes pageIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-section {
        padding-top: 100px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .floating-elements {
        display: none;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .platform-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .platform-mockup {
        transform: none;
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 50px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-primary-modern,
    .btn-secondary-modern {
        width: 100%;
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .services-grid,
    .benefits-grid,
    .exams-grid {
        grid-template-columns: 1fr;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .platform-card {
        flex-direction: column;
        text-align: center;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
    
    .whatsapp-float {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
    
    .navbar-logo {
        height: 45px;
    }
    
    .footer-logo {
        height: 50px;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding-top: 90px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .stat-value {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .service-modern h3 {
        font-size: 1.1rem;
    }
    
    .service-modern p {
        font-size: 0.85rem;
    }
    
    .contact-form-modern {
        padding: 2rem 1.5rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
    }
    
    .platform-mockup {
        display: none;
    }
    
    .platform-content h3 {
        font-size: 1.3rem;
    }
    
    .platform-content p {
        font-size: 0.9rem;
    }
    
    .about-main-image img {
        max-height: 300px;
    }
}

/* =============================================
   CUSTOM STYLES FOR SOLVIT
   ============================================= */

/* Professional Team Section */
.professional-team {
    margin: 4rem 0;
    padding: 3rem 0;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 30px;
}

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

.team-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.team-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
}

.team-item i {
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

/* Partnership Section */
.partnership-section {
    padding: 3rem 0;
    border-radius: 30px;
    margin: 0 15px;
}

.partnership-benefits {
    margin: 2rem 0;
}

.benefit-box {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(102, 126, 234, 0.2);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 2.5rem;
    color: white;
}

.benefit-box h4 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.benefit-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
}

.partnership-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.partnership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.partnership-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(102, 126, 234, 0.3);
}

.partnership-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.partnership-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.partnership-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 1rem;
}

.partnership-card .btn-service {
    margin-top: 1rem;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-box {
        padding: 2rem 1.5rem;
    }
    
    .benefit-box h4 {
        font-size: 1.4rem;
    }
    
    .benefit-box p {
        font-size: 1rem;
    }
    
    .partnership-card {
        padding: 1.5rem;
    }
    
    .partnership-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .partnership-card h4 {
        font-size: 1.1rem;
    }
}

/* =============================================
   HOW IT WORKS SECTION
   ============================================= */

.how-it-works {
    padding: 5rem 0;
    background: radial-gradient(
        125% 125% at -2% 101%,
        rgba(245, 125, 0, 1) 10.5%,
        rgba(245, 140, 2, 1) 16%,
        rgba(255, 153, 51, 1) 17.5%,
        rgba(255, 178, 102, 1) 25%,
        rgba(255, 204, 153, 1) 40%,
        rgba(255, 230, 204, 1) 65%,
        rgba(255, 245, 235, 1) 100%
    );
    border-radius: 30px;
    margin: 0 15px;
}

.how-it-works .section-title,
.how-it-works .section-subtitle {
    color: var(--dark);
}

.how-it-works .text-gradient {
    background: none;
    -webkit-text-fill-color: var(--dark);
    color: var(--dark);
}

.how-step {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
    height: 100%;
}

.how-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 5px 15px rgba(240, 125, 0, 0.4);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(240, 125, 0, 0.1), rgba(9, 156, 64, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto 1.5rem;
}

.step-icon i {
    font-size: 2.5rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.how-step h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.how-step p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
}

/* Key Differentials */
.key-differentials {
    margin-top: 4rem;
}

/* Differential Section - New Style */
.differential-section {
    background: linear-gradient(135deg, rgba(255, 245, 235, 0.5) 0%, rgba(255, 230, 204, 0.3) 100%);
    padding: 4rem 2rem;
    border-radius: 30px;
}

.differential-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.differential-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.text-highlight {
    color: #f07d00;
}

.differential-description {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.differential-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(240, 125, 0, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.differential-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(240, 125, 0, 0.15);
    border-color: rgba(240, 125, 0, 0.3);
}

.differential-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f07d00 0%, #ff9933 100%);
    border-radius: 50%;
    color: white;
    font-size: 2rem;
}

.differential-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.differential-card p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .differential-section {
        padding: 3rem 1.5rem;
    }
    
    .differential-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .differential-box {
        padding: 2rem 1.5rem;
    }
    
    .differential-box h3 {
        font-size: 1.5rem;
    }
    
    .highlight-box {
        flex-direction: column;
        text-align: center;
    }
    
    .highlight-box i {
        font-size: 2.5rem;
        margin: 0 auto;
    }
    
    .how-step {
        padding: 2rem 1.5rem;
    }
}

/* Mini Benefits */
.mini-benefit {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.mini-benefit i {
    color: var(--secondary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.mini-benefit span {
    font-size: 0.9rem;
    color: var(--dark-gray);
    font-weight: 500;
}

/* Alert Info Box */
.alert-info-box {
    background: linear-gradient(135deg, rgba(9, 156, 64, 0.1), rgba(9, 156, 64, 0.05));
    border: 2px solid var(--secondary);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: start;
}

.alert-info-box i {
    font-size: 2rem;
    color: var(--secondary);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.alert-info-box p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dark-gray);
}

.alert-info-box strong {
    color: var(--secondary);
}

/* Partnership How Works */
.partnership-how-works {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid var(--primary);
}

.partnership-how-works h5 {
    color: var(--dark-gray);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.partnership-how-works h5 i {
    color: var(--primary);
    font-size: 1.5rem;
}

.how-works-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.partnership-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.partnership-list li {
    padding: 0.75rem 0;
    font-size: 1rem;
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.partnership-list i {
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
}

.call-to-partnership {
    background: linear-gradient(135deg, rgba(240, 125, 0, 0.1), rgba(9, 156, 64, 0.1));
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    gap: 1rem;
    align-items: start;
    margin-top: 1.5rem;
    border: 2px dashed var(--primary);
}

.call-to-partnership i {
    font-size: 2.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.call-to-partnership strong {
    color: var(--primary);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.call-to-partnership p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
}
