:root {
  --blue: #1B3A6B;
  --blue-dark: #132A4E;
  --blue-light: #2563EB;
  --red: #C0392B;
  --red-dark: #962D22;
  --green: #27AE60;
  --green-dark: #1E8449;
  --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;
  --white: #fff;
  --dark: #0F172A;
  --shadow: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --radius: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; color: var(--gray-700); line-height: 1.6; background: var(--white); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ===== TEXT COLORS ===== */
.text-blue { color: var(--blue); }
.text-red { color: var(--red); }
.text-green { color: var(--green); }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 10px; font-weight: 600; font-size: 14px; transition: all 0.25s ease; border: 2px solid transparent; cursor: pointer; font-family: inherit; position: relative; overflow: hidden; }
.btn-primary { background: linear-gradient(135deg, var(--green), var(--green-dark)); color: var(--white); box-shadow: 0 4px 15px rgba(39,174,96,0.2); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(39,174,96,0.35); }
.btn-primary:active { transform: translateY(0); }
.btn-outline { border-color: rgba(255,255,255,0.4); color: var(--white); background: rgba(255,255,255,0.05); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.btn-outline:hover { background: var(--white); color: var(--blue); border-color: var(--white); }
.btn-wa { background: var(--blue); color: var(--white); padding: 8px 16px; font-size: 13px; border-radius: 8px; }
.btn-wa:hover { background: var(--blue-dark); transform: translateY(-1px); }
.btn-block { width: 100%; justify-content: center; }

/* ===== NAVBAR ===== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,1); height: 68px; transition: background 0.3s, box-shadow 0.3s; border-bottom: 1px solid rgba(0,0,0,0.06); }
.navbar.scrolled { background: rgba(255,255,255,1); box-shadow: 0 2px 30px rgba(0,0,0,0.1); border-bottom-color: transparent; }
.nav-container { max-width: 1140px; margin: 0 auto; padding: 0 16px 0 0; display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 20px; }
.nav-logo { display: flex; align-items: center; margin-left: -30px; }
.nav-logo img { height: 56px; width: auto; transition: transform 0.2s; }
.nav-logo:hover img { transform: scale(1.03); }
.nav-menu { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-link { color: rgba(0,0,0,0.55); font-weight: 500; font-size: 14px; padding: 8px 14px; border-radius: 8px; transition: color 0.2s, background 0.2s; position: relative; }
.nav-link:hover, .nav-link.active { color: var(--green); background: rgba(39,174,96,0.08); }
.nav-link.active::after { content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%); width: 16px; height: 2px; background: var(--green); border-radius: 1px; }
.nav-menu .nav-wa-item { display: flex; align-items: center; margin-left: 8px; }
.nav-right { display: flex; align-items: center; gap: 8px; margin-right: -14px; }
.lang-toggle { background: rgba(0,0,0,0.04); border: 1px solid rgba(0,0,0,0.08); color: var(--gray-600); font-size: 13px; font-weight: 600; padding: 6px 14px; border-radius: 20px; cursor: pointer; transition: all 0.2s; display: flex; align-items: center; gap: 6px; font-family: inherit; }
.lang-toggle:hover { background: rgba(39,174,96,0.1); border-color: var(--green); color: var(--green); }
.nav-toggle { display: none; background: none; border: none; color: var(--gray-700); font-size: 20px; cursor: pointer; padding: 8px; border-radius: 8px; transition: background 0.2s; }
.nav-toggle:hover { background: rgba(0,0,0,0.05); }

/* ===== HERO ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; background: var(--dark); }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(37,99,235,0.92) 0%, rgba(27,58,107,0.95) 40%, rgba(19,42,78,0.98) 70%, rgba(39,174,96,0.85) 100%); }
.hero-overlay { position: absolute; inset: 0; background: radial-gradient(circle at 30% 40%, rgba(39,174,96,0.15) 0%, transparent 50%), radial-gradient(circle at 70% 60%, rgba(37,99,235,0.12) 0%, transparent 50%); }
.hero-content { position: relative; z-index: 1; max-width: 1140px; margin: 0 auto; padding: 120px 24px 80px; text-align: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 20px; background: rgba(39,174,96,0.15); border: 1px solid rgba(39,174,96,0.3); border-radius: 30px; color: var(--green); font-size: 13px; font-weight: 600; margin-bottom: 28px; -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); -moz-backdrop-filter: blur(8px); }
.hero-title { font-size: 58px; font-weight: 900; color: var(--white); line-height: 1.1; margin-bottom: 20px; letter-spacing: -0.5px; }
.hero-subtitle { font-size: 17px; color: rgba(255,255,255,0.6); max-width: 580px; margin: 0 auto 36px; line-height: 1.75; }
.hero-buttons { display: flex; gap: 14px; margin-bottom: 52px; flex-wrap: wrap; justify-content: center; }
.hero-trust { display: flex; gap: 32px; flex-wrap: wrap; justify-content: center; padding: 20px 28px; background: rgba(255,255,255,0.05); border-radius: 16px; border: 1px solid rgba(255,255,255,0.08); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); -moz-backdrop-filter: blur(10px); }
.trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.75); font-size: 13px; font-weight: 500; }
.trust-item i { color: var(--green); font-size: 15px; }

/* ===== VISI MISI ===== */
.section-visimisi { background: var(--white); padding: 80px 0; }
.visimisi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.visimisi-card { background: linear-gradient(135deg, var(--gray-50), var(--white)); border: 1px solid var(--gray-200); border-radius: 16px; padding: 36px; transition: all 0.3s; }
.visimisi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue-light); }
.visimisi-icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(27,58,107,0.08); display: flex; align-items: center; justify-content: center; color: var(--blue); font-size: 22px; margin-bottom: 18px; }
.visimisi-card:nth-child(2) .visimisi-icon { background: rgba(39,174,96,0.1); color: var(--green); }
.visimisi-card h3 { font-size: 18px; font-weight: 800; color: var(--gray-800); margin-bottom: 12px; }
.visimisi-card p { font-size: 14px; color: var(--gray-600); line-height: 1.8; }

@media (max-width: 768px) {
  .visimisi-grid { grid-template-columns: 1fr; }
}

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }
.section-header { margin-bottom: 52px; }
.section-header.center { text-align: center; }
.section-tag { display: inline-block; padding: 6px 18px; background: rgba(27,58,107,0.07); color: var(--blue); font-size: 12px; font-weight: 700; border-radius: 20px; text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 14px; }
.section-tag.tag-light { background: rgba(39,174,96,0.12); color: var(--green); }
.section-title { font-size: 36px; font-weight: 800; color: var(--gray-800); line-height: 1.2; letter-spacing: -0.3px; }
.section-title.title-light { color: var(--white); }
.section-desc { font-size: 16px; color: var(--gray-500); margin-top: 14px; max-width: 560px; line-height: 1.7; }
.section-desc.desc-light { color: rgba(255,255,255,0.55); }
.section-header.center .section-desc { margin-left: auto; margin-right: auto; }

/* ===== ABOUT ===== */
.section-about { background: var(--gray-50); }
.about-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 56px; align-items: center; }
.about-left .section-tag { margin-bottom: 16px; }
.about-left .section-title { margin-bottom: 20px; }
.about-left p { color: var(--gray-600); margin-bottom: 16px; font-size: 15px; line-height: 1.75; }
.features-list { margin-top: 28px; display: flex; flex-direction: column; gap: 18px; }
.feature-item { display: flex; gap: 16px; align-items: flex-start; padding: 14px; border-radius: 12px; transition: background 0.2s; }
.feature-item:hover { background: rgba(27,58,107,0.03); }
.feature-icon { width: 46px; height: 46px; border-radius: 12px; background: rgba(27,58,107,0.07); display: flex; align-items: center; justify-content: center; color: var(--blue); font-size: 17px; flex-shrink: 0; transition: all 0.2s; }
.feature-item:hover .feature-icon { background: var(--blue); color: var(--white); transform: scale(1.05); }
.feature-text h4 { font-size: 14px; font-weight: 700; color: var(--gray-800); margin-bottom: 3px; }
.feature-text p { font-size: 13px; color: var(--gray-500); line-height: 1.5; }
.about-right { display: flex; flex-direction: column; gap: 20px; }
.about-card { background: var(--white); border-radius: 16px; padding: 32px; text-align: center; box-shadow: var(--shadow-md); border: 1px solid var(--gray-100); transition: all 0.3s; }
.about-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.about-card-accent { background: linear-gradient(135deg, var(--blue), var(--blue-dark)); color: var(--white); border: none; transform: translateY(12px); }
.about-card-accent:hover { transform: translateY(8px); }
.about-card-icon { font-size: 30px; margin-bottom: 14px; }
.about-card-accent .about-card-icon { color: rgba(255,255,255,0.8); }
.about-card-number { font-size: 34px; font-weight: 900; margin-bottom: 4px; }
.about-card-text { font-size: 13px; color: var(--gray-500); }
.about-card-accent .about-card-text { color: rgba(255,255,255,0.6); }

/* ===== SERVICES ===== */
.section-services { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 45%, #0D2137 65%, var(--green-dark) 100%); position: relative; overflow: hidden; }
.section-services::before { content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; border-radius: 50%; background: rgba(39,174,96,0.08); pointer-events: none; }
.section-services::after { content: ''; position: absolute; bottom: -30%; left: -10%; width: 400px; height: 400px; border-radius: 50%; background: rgba(37,99,235,0.06); pointer-events: none; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; position: relative; z-index: 1; }
.service-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 30px; transition: all 0.3s ease; -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); -moz-backdrop-filter: blur(8px); }
.service-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-6px); border-color: rgba(255,255,255,0.15); box-shadow: 0 20px 40px rgba(0,0,0,0.2); }
.service-icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(39,174,96,0.18); display: flex; align-items: center; justify-content: center; color: var(--green); font-size: 22px; margin-bottom: 18px; transition: all 0.3s; }
.service-card:hover .service-icon { background: var(--green); color: var(--white); transform: scale(1.1); }
.service-card h3 { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.service-card p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* ===== PRICING ===== */
.section-pricing { background: var(--white); }
.pricing-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.pricing-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius); overflow: hidden; }
.pricing-table th { background: linear-gradient(135deg, var(--blue), var(--blue-dark)); color: var(--white); padding: 16px 20px; text-align: left; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; white-space: nowrap; }
.pricing-table td { padding: 14px 20px; border-bottom: 1px solid var(--gray-100); font-size: 14px; vertical-align: middle; }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tbody tr { transition: background 0.2s; }
.pricing-table tbody tr:hover td { background: rgba(27,58,107,0.025); }
.pricing-table .price-col { font-weight: 700; color: var(--green); font-size: 15px; }
.pricing-table .cat-badge { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 11px; font-weight: 600; background: rgba(27,58,107,0.06); color: var(--blue); white-space: nowrap; }
.pricing-note { margin-top: 24px; font-size: 13px; color: var(--gray-400); text-align: center; font-style: italic; }

/* ===== CONTACT ===== */
.section-contact { background: var(--gray-50); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-left .section-tag { margin-bottom: 16px; }
.contact-left .section-title { margin-bottom: 16px; }
.contact-left p { color: var(--gray-600); }
.contact-intro { margin-bottom: 32px; font-size: 15px; line-height: 1.75; }
.contact-items { display: flex; flex-direction: column; gap: 22px; }
.contact-item { display: flex; gap: 16px; padding: 14px; border-radius: 12px; transition: background 0.2s; }
.contact-item:hover { background: rgba(27,58,107,0.03); }
.contact-icon { width: 46px; height: 46px; border-radius: 12px; background: rgba(27,58,107,0.07); display: flex; align-items: center; justify-content: center; color: var(--blue); font-size: 17px; flex-shrink: 0; transition: all 0.2s; }
.contact-item:hover .contact-icon { background: var(--blue); color: var(--white); }
.contact-detail h4 { font-size: 13px; font-weight: 700; color: var(--gray-800); margin-bottom: 3px; }
.contact-detail p { font-size: 13px; color: var(--gray-500); line-height: 1.6; }
.contact-detail a { color: var(--green); font-weight: 600; transition: color 0.2s; }
.contact-detail a:hover { color: var(--green-dark); text-decoration: underline; }
.contact-form { background: var(--white); padding: 36px; border-radius: 16px; box-shadow: var(--shadow-md); border: 1px solid var(--gray-100); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form .form-group { margin-bottom: 16px; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 13px 16px; border: 1.5px solid var(--gray-200); border-radius: 10px; font-size: 14px; font-family: inherit; transition: border-color 0.2s, box-shadow 0.2s; background: var(--white); color: var(--gray-700); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--blue-light); box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--gray-400); }
.contact-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 24 24' fill='none' stroke='%239CA3AF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }

/* ===== FOOTER ===== */
.footer { background: linear-gradient(180deg, #0A0F1A 0%, #000 100%); padding: 64px 0 0; color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-logo { height: 56px; margin-bottom: 16px; }
.footer-brand h3 { font-size: 13px; font-weight: 700; color: var(--green); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 1px; }
.footer-brand h3 + .footer-about { margin-top: 8px; }
.footer-tagline { font-size: 11px; color: var(--green); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.footer-about { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.75; }
.footer-col h4 { font-size: 13px; font-weight: 700; margin-bottom: 18px; color: var(--white); }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.4); transition: all 0.2s; display: inline-block; }
.footer-col ul li a:hover { color: var(--green); transform: translateX(3px); }
.footer-contact-list li { display: flex; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 12px; }
.footer-contact-list li i { color: var(--green); width: 16px; margin-top: 3px; flex-shrink: 0; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding: 20px 0; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); margin: 0; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.45); font-size: 15px; transition: all 0.25s; }
.footer-social a:hover { background: var(--green); border-color: var(--green); color: var(--white); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(39,174,96,0.3); }

/* ===== BACK TO TOP ===== */
.back-to-top { position: fixed; bottom: 76px; right: 24px; width: 48px; height: 48px; background: linear-gradient(135deg, var(--green), var(--green-dark)); color: var(--white); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 16px; opacity: 0; visibility: hidden; transition: all 0.3s; z-index: 500; box-shadow: 0 4px 15px rgba(39,174,96,0.3); }
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-4px); box-shadow: 0 8px 25px rgba(39,174,96,0.4); }

/* ===== SCROLL ANIMATION ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-right { flex-direction: row; justify-content: center; }
  .about-card-accent { transform: none; }
  .about-card-accent:hover { transform: translateY(-4px); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 72px 0; }
  .section-title { font-size: 30px; }
  .nav-container { padding: 0 12px; gap: 8px; }
  .nav-logo { display: flex; align-items: center; min-width: 0; flex-shrink: 1; overflow: hidden; margin-left: 0; }
  .nav-logo img { height: 55px; width: 144px; object-fit: contain; object-position: left center; flex-shrink: 0; }
  .nav-right { margin-right: 0; }
  .lang-toggle { font-size: 11px; padding: 5px 10px; gap: 4px; }
  .nav-menu { display: none; position: absolute; top: 68px; left: 0; right: 0; background: rgba(255,255,255,0.98); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); -moz-backdrop-filter: blur(20px); flex-direction: column; padding: 16px 20px; gap: 4px; border-top: 1px solid rgba(0,0,0,0.05); box-shadow: 0 10px 40px rgba(0,0,0,0.12); overflow-y: auto; max-height: calc(100vh - 68px); }
  .nav-menu.active { display: flex; }
  .nav-menu .nav-wa-item { margin-left: 0; margin-top: 12px; }
  .nav-menu .nav-wa-item .btn-wa { width: 100%; justify-content: center; padding: 12px; font-size: 14px; }
  .nav-toggle { display: block; font-size: 18px; padding: 6px; }
  .hero-title { font-size: 34px; }
  .hero-subtitle { font-size: 15px; }
  .hero-content { padding: 100px 20px 60px; }
  .hero-trust { gap: 16px; padding: 16px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-form { padding: 24px; }
}

@media (max-width: 480px) {
  .nav-logo img { height: 40px; max-width: 120px; }
  .hero-title { font-size: 28px; }
  .hero-buttons { flex-direction: column; gap: 12px; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .hero-trust { flex-direction: column; gap: 10px; align-items: flex-start; }
  .section-title { font-size: 26px; }
  .pricing-table th, .pricing-table td { padding: 10px 14px; font-size: 12px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-right { flex-direction: column; }
}

/* ===== WA BANNER ===== */
.wa-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 900; background: linear-gradient(135deg, #1F2937, #111827); padding: 8px 20px; justify-content: center; box-shadow: 0 -2px 20px rgba(0,0,0,0.2); }

/* ===== PROMO GRID ===== */
.promo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.promo-footnote { text-align: center; margin-top: 28px; font-size: 13px; font-style: italic; color: #92400E; }

@media (max-width: 768px) {
  .wa-banner { padding: 6px 16px; }
  .wa-banner .fab { font-size: 22px !important; }
  .wa-banner div[style*="font-size:20px"] { font-size: 17px !important; }
  .promo-grid { grid-template-columns: 1fr; }
}

/* ===== FLYING BADGE ===== */
.flying-badge {
  position: fixed;
  top: 76px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #C0392B, #E74C3C);
  color: #fff;
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  animation: badgeBlink 3s ease-in-out infinite;
  box-shadow: 0 4px 15px rgba(192,57,43,0.3);
}
.flying-badge i { font-size: 16px; animation: spinStar 2s linear infinite; }

@keyframes badgeBlink {
  0% { background: linear-gradient(135deg, #C0392B, #E74C3C); box-shadow: 0 4px 15px rgba(192,57,43,0.3); }
  25% { background: linear-gradient(135deg, #27AE60, #2ECC71); box-shadow: 0 4px 15px rgba(39,174,96,0.3); }
  50% { background: linear-gradient(135deg, #2563EB, #3B82F6); box-shadow: 0 4px 15px rgba(37,99,235,0.3); }
  75% { background: linear-gradient(135deg, #F39C12, #F1C40F); box-shadow: 0 4px 15px rgba(243,156,18,0.3); }
  100% { background: linear-gradient(135deg, #C0392B, #E74C3C); box-shadow: 0 4px 15px rgba(192,57,43,0.3); }
}

@keyframes spinStar {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@media (max-width: 768px) {
  .flying-badge {
    top: 72px;
    font-size: 10px;
    padding: 7px 14px;
    gap: 6px;
  }
  .flying-badge i { font-size: 12px; }
}

/* ===== SELECTION COLOR ===== */
::selection { background: rgba(39,174,96,0.2); color: var(--gray-800); }

/* ===== SCROLLBAR (Webkit) ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gray-400); }
