/* ============================================
   VARIABLES Y COLORES
   ============================================ */
:root {
    /* Paleta de identidad visual del evento */
    --color-primary: #4638C3;
    --color-primary-light: #966CDD;
    --color-accent-cyan: #39B9C3;
    --color-accent-magenta: #B44289;

    /* Colores institucionales IPN */
    --ipn-guinda: #6F2942;
    --ipn-guinda-dark: #592642;
    --ipn-guinda-light: #B44289;
    --ipn-white: #FFFFFF;

    /* Fondos de soporte */
    --color-bg-blue: #A3D5EF;
    --color-bg-beige: #EBDCD6;
    --color-neutral-100: #C6BECB;
    --color-neutral-200: #A9A0A3;

    /* Aliases de compatibilidad */
    --gov-vino: #592642;
    --gov-gold: #39B9C3;
    --gov-green: #00695C;

    /* Paleta de Grises */
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    
    /* Sombras */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Tipografía */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    /* Transiciones */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
}

/* ============================================
   RESET Y BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--gray-50);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    margin-top: 25px;
}

/* ============================================
   PLECA INSTITUCIONAL
   ============================================ */
.pleca-bar {
    width: 100%;
    line-height: 0;
}

.pleca-img {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   BARRA GUBERNAMENTAL (legado)
   ============================================ */
.gov-bar {
    background: linear-gradient(90deg, var(--gov-vino) 0%, var(--ipn-guinda-dark) 100%);
    color: white;
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 3px solid var(--color-accent-cyan);
}

.gov-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gov-text {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gov-logos {
    display: flex;
    gap: 15px;
    align-items: center;
}

.gov-logo-text {
    font-weight: 700;
    font-size: 14px;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}

/* ============================================
   HEADER PRINCIPAL
   ============================================ */
.main-header {
    background: white;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 20px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-ipn {
    position: relative;
}

.logo-img {
    height: 65px !important;
    max-height: 65px !important;
    width: auto !important;
    max-width: 260px !important;
    object-fit: contain;
    display: block;
}

.logo-coloquio-img {
    height: 65px !important;
    max-height: 65px !important;
    width: auto !important;
    object-fit: contain;
    display: block;
}

.logo-red-img {
    height: 65px !important;
    max-height: 65px !important;
    width: auto !important;
    object-fit: contain;
    display: block;
}

.logo-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ipn-guinda) 0%, var(--ipn-guinda-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.logo-circle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.2) 100%);
    top: 0;
    left: 0;
}

.logo-text {
    color: white;
    font-weight: 800;
    font-size: 18px;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    z-index: 1;
}

.header-title h1 {
    font-size: 24px;
    color: var(--ipn-guinda);
    margin-bottom: 2px;
}

.header-title .subtitle {
    font-size: 13px;
    color: var(--gray-600);
    font-weight: 600;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--ipn-guinda);
    border-radius: 3px;
    transition: var(--transition);
}

/* ============================================
   NAVEGACIÓN
   ============================================ */
.main-nav {
    background: linear-gradient(135deg, var(--ipn-guinda) 0%, var(--ipn-guinda-dark) 100%);
    box-shadow: var(--shadow-md);
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    padding: 0;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    border-radius: 8px;
    position: relative;
}

.nav-link i {
    width: 18px;
    height: 18px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 3px;
    background: var(--color-accent-cyan);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

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

/* ============================================
   PAGE HERO (páginas internas)
   ============================================ */
.page-hero {
    background: url('../img/fondo.png') center center / cover no-repeat;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero-cabeza {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%;
    width: auto;
    max-width: 35%;
    object-fit: contain;
    object-position: bottom right;
    z-index: 1;
    pointer-events: none;
}

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

.page-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--ipn-guinda);
    margin-bottom: 10px;
}

.page-subtitle {
    font-size: 20px;
    color: var(--gray-700);
}

@media (max-width: 768px) {
    .page-hero-cabeza {
        display: none;
    }
    .page-title {
        font-size: 32px;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: url('../img/fondo.png') center center / cover no-repeat;
}

.hero-cabeza {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 92%;
    width: auto;
    max-width: 42%;
    object-fit: contain;
    object-position: bottom right;
    z-index: 1;
    pointer-events: none;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.05) 35px, rgba(255,255,255,.05) 70px);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--gray-800);
    padding: 60px 20px;
    animation: fadeInUp 1s ease;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(111, 41, 66, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 30px;
    border: 1px solid rgba(111, 41, 66, 0.2);
    color: var(--ipn-guinda);
}

.hero-title {
    font-size: 56px;
    margin-bottom: 20px;
    line-height: 1.1;
    font-weight: 800;
    color: var(--ipn-guinda);
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--ipn-guinda) 0%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    color: var(--gray-700);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    margin: 28px auto;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 14px;
    max-width: 700px;
}

.hero-logo-item {
    height: 60px !important;
    width: auto !important;
    max-width: 120px !important;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.15));
}

.hero-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(111, 41, 66, 0.08);
    padding: 15px 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(111, 41, 66, 0.2);
    color: var(--gray-800);
}

.info-item-link {
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    background: var(--ipn-guinda) !important;
    border-color: var(--ipn-guinda) !important;
    color: white !important;
}

.info-item-link strong,
.info-item-link span {
    color: white !important;
}

.info-item-link svg {
    stroke: white;
}

.info-item-link:hover {
    background: var(--ipn-guinda-dark) !important;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.info-item i {
    width: 24px;
    height: 24px;
}

.info-item div {
    text-align: left;
}

.info-item strong {
    display: block;
    font-size: 12px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-item span {
    display: block;
    font-size: 16px;
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.hero-scroll span {
    display: block;
    font-size: 12px;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ============================================
   BOTONES
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 15px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-heading);
}

.btn i {
    width: 20px;
    height: 20px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: white;
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
}

.btn-secondary {
    background: white;
    color: var(--ipn-guinda);
    border: 2px solid white;
    box-shadow: var(--shadow-lg);
}

.btn-secondary:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
}

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

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

.btn-lg {
    padding: 18px 40px;
    font-size: 16px;
}

/* ============================================
   SECCIONES
   ============================================ */
.section {
    padding: 80px 0;
}

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

.section-title {
    font-size: 42px;
    color: var(--ipn-guinda);
    margin-bottom: 15px;
    font-weight: 800;
}

.section-decoration {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent-cyan) 100%);
    margin: 0 auto;
    border-radius: 2px;
}

/* ============================================
   OBJETIVO
   ============================================ */
.objetivo-section {
    background: white;
}

.objetivo-card {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--gray-50) 0%, white 100%);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.objetivo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-accent-cyan) 100%);
}

.objetivo-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 30px;
    box-shadow: var(--shadow-lg);
}

.objetivo-icon i {
    width: 40px;
    height: 40px;
}

.objetivo-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--gray-700);
}

.objetivo-text strong {
    color: var(--ipn-guinda);
    font-weight: 700;
}

/* ============================================
   EJES TEMÁTICOS
   ============================================ */
.ejes-preview-section {
    background: var(--gray-50);
}

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

.eje-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.js-anim-ready .eje-card:not(.fade-in) {
    opacity: 0;
    transform: translateY(20px);
}

.eje-card.fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

.eje-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--ipn-guinda);
}

.eje-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 800;
    color: var(--gray-100);
    font-family: var(--font-heading);
    line-height: 1;
}

.eje-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 25px;
    box-shadow: var(--shadow-lg);
}

.eje-icon i {
    width: 32px;
    height: 32px;
}

.eje-card h3 {
    font-size: 20px;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.eje-card p {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 15px;
}

/* ============================================
   ACTIVIDADES
   ============================================ */
.actividades-section {
    background: white;
}

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

.actividad-card {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, var(--gray-50) 0%, white 100%);
    border-radius: 16px;
    border: 2px solid var(--gray-200);
    transition: var(--transition);
}

.actividad-card:hover {
    border-color: var(--ipn-guinda);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.actividad-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-accent-cyan) 0%, var(--color-primary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-lg);
}

.actividad-icon i {
    width: 36px;
    height: 36px;
}

.actividad-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--gray-900);
}

.actividad-card p {
    color: var(--gray-600);
    font-size: 14px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.03) 35px, rgba(255,255,255,.03) 70px);
}

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

.cta-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-icon i {
    width: 48px;
    height: 48px;
}

.cta-content h2 {
    font-size: 42px;
    color: white;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    background: var(--gray-50);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--gray-200);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--ipn-guinda);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--ipn-guinda);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--gray-600);
    font-weight: 600;
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    background: linear-gradient(135deg, var(--ipn-guinda-dark) 0%, var(--gray-900) 100%);
    color: white;
    position: relative;
    margin-top: 80px;
}

.footer-wave {
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 60px;
    overflow: hidden;
    color: var(--ipn-guinda-dark);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 60px 0 40px;
}

.footer-section h3 {
    color: var(--color-accent-cyan);
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--color-accent-cyan);
}

.footer-link i {
    width: 18px;
    height: 18px;
}

.footer-link a {
    color: inherit;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    text-align: center;
}

.footer-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.logo-footer-item {
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

/* ============================================
   UTILIDADES
   ============================================ */
.text-center {
    text-align: center;
}

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex !important;
        z-index: 200;
        position: relative;
    }

    .main-nav {
        display: none;
    }

    .main-nav.nav-open {
        display: block !important;
    }
    
    .nav-menu {
        flex-direction: column;
        padding: 20px 0;
    }
    
    .nav-link {
        width: 100%;
        justify-content: center;
    }
    
    .hero-cabeza {
        display: none;
    }

    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-info {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .objetivo-card {
        padding: 30px 20px;
    }
    
    .objetivo-text {
        font-size: 16px;
    }
    
    .ejes-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .header-title h1 {
        font-size: 18px;
    }
    
    .header-title .subtitle {
        font-size: 11px;
    }
    
    .logo-circle {
        width: 50px;
        height: 50px;
    }
    
    .logo-text {
        font-size: 16px;
    }
}
