/* ===== FLASHCARD SISWA STYLES ===== */
.flashcard-section {
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
}

/* Section Label & Title */
.section-label {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #1C0770;
    border-bottom: 2px solid #FFB800;
    padding-bottom: 4px;
    margin-bottom: 14px;
    font-weight: 600;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.15;
    color: #1C0770;
}

.section-title em { 
    color: #FFB800; 
    font-style: italic;
    font-weight: 700;
}

/* Carousel */
.carousel-outer {
    max-width: 500px;
    margin: 52px auto 0;
    position: relative;
    z-index: 2;
}

.carousel-track-wrap {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    background: transparent; /* Ubah dari white ke transparent */
    line-height: 0; /* Hilangkan gap inline */
}

.carousel-track {
    display: flex;
    transition: transform 0.65s cubic-bezier(0.4,0,0.2,1);
}

/* Flash Card - Perbaikan utama */
.flash-card {
    min-width: 100%;
    background: transparent; /* Hapus background coklat */
    min-height: 600px;
    overflow: hidden;
}

.card-full {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: #f0f0f0; /* Background netral sementara gambar load */
}

/* Perbaikan untuk gambar */
.card-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #f0f0f0; /* Background netral */
}

/* Fallback jika gambar tidak ada */
.card-avatar[src=""], 
.card-avatar:not([src]), 
.card-avatar[src="#"] {
    display: none;
}

.card-full:has(.card-avatar[src=""])::before,
.card-full:has(.card-avatar:not([src]))::before,
.card-full:has(.card-avatar[src="#"])::before {
    content: "📷";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    color: #999;
}

/* Program Badge */
.card-program-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: rgba(0, 0, 0, 0.5); /* Lebih gelap untuk keterbacaan */
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px); /* Untuk Safari di iOS */
    color: white;
    font-size: 16px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 40px;
    letter-spacing: 1px;
    border: 1px solid rgba(255,255,255,0.3);
    z-index: 10;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Overlay content */
.card-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px;
    background: linear-gradient(to top, 
        rgba(0,0,0,0.9) 0%,
        rgba(0,0,0,0.6) 40%,
        transparent 100%);
    color: white;
    z-index: 5;
    /* Pastikan overlay selalu di atas */
    pointer-events: none;
}

/* Nama dan Program */
.card-name-overlay {
    margin-bottom: 15px;
}

.student-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 5px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.student-program {
    font-size: 16px;
    font-weight: 400;
    opacity: 0.95;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Quote */
.card-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.95);
    max-width: 90%;
}

.quote-mark {
    color: #FFB800;
    font-size: 2.5rem;
    font-family: serif;
    font-weight: 700;
    opacity: 0.9;
    line-height: 0.8;
    vertical-align: middle;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.quote-text {
    margin: 0 5px;
}

.quote-text em {
    font-style: italic;
}

/* Footer Tags */
.card-footer-tags {
    display: flex;
    align-items: center;
    gap: 20px;
}

.kategori-tag {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #FFB800;
    position: relative;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.kategori-tag::after {
    content: '';
    display: inline-block;
    width: 2px;
    height: 16px;
    background: rgba(255,255,255,0.3);
    margin-left: 20px;
    vertical-align: middle;
}

.tahun-tag {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
}

.ctrl-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(28,7,112,0.2);
    background: white;
    cursor: pointer;
    font-size: 18px;
    display: flex; 
    align-items: center; 
    justify-content: center;
    transition: all 0.3s;
    color: #1C0770;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.ctrl-btn:hover {
    background: #1C0770;
    border-color: #1C0770;
    color: white;
    transform: scale(1.1);
}

/* Dots */
.dots { 
    display: flex; 
    gap: 10px; 
    align-items: center; 
    background: rgba(255,255,255,0.9);
    padding: 8px 16px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d0c8bf;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    padding: 0;
}

.dot:hover {
    background: #FFB800;
    transform: scale(1.2);
}

.dot.active {
    background: #FFB800;
    width: 30px;
    border-radius: 20px;
}

/* Progress Bar */
.progress-bar-wrap {
    max-width: 500px;
    margin: 20px auto 0;
    height: 3px;
    background: #e0d8ce;
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #8B6B4D, #1C0770);
    width: 0%;
    transition: width linear;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.empty-state i {
    font-size: 4rem;
    color: #1C0770;
    opacity: 0.3;
    margin-bottom: 20px;
}

/* Tambahan meta tag untuk viewport di HTML */
/* Pastikan di <head> ada: <meta name="viewport" content="width=device-width, initial-scale=1.0"> */

/* Responsive */
@media (max-width: 768px) {
    .carousel-outer {
        max-width: 90%;
    }
    
    .flash-card,
    .card-full {
        min-height: 500px;
        height: 500px;
    }
    
    .student-name {
        font-size: 2rem;
    }
    
    .card-program-badge {
        top: 20px;
        left: 20px;
        font-size: 14px;
        padding: 6px 16px;
    }
    
    .card-overlay-content {
        padding: 30px 20px;
    }
    
    .card-quote {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .quote-mark {
        font-size: 2rem;
    }
    
    .ctrl-btn {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 480px) {
    .flash-card,
    .card-full {
        min-height: 450px;
        height: 450px;
    }
    
    .student-name {
        font-size: 1.8rem;
    }
    
    .student-program {
        font-size: 14px;
    }
    
    .card-quote {
        font-size: 0.95rem;
    }
    
    .dots {
        padding: 6px 12px;
    }
}

/* Fix untuk gambar di berbagai device */
.card-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%; /* Geser sedikit ke atas untuk fokus ke wajah */
    display: block;
    background: #f0f0f0;
}

/* Pastikan container tidak overflow */
* {
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    width: 100%;
} 
/* Perbaikan untuk gambar di HP */
@media (max-width: 768px) {
    .card-avatar {
        /* Pastikan gambar tetap proporsional */
        object-position: center;
    }
    
    /* Fallback warna jika gambar gagal load */
    .card-full {
        background-color: #2c3e50; /* Warna gelap netral */
    }
}

/* FLASHCARD - UKURAN OPTIMAL UNTUK HP */

/* Tablet & HP Besar */
@media (max-width: 768px) {
    .carousel-outer {
        max-width: 450px;
    }
    
    .flash-card,
    .card-full {
        min-height: auto; /* Hapus min-height fixed */
        height: auto; /* Hapus height fixed */
        aspect-ratio: 3/4; /* Rasio ideal untuk foto portrait */
        max-height: 600px;
    }
    
    .student-name {
        font-size: 1.8rem; /* 28px - Ukuran pas untuk HP */
        margin-bottom: 4px;
    }
    
    .student-program {
        font-size: 13px;
        letter-spacing: 0.8px;
    }
    
    .card-program-badge {
        top: 15px;
        left: 15px;
        font-size: 12px;
        padding: 5px 14px;
    }
    
    .card-overlay-content {
        padding: 25px 20px 20px; /* Top, Right-Left, Bottom */
    }
    
    .card-quote {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 15px;
        max-width: 100%;
    }
    
    .quote-mark {
        font-size: 1.8rem;
    }
    
    .card-footer-tags {
        gap: 15px;
    }
    
    .kategori-tag {
        font-size: 12px;
    }
    
    .kategori-tag::after {
        height: 14px;
        margin-left: 15px;
    }
    
    .tahun-tag {
        font-size: 12px;
    }
}

/* HP Portrait (Ukuran Standar: 375px - 428px) */
@media (max-width: 480px) {
    .carousel-outer {
        max-width: 100%;
        margin-top: 35px;
    }
    
    .flash-card,
    .card-full {
        aspect-ratio: 2/3; /* Rasio 2:3 untuk portrait HP */
        max-height: 550px;
    }
    
    /* Ukuran font yang pas */
    .student-name {
        font-size: 1.6rem; /* 25.6px */
        line-height: 1.2;
    }
    
    .student-program {
        font-size: 12px;
        letter-spacing: 0.5px;
    }
    
    .card-program-badge {
        top: 12px;
        left: 12px;
        font-size: 11px;
        padding: 4px 12px;
    }
    
    .card-overlay-content {
        padding: 20px 15px 15px;
    }
    
    .card-quote {
        font-size: 0.9rem; /* 14.4px */
        line-height: 1.4;
        margin-bottom: 12px;
    }
    
    .quote-mark {
        font-size: 1.5rem; /* 24px */
    }
    
    .quote-text {
        margin: 0 3px;
    }
    
    .card-footer-tags {
        gap: 12px;
    }
    
    .kategori-tag {
        font-size: 11px;
        letter-spacing: 1px;
    }
    
    .kategori-tag::after {
        height: 12px;
        margin-left: 12px;
    }
    
    .tahun-tag {
        font-size: 11px;
    }
}

/* HP Kecil (iPhone SE, 320px) */
@media (max-width: 375px) {
    .flash-card,
    .card-full {
        aspect-ratio: 9/16; /* Rasio lebih tinggi untuk HP sangat kecil */
        max-height: 500px;
    }
    
    .student-name {
        font-size: 1.4rem; /* 22.4px */
    }
    
    .student-program {
        font-size: 11px;
    }
    
    .card-program-badge {
        top: 10px;
        left: 10px;
        font-size: 10px;
        padding: 3px 10px;
    }
    
    .card-overlay-content {
        padding: 15px 12px 12px;
    }
    
    .card-quote {
        font-size: 0.8rem; /* 12.8px */
        line-height: 1.3;
        margin-bottom: 10px;
    }
    
    .quote-mark {
        font-size: 1.2rem; /* 19.2px */
    }
    
    .kategori-tag,
    .tahun-tag {
        font-size: 10px;
    }
    
    .kategori-tag::after {
        height: 10px;
        margin-left: 10px;
    }
}

/* HP Landscape */
@media (max-width: 640px) and (orientation: landscape) {
    .flash-card,
    .card-full {
        aspect-ratio: 16/9; /* Rasio lebar untuk landscape */
        max-height: 350px;
    }
    
    .card-overlay-content {
        padding: 12px 20px;
    }
    
    .student-name {
        font-size: 1.4rem;
    }
    
    .student-program {
        font-size: 11px;
    }
    
    .card-quote {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }
    
    .quote-mark {
        font-size: 1.2rem;
    }
}

/* footer */


  * { margin: 0; padding: 0; box-sizing: border-box; }
  body { font-family: 'Segoe UI', sans-serif; }

  .cta-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #1C0770 0%, #3415B0 50%, #4A1F9F 100%);
    overflow: hidden;
  }

  /* Floating background shapes */
  .floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    animation: floatShape 6s ease-in-out infinite;
  }
  .shape-1 { width: 300px; height: 300px; background: #fff; top: -100px; left: -80px; animation-delay: 0s; }
  .shape-2 { width: 200px; height: 200px; background: #FFD700; bottom: -60px; right: 10%; animation-delay: 2s; }
  .shape-3 { width: 150px; height: 150px; background: #fff; top: 50%; right: 5%; animation-delay: 4s; }

  @keyframes floatShape {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
  }

  .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
  }

  .cta-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
  }

  /* ===== ROBOT CHARACTER ===== */
  .robot-wrapper {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: robotFloat 3s ease-in-out infinite;
  }

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

  .robot {
    position: relative;
    width: 160px;
  }

  /* Shadow under robot */
  .robot-shadow {
    width: 100px;
    height: 16px;
    background: rgba(0,0,0,0.3);
    border-radius: 50%;
    margin: 0 auto;
    filter: blur(4px);
    animation: shadowPulse 3s ease-in-out infinite;
  }

  @keyframes shadowPulse {
    0%, 100% { transform: scaleX(1); opacity: 0.3; }
    50% { transform: scaleX(0.75); opacity: 0.15; }
  }

  /* Head */
  .robot-head {
    width: 100px;
    height: 85px;
    background: linear-gradient(160deg, #6C63FF 0%, #4A3FD4 100%);
    border-radius: 22px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 8px 30px rgba(0,0,0,0.35), inset 0 2px 0 rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.15);
  }

  /* Antenna */
  .robot-antenna {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 18px;
    background: #a89dff;
    border-radius: 2px;
  }
  .robot-antenna::after {
    content: '';
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: #FFD700;
    border-radius: 50%;
    box-shadow: 0 0 8px #FFD700, 0 0 16px rgba(255,215,0,0.5);
    animation: antennaBlink 2s ease-in-out infinite;
  }

  @keyframes antennaBlink {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px #FFD700, 0 0 16px rgba(255,215,0,0.5); }
    50% { opacity: 0.4; box-shadow: 0 0 3px #FFD700; }
  }

  /* Eyes */
  .robot-eyes {
    display: flex;
    justify-content: center;
    gap: 18px;
    padding-top: 22px;
  }

  .robot-eye {
    width: 22px;
    height: 22px;
    background: #00E5FF;
    border-radius: 50%;
    box-shadow: 0 0 10px #00E5FF, 0 0 20px rgba(0,229,255,0.5);
    position: relative;
    animation: eyeGlow 2.5s ease-in-out infinite;
  }

  @keyframes eyeGlow {
    0%, 100% { box-shadow: 0 0 10px #00E5FF, 0 0 20px rgba(0,229,255,0.5); }
    50% { box-shadow: 0 0 4px #00E5FF; }
  }

  .robot-eye::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 7px;
    height: 7px;
    background: rgba(255,255,255,0.7);
    border-radius: 50%;
  }

  /* Mouth */
  .robot-mouth {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 14px;
  }

  .robot-mouth-dot {
    width: 7px;
    height: 7px;
    background: #00E5FF;
    border-radius: 50%;
    animation: mouthPulse 1s ease-in-out infinite;
  }
  .robot-mouth-dot:nth-child(2) { animation-delay: 0.2s; }
  .robot-mouth-dot:nth-child(3) { animation-delay: 0.4s; }

  @keyframes mouthPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
  }

  /* Neck */
  .robot-neck {
    width: 30px;
    height: 12px;
    background: linear-gradient(to bottom, #4A3FD4, #3830a8);
    margin: 0 auto;
    border-radius: 0 0 4px 4px;
  }

  /* Body */
  .robot-body {
    width: 120px;
    height: 90px;
    background: linear-gradient(160deg, #5A52E0 0%, #3830a8 100%);
    border-radius: 18px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3), inset 0 2px 0 rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
  }

  /* Chest screen */
  .robot-chest {
    width: 60px;
    height: 32px;
    background: rgba(0,0,0,0.35);
    border-radius: 8px;
    border: 1.5px solid rgba(0,229,255,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .chest-bar {
    display: flex;
    gap: 3px;
    align-items: flex-end;
  }
  .chest-bar span {
    width: 5px;
    background: #00E5FF;
    border-radius: 2px;
    animation: barAnim 1.2s ease-in-out infinite;
  }
  .chest-bar span:nth-child(1) { height: 10px; animation-delay: 0s; }
  .chest-bar span:nth-child(2) { height: 18px; animation-delay: 0.15s; }
  .chest-bar span:nth-child(3) { height: 12px; animation-delay: 0.3s; }
  .chest-bar span:nth-child(4) { height: 20px; animation-delay: 0.45s; }
  .chest-bar span:nth-child(5) { height: 8px; animation-delay: 0.6s; }

  @keyframes barAnim {
    0%, 100% { transform: scaleY(1); opacity: 0.6; }
    50% { transform: scaleY(0.4); opacity: 1; }
  }

  /* Body buttons */
  .robot-buttons {
    display: flex;
    gap: 8px;
  }
  .robot-btn {
    width: 10px;
    height: 10px;
    border-radius: 50%;
  }
  .robot-btn:nth-child(1) { background: #FFD700; box-shadow: 0 0 6px #FFD700; }
  .robot-btn:nth-child(2) { background: #FF4D6D; box-shadow: 0 0 6px #FF4D6D; }
  .robot-btn:nth-child(3) { background: #00E5FF; box-shadow: 0 0 6px #00E5FF; }

  /* Arms */
  .robot-arms {
    display: flex;
    justify-content: space-between;
    width: 150px;
    margin: -70px auto 0;
    position: relative;
    z-index: 1;
    pointer-events: none;
  }

  .robot-arm {
    width: 22px;
    height: 60px;
    background: linear-gradient(to bottom, #5A52E0, #3830a8);
    border-radius: 12px;
    border: 2px solid rgba(255,255,255,0.1);
  }

  .robot-arm.left {
    transform-origin: top center;
    animation: armWaveLeft 3s ease-in-out infinite;
  }
  .robot-arm.right {
    transform-origin: top center;
    animation: armWaveRight 3s ease-in-out infinite;
  }

  @keyframes armWaveLeft {
    0%, 100% { transform: rotate(-10deg); }
    50% { transform: rotate(-25deg); }
  }
  @keyframes armWaveRight {
    0%, 100% { transform: rotate(10deg); }
    50% { transform: rotate(25deg); }
  }

  /* Legs */
  .robot-legs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 6px;
  }

  .robot-leg {
    width: 26px;
    height: 40px;
    background: linear-gradient(to bottom, #4A3FD4, #2e27a0);
    border-radius: 0 0 10px 10px;
    border: 2px solid rgba(255,255,255,0.1);
  }

  .robot-foot {
    display: flex;
    justify-content: center;
    gap: 22px;
    margin-top: -4px;
  }

  .robot-foot-item {
    width: 36px;
    height: 14px;
    background: linear-gradient(to right, #3830a8, #2e27a0);
    border-radius: 0 0 10px 10px;
    border: 2px solid rgba(255,255,255,0.1);
  }

  /* Speech bubble */
  .speech-bubble {
    position: absolute;
    top: -45px;
    right: -80px;
    background: rgba(255,255,255,0.95);
    color: #3415B0;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 16px 16px 16px 4px;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    animation: bubbleBounce 3s ease-in-out infinite;
  }

  .speech-bubble::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 12px;
    border: 8px solid transparent;
    border-top-color: rgba(255,255,255,0.95);
    border-bottom: 0;
    border-left: 0;
  }

  @keyframes bubbleBounce {
    0%, 100% { transform: scale(1) translateY(0); }
    50% { transform: scale(1.04) translateY(-3px); }
  }

  /* ===== TEXT CONTENT ===== */
  .cta-content {
    text-align: center;
    flex: 1;
    max-width: 560px;
  }

  .search-icon-wrapper {
    margin-bottom: 24px;
  }

  .search-icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);
  }

  .search-icon-circle i { font-size: 28px; color: #fff; }

  .cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 18px;
  }

  .cta-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 36px;
    line-height: 1.6;
  }

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

  .btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
  }

  .btn-cta:hover { transform: translateY(-3px); }

  .btn-primary-cta {
    background: #FFD700;
    color: #1a1a1a;
    box-shadow: 0 6px 24px rgba(255,215,0,0.4);
  }
  .btn-primary-cta:hover { box-shadow: 0 10px 32px rgba(255,215,0,0.55); }

  .btn-outline-cta {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.6);
  }
  .btn-outline-cta:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

  /* Responsive */
  @media (max-width: 768px) {
    .cta-inner { flex-direction: column-reverse; gap: 30px; }
    .cta-title { font-size: 1.8rem; }
    .robot-wrapper { transform: scale(0.85); }
    .speech-bubble { right: -60px; font-size: 11px; }
  }


.hover-card {
    transition: all 0.3s ease;
}

.hover-card:hover {
    transform: translateY(-5px);
}

@media (max-width: 576px) {
    .card-body {
        padding: 1.2rem !important;
    }
}