/* ===== VARIABLES ===== */
:root {
  --bg-primary: #0b0f14;
  --bg-secondary: #0b0f14;
  --bg-card: #111823;
  --bg-card-hover: #151f2b;
  --bg-elevated: #121a26;
  --accent: #2aa8ff;
  --accent-light: #7ad7ff;
  --accent-glow: rgba(42, 168, 255, .12);
  --accent-border: rgba(42, 168, 255, .2);
  --btn-gradient: linear-gradient(135deg, #2aa8ff 0%, #1b6fe0 100%);
  --btn-gradient-hover: linear-gradient(135deg, #7ad7ff 0%, #2aa8ff 100%);
  --text-primary: #ffffff;
  --text-secondary: #b4c0cf;
  --text-muted: #8b98ab;
  --text-dim: #506074;
  --border: rgba(148, 163, 184, .18);
  --border-light: rgba(255, 255, 255, .05);
  --glass: rgba(11, 15, 20, .72);
  --font-heading: "Sora", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --section-padding: 88px 0;
  --container: 1200px;
  --transition: .25s ease;
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-secondary);
  background-color: var(--bg-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.1rem, 4.6vw, 3.35rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.45rem); }
h3 { font-size: clamp(1.2rem, 2.6vw, 1.6rem); }
h4 { font-size: 1.02rem; }
p { color: var(--text-secondary); }

/* ===== LAYOUT ===== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-padding); }
.section-header { text-align: center; margin-bottom: 52px; }
.section-header p { max-width: 620px; margin: 14px auto 0; font-size: 1rem; }
.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-light);
  background: var(--accent-glow);
  border: 1px solid var(--accent-border);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: .95rem;
  font-weight: 600;
  transition: transform .3s var(--ease-smooth), box-shadow .3s ease, background .25s ease, border-color .25s ease, color .25s ease;
  white-space: nowrap;
}
.cta-pulse {
  animation: ctaPulse 3.6s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 rgba(42, 168, 255, 0); }
  50% { box-shadow: 0 10px 26px rgba(42, 168, 255, 0.22); }
}
.btn-primary {
  background: var(--btn-gradient);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .25s ease;
}
.btn-primary:hover::after { opacity: 1; }
.btn-primary:hover { background: var(--btn-gradient-hover); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(34, 211, 166, .2); }
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent-light); transform: translateY(-1px); }
.btn-sm { padding: 9px 20px; font-size: .875rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background .4s ease, border-bottom .4s ease, backdrop-filter .4s ease;
}
nav.scrolled {
  background: var(--glass);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo img { height: 36px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--text-secondary);
  transition: color .25s ease, background .25s ease, transform .25s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--text-primary); background: rgba(255,255,255,.06); }
.nav-links a:hover { transform: translateY(-1px); }
.nav-cta { margin-left: 8px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: var(--transition); }
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: #111;
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  flex-direction: column;
  gap: 4px;
  z-index: 999;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 16px;
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: .9rem;
  font-weight: 600;
  transition: color .25s ease, background .25s ease;
}
.mobile-menu a:hover { color: var(--text-primary); background: rgba(255,255,255,.05); }
.mobile-menu .btn { margin-top: 8px; text-align: center; justify-content: center; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 70px;
  position: relative;
  overflow: hidden;
}
.hero canvas#hero-3d {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.7;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 20% 0%, rgba(42, 168, 255, .14) 0%, transparent 65%),
              radial-gradient(ellipse 70% 60% at 80% 10%, rgba(27, 111, 224, .16) 0%, transparent 60%);
  pointer-events: none;
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(122, 215, 255, .08), transparent 35%),
              radial-gradient(circle at 85% 30%, rgba(42, 168, 255, .08), transparent 40%);
  opacity: 0.8;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.15'/%3E%3C/svg%3E");
  opacity: 0.06;
  mix-blend-mode: soft-light;
  pointer-events: none;
}
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(42, 168, 255, 0.2), transparent);
}
.hero-bg::after {
  content: "";
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(42, 168, 255, .4), transparent);
}

.hero-orb {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}

.orb-one {
  top: -180px;
  left: -120px;
  background: radial-gradient(circle, rgba(42, 168, 255, .6), transparent 60%);
  animation: orbFloatOne 14s ease-in-out infinite;
}

.orb-two {
  bottom: -200px;
  right: -120px;
  background: radial-gradient(circle, rgba(27, 111, 224, .6), transparent 62%);
  animation: orbFloatTwo 16s ease-in-out infinite;
}

@keyframes orbFloatOne {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, 20px) scale(1.05); }
}

@keyframes orbFloatTwo {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-26px, -18px) scale(1.04); }
}
.hero-alt { min-height: 92vh; }
.hero-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-copy {
  max-width: 620px;
}
.hero-copy h1 { margin-bottom: 18px; }
.swap-word {
  display: inline-block;
  color: var(--accent-light);
  border-bottom: 2px solid rgba(122, 215, 255, 0.35);
  padding-bottom: 2px;
  min-width: 5ch;
  text-align: left;
  white-space: nowrap;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 20px;
}
.hero-tags span {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border-light);
  font-size: .78rem;
  color: var(--text-muted);
  background: rgba(17, 24, 35, 0.7);
  transition: transform .35s var(--ease-smooth), color .25s ease, border-color .25s ease, box-shadow .35s ease;
  animation: tagFloat 6s ease-in-out infinite;
}
.hero-tags span:nth-child(2) { animation-delay: 1s; }
.hero-tags span:nth-child(3) { animation-delay: 2s; }
.hero-tags span:hover {
  color: var(--text-primary);
  border-color: var(--accent-border);
  box-shadow: 0 8px 18px rgba(42, 168, 255, .18);
  transform: translateY(-2px);
}

@keyframes tagFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
.swap-word.fade-out {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease;
}
.swap-word.fade-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .3s ease, transform .3s ease;
}
.hero-copy p { max-width: 560px; font-size: 1.05rem; }
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.hero-metrics strong {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--text-primary);
  display: block;
}
.hero-metrics span { color: var(--text-muted); font-size: .85rem; }
.hero-panel { display: grid; gap: 18px; }
.hero-stack { display: grid; gap: 12px; }
.mini-card {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  background: rgba(17, 24, 35, .8);
}
.mini-card p { color: var(--text-primary); font-weight: 600; }
.mini-card span { color: var(--text-muted); font-size: .85rem; }

.hero-card.card-glass {
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(12, 18, 28, 0.82);
  padding: 22px 24px;
}

.hero-card.card-glass h3 {
  margin-bottom: 6px;
}

.hero-card.card-glass p {
  color: var(--text-muted);
  margin-bottom: 12px;
}

.hero-card.card-glass .check-list {
  margin-top: 0;
  gap: 8px;
}

.hero-card.card-glass .check-list li {
  align-items: center;
  line-height: 1.4;
}

/* Page hero (non-home) */
.page-hero {
  padding: 120px 0 68px;
  text-align: center;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(34, 211, 166, .1) 0%, transparent 60%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 460px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 166, .35), transparent);
}

/* ===== CARDS ===== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px;
  transition: background .25s ease, border-color .25s ease, transform .4s var(--ease-smooth), box-shadow .3s ease;
  will-change: transform;
}
.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(3, 7, 18, .5), 0 0 0 1px rgba(34, 211, 166, .08);
}
.card-img { width: 100%; height: 200px; object-fit: cover; border-radius: 8px; margin-bottom: 20px; }

/* ===== STAT COUNTERS ===== */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: border-color .25s ease, box-shadow .3s ease;
  will-change: transform;
}
.stat-card:hover { border-color: var(--accent-border); box-shadow: 0 0 16px rgba(43,130,217,.06); }
.stat-card .number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  display: block;
}
.stat-card .label { color: var(--text-muted); font-size: .9rem; margin-top: 4px; }

/* ===== SERVICE CARDS ===== */
.service-card { padding: 24px; }
.service-icon {
  width: 48px; height: 48px;
  background: var(--accent-glow);
  border: 1px solid var(--accent-border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: var(--accent-light);
  transition: background .25s ease, box-shadow .25s ease;
}
.card:hover .service-icon { background: rgba(43,130,217,.22); box-shadow: 0 0 16px rgba(43,130,217,.2); }
.service-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.service-card p { font-size: .9rem; }

/* ===== ACCORDION / FAQ ===== */
.accordion { display: flex; flex-direction: column; gap: 12px; max-width: 760px; margin: 0 auto; }
.accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .25s ease;
}
.accordion-item.open { border-color: var(--accent-border); }
.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  text-align: left;
  color: var(--text-primary);
  font-size: .975rem;
  font-weight: 600;
  transition: background .25s ease;
}
.accordion-header:hover { background: var(--bg-card-hover); }
.accordion-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .35s var(--ease-smooth), background .25s ease;
  color: var(--accent-light);
}
.accordion-item.open .accordion-icon { transform: rotate(45deg); background: var(--accent-glow); }
.accordion-body {
  height: 0;
  overflow: hidden;
}
.accordion-body p { padding: 0 24px 20px; font-size: .9rem; }

/* ===== TABS ===== */
.tab-btns { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.tab-btn {
  padding: 9px 20px;
  border-radius: 100px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-muted);
  border: 1px solid var(--border-light);
  background: var(--bg-card);
  transition: color .25s ease, border-color .25s ease, background .25s ease;
}
.tab-btn:hover { color: var(--text-primary); border-color: var(--border); }
.tab-btn.active { background: var(--btn-gradient); color: #fff; border-color: transparent; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ===== BADGES ===== */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .75rem; font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
}
.badge-blue { background: var(--accent-glow); color: var(--accent-light); border: 1px solid var(--accent-border); }
.badge-green { background: rgba(34,197,94,.1); color: #4ade80; border: 1px solid rgba(34,197,94,.2); }

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 88px 0;
  text-align: center;
}
.cta-box {
  background: rgba(20, 20, 20, 0.85);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 56px 36px;
}
.cta-box h2 { margin-bottom: 12px; }
.cta-box p { font-size: 1rem; margin-bottom: 24px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== Partner with Pulsify ===== */
.partner-section {
  background: linear-gradient(120deg, rgba(14, 31, 56, 0.95) 0%, rgba(30, 61, 121, 0.9) 45%, rgba(46, 91, 153, 0.95) 100%);
  border: 1px solid rgba(215, 231, 255, 0.2);
  box-shadow: 0 16px 44px rgba(5, 20, 52, 0.36);
  border-radius: 20px;
  padding: 34px 22px;
  margin: 44px auto 26px;
  color: #eff7ff;
  position: relative;
  overflow: hidden;
}
.partner-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 10%, rgba(168, 228, 255, 0.24), transparent 48%), radial-gradient(circle at 90% 35%, rgba(123, 190, 255, 0.16), transparent 54%);
  pointer-events: none;
}
.partner-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.partner-info {
  display: flex;
  align-items: center;
  gap: 16px;
}
.partner-logo {
  width: 76px;
  height: 76px;
  object-fit: contain;
  border-radius: 14px;
  border: 1px solid rgba(226, 242, 255, 0.46);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 18px rgba(18, 60, 103, 0.35);
  padding: 10px;
}
.partner-info h2 {
  margin: 0 0 8px;
  font-size: clamp(1.35rem, 2.3vw, 1.95rem);
  line-height: 1.15;
}
.partner-info p {
  margin: 0;
  color: #d8e9ff;
  max-width: 620px;
  line-height: 1.6;
}
.partner-cta-wrapper {
  text-align: right;
}
.partner-cta-wrapper .btn {
  min-width: 175px;
  padding: 13px 24px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.24s ease, filter 0.24s ease;
}
.partner-cta-wrapper .btn:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 6px 18px rgba(47, 148, 255, 0.45));
}

@media (max-width: 900px) {
  .partner-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .partner-info {
    justify-content: center;
    gap: 14px;
  }
  .partner-cta-wrapper {
    text-align: center;
  }
}

/* ===== FOOTER ===== */
footer {
  background: #0a0a0a;
  border-top: 1px solid var(--border-light);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img { height: 32px; margin-bottom: 16px; }
.footer-brand p { font-size: .9rem; max-width: 260px; line-height: 1.65; }
.footer-col h4 { font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { font-size: .88rem; color: var(--text-muted); transition: color .25s ease; }
.footer-col ul a:hover { color: var(--text-primary); }
.footer-contact-link {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
}
.footer-contact-link i {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  width: 16px;
  text-align: center;
}
.footer-contact-link .fa-square-whatsapp {
  color: #25d366;
}
.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 12px;
}
.floating-whatsapp {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 1001;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  box-shadow: 0 14px 36px rgba(18, 140, 126, 0.32);
  transition: transform .25s ease, box-shadow .25s ease;
}
.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(18, 140, 126, 0.4);
}
.floating-whatsapp i {
  font-size: 2.1rem;
}

/* ===== Strategic Collaborations ===== */
.collaboration-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.collaboration-card {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border-color: rgba(98, 180, 255, 0.16);
  background:
    radial-gradient(circle at top right, rgba(58, 160, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(17, 24, 39, 0.96), rgba(10, 14, 24, 0.96));
}
.collaboration-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(120, 189, 255, 0.08);
  border-radius: inherit;
  pointer-events: none;
}
.collaboration-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}
.collaboration-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #9ad5ff;
  background: rgba(25, 93, 164, 0.16);
  border: 1px solid rgba(90, 166, 245, 0.2);
}
.collaboration-icon {
  width: 120px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(11, 22, 38, 0.96), rgba(20, 37, 60, 0.98));
  border: 1px solid rgba(120, 189, 255, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 14px 34px rgba(22, 85, 176, 0.26);
  padding: 10px 12px;
  overflow: hidden;
}
.collaboration-icon-wide {
  width: 120px;
}
.collaboration-logo {
  width: 78%;
  height: 78%;
  max-width: 82px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(61, 150, 255, 0.12));
}
.collaboration-logo-mettl {
  width: 205%;
  max-width: none;
  object-fit: cover;
  object-position: right center;
  transform: translateX(18%);
  filter: brightness(1.18) contrast(1.08);
}
.collaboration-card h3 {
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}
.collaboration-card p {
  margin-bottom: 26px;
  max-width: 42ch;
  color: var(--text-secondary);
  line-height: 1.7;
}
.collaboration-card .btn {
  min-width: 170px;
}

/* ===== DIVIDER ===== */
.divider { height: 1px; background: var(--border-light); margin: 64px 0; }
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(42, 168, 255, 0.2), transparent);
  margin: 0;
}

/* ===== HIGHLIGHT TEXT ===== */
.text-accent { color: var(--accent-light); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }

/* ===== CHECKLIST ===== */
.check-list { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .9rem; color: var(--text-secondary); }
.check-list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 20px; height: 20px;
  background: var(--accent-glow);
  border: 1px solid var(--accent-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem;
  color: var(--accent-light);
  line-height: 20px;
  text-align: center;
}

/* ===== FORM ===== */
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
label { display: block; font-size: .85rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 8px; }
input, select, textarea {
  width: 100%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: .95rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  transition: border-color .25s ease, box-shadow .25s ease;
  outline: none;
}
input.input-error, textarea.input-error, select.input-error {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(42, 168, 255, 0.12);
}
input:focus, select:focus, textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(43,130,217,.12); }
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 12 12'%3E%3Cpath fill='%23a1a1a1' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
textarea { resize: vertical; min-height: 120px; }
input::placeholder, textarea::placeholder { color: var(--text-muted); }

/* ===== SUCCESS MESSAGE ===== */
.success-msg {
  display: none;
  text-align: center;
  padding: 48px 32px;
}
.success-msg .icon {
  width: 64px; height: 64px;
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.5rem;
}
.success-msg h3 { margin-bottom: 10px; }
.success-msg p { margin-bottom: 24px; }

/* ===== INTEGRATIONS ===== */
.integrations { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.integration-tag {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: .8rem;
  color: var(--text-secondary);
}

/* ===== TIMELINE ===== */
.timeline { position: relative; padding-left: 32px; }
.timeline::before { content: ""; position: absolute; left: 10px; top: 0; bottom: 0; width: 2px; background: var(--border); }
.timeline-item { position: relative; margin-bottom: 40px; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -26px; top: 6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--bg-primary);
}
.timeline-item h4 { color: var(--accent-light); font-size: .85rem; font-weight: 600; margin-bottom: 4px; }
.timeline-item h3 { font-size: 1.1rem; margin-bottom: 8px; }
.timeline-item p { font-size: .9rem; }

/* ===== BLOG CARDS ===== */
.blog-card { cursor: pointer; overflow: hidden; }
.blog-card-img { width: 100%; height: 200px; object-fit: cover; border-radius: 8px; margin-bottom: 16px; transition: transform .5s var(--ease-smooth); }
.blog-card:hover .blog-card-img { transform: scale(1.04); }
.blog-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; font-size: .8rem; color: var(--text-muted); }
.blog-card h3 { font-size: 1.05rem; margin-bottom: 10px; transition: color .25s ease; }
.blog-card:hover h3 { color: var(--accent-light); }

/* ===== MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.85);
  z-index: 2000;
  align-items: center; justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: #111;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  max-width: 760px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-header { padding: 28px 32px 0; display: flex; justify-content: space-between; align-items: flex-start; }
.modal-body { padding: 24px 32px 32px; }
.modal-img { width: 100%; height: 280px; object-fit: cover; border-radius: 8px; margin-bottom: 24px; }
.modal-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary);
  font-size: 1.1rem;
  transition: background .25s ease, color .25s ease;
  flex-shrink: 0;
}
.modal-close:hover { background: rgba(255,255,255,.12); color: var(--text-primary); }
.modal-body p { margin-bottom: 16px; font-size: .95rem; line-height: 1.8; }

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px;
}
.stars { color: #fbbf24; font-size: 1rem; margin-bottom: 14px; }
.testimonial-card blockquote { font-size: .95rem; line-height: 1.7; color: var(--text-secondary); margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.testimonial-author strong { display: block; font-size: .9rem; color: var(--text-primary); }
.testimonial-author span { font-size: .8rem; color: var(--text-muted); }

/* Carousel */
.carousel { position: relative; overflow: hidden; }
.carousel-track { display: flex; will-change: transform; }
.carousel-slide { flex: 0 0 100%; }
.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 28px; }
.carousel-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-primary);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .25s ease, color .25s ease;
}
.carousel-btn:hover { border-color: var(--accent); color: var(--accent-light); }
.carousel-dots { display: flex; gap: 6px; }
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  transition: width .3s var(--ease-smooth), background .25s ease;
}
.carousel-dot.active { background: var(--accent); width: 20px; border-radius: 4px; }

/* ===== PORTFOLIO ===== */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.portfolio-card { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; will-change: transform; }
.portfolio-card-img { width: 100%; height: 260px; object-fit: cover; display: block; transition: transform .5s var(--ease-smooth); }
.portfolio-card:hover .portfolio-card-img { transform: scale(1.06); }
.portfolio-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.1) 60%);
  padding: 24px;
  display: flex; flex-direction: column; justify-content: flex-end;
  opacity: 0; transition: opacity .35s ease;
}
.portfolio-card:hover .portfolio-card-overlay { opacity: 1; }
.portfolio-card-overlay h3 { font-size: 1.1rem; margin-bottom: 8px; }
.portfolio-metrics { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.metric-tag { background: rgba(43,130,217,.25); color: #93c5fd; border: 1px solid rgba(43,130,217,.3); border-radius: 4px; padding: 3px 8px; font-size: .75rem; font-weight: 600; }

/* ===== PRICING ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: start; }
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: border-color .25s ease, box-shadow .3s ease, transform .4s var(--ease-smooth);
  will-change: transform;
}
.pricing-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,.45); }
.pricing-card.popular { border-color: var(--accent); }
.popular-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--btn-gradient); color: #fff; border-radius: 100px;
  padding: 4px 16px; font-size: .75rem; font-weight: 700;
}
.pricing-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.price { margin: 20px 0; }
.price .amount { font-family: var(--font-heading); font-size: 2.75rem; font-weight: 700; color: var(--text-primary); }
.price .period { color: var(--text-muted); font-size: .9rem; }
.price .from { font-size: .85rem; color: var(--text-muted); margin-bottom: 4px; }
.pricing-features { margin: 24px 0; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li { display: flex; align-items: flex-start; gap: 10px; font-size: .88rem; color: var(--text-secondary); }
.pricing-features li .icon { color: var(--accent-light); flex-shrink: 0; }
.pricing-card .btn { width: 100%; justify-content: center; }

/* ===== INDUSTRY TABS ===== */
.industry-layout { display: grid; grid-template-columns: 280px 1fr; gap: 32px; align-items: start; }
.industry-tabs-list { display: flex; flex-direction: column; gap: 6px; }
.industry-tab-btn {
  width: 100%;
  text-align: left;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: .9rem;
  color: var(--text-muted);
  border: 1px solid transparent;
  background: transparent;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.industry-tab-btn:hover { background: var(--bg-card); color: var(--text-secondary); }
.industry-tab-btn.active { background: var(--bg-card); border-color: var(--border); color: var(--text-primary); }
.industry-panel { display: none; }
.industry-panel.active { display: block; }
.industry-img { width: 100%; height: 320px; object-fit: cover; border-radius: var(--radius); margin-bottom: 24px; }

/* ===== PARTNER LOGOS ===== */
.partners-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.partner-tag {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 10px 20px;
  font-size: .85rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ===== VISUAL POLISH ===== */

/* Glassmorphism card variant */
.card-glass {
  background: rgba(20, 20, 20, .7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, #fff 0%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Shimmer on hover */
.card-shine {
  position: relative;
  overflow: hidden;
}
.card-shine::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(122, 215, 255, .08), transparent);
  transition: left .7s ease;
  pointer-events: none;
  z-index: 1;
}
.card-shine:hover::before { left: 150%; }

/* Section ambient background glow */
.section-ambient {
  position: relative;
  overflow: hidden;
}
.section-ambient::before {
  content: "";
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(42, 168, 255, .06) 0%, transparent 70%);
  pointer-events: none;
}

/* Image zoom wrapper */
.img-zoom {
  overflow: hidden;
  border-radius: var(--radius);
}
.img-zoom img {
  transition: transform .6s var(--ease-smooth);
}
.img-zoom:hover img { transform: scale(1.03); }

/* Glow pulse animation */
@keyframes glowPulse {
  0%, 100% { opacity: .5; }
  50%       { opacity: 1; }
}
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: glowPulse 6s ease-in-out infinite;
}

/* Float animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .industry-layout { grid-template-columns: 1fr; }
  .industry-tabs-list { flex-direction: row; flex-wrap: wrap; }
  .hero-split { grid-template-columns: 1fr; gap: 32px; }
  .hero-metrics { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
  :root { --section-padding: 56px 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .collaboration-showcase { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-card-overlay { opacity: 1; }
  .cta-box { padding: 36px 22px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-metrics { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy p { margin: 0 auto; }
  .hero-tags { justify-content: center; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .floating-whatsapp {
    left: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
    border-radius: 14px;
  }
  .collaboration-card { padding: 24px; }
  .tab-btns { gap: 6px; }
  .modal { border-radius: 12px; }
  .modal-header, .modal-body { padding-left: 20px; padding-right: 20px; }
}
