/* ===== CHATRIVO WEBSITE STYLES ===== */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0d0f1a;
  color: #e0e4f0;
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

/* --- CSS VARIABLES --- */
:root {
  --primary: #6C63FF;
  --secondary: #3CC6F0;
  --accent: #FF6B9D;
  --green: #00D9A3;
  --bg: #0d0f1a;
  --bg2: #12152b;
  --bg3: #1a1e35;
  --card: #181c30;
  --border: rgba(255,255,255,0.07);
  --text: #e0e4f0;
  --muted: #888eaa;
  --radius: 16px;
  --shadow: 0 20px 60px rgba(0,0,0,0.4);
  --glow: 0 0 40px rgba(108,99,255,0.3);
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* --- NAVBAR --- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 15px 0;
  transition: all 0.3s ease;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(13,15,26,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 20px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-wrap {
  width: 38px; height: 38px; border-radius: 10px; overflow: hidden;
  flex-shrink: 0;
}
.logo-img { width: 38px; height: 38px; border-radius: 10px; object-fit: cover; display: block; }
.logo-fallback {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 18px;
}
.logo-text { font-size: 20px; font-weight: 800; background: linear-gradient(135deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.nav-links { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.nav-links a { padding: 8px 14px; border-radius: 10px; font-size: 14px; font-weight: 500; color: var(--muted); transition: all 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); background: var(--bg3); }
.btn-nav-download {
  display: flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff; padding: 10px 20px; border-radius: 25px;
  font-size: 14px; font-weight: 600; white-space: nowrap;
  transition: all 0.3s; box-shadow: 0 4px 20px rgba(108,99,255,0.4);
}
.btn-nav-download:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(108,99,255,0.5); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

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

/* --- BUTTONS --- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff; padding: 15px 30px; border-radius: 50px;
  font-weight: 700; font-size: 15px; transition: all 0.3s;
  box-shadow: 0 8px 30px rgba(108,99,255,0.4);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(108,99,255,0.5); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  border: 2px solid rgba(108,99,255,0.5); color: var(--text);
  padding: 13px 28px; border-radius: 50px;
  font-weight: 600; font-size: 15px; transition: all 0.3s;
  backdrop-filter: blur(10px);
}
.btn-outline:hover { border-color: var(--primary); background: rgba(108,99,255,0.1); transform: translateY(-2px); }

/* --- GRADIENT TEXT --- */
.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.gradient-text-light {
  background: linear-gradient(135deg, #a78bfa, #67e8f9);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

/* --- SECTION BADGE --- */
.section-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(108,99,255,0.15); border: 1px solid rgba(108,99,255,0.3);
  color: #a78bfa; padding: 6px 16px; border-radius: 20px;
  font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 16px;
}
.section-badge.light { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); color: #fff; }

/* --- SECTION HEADER --- */
.section-header { text-align: center; max-width: 600px; margin: 0 auto 60px; }
.section-header h2 { font-size: 42px; font-weight: 800; margin-bottom: 12px; line-height: 1.2; }
.section-header p { color: var(--muted); font-size: 16px; }

/* --- ORB BACKGROUNDS --- */
.hero-bg-orbs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.25; animation: orb-float 8s ease-in-out infinite; }
.orb1 { width: 500px; height: 500px; background: var(--primary); top: -200px; left: -100px; }
.orb2 { width: 400px; height: 400px; background: var(--secondary); bottom: -150px; right: -100px; animation-delay: 3s; }
.orb3 { width: 300px; height: 300px; background: var(--accent); top: 50%; left: 50%; transform: translate(-50%,-50%); animation-delay: 6s; }
@keyframes orb-float { 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(-30px) scale(1.05)} }

/* --- HERO --- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 0 80px; background: var(--bg); overflow: hidden;
}
.hero-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,217,163,0.1); border: 1px solid rgba(0,217,163,0.3);
  color: var(--green); padding: 8px 18px; border-radius: 20px;
  font-size: 13px; font-weight: 600; margin-bottom: 24px;
}
.hero-title { font-size: 56px; font-weight: 900; line-height: 1.1; margin-bottom: 20px; color: var(--text); }
.hero-desc { color: var(--muted); font-size: 17px; margin-bottom: 36px; line-height: 1.7; max-width: 500px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; align-items: center; gap: 20px; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-size: 22px; font-weight: 800; color: var(--text); }
.stat-label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* --- PHONE MOCKUP --- */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.phone-mockup {
  width: 280px; background: var(--card); border-radius: 40px; padding: 20px;
  border: 1px solid var(--border); box-shadow: var(--shadow), var(--glow);
  position: relative; z-index: 2; animation: phone-float 4s ease-in-out infinite;
}
@keyframes phone-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-15px)} }
.phone-screen { background: var(--bg2); border-radius: 28px; padding: 15px; overflow: hidden; }
.phone-header { display: flex; align-items: center; gap: 10px; padding-bottom: 12px; border-bottom: 1px solid var(--border); margin-bottom: 12px; }
.ph-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--secondary)); flex-shrink: 0; }
.ph-info { flex: 1; }
.ph-name { display: block; font-size: 14px; font-weight: 600; }
.ph-status { display: block; font-size: 11px; color: var(--green); }
.ph-icons { display: flex; gap: 12px; color: var(--primary); font-size: 14px; }
.phone-messages { display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }
.msg-bubble { padding: 8px 12px; border-radius: 14px; font-size: 12px; max-width: 85%; }
.msg-bubble.received { background: var(--bg3); align-self: flex-start; border-bottom-left-radius: 4px; }
.msg-bubble.sent { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.phone-input { display: flex; align-items: center; justify-content: space-between; background: var(--bg3); border-radius: 20px; padding: 8px 14px; font-size: 11px; color: var(--muted); }

/* --- FLOATING CARDS --- */
.floating-card {
  position: absolute; background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px); border: 1px solid var(--border);
  padding: 10px 16px; border-radius: 12px; font-size: 12px; font-weight: 600;
  white-space: nowrap; display: flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}
.floating-card i { color: var(--primary); }
.card1 { top: 5%; right: -10%; animation: fc-float 3s ease-in-out infinite; }
.card2 { top: 40%; left: -15%; animation: fc-float 3s ease-in-out infinite 1s; }
.card3 { bottom: 10%; right: -5%; animation: fc-float 3s ease-in-out infinite 2s; }
@keyframes fc-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* --- FEATURES SECTION --- */
.features-section { padding: 100px 0; background: var(--bg2); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.feature-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px; transition: all 0.3s; cursor: default;
}
.feature-card:hover { transform: translateY(-8px); border-color: rgba(108,99,255,0.4); box-shadow: 0 20px 50px rgba(108,99,255,0.15); }
.feature-icon { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 20px; }
.feature-icon.blue   { background: rgba(108,99,255,0.15); color: var(--primary); }
.feature-icon.green  { background: rgba(0,217,163,0.15);  color: var(--green); }
.feature-icon.purple { background: rgba(139,92,246,0.15); color: #8b5cf6; }
.feature-icon.red    { background: rgba(255,107,107,0.15);color: #ff6b6b; }
.feature-icon.orange { background: rgba(255,165,0,0.15);  color: orange; }
.feature-icon.pink   { background: rgba(255,107,157,0.15);color: var(--accent); }
.feature-icon.cyan   { background: rgba(60,198,240,0.15); color: var(--secondary); }
.feature-icon.yellow { background: rgba(255,220,0,0.15);  color: #ffd700; }
.feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.feature-card p  { color: var(--muted); font-size: 14px; line-height: 1.6; }

/* --- WHY SECTION --- */
.why-section { padding: 100px 0; background: var(--bg); }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-content h2 { font-size: 42px; font-weight: 800; margin-bottom: 16px; line-height: 1.2; }
.why-content > p { color: var(--muted); font-size: 16px; margin-bottom: 32px; }
.why-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.why-list li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--text); }
.why-list li i { color: var(--green); font-size: 16px; flex-shrink: 0; }
.why-card-stack { position: relative; height: 320px; }
.wc {
  position: absolute; background: var(--card); border: 1px solid var(--border); border-radius: 20px;
  padding: 20px 24px; display: flex; align-items: center; gap: 14px;
  font-weight: 600; font-size: 15px; box-shadow: var(--shadow); transition: all 0.3s;
}
.wc i { font-size: 24px; }
.wc1 { top:0;   left:0;   right:30px; color:var(--primary);   animation: wc-float 4s ease-in-out infinite 0s; } .wc1 i{color:var(--primary);}
.wc2 { top:90px; left:30px; right:0;  color:var(--secondary); animation: wc-float 4s ease-in-out infinite 1s; } .wc2 i{color:var(--secondary);}
.wc3 { top:180px;left:0;   right:30px;color:var(--accent);    animation: wc-float 4s ease-in-out infinite 2s; } .wc3 i{color:var(--accent);}
.wc4 { top:270px;left:30px;right:0;   color:var(--green);     animation: wc-float 4s ease-in-out infinite 3s; } .wc4 i{color:var(--green);}
@keyframes wc-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* --- DOWNLOAD SECTION --- */
.download-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0d0f1a 0%, #1a1260 50%, #0d0f1a 100%);
  position: relative; overflow: hidden;
}
.download-inner { display: grid; grid-template-columns: 1fr auto; gap: 80px; align-items: center; }
.download-content h2 { font-size: 48px; font-weight: 900; margin-bottom: 16px; color: #fff; }
.download-content > p { color: rgba(255,255,255,0.7); font-size: 16px; margin-bottom: 36px; }
.download-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.btn-download {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px); padding: 14px 24px; border-radius: 16px; color: #fff; transition: all 0.3s;
}
.btn-download:hover { background: rgba(255,255,255,0.2); transform: translateY(-3px); }
.btn-download i { font-size: 28px; color: var(--secondary); }
.btn-download.apk i { color: var(--green); }
.btn-download small { display: block; font-size: 11px; color: rgba(255,255,255,0.6); }
.btn-download strong { display: block; font-size: 15px; }
.download-note { color: rgba(255,255,255,0.5); font-size: 13px; }
.download-note i { color: var(--secondary); margin-right: 6px; }
.download-logo { position: relative; width: 200px; height: 200px; display: flex; align-items: center; justify-content: center; }
.dl-logo { width: 130px; height: 130px; border-radius: 30px; position: relative; z-index: 2; object-fit: cover; display: block; }
.dl-logo-fallback {
  width: 130px; height: 130px; border-radius: 30px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 52px; position: relative; z-index: 2;
}
.dl-ring { position: absolute; inset: -20px; border-radius: 50%; border: 2px solid rgba(108,99,255,0.3); animation: ring-pulse 2s ease-in-out infinite; }
.dl-ring.ring2 { inset: -40px; animation-delay: 1s; }
@keyframes ring-pulse { 0%,100%{transform:scale(1);opacity:.5} 50%{transform:scale(1.05);opacity:1} }

/* --- FOOTER --- */
.footer { background: #080a14; border-top: 1px solid var(--border); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { color: var(--muted); font-size: 14px; margin-top: 12px; line-height: 1.6; }
.footer-links h4 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text); margin-bottom: 16px; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--muted); font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: var(--muted); font-size: 13px; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: var(--muted); font-size: 13px; transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--primary); }

/* --- LEGAL PAGES --- */
.legal-hero { position: relative; padding: 140px 0 70px; background: var(--bg); text-align: center; overflow: hidden; }
.legal-hero-content { position: relative; z-index: 1; }
.legal-icon {
  width: 80px; height: 80px; border-radius: 24px; margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; color: #fff; box-shadow: 0 20px 50px rgba(108,99,255,0.4);
}
.terms-hero .legal-icon   { background: linear-gradient(135deg, #f59e0b, #ef4444); box-shadow: 0 20px 50px rgba(245,158,11,0.4); }
.contact-hero .legal-icon { background: linear-gradient(135deg, var(--green), var(--secondary)); box-shadow: 0 20px 50px rgba(0,217,163,0.4); }
.legal-hero h1 { font-size: 48px; font-weight: 900; margin-bottom: 12px; }
.legal-hero p  { color: var(--muted); font-size: 15px; }

.legal-body { padding: 60px 0 80px; background: var(--bg2); }
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-toc { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 32px; margin-bottom: 48px; }
.legal-toc h3 { font-size: 15px; font-weight: 700; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; color: var(--primary); }
.legal-toc ol { padding-left: 20px; display: flex; flex-direction: column; gap: 8px; }
.legal-toc a { color: var(--muted); font-size: 14px; transition: color 0.2s; }
.legal-toc a:hover { color: var(--primary); }
.legal-intro { background: rgba(108,99,255,0.08); border-left: 4px solid var(--primary); border-radius: 0 12px 12px 0; padding: 20px 24px; margin-bottom: 40px; color: var(--text); font-size: 15px; line-height: 1.7; }
.legal-section { display: flex; gap: 24px; margin-bottom: 48px; }
.ls-num { font-size: 48px; font-weight: 900; color: rgba(108,99,255,0.15); line-height: 1; flex-shrink: 0; width: 64px; text-align: right; }
.ls-body { flex: 1; }
.ls-body h2 { font-size: 22px; font-weight: 800; margin-bottom: 12px; color: var(--text); }
.ls-body h4 { font-size: 15px; font-weight: 700; margin: 16px 0 8px; color: var(--primary); }
.ls-body p  { color: var(--muted); font-size: 15px; line-height: 1.7; margin-bottom: 12px; }
.ls-body ul { padding-left: 0; display: flex; flex-direction: column; gap: 8px; }
.ls-body ul li { padding: 8px 12px 8px 32px; position: relative; background: var(--card); border-radius: 8px; color: var(--muted); font-size: 14px; }
.ls-body ul li::before { content: '✓'; position: absolute; left: 10px; color: var(--green); font-weight: 700; }
.highlight-box { padding: 16px 20px; border-radius: 12px; display: flex; align-items: flex-start; gap: 12px; font-size: 14px; line-height: 1.6; margin-top: 12px; }
.highlight-box.green { background: rgba(0,217,163,0.1); border: 1px solid rgba(0,217,163,0.3); color: #6effe8; }
.highlight-box.blue  { background: rgba(108,99,255,0.1); border: 1px solid rgba(108,99,255,0.3); color: #a78bfa; }
.highlight-box i { flex-shrink: 0; margin-top: 2px; }
.contact-block { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 20px 24px; margin: 12px 0; }
.contact-block p { margin-bottom: 8px; }
.contact-block a { color: var(--primary); }

/* --- CONTACT PAGE (simple) --- */
.contact-section { padding: 60px 0 80px; background: var(--bg2); }

.contact-simple {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-bottom: 48px;
}
.contact-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 24px; padding: 36px 30px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 16px; transition: all 0.3s;
}
.contact-card:hover { transform: translateY(-6px); border-color: rgba(108,99,255,0.4); box-shadow: 0 20px 50px rgba(108,99,255,0.12); }
.cc-icon {
  width: 64px; height: 64px; border-radius: 20px;
  background: rgba(108,99,255,0.15); color: var(--primary);
  display: flex; align-items: center; justify-content: center; font-size: 26px;
}
.cc-icon.green  { background: rgba(0,217,163,0.15); color: var(--green); }
.cc-icon.purple { background: rgba(139,92,246,0.15); color: #8b5cf6; }
.contact-card h3 { font-size: 18px; font-weight: 700; }
.contact-card p  { color: var(--muted); font-size: 14px; line-height: 1.6; flex: 1; }

.contact-email-banner {
  background: linear-gradient(135deg, rgba(108,99,255,0.15), rgba(60,198,240,0.1));
  border: 1px solid rgba(108,99,255,0.25); border-radius: 24px; padding: 36px 40px;
}
.ceb-inner {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.ceb-inner > i { font-size: 40px; color: var(--primary); flex-shrink: 0; }
.ceb-inner > div { flex: 1; }
.ceb-inner h4 { font-size: 20px; font-weight: 800; margin-bottom: 4px; }
.ceb-inner p  { color: var(--muted); font-size: 14px; }
.ceb-inner a  { color: var(--primary); font-weight: 600; }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 50px; text-align: center; }
  .hero-visual { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-desc { margin: 0 auto 36px; }
  .why-inner { grid-template-columns: 1fr; }
  .why-card-stack { display: none; }
  .download-inner { grid-template-columns: 1fr; text-align: center; }
  .download-logo { margin: 0 auto; }
  .download-buttons { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-simple { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .btn-nav-download { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 70px; left: 0; right: 0;
    background: rgba(13,15,26,0.98); backdrop-filter: blur(20px);
    padding: 20px 24px; border-bottom: 1px solid var(--border);
  }
  .hero-title { font-size: 38px; }
  .section-header h2 { font-size: 32px; }
  .legal-hero h1 { font-size: 34px; }
  .legal-section { flex-direction: column; gap: 8px; }
  .ls-num { font-size: 28px; width: auto; text-align: left; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .floating-card { display: none; }
  .contact-simple { grid-template-columns: 1fr; }
  .ceb-inner { flex-direction: column; text-align: center; }
}