/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: #0a0a0f; color: #e2e8f0; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== VARIABLES ===== */
:root {
  --primary: #f59e0b;
  --primary-dark: #d97706;
  --accent: #8b5cf6;
  --accent2: #06b6d4;
  --bg-dark: #0a0a0f;
  --bg-card: #13131a;
  --bg-card2: #1a1a2e;
  --border: rgba(255,255,255,0.08);
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --gold: #f59e0b;
  --radius: 16px;
  --shadow: 0 4px 32px rgba(0,0,0,0.4);
  --transition: 0.3s ease;
}

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 20px;
  transition: var(--transition);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { font-size: 1.6rem; font-weight: 900; letter-spacing: -1px; }
.logo-y { color: var(--primary); }
.logo-w { color: #fff; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--text-muted); transition: color var(--transition); }
.nav-links a:hover { color: #fff; }
.nav-cta {
  background: var(--primary); color: #000 !important; font-weight: 700 !important;
  padding: 8px 18px; border-radius: 8px; transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--primary-dark) !important; }
.hamburger { display: none; font-size: 1.5rem; background: none; border: none; color: #fff; cursor: pointer; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 100px 20px 40px;
  position: relative; overflow: hidden;
  background: radial-gradient(ellipse at 30% 50%, rgba(139,92,246,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 20%, rgba(245,158,11,0.1) 0%, transparent 50%),
              var(--bg-dark);
}
.hero-bg-orbs { position: absolute; inset: 0; pointer-events: none; }
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.3; animation: float 8s ease-in-out infinite;
}
.orb1 { width: 400px; height: 400px; background: var(--accent); top: -100px; left: -100px; animation-delay: 0s; }
.orb2 { width: 300px; height: 300px; background: var(--primary); top: 50%; right: -80px; animation-delay: 3s; }
.orb3 { width: 250px; height: 250px; background: var(--accent2); bottom: -80px; left: 30%; animation-delay: 6s; }
@keyframes float {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

/* Hero 2-column grid */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  z-index: 1;
  width: 100%;
}
.hero-content { text-align: left; z-index: 1; max-width: 620px; }
.badge-pill {
  display: inline-block; background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.3); color: var(--primary);
  padding: 6px 18px; border-radius: 100px; font-size: 0.85rem; font-weight: 600;
  margin-bottom: 24px; animation: fadeInDown 0.6s ease;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 900;
  line-height: 1.1; margin-bottom: 20px; letter-spacing: -1px;
  animation: fadeInUp 0.7s ease 0.1s both;
}
.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, #f97316 50%, var(--accent) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
  font-size: 1.05rem; color: var(--text-muted); max-width: 520px;
  margin: 0 0 32px; animation: fadeInUp 0.7s ease 0.2s both;
}
.hero-actions { display: flex; gap: 14px; justify-content: flex-start; flex-wrap: wrap; margin-bottom: 40px; animation: fadeInUp 0.7s ease 0.3s both; }
.hero-stats { display: flex; align-items: center; justify-content: flex-start; gap: 0; animation: fadeInUp 0.7s ease 0.4s both; }
.stat { text-align: center; padding: 0 24px; }
.stat:first-child { padding-left: 0; }
.stat-num { display: block; font-size: 1.6rem; font-weight: 800; color: var(--primary); }
.stat-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* Hero Image */
.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInUp 0.8s ease 0.3s both;
}
.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 540px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
  animation: heroImgFloat 6s ease-in-out infinite;
}
.hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 2 / 1;
  border-radius: 20px;
}
.hero-image-glow {
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(245,158,11,0.25), rgba(139,92,246,0.2), rgba(6,182,212,0.15));
  z-index: -1;
  filter: blur(20px);
  opacity: 0.6;
}
@keyframes heroImgFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-scroll-hint { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); color: var(--text-muted); font-size: 0.85rem; animation: bounce 2s infinite; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 12px; font-weight: 700;
  font-size: 0.95rem; transition: all var(--transition); cursor: pointer; border: none;
}
.btn-primary { background: linear-gradient(135deg, var(--primary), #f97316); color: #000; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,158,11,0.4); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-outline-light { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5); }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); }
.btn-gold { background: linear-gradient(135deg, #f59e0b, #f97316); color: #000; font-size: 1.05rem; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(245,158,11,0.5); }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-light { background: #0d0d14; }
.section-dark { background: #07070c; }
.section-gradient { background: linear-gradient(135deg, #0f0c1a 0%, #0a1628 100%); }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section-header.light .section-title, .section-header.light .section-desc { color: var(--text); }
.tag {
  display: inline-block; background: rgba(139,92,246,0.15); color: var(--accent);
  border: 1px solid rgba(139,92,246,0.3); padding: 4px 14px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px;
}
.tag-dark { background: rgba(245,158,11,0.15); color: var(--primary); border-color: rgba(245,158,11,0.3); }
.tag-gold { background: rgba(245,158,11,0.2); color: var(--primary); border-color: rgba(245,158,11,0.4); }
.section-title { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; margin-bottom: 16px; color: #fff; }
.section-desc { color: var(--text-muted); font-size: 1rem; }
.section-desc.light { color: #94a3b8; }

/* ===== CARDS GRID ===== */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  transition: all var(--transition);
}
.card:hover { transform: translateY(-4px); border-color: rgba(139,92,246,0.3); box-shadow: 0 12px 40px rgba(139,92,246,0.1); }
.card-icon { font-size: 2rem; margin-bottom: 14px; }
.card h3 { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.card p { color: var(--text-muted); font-size: 0.9rem; }

/* ===== STEPS ===== */
.steps { display: flex; flex-direction: column; gap: 24px; max-width: 700px; margin: 0 auto 40px; }
.step { display: flex; gap: 24px; align-items: flex-start; }
.step-num {
  min-width: 56px; height: 56px; background: linear-gradient(135deg, var(--primary), #f97316);
  color: #000; font-weight: 900; font-size: 1.1rem; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.step-body h3 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.step-body p { color: var(--text-muted); font-size: 0.9rem; }

/* ===== TWO COL ===== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.col-text .tag { display: inline-block; }
.col-text p { color: var(--text-muted); margin-bottom: 16px; }
.col-text .mt-1 { margin-top: 4px; }
.col-text .mt-2 { margin-top: 16px; display: inline-flex; }
.check-list { display: flex; flex-direction: column; gap: 8px; margin: 16px 0; }
.check-list li { color: var(--text-muted); font-size: 0.92rem; }
.link { color: var(--primary); font-weight: 600; }
.link:hover { text-decoration: underline; }

/* ===== PHONE MOCKUP ===== */
.col-img { display: flex; justify-content: center; }
.phone-mockup {
  width: 240px; height: 420px; background: #111; border-radius: 36px;
  border: 3px solid #333; padding: 20px 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
  position: relative; overflow: hidden;
}
.phone-screen { background: linear-gradient(135deg, #1a1a2e, #0f3460); border-radius: 24px; height: 100%; padding: 24px 16px; }
.app-ui { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.app-logo-mini { font-size: 1rem; font-weight: 800; color: var(--primary); }
.app-field { background: rgba(255,255,255,0.08); border-radius: 8px; padding: 10px 14px; width: 100%; font-size: 0.78rem; color: #94a3b8; }
.app-btn-mock { background: linear-gradient(135deg, var(--primary), #f97316); color: #000; padding: 10px 24px; border-radius: 8px; font-weight: 700; font-size: 0.85rem; width: 100%; text-align: center; }
.app-link-mock { color: var(--accent2); font-size: 0.75rem; }

/* ===== REFER GRID ===== */
.refer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-bottom: 40px; }
.refer-card { background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; text-align: center; }
.refer-card-highlight { background: rgba(245,158,11,0.08); border-color: rgba(245,158,11,0.3); }
.refer-icon { font-size: 2.4rem; margin-bottom: 12px; }
.refer-card h3 { color: #fff; font-weight: 700; margin-bottom: 8px; }
.refer-card p { color: var(--text-muted); font-size: 0.9rem; }
.commission-box { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; max-width: 600px; margin: 0 auto; }
.commission-box h3 { color: var(--primary); font-size: 1.1rem; font-weight: 700; margin-bottom: 20px; text-align: center; }
.commission-table { display: flex; flex-direction: column; gap: 0; }
.com-row { display: grid; grid-template-columns: 2fr 1fr 1.5fr; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.com-row.header { color: var(--text-muted); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.com-row:last-child { border-bottom: none; }
.com-row .highlight { color: var(--primary); font-weight: 700; }

/* ===== COMPARE TABLE ===== */
.table-wrap { overflow-x: auto; }
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.compare-table th { background: rgba(255,255,255,0.05); padding: 14px 18px; text-align: center; font-size: 0.85rem; font-weight: 600; color: #fff; }
.compare-table td { padding: 14px 18px; text-align: center; border-bottom: 1px solid var(--border); color: var(--text-muted); }
.highlight-col { background: rgba(245,158,11,0.08) !important; color: var(--primary) !important; font-weight: 700; }
.compare-table tr:hover td { background: rgba(255,255,255,0.02); }

/* ===== FAQ ===== */
.faq-list { max-width: 750px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden; cursor: pointer;
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: rgba(139,92,246,0.3); }
.faq-item.open { border-color: rgba(245,158,11,0.3); }
.faq-q { padding: 18px 20px; font-weight: 600; color: #fff; display: flex; justify-content: space-between; align-items: center; font-size: 0.95rem; }
.faq-icon { font-size: 1.2rem; color: var(--primary); transition: transform var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 20px 18px; color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* ===== CTA SECTION ===== */
.cta-section { background: linear-gradient(135deg, #0f0c1a 0%, #1a0f2e 100%); position: relative; overflow: hidden; }
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(245,158,11,0.08) 0%, transparent 70%);
}
.cta-inner { text-align: center; position: relative; z-index: 1; }
.cta-inner h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; color: #fff; margin-bottom: 16px; }
.cta-inner p { color: var(--text-muted); margin-bottom: 32px; font-size: 1rem; }
.disclaimer { margin-top: 24px !important; font-size: 0.78rem !important; color: #475569 !important; }
.cta-center { text-align: center; }
.mt-2 { margin-top: 24px; }

/* ===== FOOTER ===== */
.footer { background: #05050a; border-top: 1px solid var(--border); padding: 60px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-brand .logo { font-size: 1.4rem; margin-bottom: 12px; }
.footer-brand p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.7; }
.footer-links h4 { color: #fff; font-weight: 700; margin-bottom: 16px; font-size: 0.9rem; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--text-muted); font-size: 0.85rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid var(--border); padding: 20px 0; text-align: center; }
.footer-bottom p { color: #475569; font-size: 0.8rem; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 120px 20px 60px; text-align: center;
  background: radial-gradient(ellipse at 50% 0%, rgba(139,92,246,0.15) 0%, transparent 70%), var(--bg-dark);
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; color: #fff; margin-bottom: 16px; }
.page-hero p { color: var(--text-muted); max-width: 600px; margin: 0 auto 28px; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; font-size: 0.82rem; color: var(--text-muted); margin-bottom: 20px; }
.breadcrumb a { color: var(--primary); }
.breadcrumb span { color: #475569; }

/* ===== CONTENT SECTION ===== */
.content-section { padding: 60px 0; background: #0d0d14; }
.content-wrap { max-width: 800px; margin: 0 auto; }
.content-wrap h2 { font-size: 1.5rem; font-weight: 800; color: #fff; margin: 32px 0 12px; }
.content-wrap h3 { font-size: 1.15rem; font-weight: 700; color: var(--primary); margin: 24px 0 10px; }
.content-wrap p { color: var(--text-muted); margin-bottom: 14px; line-height: 1.8; }
.content-wrap ul { color: var(--text-muted); padding-left: 20px; margin-bottom: 14px; display: flex; flex-direction: column; gap: 6px; }
.content-wrap ul li { list-style: disc; font-size: 0.93rem; line-height: 1.7; }

/* ===== INFO BOX ===== */
.info-box { background: rgba(245,158,11,0.08); border: 1px solid rgba(245,158,11,0.2); border-radius: 12px; padding: 20px 24px; margin: 20px 0; }
.info-box p { color: #e2e8f0 !important; margin: 0 !important; }
.warning-box { background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.2); border-radius: 12px; padding: 20px 24px; margin: 20px 0; }
.warning-box p { color: #fca5a5 !important; margin: 0 !important; }

/* ===== DOWNLOAD CARD ===== */
.download-card {
  background: linear-gradient(135deg, rgba(245,158,11,0.1), rgba(139,92,246,0.1));
  border: 1px solid rgba(245,158,11,0.3); border-radius: 20px; padding: 40px;
  text-align: center; margin: 40px auto; max-width: 500px;
}
.download-card .apk-icon { font-size: 4rem; margin-bottom: 16px; }
.download-card h2 { color: #fff; font-size: 1.4rem; margin-bottom: 8px; }
.download-card p { color: var(--text-muted); margin-bottom: 24px; font-size: 0.9rem; }
.apk-meta { display: flex; gap: 24px; justify-content: center; margin-top: 20px; }
.apk-meta span { color: var(--text-muted); font-size: 0.8rem; }
.apk-meta strong { color: var(--primary); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }

/* ===== SCROLLED NAVBAR ===== */
.navbar.scrolled { background: rgba(10,10,15,0.98); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero { min-height: auto; padding: 90px 20px 40px; }
  .hero-content { text-align: center; max-width: 100%; }
  .hero-sub { margin: 0 auto 24px; max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .stat:first-child { padding-left: 20px; }
  .hero-image { order: -1; }
  .hero-image-wrapper { max-width: 420px; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .col-img { order: -1; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hamburger { display: block; }
  .nav-links {
    display: none; flex-direction: column; position: absolute;
    top: 64px; left: 0; right: 0; background: #0a0a0f;
    border-bottom: 1px solid var(--border); padding: 20px; gap: 16px;
  }
  .nav-links.open { display: flex; }
  .hero { padding: 80px 16px 32px; }
  .hero-grid { gap: 24px; }
  .hero-title { font-size: clamp(1.6rem, 6vw, 2.4rem); margin-bottom: 14px; }
  .hero-sub { font-size: 0.95rem; margin-bottom: 20px; }
  .hero-actions { gap: 10px; margin-bottom: 28px; }
  .hero-actions .btn { padding: 12px 20px; font-size: 0.85rem; }
  .hero-stats { gap: 0; flex-wrap: wrap; }
  .stat { padding: 0 14px; }
  .stat-num { font-size: 1.2rem; }
  .stat-label { font-size: 0.7rem; }
  .hero-image-wrapper { max-width: 360px; border-radius: 14px; }
  .hero-image-wrapper img { border-radius: 14px; }
  .hero-scroll-hint { display: none; }
  .badge-pill { font-size: 0.78rem; padding: 5px 14px; margin-bottom: 16px; }
  .cards-grid { grid-template-columns: 1fr; }
  .steps { padding: 0 10px; }
}
@media (max-width: 600px) {
  .hero { padding: 76px 14px 28px; }
  .hero-grid { gap: 20px; }
  .hero-title { font-size: clamp(1.5rem, 7vw, 2rem); }
  .hero-sub { font-size: 0.9rem; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-actions .btn { width: 100%; justify-content: center; padding: 13px 16px; font-size: 0.88rem; }
  .hero-image-wrapper { max-width: 100%; border-radius: 12px; }
  .hero-image-wrapper img { border-radius: 12px; aspect-ratio: 16 / 8; }
  .stat { padding: 0 12px; }
  .stat:first-child { padding-left: 12px; }
  .stat-num { font-size: 1.1rem; }
  .stat-divider { height: 30px; }
  .footer-inner { grid-template-columns: 1fr; }
  .com-row { font-size: 0.78rem; }
  .compare-table th, .compare-table td { padding: 10px 12px; font-size: 0.78rem; }
  .commission-box { padding: 20px; }
}
@media (max-width: 400px) {
  .hero { padding: 72px 12px 24px; }
  .hero-title { font-size: 1.4rem; letter-spacing: -0.5px; }
  .hero-sub { font-size: 0.85rem; margin-bottom: 18px; }
  .badge-pill { font-size: 0.72rem; padding: 4px 12px; margin-bottom: 12px; }
  .hero-actions .btn { padding: 12px 14px; font-size: 0.82rem; border-radius: 10px; }
  .hero-stats { gap: 0; }
  .stat { padding: 0 8px; }
  .stat:first-child { padding-left: 8px; }
  .stat-num { font-size: 1rem; }
  .stat-label { font-size: 0.65rem; letter-spacing: 0.5px; }
  .stat-divider { height: 24px; }
  .hero-image-wrapper img { aspect-ratio: 16 / 9; }
}

/* ===== TELEGRAM BUTTON ===== */
.btn-telegram {
  background: #229ED9;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-telegram:hover {
  background: #1a8bc4;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(34,158,217,0.4);
  color: #fff;
}

/* ===== FLOATING TELEGRAM BUTTON ===== */
.tg-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 999;
  background: #229ED9;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 24px rgba(34,158,217,0.5);
  transition: all 0.3s ease;
  text-decoration: none;
  animation: tgPulse 2.5s ease-in-out infinite;
}
.tg-float:hover {
  background: #1a8bc4;
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(34,158,217,0.6);
}
.tg-float-label { white-space: nowrap; }

@keyframes tgPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(34,158,217,0.5); }
  50% { box-shadow: 0 4px 36px rgba(34,158,217,0.8); }
}

@media (max-width: 480px) {
  .tg-float-label { display: none; }
  .tg-float { padding: 14px; border-radius: 50%; }
}

