/* ============================================================
   SEOTECH INDONESIA — css/site.css
   PUBLIC WEBSITE — Enterprise Technology 2026
   Clean, No Duplication, Mobile-First
   ============================================================ */
   
#rotating-text::after {
  content: "|";
  animation: blink 0.8s step-end infinite;
  margin-left: 2px;
  font-weight: 300;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
@media (max-width: 768px) {
  #rotating-text { min-width: 200px; font-size: 0.85rem; }
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #050b14;
  color: #eef2ff;
  line-height: 1.6;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }
ul { list-style: none; }
address { font-style: normal; }

/* ── LAYOUT ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: 40px;
  font-size: 0.85rem; font-weight: 600;
  transition: all 0.2s; cursor: pointer;
  border: 1.5px solid transparent; white-space: nowrap;
  text-decoration: none;
}
.btn-sm { padding: 7px 16px; font-size: 0.78rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-primary { background: #2dd4bf; color: #0a0f1c; border-color: #2dd4bf; }
.btn-primary:hover { background: #14b8a6; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(45,212,191,0.25); }
.btn-outline { background: transparent; color: #2dd4bf; border-color: #2dd4bf; }
.btn-outline:hover { background: rgba(45,212,191,0.1); }
.btn-ghost { background: transparent; color: #94a3b8; }
.btn-ghost:hover { color: #eef2ff; background: rgba(255,255,255,0.05); }
.btn-wa { background: #25D366; color: #fff; border-color: #25D366; }
.btn-wa:hover { background: #1db954; transform: translateY(-1px); }

/* ── TOPBAR ── */
.topbar {
  background: #0a0f1c;
  border-bottom: 1px solid #1e2a3a;
  padding: 8px 0;
  font-size: 0.75rem;
}
.topbar-inner {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px;
}
.topbar-msg { color: #94a3b8; }
.topbar-msg a { color: #2dd4bf; font-weight: 500; }
.topbar-msg a:hover { text-decoration: underline; }
.topbar-links { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar-links a { color: #94a3b8; transition: color 0.15s; }
.topbar-links a:hover { color: #eef2ff; }

/* ── NAVBAR (GLASS EFFECT) ── */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(5, 11, 20, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(45,212,191,0.1);
  padding: 12px 0;
  transition: all 0.3s;
}
.site-nav.scrolled {
  background: rgba(5, 11, 20, 0.95);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; font-size: 1.1rem;
  flex-shrink: 0;
}
.nav-logo img { width: 36px; height: 36px; border-radius: 8px; object-fit: cover; }
.logo-dot { color: #2dd4bf; }

.nav-links {
  display: flex; gap: 4px; align-items: center;
  flex: 1; justify-content: center;
}
.nav-links a {
  padding: 8px 14px; border-radius: 8px;
  font-size: 0.88rem; font-weight: 500;
  color: #cbd5e6; transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  color: #2dd4bf; background: rgba(45,212,191,0.08);
}

.nav-cta { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; border-radius: 8px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: #eef2ff; border-radius: 2px;
  transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed; top: 64px; left: 0; right: 0;
  background: #0f172a; z-index: 99;
  padding: 20px 24px;
  transform: translateY(-120%);
  transition: transform 0.3s;
  border-top: 1px solid #1e2a3a;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  max-height: calc(100vh - 64px);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  display: block; padding: 14px 0;
  color: #eef2ff; font-weight: 500;
  border-bottom: 1px solid #1e2a3a;
}
.mobile-menu a:last-child { border-bottom: none; }

/* ── HERO ── */
.hero { padding: 60px 0 80px; position: relative; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(45,212,191,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(99,102,241,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(45,212,191,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45,212,191,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
  pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 50px; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(45,212,191,0.1);
  border: 1px solid rgba(45,212,191,0.3);
  padding: 6px 16px; border-radius: 40px;
  margin-bottom: 20px;
  font-size: 0.75rem; font-weight: 600;
  color: #2dd4bf;
}
.hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800; line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-accent { color: #2dd4bf !important; -webkit-text-fill-color: #2dd4bf !important; }
.hero-desc {
  font-size: 1rem; color: #94a3b8;
  margin-bottom: 28px; max-width: 560px; line-height: 1.75;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-trust { display: flex; gap: 20px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; color: #cbd5e6; }

/* Dashboard Mockup */
.dashboard-mockup {
  background: #0f172a;
  border: 1px solid #2d3a4a;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.mockup-bar {
  background: #1e293b;
  padding: 10px 14px;
  display: flex; align-items: center; gap: 6px;
  border-bottom: 1px solid #2d3a4a;
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.red { background: #ff5f56; }
.yellow { background: #ffbd2e; }
.green { background: #27c93f; }
.mockup-url { margin-left: 10px; color: #64748b; font-size: 0.72rem; font-family: monospace; }
.mockup-body { display: flex; min-height: 280px; }
.mockup-sidebar {
  width: 50px; background: #0f172a;
  padding: 12px 0;
  border-right: 1px solid #2d3a4a;
  display: flex; flex-direction: column;
  align-items: center; gap: 16px;
}
.sidebar-logo {
  background: #2dd4bf; width: 28px; height: 28px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-weight: bold; font-size: 0.8rem; color: #0f172a;
}
.si { font-size: 1rem; opacity: 0.7; }
.mockup-content { flex: 1; padding: 14px; }
.mc-header {
  display: flex; justify-content: space-between;
  margin-bottom: 12px; font-size: 0.75rem; color: #94a3b8;
}
.mc-stats { display: flex; gap: 8px; margin-bottom: 16px; }
.mcs-card { background: #1e293b; padding: 10px; border-radius: 10px; flex: 1; }
.mcs-label { font-size: 0.62rem; color: #94a3b8; }
.mcs-val { font-weight: bold; font-size: 0.9rem; color: #2dd4bf; }
.mc-chart { background: #1e293b; border-radius: 10px; padding: 12px; }
.chart-bars { display: flex; align-items: flex-end; gap: 8px; height: 80px; justify-content: space-around; }
.bar { width: 25px; background: linear-gradient(to top, #2dd4bf, #14b8a6); border-radius: 6px 6px 0 0; transition: height 0.1s linear; }

/* ── SECTIONS ── */
section { padding: 80px 0; border-bottom: 1px solid #1e2a3a; }
.section-eyebrow {
  text-transform: uppercase; letter-spacing: 2px;
  font-size: 0.72rem; color: #2dd4bf;
  margin-bottom: 14px; font-weight: 600;
}
.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700; margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.section-desc {
  color: #94a3b8; max-width: 700px;
  margin-bottom: 40px; font-size: 0.95rem; line-height: 1.75;
}
.section-cta { margin-top: 32px; text-align: center; }

/* ── LOGOS MARQUEE ── */
.logos-section {
  padding: 40px 0;
  border-top: 1px solid #1e2a3a;
  border-bottom: 1px solid #1e2a3a;
  background: #0a0f1c;
}
.logos-label {
  font-size: 0.75rem; text-align: center;
  color: #64748b; margin-bottom: 20px;
  text-transform: uppercase; letter-spacing: 0.1em;
}
.logos-track {
  overflow: hidden; position: relative;
}
.logos-track::before, .logos-track::after {
  content: ''; position: absolute; top: 0; bottom: 0;
  width: 80px; z-index: 1; pointer-events: none;
}
.logos-track::before { left: 0; background: linear-gradient(90deg, #0a0f1c, transparent); }
.logos-track::after { right: 0; background: linear-gradient(-90deg, #0a0f1c, transparent); }
.logos-slide {
  display: flex; gap: 2rem;
  animation: marquee 28s linear infinite;
  width: max-content;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.logo-pill {
  background: #1e293b;
  border: 1px solid #2d3a4a;
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 0.85rem; font-weight: 600;
  color: #94a3b8; white-space: nowrap;
}

/* ── STATS ── */
.stats-section { background: #0a0f1c; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #1e2a3a;
  border: 1px solid #1e2a3a;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 3rem;
}
.stat-card {
  background: #0a0f1c;
  padding: 2rem 1.5rem;
  text-align: center;
}
.stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; color: #2dd4bf;
  line-height: 1;
}
.stat-label {
  font-size: 0.875rem; font-weight: 600;
  color: #eef2ff; margin-top: 8px;
}
.stat-desc { font-size: 0.8rem; color: #64748b; margin-top: 4px; }

/* ── SERVICE & PRODUCT CARDS ── */
.services-grid, .products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin: 30px 0;
}
.service-card, .product-card {
  background: #0f172a;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #1e2a3a;
  transition: all 0.25s;
  text-decoration: none;
  color: inherit;
  position: relative;
  display: flex; flex-direction: column;
}
.service-card:hover, .product-card:hover {
  border-color: #2dd4bf;
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.sc-icon {
  width: 48px; height: 48px;
  background: rgba(45,212,191,0.12);
  border: 1px solid rgba(45,212,191,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: #2dd4bf;
  margin-bottom: 16px;
}
.service-card h3, .product-card h3 {
  font-size: 1.05rem; margin-bottom: 10px;
  font-weight: 700; line-height: 1.3;
}
.service-card p, .product-card p {
  font-size: 0.85rem; color: #94a3b8;
  line-height: 1.6; flex: 1;
}
.sc-link {
  margin-top: 14px;
  display: inline-flex; align-items: center; gap: 4px;
  color: #2dd4bf; font-weight: 500; font-size: 0.82rem;
}
.featured { border-color: #2dd4bf; }
.sc-badge {
  position: absolute; top: -10px; right: 16px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff; padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.65rem; font-weight: 700;
  box-shadow: 0 4px 10px rgba(245,158,11,0.3);
}
.price-tag {
  display: inline-block;
  background: rgba(45,212,191,0.08);
  border: 1px solid rgba(45,212,191,0.2);
  color: #2dd4bf;
  padding: 4px 10px; border-radius: 20px;
  font-size: 0.72rem; font-weight: 600;
  margin-top: 10px;
}
.tag-pill {
  display: inline-block;
  background: #1e293b;
  padding: 3px 10px; border-radius: 20px;
  font-size: 0.68rem; color: #94a3b8;
}

/* ── INDUSTRY TABS ── */
.industry-tabs {
  display: flex; flex-wrap: wrap;
  gap: 8px; margin-bottom: 24px;
}
.ind-tab {
  background: #0f172a;
  border: 1px solid #2d3a4a;
  padding: 8px 18px; border-radius: 40px;
  color: #cbd5e6; font-size: 0.82rem; font-weight: 500;
  transition: all 0.2s; cursor: pointer;
  font-family: inherit;
}
.ind-tab:hover { border-color: #2dd4bf; color: #2dd4bf; }
.ind-tab.active {
  background: #2dd4bf; color: #0a0f1c;
  border-color: #2dd4bf;
}
.ind-panel {
  display: none;
  background: #0f172a;
  border-radius: 20px;
  padding: 30px;
  border: 1px solid #2d3a4a;
}
.ind-panel.active { display: block; animation: fadeIn 0.4s; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.ind-panel-inner {
  display: grid; grid-template-columns: 1.3fr 1fr;
  gap: 30px; align-items: start;
}
.ind-panel h3 {
  font-size: 1.3rem; margin-bottom: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.ind-panel p { color: #94a3b8; font-size: 0.9rem; line-height: 1.7; margin-bottom: 16px; }
.ind-features { list-style: none; margin-top: 16px; }
.ind-features li {
  margin-bottom: 8px; padding-left: 24px;
  position: relative; font-size: 0.88rem; color: #cbd5e6;
}
.ind-features li::before {
  content: "✓"; color: #2dd4bf;
  position: absolute; left: 0; font-weight: bold;
}
.ind-mock {
  background: #1e293b;
  border-radius: 16px;
  padding: 20px;
  min-height: 200px;
}
.im-title { font-weight: 700; margin-bottom: 10px; font-size: 0.9rem; color: #eef2ff; }
.im-stat {
  display: flex; justify-content: space-between;
  padding: 8px 0; border-bottom: 1px solid #2d3a4a;
  font-size: 0.82rem;
}
.im-stat:last-child { border: none; }
.im-val { color: #2dd4bf; font-weight: 600; }

/* ── WHY US ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 3rem;
}
.why-card {
  background: #0f172a;
  border: 1px solid #1e2a3a;
  border-radius: 16px;
  padding: 28px;
  transition: all 0.25s;
}
.why-card:hover {
  border-color: #2dd4bf;
  transform: translateY(-3px);
}
.wc-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.5rem; font-weight: 800;
  color: rgba(45,212,191,0.2);
  line-height: 1; margin-bottom: 12px;
}
.why-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.why-card p { font-size: 0.88rem; color: #94a3b8; line-height: 1.65; }

/* ── TESTIMONIALS ── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 20px; margin-top: 3rem;
}
.testi-card {
  background: #0f172a;
  border: 1px solid #1e2a3a;
  border-radius: 16px;
  padding: 24px;
  transition: all 0.25s;
}
.testi-card:hover { border-color: #2dd4bf; transform: translateY(-3px); }
.stars { color: #fbbf24; font-size: 13px; letter-spacing: 2px; margin-bottom: 14px; }
.testi-text {
  font-size: 0.9rem; color: #cbd5e6;
  line-height: 1.75; font-style: italic;
  margin-bottom: 18px;
}
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-av {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, #2dd4bf, #14b8a6);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 800; color: #0f172a;
}
.testi-name { font-size: 0.88rem; font-weight: 700; }
.testi-company { font-size: 0.75rem; color: #64748b; }

/* ── FAQ ── */
.faq-wrap {
  max-width: 800px; margin: 3rem auto 0;
  display: flex; flex-direction: column; gap: 10px;
}
.faq-item {
  background: #0f172a;
  border: 1px solid #1e2a3a;
  border-radius: 12px;
  overflow: hidden;
}
.faq-item.open { border-color: rgba(45,212,191,0.3); }
.faq-q {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  cursor: pointer;
  font-size: 0.95rem; font-weight: 600;
  gap: 14px;
}
.faq-chevron {
  width: 24px; height: 24px;
  background: rgba(45,212,191,0.1);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: #2dd4bf; font-size: 12px;
  flex-shrink: 0; transition: transform 0.3s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-a-inner {
  padding: 0 20px 18px;
  font-size: 0.88rem; color: #94a3b8; line-height: 1.75;
}
.faq-item.open .faq-a { max-height: 300px; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-info > div {
  margin-bottom: 4px;
  font-size: 0.9rem; color: #cbd5e6;
}
.contact-info strong { color: #94a3b8; font-size: 0.82rem; }
.contact-info a { color: #2dd4bf; text-decoration: none; }
.contact-info a:hover { text-decoration: underline; }

.contact-form {
  background: #0f172a;
  border: 1px solid #1e2a3a;
  border-radius: 20px;
  padding: 28px;
}
.contact-form h3 { font-size: 1.15rem; margin-bottom: 6px; }
.contact-form > p { font-size: 0.88rem; color: #94a3b8; margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.form-group label { font-size: 0.78rem; font-weight: 600; color: #cbd5e6; }
.form-group input, .form-group select, .form-group textarea {
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 10px;
  padding: 10px 14px;
  color: white;
  font-family: inherit;
  font-size: 0.88rem;
  transition: border 0.2s;
  width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: #2dd4bf;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #64748b; }
.form-group select option { background: #1e293b; }
.form-note { margin-top: 12px; font-size: 0.75rem; color: #94a3b8; text-align: center; }

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, rgba(45,212,191,0.08), rgba(99,102,241,0.06));
  border: 1px solid #1e2a3a;
  border-radius: 22px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 300px;
  background: #2dd4bf;
  filter: blur(120px);
  opacity: 0.05;
}
.cta-title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800; margin-bottom: 14px;
  position: relative;
}
.cta-sub {
  font-size: 0.95rem; color: #94a3b8;
  margin-bottom: 30px; max-width: 500px;
  margin-inline: auto; position: relative;
}
.cta-btns {
  display: flex; gap: 10px;
  justify-content: center; flex-wrap: wrap;
  position: relative;
}

/* ── FOOTER ── */
.footer { background: #030712; padding: 60px 0 20px; border-top: 1px solid #1e2a3a; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr;
  gap: 30px; margin-bottom: 40px;
}
.footer-brand p {
  margin: 12px 0; font-size: 0.82rem;
  color: #94a3b8; line-height: 1.7;
}
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  background: #1e293b;
  width: 34px; height: 34px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: #cbd5e6; font-size: 0.88rem;
  transition: all 0.2s;
}
.footer-social a:hover { background: #2dd4bf; color: #0a0f1c; }
.footer-col h4 { margin-bottom: 16px; font-size: 0.9rem; color: white; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col a {
  color: #94a3b8; font-size: 0.82rem;
  transition: color 0.15s; display: block;
}
.footer-col a:hover { color: #2dd4bf; }
.footer-col address {
  font-size: 0.82rem; color: #94a3b8; line-height: 1.8;
}
.footer-col address a { color: #2dd4bf; }
.footer-bottom {
  display: flex; justify-content: space-between;
  margin-top: 30px; padding-top: 20px;
  border-top: 1px solid #1e2a3a;
  font-size: 0.75rem; color: #64748b;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { color: #94a3b8; margin-left: 12px; }
.footer-bottom a:hover { color: #2dd4bf; }

/* ── FLOATING WA ── */
.wa-float {
  position: fixed; bottom: 24px; right: 24px;
  background: #25D366;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  transition: all 0.2s;
  color: white; font-size: 1.5rem;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 12px 32px rgba(37,211,102,0.6); }

/* ── TOAST ── */
.toast-msg {
  position: fixed; bottom: 30px; left: 50%;
  transform: translateX(-50%);
  background: #1e293b;
  border: 1px solid #2dd4bf;
  color: white;
  padding: 12px 24px;
  border-radius: 40px;
  font-size: 0.85rem; font-weight: 500;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  max-width: 90%;
  text-align: center;
}

/* ── LOADING SKELETON ── */
.loading-skeleton {
  background: linear-gradient(90deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 16px;
  height: 200px;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── REVEAL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(20px); transition: all 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── UTILITIES ── */
img.logo-img { max-height: 36px; width: auto; border-radius: 8px; }
.mt-2 { margin-top: 8px; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .ind-panel-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .topbar { display: none; }
  .nav-links { display: none !important; }
  .nav-hamburger { display: flex !important; }
  .nav-cta .btn-primary span { display: none; }
  .nav-cta .btn-primary { padding: 8px 12px; }

  section { padding: 60px 0; }
  .container { padding: 0 16px; }

  .hero { padding: 40px 0 60px; }
  .hero-title { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { justify-content: center; width: 100%; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .services-grid, .products-grid, .testi-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom a { margin-left: 0; margin-right: 12px; }

  .form-row { grid-template-columns: 1fr; }
  .cta-section { padding: 40px 20px; }
  .cta-btns { flex-direction: column; align-items: stretch; }
  .cta-btns .btn { justify-content: center; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .mc-stats { flex-direction: column; gap: 6px; }
  .hero-trust { flex-direction: column; gap: 8px; }
}
