/* ============================================
   EDUCACIÓN FINANCIERA V2 - MODERN DESIGN
   Cooperativa Cobán
   ============================================ */

:root {
    --coban-blue: #333dad;
    --coban-blue-dark: #28348f;
    --coban-blue-light: #4252c7;
    --coban-green: #01a23c;
    --coban-orange: #ff6b35;
    --coban-purple: #6a4c93;
    --text-dark: #2c3e50;
    --text-gray: #7f8c8d;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
    --shadow-md: 0 5px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

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

body {
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}


/*------------- #TYPOGRAPHY --------------*/
h1, .h1 {
  color: #ffffff;
 }
h2, .h2 {
  color: #ffffff;
}

/* ============================================
   PRELOADER FIX
   ============================================ */

#hellopreloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: #0D3F82 url(../svg/preload.svg) center center no-repeat;
    background-size: 41px;
    transition: opacity 0.3s ease;
}

/* ============================================
   HERO SECTION
   ============================================ */

.edu-hero {
    background: linear-gradient(135deg, var(--coban-blue-dark) 0%, var(--coban-blue) 50%, var(--coban-blue-light) 100%);
    color: var(--white);
    padding: 120px 0 50px;
    position: relative;
    overflow: hidden;
}

.edu-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    animation: fadeInDown 0.6s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease 0.2s backwards;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease 0.4s backwards;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    animation: fadeInUp 0.6s ease 0.6s backwards;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.25);
}

.stat-item i {
    font-size: 2rem;
}

.stat-item strong {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

.stat-item span {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
}

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

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

.hero-wave path {
    fill: var(--white);
}

/* ============================================
   TABS NAVIGATION
   ============================================ */

.edu-tabs-section {
    background: var(--white);
    padding: 0;
    position: fixed; /* Cambiado a fixed para que siga al header */
    top: 85px; /* Se ajustará dinámicamente */
    left: 0;
    right: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.edu-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    overflow-x: auto;
    padding: 0;
}

.edu-tabs::-webkit-scrollbar {
    height: 3px;
}

.edu-tabs::-webkit-scrollbar-thumb {
    background: var(--coban-blue);
    border-radius: 10px;
}

.tab-btn {
    flex: 1;
    min-width: 200px;
    background: transparent;
    border: none;
    padding: 20px 30px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--coban-blue);
    transform: scaleX(0);
    transition: var(--transition);
}

.tab-btn:hover {
    background: rgba(51, 61, 173, 0.05);
    color: var(--coban-blue);
}

.tab-btn.active {
    color: var(--coban-blue);
    font-weight: 600;
}

.tab-btn.active::after {
    transform: scaleX(1);
}

.tab-btn i {
    font-size: 1.2rem;
}

/* ============================================
   TAB CONTENT
   ============================================ */

.tab-content {
    display: none;
    padding: 80px 0;
    background: var(--bg-light);
    scroll-margin-top: 130px;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

/* ============================================
   INTRO CARD
   ============================================ */

.intro-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 60px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 30px;
}

.intro-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--coban-blue), var(--coban-blue-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.intro-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.intro-text h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

/* ============================================
   FEATURES GRID
   ============================================ */

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

.feature-card {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon.blue { background: linear-gradient(135deg, #667eea 0%, #3e3e88 100%); }
.feature-icon.green { background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%); }
.feature-icon.purple { background: linear-gradient(135deg, #2e2caa 0%, #d6edfe 100%); }
.feature-icon.orange { background: linear-gradient(135deg, #1bb40a 0%, #76fe57 100%); }

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

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

/* ============================================
   INFO SECTION
   ============================================ */

.info-section {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 50px;
    margin-bottom: 60px;
    box-shadow: var(--shadow-md);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.info-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-content h3 i {
    color: var(--coban-blue);
}

.highlight-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(51,61,173,0.05), rgba(66,82,199,0.1));
    border-left: 4px solid var(--coban-blue);
    border-radius: var(--radius-sm);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.benefit-item:hover {
    background: rgba(51,61,173,0.05);
    transform: translateX(10px);
}

.benefit-item i {
    color: var(--coban-green);
    font-size: 1.2rem;
}

.info-image {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.info-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.info-image:hover img {
    transform: scale(1.05);
}

.floating-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--coban-green);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    animation: float 3s ease-in-out infinite;
}

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

/* ============================================
   TWO COLUMN GRID
   ============================================ */

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

.section-title {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-title i {
    color: var(--coban-blue);
}

.two-column-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.column-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.column-card h4 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefits-card h4 { color: var(--coban-blue); }
.benefits-card h4 i { color: var(--coban-blue); }

.features-card h4 { color: var(--coban-green); }
.features-card h4 i { color: var(--coban-green); }

.styled-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.styled-list li {
    padding-left: 30px;
    position: relative;
    color: var(--text-gray);
    line-height: 1.6;
}

.styled-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--coban-green);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ============================================
   TIPS SECTION
   ============================================ */

.tips-section {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 50px;
    margin-bottom: 60px;
    box-shadow: var(--shadow-md);
}

.tips-section h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.tips-section h3 i {
    color: var(--coban-blue-dark);
}

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

.tip-card {
    background: linear-gradient(135deg, var(--bg-light), var(--white));
    padding: 30px;
    border-radius: var(--radius-md);
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition);
}

.tip-card:hover {
    border-color: var(--coban-blue-dark);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.tip-card i {
    font-size: 2.5rem;
    color: var(--coban-blue-dark);
    margin-bottom: 15px;
    display: block;
}

.tip-card p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   REQUIREMENTS SECTION
   ============================================ */

.requirements-section {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-md);
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.requirement-card {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 35px;
    transition: var(--transition);
}

.requirement-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.req-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--coban-blue-light);
}

.req-header i {
    font-size: 2rem;
    color: var(--coban-blue);
}

.req-header h4 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 0;
}

.req-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.req-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-gray);
    line-height: 1.6;
}

.req-list li i {
    color: var(--coban-green);
    margin-top: 3px;
    font-size: 1.1rem;
}

/* ============================================
   CREDIT BENEFITS
   ============================================ */

.credit-benefits {
    margin-bottom: 60px;
}

.credit-benefits h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

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

.benefit-box {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.benefit-box.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.benefit-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.benefit-box i {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--coban-blue), var(--coban-blue-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    display: block;
}

.benefit-box h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

/* ============================================
   CREDIT TYPES
   ============================================ */

.credit-types {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 50px;
    margin-bottom: 60px;
    box-shadow: var(--shadow-md);
}

.credit-types h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.type-badge {
    background: linear-gradient(135deg, var(--bg-light), var(--white));
    padding: 25px;
    border-radius: var(--radius-md);
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition);
    cursor: pointer;
}

.type-badge:hover {
    border-color: var(--coban-blue);
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.type-badge i {
    font-size: 2.5rem;
    color: var(--coban-blue);
    margin-bottom: 15px;
    display: block;
}

.type-badge span {
    font-weight: 600;
    color: var(--text-dark);
}

/* ============================================
   TIMELINE
   ============================================ */

.credit-tips {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-md);
}

.credit-tips h3 {
    font-size: 2rem;
    margin-bottom: 50px;
    text-align: center;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--coban-blue), var(--coban-blue-light));
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateX(-30px);
}

.timeline-item.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.timeline-number {
    position: absolute;
    left: -40px;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--coban-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 0 0 4px var(--white), 0 0 0 6px var(--coban-blue-light);
}

.timeline-content {
    background: var(--bg-light);
    padding: 25px;
    border-radius: var(--radius-md);
    margin-left: 30px;
    transition: var(--transition);
}

.timeline-content:hover {
    background: rgba(51,61,173,0.05);
    transform: translateX(10px);
}

.timeline-content h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.timeline-content p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   SAVING SECTION
   ============================================ */

.saving-goals {
    margin-bottom: 60px;
}

.saving-goals h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

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

.goal-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.goal-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.goal-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.goal-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.goal-icon.shield { background: linear-gradient(135deg, #667eea 0%, #3f4298 100%); }
.goal-icon.target { background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%); }
.goal-icon.peace { background: linear-gradient(135deg, #3e4af7 0%, #57ccfe 100%); }
.goal-icon.discipline { background: linear-gradient(135deg, #3cc03e 0%, #b7dc90 100%); }

.goal-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.goal-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.saving-quote {
    background: linear-gradient(135deg, var(--coban-blue-dark), var(--coban-blue));
    color: var(--white);
    padding: 60px;
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.saving-quote i {
    font-size: 3rem;
    opacity: 0.3;
    margin-bottom: 20px;
}

.saving-quote p {
    font-size: 1.5rem;
    line-height: 1.8;
    font-style: italic;
    max-width: 900px;
    margin: 0 auto;
}

/* ============================================
   BUDGET SECTION
   ============================================ */

.budget-benefits {
    margin-bottom: 60px;
}

.budget-benefits h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

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

.budget-card {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

.budget-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.budget-card i {
    font-size: 3rem;
    color: var(--coban-blue);
    margin-bottom: 20px;
    display: block;
}

.budget-card h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.budget-card p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.financial-planning {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-md);
}

.financial-planning h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.planning-intro {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 50px;
}

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

.step-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--radius-md);
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-5px);
    background: rgba(51,61,173,0.05);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--coban-blue), var(--coban-blue-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.step-card p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background: linear-gradient(135deg, var(--coban-blue-dark), var(--coban-blue));
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.cta-content {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

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

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

.btn-primary, .btn-secondary {
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-primary {
    background: var(--white);
    color: var(--coban-blue);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--coban-blue);
    transform: translateY(-3px);
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

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

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .info-section {
        grid-template-columns: 1fr;
    }
    
    .two-column-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .tab-btn {
        min-width: 150px;
        padding: 15px 20px;
        font-size: 0.85rem;
    }
    
    .tab-btn span {
        display: none;
    }
    
    .intro-card {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .intro-text h2 {
        font-size: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .info-section {
        padding: 30px;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline {
        padding-left: 30px;
    }
    
    .timeline-number {
        left: -30px;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .timeline-content {
        margin-left: 20px;
    }
    
    .saving-quote {
        padding: 40px 30px;
    }
    
    .saving-quote p {
        font-size: 1.2rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .edu-hero {
        padding: 80px 0 140px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .tab-btn {
        min-width: 80px;
        padding: 12px 15px;
    }
    
    .tab-btn i {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}