/* ── COMMON STYLES shared across all pages ── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@700;800;900&family=Space+Grotesk:wght@400;500;600;700&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: default;
}

a, button, [role="button"], label, select,
.btn, .nav-link, .cta-btn, [onclick] {
  cursor: pointer !important;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="url"],
input[type="number"],
textarea {
  cursor: text !important;
}

:root {
  --bg: #ffffff;
  --bg2: #f0f4f9;
  --bg3: #e6ecf5;
  --blue: #1a3a8c;
  --blue2: #142e78;
  --blue-light: #5a7fc5;
  --teal: #177268;
  --teal2: #0f5e56;
  --gold: #f59e0b;
  --gold2: #d97706;
  --gold-light: #fde68a;
  --purple: #7c3aed;
  --green: #10b981;
  --sky: #0ea5e9;
  --red: #ef4444;
  --orange: #f97316;
  --grad: linear-gradient(160deg, #1a3a8c 0%, #177268 100%);
  --grad2: linear-gradient(160deg, #5a7fc5 0%, #1a3a8c 55%, #177268 100%);
  --glow: 0 8px 40px rgba(26, 58, 140, 0.14);
  --card: #ffffff;
  --card-border: #e5e7eb;
  --card-shadow: 0 4px 24px rgba(26, 58, 140, 0.08);
  --text: #111827;
  --text2: #4b5563;
  --text3: #9ca3af;
  --radius: 12px;
  --radius2: 18px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

::selection {
  background: rgba(26, 58, 140, 0.15);
  color: var(--text);
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--bg2);
}

::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 3px;
}

/* ── SCROLL PROGRESS ── */
#scroll-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  z-index: 9999;
  background: linear-gradient(90deg, var(--blue), var(--purple));
  width: 0%;
  transition: width 0.1s linear;
}

/* ── BACKGROUND ── */
#bg-layer {
  display: none;
}

#particles-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.06;
}

/* ── TYPOGRAPHY ── */
h1,
h2,
h3,
h4 {
  font-family: Arial, sans-serif;
  font-weight: 700;
  line-height: 1.12;
  color: var(--text);
  letter-spacing: -0.5px;
}

.grad-text {
  background: var(--grad2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gold-text {
  background: linear-gradient(90deg, #00c6ff, #00e5aa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── LAYOUT ── */
.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 48px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-family: Arial, sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
  letter-spacing: -1.5px;
}

.section-title-accent {
  display: block;
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-desc {
  font-size: 16px;
  color: var(--text2);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.8;
}

section {
  background: #ffffff;
  position: relative;
  z-index: 1;
  padding: 96px 0;
}

.section-alt {
  background: linear-gradient(135deg, #dde5f4 0%, #e5eaf5 50%, #dce5f2 100%) !important;
  border-top: 1px solid #cdd8ed;
  border-bottom: 1px solid #cdd8ed;
}

.section-tag {
  display: none;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .4;
    transform: scale(1.5)
  }
}

/* ── PAGE HEADER ── */
@keyframes page-grad {
  0% {
    background-position: 0% 50%
  }

  25% {
    background-position: 50% 100%
  }

  50% {
    background-position: 100% 50%
  }

  75% {
    background-position: 50% 0%
  }

  100% {
    background-position: 0% 50%
  }
}

.page-header {
  padding: 80px 0 88px;
  text-align: center;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #404040, #505050, #606060, #505050, #404040);
  background-size: 400% 400%;
  animation: page-grad 14s ease infinite;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/back.jpg') center/cover no-repeat;
  opacity: 0.15;
  z-index: 0;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, #ffffff);
  z-index: 1;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  font-size: clamp(32px, 5.5vw, 62px);
  font-weight: 700;
  margin-bottom: 18px;
  color: #fff;
  letter-spacing: -2px;
}

.page-header p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── ANIMATIONS ── */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(28px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes float-y {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-18px)
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.stagger-children>* {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.stagger-children.visible>*:nth-child(1) {
  transition-delay: .0s
}

.stagger-children.visible>*:nth-child(2) {
  transition-delay: .08s
}

.stagger-children.visible>*:nth-child(3) {
  transition-delay: .16s
}

.stagger-children.visible>*:nth-child(4) {
  transition-delay: .24s
}

.stagger-children.visible>*:nth-child(5) {
  transition-delay: .32s
}

.stagger-children.visible>*:nth-child(6) {
  transition-delay: .40s
}

.stagger-children.visible>*:nth-child(7) {
  transition-delay: .48s
}

.stagger-children.visible>*:nth-child(n+8) {
  transition-delay: .56s
}

.stagger-children.visible>* {
  opacity: 1;
  transform: translateY(0);
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 48px;
  background: rgba(255, 255, 255, 0.10);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.10);
  transition: all var(--transition);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
}

nav.scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 4px 32px rgba(26, 58, 140, 0.09);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-badge {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  filter: drop-shadow(0 0 8px rgba(26, 58, 140, 0.3));
  transition: filter 0.3s;
}

.logo-badge:hover {
  filter: drop-shadow(0 0 14px rgba(26, 58, 140, 0.6));
}

.logo-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: logo-spin 6s ease-in-out infinite;
  transform-origin: center;
}

.logo-badge:hover img {
  animation: logo-spin-fast 0.6s ease-in-out;
}

@keyframes logo-spin {

  0%,
  100% {
    transform: rotate(0deg) scale(1);
    filter: drop-shadow(0 0 0px transparent);
  }

  25% {
    transform: rotate(8deg) scale(1.06);
    filter: drop-shadow(0 0 8px rgba(124, 58, 237, 0.5));
  }

  50% {
    transform: rotate(0deg) scale(1.04);
    filter: drop-shadow(0 0 12px rgba(59, 130, 246, 0.45));
  }

  75% {
    transform: rotate(-8deg) scale(1.06);
    filter: drop-shadow(0 0 8px rgba(124, 58, 237, 0.5));
  }
}

@keyframes logo-spin-fast {
  0% {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(180deg) scale(1.15);
  }

  100% {
    transform: rotate(360deg) scale(1);
  }
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text span:first-child {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 3px;
  background: linear-gradient(90deg, #b14fff 0%, #7c5fe6 45%, #4fa8f8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.logo-text span:last-child {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.90);
  letter-spacing: 0.3px;
  margin-top: 3px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

nav.scrolled .logo-text span:first-child {
  background: linear-gradient(90deg, #b14fff 0%, #7c5fe6 45%, #4fa8f8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

nav.scrolled .logo-text span:last-child {
  color: var(--text2);
  text-shadow: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.90);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all var(--transition);
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
}

.nav-links a.nav-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.20);
  font-weight: 600;
}

nav.scrolled .nav-links a {
  color: #374151;
}

nav.scrolled .nav-links a:hover {
  color: var(--blue);
  background: rgba(26, 58, 140, 0.07);
}

nav.scrolled .nav-links a.nav-active {
  color: var(--blue);
  background: rgba(26, 58, 140, 0.07);
  font-weight: 600;
}

.nav-cta {
  background: linear-gradient(135deg, #a855f7, #4f46e5) !important;
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.40) !important;
}

.nav-cta:hover {
  filter: brightness(1.12) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(99, 102, 241, 0.55) !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  z-index: 999;
  padding: 32px 24px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: var(--text);
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 16px 20px;
  border-radius: 12px;
  transition: all var(--transition);
  border: 1px solid transparent;
}

.mobile-menu a:hover {
  background: rgba(26, 58, 140, 0.06);
  border-color: rgba(26, 58, 140, 0.2);
  color: var(--blue);
}

.mobile-cta {
  margin-top: 16px;
  background: var(--blue) !important;
  color: #fff !important;
  padding: 18px 20px !important;
  text-align: center;
  border-radius: 14px !important;
  font-weight: 700 !important;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #a855f7, #6366f1, #4f46e5);
  color: #fff;
  text-decoration: none;
  padding: 15px 34px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 6px 28px rgba(99, 102, 241, 0.40);
  transition: all var(--transition);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.2px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.60);
  filter: brightness(1.1);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--blue);
  text-decoration: none;
  padding: 15px 34px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid #d0d7f0;
  transition: all var(--transition);
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(26, 58, 140, 0.06);
}

.btn-secondary:hover {
  background: #f0f4ff;
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 58, 140, 0.12);
}

.btn-icon {
  width: 17px;
  height: 17px;
  transition: transform var(--transition);
}

.btn-primary:hover .btn-icon,
.btn-secondary:hover .btn-icon {
  transform: translateX(4px);
}

.ripple {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  animation: ripple-anim 0.7s ease-out forwards;
  pointer-events: none;
}

@keyframes ripple-anim {
  0% {
    transform: scale(0);
    opacity: 1
  }

  100% {
    transform: scale(25);
    opacity: 0
  }
}

/* ── CARDS — White Glass / Frosted ── */
.support-card,
.why-card,
.stat-card,
.industry-card,
.why-choose-card,
.partner-card,
.testimonial-card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1.5px solid rgba(255, 255, 255, 1);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow:
    0 4px 20px rgba(26, 58, 140, 0.07),
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 -1px 0 rgba(255, 255, 255, 0.4) inset;
}

.support-card:hover,
.why-card:hover,
.industry-card:hover,
.why-choose-card:hover,
.partner-card:hover,
.testimonial-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.90);
  box-shadow:
    0 20px 56px rgba(26, 58, 140, 0.13),
    0 1px 0 rgba(255, 255, 255, 1) inset;
  border-color: rgba(255, 255, 255, 1);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(26, 58, 140, 0.10), inset 0 1px 0 rgba(255, 255, 255, 1);
}

.support-card::before,
.why-card::before,
.industry-card::before,
.stat-card::before,
.why-choose-card::before,
.partner-card::before,
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  opacity: 0;
  transition: opacity var(--transition);
}

.support-card:hover::before,
.why-card:hover::before,
.industry-card:hover::before,
.stat-card:hover::before,
.why-choose-card:hover::before,
.partner-card:hover::before,
.testimonial-card:hover::before {
  opacity: 1;
}

/* ── CIRCULAR ICON BADGES (MNC style) ── */
.industry-emoji,
.why-icon,
.support-icon,
.agentic-feat-icon,
.process-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
  flex-shrink: 0;
}

/* 6-color cycle for all icon grids */
.stagger-children>*:nth-child(6n+1) .industry-emoji,
.stagger-children>*:nth-child(6n+1) .why-icon,
.stagger-children>*:nth-child(6n+1) .support-icon,
.stagger-children>*:nth-child(6n+1) .agentic-feat-icon,
.stagger-children>*:nth-child(6n+1) .process-icon {
  background: #1a3a8c;
}

.stagger-children>*:nth-child(6n+2) .industry-emoji,
.stagger-children>*:nth-child(6n+2) .why-icon,
.stagger-children>*:nth-child(6n+2) .support-icon,
.stagger-children>*:nth-child(6n+2) .agentic-feat-icon,
.stagger-children>*:nth-child(6n+2) .process-icon {
  background: #7c3aed;
}

.stagger-children>*:nth-child(6n+3) .industry-emoji,
.stagger-children>*:nth-child(6n+3) .why-icon,
.stagger-children>*:nth-child(6n+3) .support-icon,
.stagger-children>*:nth-child(6n+3) .agentic-feat-icon,
.stagger-children>*:nth-child(6n+3) .process-icon {
  background: #10b981;
}

.stagger-children>*:nth-child(6n+4) .industry-emoji,
.stagger-children>*:nth-child(6n+4) .why-icon,
.stagger-children>*:nth-child(6n+4) .support-icon,
.stagger-children>*:nth-child(6n+4) .agentic-feat-icon,
.stagger-children>*:nth-child(6n+4) .process-icon {
  background: #f59e0b;
}

.stagger-children>*:nth-child(6n+5) .industry-emoji,
.stagger-children>*:nth-child(6n+5) .why-icon,
.stagger-children>*:nth-child(6n+5) .support-icon,
.stagger-children>*:nth-child(6n+5) .agentic-feat-icon,
.stagger-children>*:nth-child(6n+5) .process-icon {
  background: #ef4444;
}

.stagger-children>*:nth-child(6n+6) .industry-emoji,
.stagger-children>*:nth-child(6n+6) .why-icon,
.stagger-children>*:nth-child(6n+6) .support-icon,
.stagger-children>*:nth-child(6n+6) .agentic-feat-icon,
.stagger-children>*:nth-child(6n+6) .process-icon {
  background: #0ea5e9;
}

/* ── FOOTER ── */
footer {
  position: relative;
  z-index: 1;
  background: linear-gradient(160deg, #0d2260 0%, #111827 60%, #0a1020 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 0 48px;
}

.footer-brand p {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.8;
  max-width: 280px;
  margin-top: 14px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  font-size: 13px;
  color: #94a3b8;
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* leave space so btt button doesn't overlap social icons */
  padding-right: 60px;
}

.footer-copy {
  font-size: 12px;
  color: #64748b;
}

.footer-copy .brand {
  color: #37baf5;
  font-weight: 700;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.65);
  flex-shrink: 0;
  transition: all var(--transition);
}

.footer-social:hover {
  border-color: rgba(245, 158, 11, 0.5);
  background: rgba(245, 158, 11, 0.12);
  color: var(--gold);
  transform: translateY(-3px);
}

/* Footer logo text stays gold */
footer .logo-text span:first-child {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

footer .logo-text span:last-child {
  color: #64748b;
}

/* ── FLOATING BUTTONS ── */
.wa-float {
  position: fixed;
  bottom: 88px;
  right: 20px;
  z-index: 999;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #25D366;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.25), inset 0 1px 0 rgba(255,255,255,0.15);
  transition: all var(--transition);
  font-size: 26px;
}

.wa-float:hover {
  transform: scale(1.12);
  background: rgba(37, 211, 102, 0.28);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4), inset 0 1px 0 rgba(255,255,255,0.2);
}

.wa-tooltip {
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(17, 24, 39, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.wa-float:hover .wa-tooltip {
  opacity: 1;
}

@keyframes btt-bounce {

  0%,
  100% {
    transform: translateY(0)
  }

  45% {
    transform: translateY(-7px)
  }

  65% {
    transform: translateY(-3px)
  }
}

.btt {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(124, 58, 237, 0.4);
  color: #a78bfa;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s, box-shadow 0.3s, transform 0.3s;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.25), inset 0 1px 0 rgba(255,255,255,0.15);
}

.btt.show {
  opacity: 1;
  pointer-events: all;
  animation: btt-bounce 1.8s ease-in-out infinite;
}

.btt:hover {
  background: rgba(124, 58, 237, 0.28);
  box-shadow: 0 10px 28px rgba(124, 58, 237, 0.45), inset 0 1px 0 rgba(255,255,255,0.2);
  animation: none;
  transform: translateY(-4px);
}

/* ── CALL FLOAT ── */
.call-float {
  position: fixed;
  bottom: 156px;
  right: 20px;
  z-index: 999;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(0, 198, 255, 0.15);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(0, 198, 255, 0.4);
  color: #00c6ff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(0, 198, 255, 0.25), inset 0 1px 0 rgba(255,255,255,0.15);
  transition: all var(--transition);
  font-size: 22px;
}

.call-float:hover {
  transform: scale(1.12);
  background: rgba(0, 198, 255, 0.25);
  box-shadow: 0 8px 32px rgba(0, 198, 255, 0.4), inset 0 1px 0 rgba(255,255,255,0.2);
}

.call-tooltip {
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(17, 24, 39, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 198, 255, 0.35);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.call-float:hover .call-tooltip {
  opacity: 1;
}

body.menu-open .call-float,
body.menu-open .wa-float,
body.menu-open .btt {
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.2s ease;
}

/* ── CONTACT FORM ── */
.contact-form {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius2);
  padding: 36px;
  box-shadow: 0 4px 24px rgba(26, 58, 140, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.form-group label {
  font-size: 13px;
  color: var(--text2);
  font-weight: 500;
}

.req {
  color: var(--blue);
}

.form-control {
  background: #f9fafb;
  border: 1.5px solid #e5e7eb;
  color: var(--text);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: all var(--transition);
  outline: none;
  width: 100%;
}

.form-control:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(26, 58, 140, 0.1);
}

.form-control option {
  background: #fff;
  color: var(--text);
}

textarea.form-control {
  min-height: 100px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 16px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 28px rgba(26, 58, 140, 0.35);
  position: relative;
  overflow: hidden;
}

.form-submit:hover {
  background: var(--blue2);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(26, 58, 140, 0.5);
}

.form-note {
  font-size: 12px;
  color: var(--text3);
  text-align: center;
  margin-top: 12px;
  line-height: 1.6;
}

.form-success {
  display: none;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #059669;
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
}

/* ── SHIMMER (glass highlight sweep) ── */
.support-card::after,
.why-card::after,
.stat-card::after,
.industry-card::after,
.why-choose-card::after,
.partner-card::after,
.testimonial-card::after {
  content: '';
  position: absolute;
  top: -100%;
  left: -60%;
  width: 45%;
  height: 300%;
  background: linear-gradient(100deg, transparent 20%, rgba(255, 255, 255, 0.38) 50%, transparent 80%);
  transform: skewX(-15deg);
  pointer-events: none;
  z-index: 1;
}

.support-card:hover::after,
.why-card:hover::after,
.stat-card:hover::after,
.industry-card:hover::after,
.why-choose-card:hover::after,
.partner-card:hover::after,
.testimonial-card:hover::after {
  animation: shimmer 0.65s ease forwards;
}

@keyframes shimmer {
  to {
    left: 130%;
    top: 100%;
  }
}

/* ── RESPONSIVE ── */
@media(max-width:1200px) {
  .container {
    padding: 0 32px;
  }

  .footer-top {
    gap: 36px;
  }
}

@media(max-width:1024px) {
  /* nav switches to hamburger — 7 items overflow below this width */
  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-hamburger span {
    background: #fff;
  }

  nav.scrolled .nav-hamburger span {
    background: var(--text);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .container {
    padding: 0 28px;
  }

  section {
    padding: 80px 0;
  }

  .page-header {
    padding: 96px 0 72px;
  }

  .page-header h1 {
    font-size: clamp(28px, 5vw, 52px);
  }

  .section-title {
    font-size: clamp(24px, 3.5vw, 40px);
  }

  .industry-emoji,
  .why-icon,
  .support-icon,
  .agentic-feat-icon,
  .process-icon {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }
}

@media(max-width:768px) {
  nav {
    padding: 0 16px;
  }

  /* nav height reduces at portrait-tablet / phone range */
  .nav-inner {
    height: 64px;
  }

  .mobile-menu {
    top: 64px;
  }

  .nav-logo {
    flex-shrink: 0;
    min-width: 0;
  }

  .logo-text span:first-child {
    font-size: 17px;
    letter-spacing: 2px;
    white-space: nowrap;
  }

  .logo-text span:last-child {
    font-size: 10px;
    white-space: nowrap;
  }

  .logo-badge {
    width: 38px;
    height: 38px;
  }

  .container {
    padding: 0 18px;
  }

  section {
    padding: 64px 0;
  }

  .section-header {
    margin-bottom: 44px;
  }

  .section-title {
    font-size: clamp(22px, 5.5vw, 32px);
    letter-spacing: -0.5px;
  }

  .section-desc {
    font-size: 14.5px;
  }

  .page-header {
    padding: 88px 0 60px;
  }

  .page-header h1 {
    font-size: clamp(26px, 6.5vw, 42px);
    letter-spacing: -1px;
  }

  .page-header p {
    font-size: 15px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding-right: 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .industry-emoji,
  .why-icon,
  .support-icon,
  .agentic-feat-icon,
  .process-icon {
    width: 52px;
    height: 52px;
    font-size: 22px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 13px 26px;
    font-size: 14.5px;
  }

  .wa-float {
    width: 48px;
    height: 48px;
    font-size: 22px;
    bottom: 80px;
  }

  .btt {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

@media(max-width:640px) {
  .container {
    padding: 0 16px;
  }

  section {
    padding: 52px 0;
  }

  .section-title {
    font-size: clamp(20px, 6vw, 28px);
  }

  .section-header {
    margin-bottom: 36px;
  }

  .page-header {
    padding: 84px 0 52px;
  }

  .page-header h1 {
    font-size: clamp(22px, 7vw, 34px);
  }

  .support-card,
  .why-card,
  .stat-card,
  .industry-card,
  .why-choose-card,
  .partner-card,
  .testimonial-card {
    padding: 24px 20px;
  }

  .contact-form {
    padding: 24px 18px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 20px;
    font-size: 14px;
  }

  .footer-inner {
    padding: 0 16px;
  }
}

@media(max-width:480px) {
  section {
    padding: 46px 0;
  }

  .section-title {
    font-size: clamp(19px, 6.5vw, 25px);
  }

  .page-header {
    padding: 80px 0 44px;
  }

  .page-header h1 {
    font-size: clamp(20px, 7.5vw, 30px);
  }

  .support-card,
  .why-card,
  .stat-card,
  .industry-card,
  .why-choose-card,
  .partner-card,
  .testimonial-card {
    padding: 20px 16px;
  }

  .contact-form {
    padding: 20px 16px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 11px 16px;
    font-size: 13.5px;
  }

  .logo-text span:first-child {
    font-size: 16px;
    letter-spacing: 1.5px;
  }

  .logo-badge {
    width: 36px;
    height: 36px;
  }
}

@media(max-width:380px) {
  .container {
    padding: 0 12px;
  }

  section {
    padding: 44px 0;
  }

  .section-title {
    font-size: clamp(17px, 6.5vw, 24px);
    letter-spacing: -0.3px;
  }

  .section-header {
    margin-bottom: 32px;
  }

  .section-desc {
    font-size: 13px;
  }

  .page-header {
    padding: 76px 0 42px;
  }

  .page-header h1 {
    font-size: clamp(18px, 8vw, 26px);
    letter-spacing: -0.5px;
  }

  .page-header p {
    font-size: 13px;
  }

  .support-card,
  .why-card,
  .stat-card,
  .industry-card,
  .why-choose-card,
  .partner-card,
  .testimonial-card {
    padding: 18px 14px;
  }

  .contact-form {
    padding: 18px 14px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 11px 14px;
    font-size: 13px;
    gap: 6px;
  }

  .footer-inner {
    padding: 0 12px;
  }

  .footer-top {
    gap: 20px;
    padding: 40px 0 32px;
  }

  .footer-col h4 {
    font-size: 13px;
  }

  .mobile-menu {
    padding: 20px 14px;
  }

  .mobile-menu a {
    font-size: 15px;
    padding: 12px 14px;
  }

  .logo-text span:first-child {
    font-size: 15px;
    letter-spacing: 2px;
  }

  .logo-text span:last-child {
    font-size: 9px;
  }

  .logo-badge {
    width: 34px;
    height: 34px;
  }

  .wa-float,
  .call-float {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }

  .call-float {
    bottom: 140px;
  }

  .wa-float {
    bottom: 88px;
  }

  .btt {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }

  .industry-emoji,
  .why-icon,
  .support-icon,
  .agentic-feat-icon,
  .process-icon {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }
}