:root {
  --adf-bg: #050817;
  --adf-bg-soft: #080d20;
  --adf-surface: #0b1228;
  --adf-surface-2: #0f1831;
  --adf-surface-3: #121d3a;
  --adf-blue: #0d4dff;
  --adf-blue-2: #0aa4f6;
  --adf-blue-3: #082fbf;
  --adf-cyan: #55c7ff;
  --adf-white: #ffffff;
  --adf-text: #f4f7ff;
  --adf-muted: #9aa7c2;
  --adf-muted-2: #71809e;
  --adf-line: rgba(157, 178, 224, 0.16);
  --adf-line-strong: rgba(157, 178, 224, 0.26);
  --adf-green: #25d366;
  --adf-warning: #ffca57;
  --adf-danger: #ff6b7d;
  --adf-max: 1240px;
  --adf-radius-xs: 10px;
  --adf-radius-sm: 14px;
  --adf-radius: 20px;
  --adf-radius-lg: 28px;
  --adf-radius-xl: 36px;
  --adf-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  --adf-shadow-sm: 0 16px 48px rgba(0, 0, 0, 0.2);
  --adf-ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--adf-bg);
  color: var(--adf-text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open,
body.chat-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { background: rgba(13,77,255,.5); color: #fff; }

.adf-shell { position: relative; min-height: 100vh; overflow: clip; }
.adf-container { width: min(calc(100% - 48px), var(--adf-max)); margin-inline: auto; }
.adf-section { position: relative; padding: 116px 0; }
.adf-section--compact { padding: 82px 0; }
.adf-section--soft { background: var(--adf-bg-soft); }
.adf-section--bordered { border-block: 1px solid var(--adf-line); }
.adf-section-head { max-width: 760px; margin-bottom: 52px; }
.adf-section-head.center { margin-inline: auto; text-align: center; }
.adf-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: #9edcff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.adf-eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--adf-blue-2); box-shadow: 0 0 18px rgba(10,164,246,.75); }
.adf-section-title {
  margin: 0;
  color: #fff;
  font-size: clamp(36px, 4.8vw, 64px);
  line-height: 1.04;
  letter-spacing: -.052em;
  font-weight: 760;
}
.adf-section-copy { margin: 22px 0 0; color: var(--adf-muted); font-size: 18px; line-height: 1.72; }
.adf-kicker { color: #d5ddf1; font-size: 15px; }
.adf-gradient-text {
  color: #fff;
  background: linear-gradient(100deg, #fff 5%, #9bdcff 52%, #4f7cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* header */
.adf-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: 78px;
  background: rgba(5,8,23,.72);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: height .25s ease, background .25s ease, border-color .25s ease;
}
.adf-header.is-scrolled { height: 70px; background: rgba(5,8,23,.92); border-color: var(--adf-line); }
.adf-header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.adf-logo { display: inline-flex; align-items: center; flex: 0 0 auto; }
.adf-logo img { width: 212px; height: auto; }
.adf-nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.adf-nav a { position: relative; padding: 26px 0; color: #c5cee0; font-size: 14px; font-weight: 650; transition: color .2s ease; }
.adf-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 19px; height: 2px; border-radius: 2px; background: var(--adf-blue-2); transition: right .25s var(--adf-ease); }
.adf-nav a:hover, .adf-nav a:focus-visible { color: #fff; }
.adf-nav a:hover::after, .adf-nav a:focus-visible::after { right: 0; }
.adf-header-actions { display: flex; align-items: center; gap: 10px; }
.adf-panel-link { color: #dbe4f8; font-size: 14px; font-weight: 700; padding: 12px 14px; }
.adf-btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 13px;
  background: transparent;
  color: #fff;
  font-size: 14px;
  font-weight: 780;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: transform .22s var(--adf-ease), border-color .22s ease, background .22s ease, box-shadow .22s ease;
}
.adf-btn:hover { transform: translateY(-2px); }
.adf-btn--primary { background: linear-gradient(135deg, var(--adf-blue) 0%, #1479ff 58%, var(--adf-blue-2) 100%); box-shadow: 0 12px 34px rgba(13,77,255,.32); }
.adf-btn--primary:hover { box-shadow: 0 16px 42px rgba(13,77,255,.42); }
.adf-btn--secondary { border-color: var(--adf-line-strong); background: rgba(255,255,255,.045); }
.adf-btn--secondary:hover { border-color: rgba(123,179,255,.48); background: rgba(255,255,255,.075); }
.adf-btn--small { min-height: 44px; border-radius: 11px; padding-inline: 18px; }
.adf-menu-button { display: none; width: 44px; height: 44px; padding: 0; border: 1px solid var(--adf-line); border-radius: 12px; background: rgba(255,255,255,.035); cursor: pointer; }
.adf-menu-button span { display: block; width: 19px; height: 2px; margin: 4px auto; border-radius: 3px; background: #fff; transition: transform .25s ease, opacity .25s ease; }
.menu-open .adf-menu-button span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-open .adf-menu-button span:nth-child(2) { opacity: 0; }
.menu-open .adf-menu-button span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.adf-mobile-menu { display: none; position: fixed; z-index: 999; top: 64px; inset-inline: 0; padding: 16px 20px 28px; background: rgba(5,8,23,.98); border-bottom: 1px solid var(--adf-line); }
.adf-mobile-menu a { display: flex; align-items: center; justify-content: space-between; min-height: 48px; padding: 0 8px; border-bottom: 1px solid rgba(157,178,224,.1); color: #dce6f9; font-weight: 680; }
.adf-mobile-menu .adf-btn { margin-top: 18px; width: 100%; border-bottom: 0; }

/* hero */
.adf-hero { position: relative; padding: 156px 0 74px; min-height: 980px; overflow: hidden; }
.adf-hero::before {
  content: "";
  position: absolute;
  width: 980px;
  height: 720px;
  left: 50%;
  top: -380px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13,77,255,.36) 0%, rgba(10,164,246,.12) 44%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}
.adf-hero::after {
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  right: -220px;
  top: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10,164,246,.12), transparent 70%);
  pointer-events: none;
}
.adf-hero-copy { position: relative; z-index: 2; max-width: 950px; margin-inline: auto; text-align: center; }
.adf-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  padding: 0 15px;
  margin-bottom: 26px;
  border: 1px solid rgba(110,178,255,.22);
  border-radius: 999px;
  background: rgba(14,31,70,.58);
  color: #cfe9ff;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: .04em;
}
.adf-hero-badge span { width: 8px; height: 8px; border-radius: 50%; background: var(--adf-green); box-shadow: 0 0 0 5px rgba(37,211,102,.12); }
.adf-hero h1 { margin: 0; font-size: clamp(48px, 7.15vw, 92px); line-height: .99; letter-spacing: -.062em; font-weight: 780; }
.adf-hero-copy > p { max-width: 770px; margin: 26px auto 0; color: #aab6cd; font-size: clamp(17px, 1.7vw, 20px); line-height: 1.68; }
.adf-hero-actions { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.adf-channel-route { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px; margin-top: 26px; color: #8e9db9; font-size: 12px; font-weight: 700; letter-spacing: .03em; }
.adf-channel-route b { color: #dce8ff; font-weight: 750; }
.adf-channel-route i { color: #4d5d7d; font-style: normal; }

.adf-dashboard-wrap { position: relative; z-index: 3; max-width: 1110px; margin: 68px auto 0; perspective: 1500px; }
.adf-dashboard-glow { position: absolute; inset: 12% 10% -10%; border-radius: 50%; background: rgba(13,77,255,.2); filter: blur(75px); }
.adf-dashboard {
  position: relative;
  display: grid;
  grid-template-columns: 190px 1fr;
  min-height: 535px;
  border: 1px solid rgba(162,188,241,.24);
  border-radius: 24px;
  background: #091024;
  box-shadow: 0 38px 120px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.07);
  overflow: hidden;
  transform: rotateX(2.2deg);
  transform-origin: center top;
}
.adf-dash-sidebar { padding: 22px 14px; border-right: 1px solid var(--adf-line); background: #070d1d; }
.adf-dash-brand { display: flex; align-items: center; gap: 9px; padding: 5px 8px 24px; }
.adf-dash-brand img { width: 27px; height: 27px; object-fit: contain; }
.adf-dash-brand span { font-size: 12px; font-weight: 800; letter-spacing: -.02em; }
.adf-dash-nav { display: grid; gap: 7px; }
.adf-dash-nav-item { display: flex; align-items: center; gap: 9px; min-height: 38px; padding: 0 10px; border-radius: 9px; color: #7f8daa; font-size: 11px; font-weight: 700; }
.adf-dash-nav-item.active { color: #fff; background: rgba(13,77,255,.18); }
.adf-dash-nav-item svg { width: 16px; height: 16px; }
.adf-dash-upgrade { margin-top: 86px; padding: 14px; border: 1px solid var(--adf-line); border-radius: 12px; background: rgba(255,255,255,.025); }
.adf-dash-upgrade strong { display: block; font-size: 11px; }
.adf-dash-upgrade p { margin: 5px 0 10px; color: #7887a6; font-size: 9px; line-height: 1.45; }
.adf-dash-upgrade span { display: block; height: 6px; border-radius: 6px; background: rgba(255,255,255,.08); overflow: hidden; }
.adf-dash-upgrade span::after { content: ""; display: block; width: 76%; height: 100%; background: var(--adf-blue-2); }
.adf-dash-main { min-width: 0; padding: 20px; background: linear-gradient(180deg, #0b1329 0%, #091023 100%); }
.adf-dash-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.adf-dash-title small { display: block; margin-bottom: 2px; color: #6f7d9b; font-size: 9px; }
.adf-dash-title strong { font-size: 15px; letter-spacing: -.02em; }
.adf-dash-tools { display: flex; gap: 8px; }
.adf-dash-tool { width: 34px; height: 34px; border: 1px solid var(--adf-line); border-radius: 10px; background: rgba(255,255,255,.025); display: grid; place-items: center; color: #8fa1c2; }
.adf-dash-tool svg { width: 15px; height: 15px; }
.adf-dash-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 11px; }
.adf-stat { min-width: 0; padding: 15px; border: 1px solid var(--adf-line); border-radius: 13px; background: rgba(255,255,255,.025); }
.adf-stat-head { display: flex; justify-content: space-between; gap: 8px; color: #7483a2; font-size: 9px; font-weight: 700; }
.adf-stat-head em { color: var(--adf-green); font-style: normal; }
.adf-stat strong { display: block; margin-top: 10px; font-size: 22px; line-height: 1; letter-spacing: -.04em; }
.adf-stat small { display: block; margin-top: 8px; color: #5f6e8e; font-size: 8px; }
.adf-dash-content { display: grid; grid-template-columns: 1.4fr .75fr; gap: 12px; margin-top: 12px; }
.adf-chart-card, .adf-route-card, .adf-campaign-row { border: 1px solid var(--adf-line); border-radius: 14px; background: rgba(255,255,255,.022); }
.adf-chart-card { padding: 16px; min-height: 230px; }
.adf-card-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.adf-card-top strong { font-size: 11px; }
.adf-card-top span { color: #667592; font-size: 8px; }
.adf-chart { position: relative; height: 145px; margin-top: 22px; border-bottom: 1px solid var(--adf-line); background: linear-gradient(to bottom, transparent 24%, rgba(157,178,224,.06) 25%, transparent 26%, transparent 49%, rgba(157,178,224,.06) 50%, transparent 51%, transparent 74%, rgba(157,178,224,.06) 75%, transparent 76%); overflow: hidden; }
.adf-chart svg { position: absolute; inset: 4px 0 0; width: 100%; height: 100%; }
.adf-chart-labels { display: flex; justify-content: space-between; margin-top: 8px; color: #53627f; font-size: 7px; }
.adf-route-card { padding: 16px; }
.adf-route-card > p { margin: 7px 0 15px; color: #6f7e9d; font-size: 8px; line-height: 1.5; }
.adf-route-step { position: relative; display: flex; align-items: center; gap: 10px; min-height: 48px; padding: 8px 9px; margin-top: 8px; border: 1px solid rgba(157,178,224,.12); border-radius: 10px; background: rgba(255,255,255,.022); }
.adf-route-step:not(:last-child)::after { content: ""; position: absolute; left: 22px; bottom: -10px; height: 10px; width: 1px; background: #354563; }
.adf-route-number { width: 27px; height: 27px; border-radius: 8px; display: grid; place-items: center; background: rgba(13,77,255,.16); color: #9db7ff; font-size: 9px; font-weight: 800; }
.adf-route-step strong { display: block; font-size: 9px; }
.adf-route-step span { display: block; color: #63728f; font-size: 7px; }
.adf-route-state { margin-left: auto; color: var(--adf-green)!important; }
.adf-route-state.wait { color: var(--adf-warning)!important; }
.adf-campaigns { display: grid; gap: 8px; margin-top: 12px; }
.adf-campaign-row { display: grid; grid-template-columns: 1.5fr repeat(3,.65fr); align-items: center; min-height: 48px; padding: 0 14px; color: #73829f; font-size: 8px; }
.adf-campaign-row strong { color: #dce5f6; font-size: 9px; }
.adf-progress { width: 78px; height: 5px; border-radius: 6px; background: rgba(255,255,255,.07); overflow: hidden; }
.adf-progress span { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg,var(--adf-blue),var(--adf-blue-2)); }

/* trust logos */
.adf-trust { position: relative; padding: 34px 0 54px; border-top: 1px solid rgba(157,178,224,.1); }
.adf-trust-title { margin-bottom: 24px; text-align: center; color: #8897b4; font-size: 13px; font-weight: 700; }
.adf-trust-title strong { color: #e7edfb; }
.adf-logo-marquee { position: relative; overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.adf-logo-track { display: flex; width: max-content; gap: 14px; animation: adfMarquee 34s linear infinite; }
.adf-logo-marquee:hover .adf-logo-track { animation-play-state: paused; }
@keyframes adfMarquee { from { transform: translateX(0); } to { transform: translateX(calc(-50% - 7px)); } }
.adf-client-logo { width: 176px; height: 74px; flex: 0 0 auto; display: grid; place-items: center; padding: 14px 20px; border: 1px solid var(--adf-line); border-radius: 14px; background: rgba(255,255,255,.035); }
.adf-client-logo img { max-width: 100%; max-height: 42px; object-fit: contain; filter: grayscale(1) brightness(1.85); opacity: .72; transition: filter .25s ease, opacity .25s ease; }
.adf-client-logo:hover img { filter: none; opacity: 1; }

/* products */
.adf-product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.adf-product-card { position: relative; min-height: 260px; padding: 26px; border: 1px solid var(--adf-line); border-radius: var(--adf-radius); background: var(--adf-surface); overflow: hidden; transition: transform .28s var(--adf-ease), border-color .28s ease, background .28s ease; }
.adf-product-card:hover { transform: translateY(-6px); border-color: rgba(91,154,255,.42); background: var(--adf-surface-2); }
.adf-product-icon { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 30px; border: 1px solid rgba(101,168,255,.24); border-radius: 16px; background: rgba(13,77,255,.11); color: #7fc9ff; }
.adf-product-icon svg { width: 27px; height: 27px; }
.adf-product-card h3 { margin: 0; font-size: 20px; line-height: 1.18; letter-spacing: -.03em; }
.adf-product-card p { margin: 12px 0 0; color: var(--adf-muted); font-size: 14px; line-height: 1.65; }
.adf-product-link { position: absolute; left: 26px; bottom: 24px; display: inline-flex; align-items: center; gap: 8px; color: #b8dfff; font-size: 12px; font-weight: 750; }
.adf-product-link svg { width: 14px; height: 14px; transition: transform .2s ease; }
.adf-product-card:hover .adf-product-link svg { transform: translateX(4px); }
.adf-icon-spec { margin-top: 20px; color: #596987; font-size: 11px; }

/* rollback */
.adf-fallback-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 78px; align-items: center; }
.adf-fallback-copy .adf-section-copy { max-width: 570px; }
.adf-check-list { display: grid; gap: 14px; margin: 34px 0; padding: 0; list-style: none; }
.adf-check-list li { display: flex; align-items: flex-start; gap: 12px; color: #c6d0e4; font-size: 15px; }
.adf-check-list span { width: 22px; height: 22px; flex: 0 0 auto; display: grid; place-items: center; margin-top: 1px; border-radius: 50%; background: rgba(13,77,255,.16); color: #7dd6ff; font-size: 12px; }
.adf-fallback-visual { position: relative; padding: 26px; border: 1px solid var(--adf-line); border-radius: var(--adf-radius-lg); background: var(--adf-surface); box-shadow: var(--adf-shadow-sm); }
.adf-visual-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--adf-line); }
.adf-visual-top strong { display: block; font-size: 15px; }
.adf-visual-top span { display: block; color: var(--adf-muted-2); font-size: 11px; }
.adf-live-chip { display: inline-flex!important; align-items: center; gap: 7px; min-height: 28px; padding: 0 10px; border-radius: 999px; background: rgba(37,211,102,.09); color: #74eba0!important; font-size: 10px!important; font-weight: 800; }
.adf-live-chip::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--adf-green); }
.adf-fallback-flow { display: grid; gap: 12px; padding: 24px 0 8px; }
.adf-fallback-node { display: grid; grid-template-columns: 44px 1fr auto; align-items: center; gap: 14px; min-height: 74px; padding: 13px 16px; border: 1px solid var(--adf-line); border-radius: 14px; background: rgba(255,255,255,.022); }
.adf-fallback-node::before { content: attr(data-step); width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(100,166,255,.25); border-radius: 12px; background: rgba(13,77,255,.11); color: #a9ccff; font-size: 12px; font-weight: 800; }
.adf-fallback-node strong { display: block; font-size: 14px; }
.adf-fallback-node p { margin: 2px 0 0; color: var(--adf-muted-2); font-size: 11px; line-height: 1.4; }
.adf-node-status { min-width: 83px; min-height: 27px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; background: rgba(255,202,87,.09); color: #ffd473; font-size: 9px; font-weight: 800; }
.adf-fallback-node.is-success { border-color: rgba(37,211,102,.24); background: rgba(37,211,102,.035); }
.adf-fallback-node.is-success .adf-node-status { background: rgba(37,211,102,.1); color: #72e99d; }
.adf-fallback-result { display: flex; align-items: center; gap: 14px; margin-top: 16px; padding: 18px; border: 1px solid rgba(76,153,255,.22); border-radius: 14px; background: rgba(13,77,255,.08); }
.adf-fallback-result svg { width: 27px; height: 27px; color: #60bfff; }
.adf-fallback-result strong { display: block; font-size: 13px; }
.adf-fallback-result span { display: block; color: #7f8daa; font-size: 10px; }

/* banner carousel */
.adf-banner-shell { position: relative; overflow: hidden; border: 1px solid var(--adf-line); border-radius: var(--adf-radius-lg); background: var(--adf-surface); }
.adf-banner-track { display: flex; transition: transform .7s var(--adf-ease); }
.adf-banner-slide { position: relative; width: 100%; min-width: 100%; min-height: 470px; display: grid; grid-template-columns: 1fr .94fr; align-items: center; gap: 48px; padding: 64px 68px; overflow: hidden; }
.adf-banner-slide::after { content: ""; position: absolute; width: 400px; height: 400px; right: -160px; top: -180px; border-radius: 50%; background: radial-gradient(circle, rgba(10,164,246,.18), transparent 70%); }
.adf-banner-content { position: relative; z-index: 2; }
.adf-banner-content small { color: #8edaff; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.adf-banner-content h3 { max-width: 570px; margin: 16px 0 18px; font-size: clamp(34px, 4vw, 56px); line-height: 1.04; letter-spacing: -.05em; }
.adf-banner-content p { max-width: 570px; margin: 0 0 28px; color: var(--adf-muted); font-size: 16px; line-height: 1.7; }
.adf-banner-art { position: relative; z-index: 2; min-height: 320px; display: grid; place-items: center; }
.adf-banner-orbit { position: relative; width: 310px; height: 310px; border: 1px solid rgba(99,169,255,.22); border-radius: 50%; }
.adf-banner-orbit::before, .adf-banner-orbit::after { content: ""; position: absolute; inset: 38px; border: 1px solid rgba(99,169,255,.14); border-radius: 50%; }
.adf-banner-orbit::after { inset: 88px; background: rgba(13,77,255,.13); box-shadow: 0 0 70px rgba(13,77,255,.2); }
.adf-orbit-node { position: absolute; min-width: 88px; min-height: 38px; display: flex; align-items: center; justify-content: center; gap: 7px; padding: 0 12px; border: 1px solid rgba(135,190,255,.28); border-radius: 12px; background: #0d1730; color: #d9e8ff; font-size: 10px; font-weight: 800; box-shadow: 0 12px 36px rgba(0,0,0,.25); }
.adf-orbit-node:nth-child(1) { top: -4px; left: 50%; transform: translateX(-50%); }
.adf-orbit-node:nth-child(2) { right: -35px; top: 50%; transform: translateY(-50%); }
.adf-orbit-node:nth-child(3) { bottom: -4px; left: 50%; transform: translateX(-50%); }
.adf-orbit-node:nth-child(4) { left: -35px; top: 50%; transform: translateY(-50%); }
.adf-orbit-center { position: absolute; inset: 108px; display: grid; place-items: center; z-index: 3; border-radius: 50%; background: linear-gradient(145deg,#0d4dff,#0aa4f6); box-shadow: 0 12px 40px rgba(13,77,255,.42); }
.adf-orbit-center img { width: 58px; height: 58px; object-fit: contain; }
.adf-banner-metrics { width: min(100%, 390px); display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.adf-banner-metric { min-height: 128px; padding: 20px; border: 1px solid var(--adf-line); border-radius: 16px; background: rgba(255,255,255,.025); }
.adf-banner-metric strong { display: block; font-size: 30px; letter-spacing: -.04em; }
.adf-banner-metric span { color: var(--adf-muted); font-size: 11px; }
.adf-banner-phone { width: 220px; min-height: 342px; padding: 18px; border: 1px solid rgba(181,207,255,.3); border-radius: 32px; background: #f5f8ff; color: #0a1430; box-shadow: 0 28px 70px rgba(0,0,0,.34); transform: rotate(4deg); }
.adf-phone-notch { width: 74px; height: 8px; margin: 0 auto 25px; border-radius: 8px; background: #d5dceb; }
.adf-message { width: 84%; padding: 12px; margin-bottom: 10px; border-radius: 13px; background: #e4edff; font-size: 10px; font-weight: 700; }
.adf-message.mine { margin-left: auto; background: #0d4dff; color: #fff; }
.adf-banner-api { width: min(100%, 440px); padding: 20px; border: 1px solid var(--adf-line); border-radius: 18px; background: #071020; box-shadow: 0 24px 70px rgba(0,0,0,.3); }
.adf-code-line { height: 10px; margin: 10px 0; border-radius: 8px; background: #162644; }
.adf-code-line:nth-child(2n) { width: 77%; background: #12306a; }
.adf-code-line:nth-child(3n) { width: 54%; background: #0f4f83; }
.adf-banner-controls { position: absolute; z-index: 5; left: 68px; bottom: 28px; display: flex; align-items: center; gap: 9px; }
.adf-banner-dot { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 99px; background: #3a4967; cursor: pointer; transition: width .25s ease, background .25s ease; }
.adf-banner-dot.active { width: 28px; background: var(--adf-blue-2); }

/* operating system */
.adf-os-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 18px; }
.adf-os-card { position: relative; min-height: 420px; padding: 34px; border: 1px solid var(--adf-line); border-radius: var(--adf-radius); background: var(--adf-surface); overflow: hidden; }
.adf-os-card.large { grid-row: span 2; min-height: 858px; }
.adf-os-card h3 { margin: 0; font-size: 27px; letter-spacing: -.04em; }
.adf-os-card > p { max-width: 520px; margin: 13px 0 0; color: var(--adf-muted); font-size: 14px; }
.adf-os-workspace { position: absolute; inset: 170px 34px 34px; display: grid; grid-template-columns: 150px 1fr; overflow: hidden; border: 1px solid var(--adf-line); border-radius: 17px; background: #081022; }
.adf-workspace-list { padding: 13px; border-right: 1px solid var(--adf-line); }
.adf-workspace-list div { height: 39px; margin-bottom: 8px; border-radius: 9px; background: rgba(255,255,255,.035); }
.adf-workspace-list div:first-child { background: rgba(13,77,255,.18); }
.adf-workspace-main { padding: 16px; }
.adf-workspace-main .bar { height: 28px; border-radius: 9px; background: rgba(255,255,255,.045); }
.adf-workspace-main .cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 9px; margin-top: 12px; }
.adf-workspace-main .cards span { height: 72px; border: 1px solid var(--adf-line); border-radius: 11px; background: rgba(255,255,255,.025); }
.adf-workspace-main .chart { height: 180px; margin-top: 12px; border: 1px solid var(--adf-line); border-radius: 12px; background: linear-gradient(180deg,rgba(13,77,255,.11),transparent); }
.adf-mini-inbox { position: absolute; inset: 170px 34px 34px; display: grid; gap: 10px; align-content: start; }
.adf-inbox-row { display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 12px; min-height: 64px; padding: 10px 12px; border: 1px solid var(--adf-line); border-radius: 13px; background: rgba(255,255,255,.023); }
.adf-inbox-avatar { width: 42px; height: 42px; border-radius: 12px; background: linear-gradient(145deg,#0d4dff,#0aa4f6); }
.adf-inbox-row strong { display: block; font-size: 12px; }
.adf-inbox-row span { display: block; color: #7886a3; font-size: 9px; }
.adf-inbox-row time { color: #64728f; font-size: 8px; }
.adf-analytics-donut { position: absolute; width: 170px; height: 170px; left: 50%; bottom: 42px; transform: translateX(-50%); border-radius: 50%; background: conic-gradient(var(--adf-blue-2) 0 62%, var(--adf-blue) 62% 88%, #243252 88% 100%); }
.adf-analytics-donut::after { content: "88%"; position: absolute; inset: 24px; display: grid; place-items: center; border-radius: 50%; background: var(--adf-surface); color: #fff; font-size: 30px; font-weight: 800; letter-spacing: -.04em; }

/* testimonials */
.adf-review-scroller { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(340px, 1fr); gap: 16px; overflow-x: auto; padding: 3px 1px 24px; scroll-snap-type: x mandatory; scrollbar-width: none; }
.adf-review-scroller::-webkit-scrollbar { display: none; }
.adf-review-card { min-height: 330px; display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--adf-line); border-radius: var(--adf-radius); background: var(--adf-surface); scroll-snap-align: start; }
.adf-stars { color: #ffca57; font-size: 15px; letter-spacing: 3px; }
.adf-review-card blockquote { margin: 28px 0 34px; color: #dce4f4; font-size: 16px; line-height: 1.7; }
.adf-review-author { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.adf-review-avatar { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgba(117,178,255,.25); border-radius: 14px; background: rgba(13,77,255,.11); color: #a9d7ff; font-size: 13px; font-weight: 800; }
.adf-review-author strong { display: block; font-size: 14px; }
.adf-review-author span { display: block; color: var(--adf-muted-2); font-size: 11px; }
.adf-scroll-hint { display: none; margin-top: 12px; color: #667793; font-size: 11px; text-align: center; }

/* CTA */
.adf-cta { padding: 0 0 112px; }
.adf-cta-card { position: relative; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; padding: 58px 62px; border: 1px solid rgba(100,167,255,.25); border-radius: var(--adf-radius-lg); background: #0b1530; overflow: hidden; }
.adf-cta-card::after { content: ""; position: absolute; width: 420px; height: 420px; right: -110px; top: -230px; border-radius: 50%; background: radial-gradient(circle, rgba(13,77,255,.28), transparent 70%); }
.adf-cta-card > * { position: relative; z-index: 2; }
.adf-cta-card h2 { max-width: 740px; margin: 0; font-size: clamp(34px,4.5vw,58px); line-height: 1.04; letter-spacing: -.052em; }
.adf-cta-card p { max-width: 680px; margin: 16px 0 0; color: var(--adf-muted); font-size: 16px; }
.adf-cta-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* footer */
.adf-footer { padding: 74px 0 0; border-top: 1px solid var(--adf-line); background: #040713; }
.adf-footer-grid { display: grid; grid-template-columns: 1.35fr .65fr .65fr .9fr; gap: 48px; padding-bottom: 58px; }
.adf-footer-brand img { width: 220px; }
.adf-footer-brand p { max-width: 390px; margin: 22px 0 0; color: var(--adf-muted); font-size: 14px; }
.adf-footer-social { display: flex; gap: 10px; margin-top: 25px; }
.adf-social-link { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--adf-line); border-radius: 12px; background: rgba(255,255,255,.025); color: #b7c7e5; transition: border-color .2s ease, color .2s ease, transform .2s ease; }
.adf-social-link:hover { border-color: rgba(107,174,255,.4); color: #fff; transform: translateY(-2px); }
.adf-social-link svg { width: 18px; height: 18px; }
.adf-footer-col h3 { margin: 0 0 20px; color: #fff; font-size: 13px; letter-spacing: .02em; }
.adf-footer-col a, .adf-footer-col span { display: block; margin: 11px 0; color: #8897b5; font-size: 13px; transition: color .2s ease; }
.adf-footer-col a:hover { color: #fff; }
.adf-footer-contact strong { display: block; margin: 0 0 6px; color: #fff; font-size: 23px; letter-spacing: -.03em; }
.adf-footer-bottom { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid var(--adf-line); color: #687793; font-size: 12px; }
.adf-legal { display: flex; gap: 22px; }
.adf-legal a:hover { color: #fff; }

/* support widgets */
.adf-support-stack { position: fixed; right: 22px; bottom: 22px; z-index: 990; display: flex; flex-direction: column; gap: 10px; }
.adf-support-button { position: relative; width: 56px; height: 56px; display: grid; place-items: center; padding: 0; border: 1px solid rgba(255,255,255,.18); border-radius: 17px; background: #fff; box-shadow: 0 16px 46px rgba(0,0,0,.35); cursor: pointer; transition: transform .22s var(--adf-ease); overflow: hidden; }
.adf-support-button:hover { transform: translateY(-3px) scale(1.02); }
.adf-support-button img { width: 100%; height: 100%; object-fit: cover; }
.adf-support-button.chat img { width: 78%; height: 78%; object-fit: contain; }
.adf-support-label { position: absolute; right: 66px; min-width: max-content; padding: 7px 10px; border: 1px solid var(--adf-line); border-radius: 9px; background: #0b1328; color: #dce6f8; font-size: 10px; font-weight: 750; opacity: 0; pointer-events: none; transform: translateX(6px); transition: opacity .2s ease, transform .2s ease; }
.adf-support-button:hover .adf-support-label { opacity: 1; transform: translateX(0); }
.adf-chat-panel { position: fixed; z-index: 995; right: 22px; bottom: 158px; width: min(370px, calc(100vw - 28px)); max-height: min(590px, calc(100vh - 190px)); display: flex; flex-direction: column; border: 1px solid rgba(147,183,240,.25); border-radius: 22px; background: #0a1226; box-shadow: 0 28px 90px rgba(0,0,0,.55); opacity: 0; visibility: hidden; transform: translateY(16px) scale(.97); transform-origin: bottom right; transition: opacity .25s ease, transform .25s var(--adf-ease), visibility .25s ease; overflow: hidden; }
.chat-open .adf-chat-panel { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.adf-chat-head { display: flex; align-items: center; gap: 12px; padding: 17px; border-bottom: 1px solid var(--adf-line); background: #0e1932; }
.adf-chat-avatar { width: 42px; height: 42px; display: grid; place-items: center; overflow: hidden; border-radius: 13px; background: #fff; }
.adf-chat-avatar img { width: 78%; height: 78%; object-fit: contain; }
.adf-chat-head strong { display: block; font-size: 13px; }
.adf-chat-head span { display: flex; align-items: center; gap: 6px; color: #7f91b2; font-size: 10px; }
.adf-chat-head span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--adf-green); }
.adf-chat-close { margin-left: auto; width: 34px; height: 34px; border: 0; border-radius: 10px; background: rgba(255,255,255,.045); cursor: pointer; }
.adf-chat-body { display: flex; flex-direction: column; gap: 10px; min-height: 285px; padding: 18px; overflow-y: auto; }
.adf-chat-message { max-width: 86%; padding: 11px 13px; border-radius: 14px; color: #cfd9eb; background: #141f39; font-size: 12px; line-height: 1.55; }
.adf-chat-message.bot { border-bottom-left-radius: 4px; }
.adf-chat-message.user { margin-left: auto; border-bottom-right-radius: 4px; background: #0d4dff; color: #fff; }
.adf-chat-quick { display: flex; flex-wrap: wrap; gap: 7px; padding: 0 18px 14px; }
.adf-chat-quick button { min-height: 32px; padding: 0 10px; border: 1px solid var(--adf-line); border-radius: 999px; background: transparent; color: #9ecfff; font-size: 10px; font-weight: 700; cursor: pointer; }
.adf-chat-form { display: grid; grid-template-columns: 1fr 42px; gap: 9px; padding: 13px; border-top: 1px solid var(--adf-line); }
.adf-chat-form input { min-width: 0; height: 42px; padding: 0 13px; border: 1px solid var(--adf-line); outline: 0; border-radius: 11px; background: rgba(255,255,255,.035); color: #fff; font-size: 12px; }
.adf-chat-form input:focus { border-color: rgba(80,157,255,.55); }
.adf-chat-form button { width: 42px; height: 42px; display: grid; place-items: center; border: 0; border-radius: 11px; background: var(--adf-blue); cursor: pointer; }
.adf-chat-form svg { width: 17px; height: 17px; }

/* mobile app nav */
.adf-mobile-app-nav { display: none; position: fixed; z-index: 980; left: 10px; right: 10px; bottom: 9px; height: 66px; padding: 5px 8px calc(5px + env(safe-area-inset-bottom)); border: 1px solid rgba(157,178,224,.2); border-radius: 19px; background: rgba(8,13,31,.94); box-shadow: 0 16px 44px rgba(0,0,0,.42); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
.adf-mobile-app-nav a { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; border-radius: 13px; color: #71809e; font-size: 9px; font-weight: 700; }
.adf-mobile-app-nav a.active { color: #fff; background: rgba(13,77,255,.16); }
.adf-mobile-app-nav svg { width: 19px; height: 19px; }

/* reveal */
.adf-reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s var(--adf-ease); }
.adf-reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .adf-nav { gap: 20px; }
  .adf-nav a { font-size: 13px; }
  .adf-panel-link { display: none; }
  .adf-dashboard { grid-template-columns: 158px 1fr; }
  .adf-dash-grid { grid-template-columns: repeat(2, 1fr); }
  .adf-product-grid { grid-template-columns: repeat(2,1fr); }
  .adf-fallback-grid { gap: 44px; }
  .adf-banner-slide { padding-inline: 42px; }
  .adf-footer-grid { grid-template-columns: 1.2fr .7fr .7fr; }
  .adf-footer-contact { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .adf-container { width: min(calc(100% - 36px), var(--adf-max)); }
  .adf-section { padding: 90px 0; }
  .adf-section--compact { padding: 68px 0; }
  .adf-header { height: 68px; }
  .adf-header.is-scrolled { height: 64px; }
  .adf-logo img { width: 184px; }
  .adf-nav, .adf-header-actions { display: none; }
  .adf-menu-button { display: block; }
  .menu-open .adf-mobile-menu { display: block; }
  .adf-hero { padding-top: 128px; min-height: auto; }
  .adf-dashboard { grid-template-columns: 1fr; min-height: 0; transform: none; }
  .adf-dash-sidebar { display: none; }
  .adf-dashboard-wrap { margin-top: 52px; }
  .adf-fallback-grid { grid-template-columns: 1fr; }
  .adf-fallback-copy { max-width: 700px; }
  .adf-banner-slide { grid-template-columns: 1fr; min-height: 700px; padding: 52px 42px 82px; }
  .adf-banner-art { min-height: 300px; }
  .adf-banner-controls { left: 42px; }
  .adf-os-grid { grid-template-columns: 1fr; }
  .adf-os-card.large { min-height: 720px; grid-row: auto; }
  .adf-cta-card { grid-template-columns: 1fr; padding: 48px; }
  .adf-footer-grid { grid-template-columns: 1fr 1fr; }
  .adf-footer-brand { grid-column: 1 / -1; }
  .adf-footer-contact { grid-column: auto; }
}

@media (max-width: 640px) {
  body { padding-bottom: 84px; }
  .adf-container { width: min(calc(100% - 28px), var(--adf-max)); }
  .adf-section { padding: 72px 0; }
  .adf-section--compact { padding: 56px 0; }
  .adf-section-head { margin-bottom: 34px; }
  .adf-section-title { font-size: clamp(34px, 10.7vw, 48px); line-height: 1.06; }
  .adf-section-copy { margin-top: 17px; font-size: 15px; line-height: 1.65; }
  .adf-header { height: 64px; }
  .adf-logo img { width: 166px; }
  .adf-mobile-menu { top: 64px; }
  .adf-hero { padding: 110px 0 46px; }
  .adf-hero::before { width: 640px; height: 500px; top: -280px; }
  .adf-hero-badge { margin-bottom: 21px; font-size: 10px; }
  .adf-hero h1 { font-size: clamp(43px, 13.1vw, 62px); line-height: 1.01; }
  .adf-hero-copy > p { margin-top: 20px; font-size: 15px; line-height: 1.65; }
  .adf-hero-actions { margin-top: 26px; }
  .adf-hero-actions .adf-btn { width: 100%; }
  .adf-channel-route { gap: 6px; margin-top: 19px; font-size: 10px; }
  .adf-dashboard-wrap { margin-top: 36px; }
  .adf-dashboard { border-radius: 18px; }
  .adf-dash-main { padding: 12px; }
  .adf-dash-top { margin-bottom: 12px; }
  .adf-dash-tools { display: none; }
  .adf-dash-grid { gap: 7px; }
  .adf-stat { padding: 11px; border-radius: 10px; }
  .adf-stat strong { font-size: 18px; }
  .adf-dash-content { grid-template-columns: 1fr; gap: 8px; }
  .adf-route-card { order: -1; }
  .adf-route-step { min-height: 43px; }
  .adf-chart-card { min-height: 200px; }
  .adf-chart { height: 118px; }
  .adf-campaigns { display: none; }
  .adf-trust { padding: 27px 0 40px; }
  .adf-trust-title { margin-bottom: 18px; font-size: 11px; }
  .adf-client-logo { width: 128px; height: 58px; padding: 11px 14px; border-radius: 12px; }
  .adf-client-logo img { max-height: 34px; }
  .adf-logo-track { gap: 10px; animation-duration: 25s; }
  .adf-product-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
  .adf-product-card { min-height: 235px; padding: 18px; border-radius: 16px; }
  .adf-product-icon { width: 48px; height: 48px; margin-bottom: 20px; border-radius: 13px; }
  .adf-product-icon svg { width: 23px; height: 23px; }
  .adf-product-card h3 { font-size: 16px; }
  .adf-product-card p { font-size: 12px; line-height: 1.55; }
  .adf-product-link { left: 18px; bottom: 17px; font-size: 10px; }
  .adf-icon-spec { font-size: 9px; }
  .adf-fallback-visual { padding: 16px; border-radius: 20px; }
  .adf-visual-top { padding-bottom: 15px; }
  .adf-fallback-flow { padding-top: 16px; gap: 9px; }
  .adf-fallback-node { grid-template-columns: 38px 1fr; min-height: 66px; padding: 10px; gap: 10px; }
  .adf-fallback-node::before { width: 36px; height: 36px; }
  .adf-node-status { display: none; }
  .adf-banner-shell { border-radius: 20px; }
  .adf-banner-slide { min-height: 675px; padding: 38px 24px 74px; gap: 22px; }
  .adf-banner-content h3 { font-size: 36px; }
  .adf-banner-content p { font-size: 14px; }
  .adf-banner-art { min-height: 280px; }
  .adf-banner-orbit { width: 238px; height: 238px; }
  .adf-banner-orbit::before { inset: 30px; }
  .adf-banner-orbit::after { inset: 67px; }
  .adf-orbit-center { inset: 82px; }
  .adf-orbit-center img { width: 44px; height: 44px; }
  .adf-orbit-node { min-width: 72px; min-height: 32px; padding: 0 9px; font-size: 8px; }
  .adf-orbit-node:nth-child(2) { right: -27px; }
  .adf-orbit-node:nth-child(4) { left: -27px; }
  .adf-banner-controls { left: 24px; bottom: 24px; }
  .adf-banner-metrics { max-width: 330px; }
  .adf-banner-metric { min-height: 105px; padding: 15px; }
  .adf-banner-metric strong { font-size: 24px; }
  .adf-banner-phone { width: 190px; min-height: 300px; }
  .adf-os-card { min-height: 390px; padding: 24px; border-radius: 17px; }
  .adf-os-card.large { min-height: 620px; }
  .adf-os-card h3 { font-size: 23px; }
  .adf-os-workspace { inset: 160px 18px 18px; grid-template-columns: 104px 1fr; }
  .adf-workspace-main .cards { grid-template-columns: 1fr 1fr; }
  .adf-workspace-main .cards span:last-child { display: none; }
  .adf-mini-inbox { inset: 150px 20px 22px; }
  .adf-review-scroller { grid-auto-columns: 87%; gap: 11px; }
  .adf-review-card { min-height: 310px; padding: 22px; border-radius: 17px; }
  .adf-review-card blockquote { margin-top: 23px; font-size: 14px; }
  .adf-scroll-hint { display: block; }
  .adf-cta { padding-bottom: 72px; }
  .adf-cta-card { padding: 34px 24px; border-radius: 20px; }
  .adf-cta-card h2 { font-size: 37px; }
  .adf-cta-actions .adf-btn { width: 100%; }
  .adf-footer { padding-top: 54px; }
  .adf-footer-grid { grid-template-columns: 1fr 1fr; gap: 38px 22px; padding-bottom: 40px; }
  .adf-footer-brand { grid-column: 1 / -1; }
  .adf-footer-brand img { width: 190px; }
  .adf-footer-contact { grid-column: 1 / -1; }
  .adf-footer-bottom { min-height: 74px; flex-direction: column; align-items: flex-start; justify-content: center; gap: 8px; padding: 12px 0 82px; }
  .adf-legal { gap: 15px; }
  .adf-support-stack { right: 14px; bottom: 88px; gap: 8px; }
  .adf-support-button { width: 50px; height: 50px; border-radius: 15px; }
  .adf-support-label { display: none; }
  .adf-chat-panel { right: 10px; bottom: 151px; max-height: calc(100vh - 170px); }
  .adf-mobile-app-nav { display: flex; }
}

@media (max-width: 390px) {
  .adf-product-grid { grid-template-columns: 1fr; }
  .adf-product-card { min-height: 220px; }
  .adf-footer-grid { grid-template-columns: 1fr; }
  .adf-footer-brand, .adf-footer-contact { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto!important; animation-duration: .01ms!important; animation-iteration-count: 1!important; transition-duration: .01ms!important; }
}


/* =========================================================
   V2 — Home 2 template fidelity refinements
   ========================================================= */

/* Smaller, more balanced brand mark in the navbar */
.adf-logo img { width: 182px; }

/* Desktop product mega-dropdown */
.adf-nav-dropdown { position: relative; height: 100%; display: flex; align-items: center; }
.adf-nav-dropdown-toggle { position: relative; height: 100%; min-height: 0; display: inline-flex; align-items: center; gap: 7px; padding: 0; border: 0; background: transparent; color: #c5cee0; font-size: 14px; font-weight: 650; cursor: pointer; transition: color .2s ease; }
.adf-nav-dropdown-toggle::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 19px; height: 2px; border-radius: 2px; background: var(--adf-blue-2); transition: right .25s var(--adf-ease); }
.adf-nav-dropdown:hover .adf-nav-dropdown-toggle,
.adf-nav-dropdown:focus-within .adf-nav-dropdown-toggle,
.adf-nav-dropdown.is-open .adf-nav-dropdown-toggle { color: #fff; }
.adf-nav-dropdown:hover .adf-nav-dropdown-toggle::after,
.adf-nav-dropdown:focus-within .adf-nav-dropdown-toggle::after,
.adf-nav-dropdown.is-open .adf-nav-dropdown-toggle::after { right: 0; }
.adf-chevron { display: inline-block; margin-top: -3px; font-size: 16px; transition: transform .2s ease; }
.adf-nav-dropdown:hover .adf-chevron,
.adf-nav-dropdown:focus-within .adf-chevron,
.adf-nav-dropdown.is-open .adf-chevron { transform: rotate(180deg); }
.adf-product-menu { position: absolute; top: calc(100% - 4px); left: 50%; width: 590px; display: grid; grid-template-columns: 1fr 1fr; gap: 6px; padding: 14px; border: 1px solid rgba(93,151,255,.28); border-radius: 18px; background: rgba(7,13,31,.98); box-shadow: 0 28px 80px rgba(0,0,0,.48); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); opacity: 0; visibility: hidden; transform: translate(-50%, 12px); transition: opacity .2s ease, visibility .2s ease, transform .25s var(--adf-ease); }
.adf-nav-dropdown:hover .adf-product-menu,
.adf-nav-dropdown:focus-within .adf-product-menu,
.adf-nav-dropdown.is-open .adf-product-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.adf-product-menu > a { min-height: 72px; display: grid; grid-template-columns: 42px 1fr; align-items: center; gap: 12px; padding: 10px 12px; border: 1px solid transparent; border-radius: 13px; color: #dfe8fa; transition: border-color .2s ease, background .2s ease, transform .2s ease; }
.adf-product-menu > a::after { display: none; }
.adf-product-menu > a:hover { border-color: rgba(77,151,255,.22); background: rgba(13,77,255,.09); transform: translateY(-1px); }
.adf-menu-icon { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(82,158,255,.24); border-radius: 12px; background: rgba(13,77,255,.12); color: #7fd0ff; }
.adf-menu-icon svg { width: 20px; height: 20px; }
.adf-product-menu strong { display: block; font-size: 12px; line-height: 1.25; }
.adf-product-menu small { display: block; margin-top: 4px; color: #7787a6; font-size: 9px; line-height: 1.35; }

/* Mobile product accordion */
.adf-mobile-products-toggle { width: 100%; min-height: 48px; display: flex; align-items: center; justify-content: space-between; padding: 0 8px; border: 0; border-bottom: 1px solid rgba(157,178,224,.1); background: transparent; color: #dce6f9; font-weight: 680; cursor: pointer; }
.adf-mobile-products-toggle span { font-size: 20px; font-weight: 400; transition: transform .2s ease; }
.adf-mobile-products-toggle[aria-expanded="true"] span { transform: rotate(45deg); }
.adf-mobile-products-list { display: none; grid-template-columns: 1fr 1fr; gap: 7px; padding: 10px 4px 16px; border-bottom: 1px solid rgba(157,178,224,.1); }
.adf-mobile-products-list.is-open { display: grid; }
.adf-mobile-products-list a { min-height: 40px; padding: 9px 10px; border: 1px solid rgba(157,178,224,.12); border-radius: 10px; background: rgba(255,255,255,.025); color: #aebbd3; font-size: 10px; line-height: 1.25; }

/* The original Home 2 gradient environment, recoloured to Adfinmark blue */
.adf-hero { isolation: isolate; background: linear-gradient(180deg, #040713 0%, #050817 52%, #050917 100%); }
.adf-hero-template-bg { position: absolute; z-index: -3; inset: 0; background-image: linear-gradient(180deg, rgba(4,7,19,.12) 0%, rgba(4,7,19,.06) 42%, rgba(4,7,19,.18) 100%), url('../img/home2/hero-bg-desktop-soft.svg'); background-repeat: no-repeat; background-position: center bottom; background-size: cover; opacity: .72; pointer-events: none; }
.adf-hero::before { z-index: -2; background: radial-gradient(circle, rgba(14,71,192,.04) 0%, rgba(9,125,214,.016) 40%, rgba(4,8,19,0) 66%); }
.adf-hero::after { z-index: -2; background: radial-gradient(circle, rgba(9,95,210,.012), transparent 64%); }
.adf-hero-template-shapes { position: absolute; z-index: -1; inset: 0; pointer-events: none; }
.adf-hero-shape { position: absolute; object-fit: contain; filter: drop-shadow(0 10px 22px rgba(0,38,128,.10)); }
.adf-hero-shape--1 { width: 132px; left: 3.2%; top: 44%; opacity: .35; animation: adfFloatA 7s ease-in-out infinite; }
.adf-hero-shape--2 { width: min(64vw, 930px); left: -31%; top: 4%; opacity: .12; }
.adf-hero-shape--3 { width: 92px; right: 4.6%; top: 38%; opacity: .30; animation: adfFloatB 8s ease-in-out infinite; }
.adf-hero-shape--4 { width: min(54vw, 760px); right: -27%; bottom: -2%; opacity: .10; }
@keyframes adfFloatA { 0%,100% { transform: translateY(0) rotate(-4deg); } 50% { transform: translateY(-16px) rotate(3deg); } }
@keyframes adfFloatB { 0%,100% { transform: translateY(0) rotate(4deg); } 50% { transform: translateY(14px) rotate(-3deg); } }

/* Full-colour client logos on clean white cards */
.adf-trust { background: #050817; }
.adf-client-logo { border-color: rgba(20,76,185,.42); background: #fff; box-shadow: 0 8px 24px rgba(0,0,0,.14); }
.adf-client-logo img,
.adf-client-logo:hover img { filter: none; opacity: 1; }

/* Home 2 testimonial section — same visual system as the template */
.adf-template-testimonials { position: relative; isolation: isolate; padding: 112px 0 90px; overflow: hidden; background: linear-gradient(180deg, #050817 0%, #050816 100%); border-block: 1px solid rgba(157,178,224,.07); }
.adf-template-testimonials .adf-section-head { margin-bottom: 58px; }
.adf-testimonial-slider { position: relative; z-index: 2; overflow: visible; }
.adf-template-testimonial { position: relative; z-index: 1; min-height: 390px; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; padding: 58px 40px 38px; border: 1px solid rgba(72,137,255,.14); border-radius: 15px; background: #09101f; text-align: center; overflow: hidden; box-shadow: 0 18px 42px rgba(0,0,0,.16); }
.adf-template-testimonial::before { content: ""; position: absolute; inset: 0; z-index: -2; background: radial-gradient(circle at 50% 0%, rgba(12,89,255,.012), rgba(5,8,19,0) 52%); }
.adf-template-rating { height: 20px; margin-bottom: 36px; }
.adf-template-rating img { width: 119px; height: 20px; object-fit: contain; }
.adf-template-testimonial > p { max-width: 640px; margin: 0 auto; color: #fff; font-size: 18px; line-height: 29px; }
.adf-template-author { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: auto; padding-top: 40px; text-align: left; }
.adf-template-avatar { width: 46px; height: 46px; display: grid; place-items: center; padding: 6px; border-radius: 50%; overflow: hidden; background: #fff; }
.adf-template-avatar img { width: 100%; height: 100%; object-fit: contain; }
.adf-template-author strong { display: block; color: #fff; font-size: 16px; line-height: 1.15; }
.adf-template-author small { display: block; margin-top: 4px; color: #aeb9d1; font-size: 12px; }
.adf-template-quote { position: absolute; z-index: -1; width: 334px; left: 50%; top: 50%; transform: translate(-50%,-50%); opacity: .07; }
.adf-testimonial-shapes { position: absolute; z-index: -1; inset: 0; pointer-events: none; }
.adf-testimonial-shape { position: absolute; object-fit: contain; }
.adf-testimonial-shape--1 { width: min(100%, 1223px); left: 50%; top: -48%; transform: translateX(-50%); opacity: .09; }
.adf-testimonial-shape--2 { width: 90px; right: 4%; top: 12%; opacity: .10; animation: adfFloatB 8s ease-in-out infinite; }
.adf-template-testimonials .swiper-slide { height: auto; }

/* Restore the template's recognisable gradient footer treatment */
.adf-footer { position: relative; isolation: isolate; overflow: hidden; padding-top: 104px; border-top: 0; background: linear-gradient(180deg, #040713 0%, #06102a 54%, #0a246c 128%); }
.adf-footer-template-bg { position: absolute; z-index: -2; inset: 0; background-image: linear-gradient(180deg, rgba(4,7,19,.46), rgba(4,7,19,.12) 48%, rgba(6,24,82,.22)), url('../img/home2/fot_shape2-blue.png'); background-repeat: no-repeat; background-position: center top; background-size: cover; opacity: .78; }
.adf-footer-template-shapes { position: absolute; z-index: -1; inset: 0; pointer-events: none; }
.adf-footer-shape { position: absolute; object-fit: contain; }
.adf-footer-shape--1 { width: 94px; left: 0; top: 8%; opacity: .86; }
.adf-footer-shape--2 { width: 58px; right: 0; top: 38%; opacity: .9; }
.adf-footer-bottom { position: relative; min-height: 46px; padding: 8px 0; margin-top: 6px; border-top: 0; color: rgba(255,255,255,.78); }
.adf-footer-bottom::before { content: ""; position: absolute; z-index: -1; left: 50%; top: 0; width: 100vw; height: 100%; transform: translateX(-50%); background: linear-gradient(90deg, #06154f 0%, #0b3dbb 52%, #0a6ac6 100%); }
.adf-footer-col a, .adf-footer-col span, .adf-footer-brand p { color: #aebcda; }
.adf-footer-grid { position: relative; z-index: 2; }

@media (max-width: 1100px) {
  .adf-logo img { width: 168px; }
  .adf-product-menu { width: 540px; }
}
@media (max-width: 860px) {
  .adf-logo img { width: 158px; }
  .adf-hero-shape--1, .adf-hero-shape--3 { display: none; }
  .adf-hero-shape--2 { width: 980px; left: -630px; opacity: .06; }
  .adf-hero-shape--4 { width: 720px; right: -520px; opacity: .05; }
  .adf-template-testimonials { padding: 88px 0 72px; }
  .adf-testimonial-shape--1 { top: -25%; }
}
@media (max-width: 640px) {
  .adf-logo img { width: 148px; }
  .adf-hero-template-bg { background-image: linear-gradient(180deg, rgba(4,7,19,.10) 0%, rgba(4,7,19,.06) 42%, rgba(4,7,19,.16) 100%), url('../img/home2/hero-bg-mobile-soft.svg'); background-position: center top; background-size: cover; }
  .adf-client-logo { width: 136px; height: 64px; padding: 10px 13px; border-radius: 12px; }
  .adf-client-logo img { max-height: 38px; }
  .adf-template-testimonials { padding: 74px 0 58px; }
  .adf-template-testimonials .adf-section-head { margin-bottom: 36px; }
  .adf-template-testimonial { min-height: 365px; padding: 42px 24px 30px; }
  .adf-template-testimonial > p { font-size: 15px; line-height: 25px; }
  .adf-template-author { padding-top: 30px; }
  .adf-testimonial-shape--1 { width: 720px; top: -8%; }
  .adf-testimonial-shape--2 { display: none; }
  .adf-footer { padding-top: 72px; }
  .adf-footer-template-bg { background-size: auto 78%; background-position: center top; }
  .adf-footer-bottom::before { bottom: 0; height: calc(100% - 78px); top: auto; }
}

/* =====================================================================
   V6 precision fixes — footer artwork containment, logo scale, arrows
   ===================================================================== */
.adf-logo img {
  width: 154px;
  max-height: 46px;
  object-fit: contain;
}

.adf-footer-brand img {
  width: 174px;
  max-height: 54px;
  object-fit: contain;
}

/* Use a CSS-built chevron so the glyph cannot clip or sit above the label. */
.adf-chevron {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  margin: -4px 1px 0 2px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  font-size: 0;
  transform: rotate(45deg);
  transform-origin: center;
}
.adf-nav-dropdown:hover .adf-chevron,
.adf-nav-dropdown:focus-within .adf-chevron,
.adf-nav-dropdown.is-open .adf-chevron {
  transform: translateY(3px) rotate(225deg);
}

/* The original footer PNG had an opaque 1643×874 navy canvas. The cleaned
   alpha version now renders only the glow and remains inside a safe frame. */
.adf-footer-template-bg {
  inset: 0;
  background-image: url('../img/home2/fot_shape2-blue-clean.png');
  background-repeat: no-repeat;
  background-position: center 34%;
  background-size: min(1280px, 90vw) auto;
  opacity: .48;
  mix-blend-mode: screen;
}
.adf-footer-template-shapes {
  inset: 0 max(22px, calc((100vw - var(--adf-container)) / 2));
  overflow: hidden;
}
.adf-footer-shape {
  max-width: 100%;
  filter: saturate(.82) brightness(.82);
}
.adf-footer-shape--1 {
  width: 126px;
  left: 0;
  top: 8%;
  opacity: .38;
}
.adf-footer-shape--2 {
  width: 88px;
  right: 0;
  top: 35%;
  opacity: .34;
}

/* Keep text arrows inside their cards/columns rather than clipping at right. */
.adf-product-link {
  right: 22px;
  width: fit-content;
  max-width: calc(100% - 44px);
}
.adf-product-link svg {
  flex: 0 0 14px;
  overflow: visible;
}
.adf-footer-contact a {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

@media (max-width: 1100px) {
  .adf-logo img { width: 148px; }
  .adf-footer-template-bg { background-size: min(1080px, 96vw) auto; }
}

@media (max-width: 860px) {
  .adf-logo img { width: 142px; }
  .adf-footer-brand img { width: 164px; }
  .adf-footer-template-bg {
    background-position: center 42%;
    background-size: 980px auto;
    opacity: .34;
  }
  .adf-footer-shape--1,
  .adf-footer-shape--2 { display: none; }
}

@media (max-width: 640px) {
  .adf-logo img { width: 132px; max-height: 40px; }
  .adf-footer-brand img { width: 154px; max-height: 48px; }
  .adf-footer-template-bg {
    background-position: center 30%;
    background-size: 760px auto;
    opacity: .26;
  }
  .adf-product-link {
    left: 18px;
    right: 18px;
    max-width: calc(100% - 36px);
  }
}


/* =====================================================================
   V7 universal subpages — legal, contact and branch presence
   ===================================================================== */
.adf-subpage-body { background: #050817; }
.adf-subpage-main { padding-top: 78px; }
.adf-page-hero { position: relative; isolation: isolate; padding: 112px 0 92px; overflow: hidden; border-bottom: 1px solid var(--adf-line); background: #060a18; }
.adf-page-hero::before { content: ""; position: absolute; z-index: -1; width: 760px; height: 500px; left: 50%; top: -330px; transform: translateX(-50%); border-radius: 50%; background: radial-gradient(circle, rgba(13,77,255,.14), rgba(10,164,246,.045) 44%, transparent 70%); }
.adf-page-hero-copy { max-width: 860px; margin-inline: auto; text-align: center; }
.adf-page-hero h1 { margin: 0; color: #fff; font-size: clamp(46px, 7vw, 82px); line-height: 1; letter-spacing: -.06em; }
.adf-page-hero p { max-width: 720px; margin: 24px auto 0; color: var(--adf-muted); font-size: 18px; line-height: 1.75; }
.adf-page-section { padding: 92px 0 116px; }
.adf-policy-layout { display: grid; grid-template-columns: minmax(0, 1fr) 250px; align-items: start; gap: 54px; }
.adf-policy-card { min-width: 0; padding: 48px 52px; border: 1px solid var(--adf-line); border-radius: 24px; background: #080d20; box-shadow: 0 20px 65px rgba(0,0,0,.18); }
.adf-policy-note { margin-bottom: 36px; padding: 16px 18px; border: 1px solid rgba(75,142,255,.2); border-radius: 13px; background: rgba(13,77,255,.055); color: #adbad2; font-size: 13px; line-height: 1.65; }
.adf-policy-card section + section { margin-top: 42px; padding-top: 42px; border-top: 1px solid rgba(157,178,224,.11); }
.adf-policy-card h2 { margin: 0 0 15px; color: #fff; font-size: clamp(25px, 3vw, 34px); line-height: 1.15; letter-spacing: -.035em; }
.adf-policy-card h3 { margin: 28px 0 10px; color: #fff; font-size: 18px; }
.adf-policy-card p { margin: 0 0 16px; color: #aebad0; line-height: 1.82; }
.adf-policy-card ul, .adf-policy-card ol { display: grid; gap: 12px; margin: 18px 0 0; padding-left: 22px; color: #aebad0; }
.adf-policy-card li { padding-left: 4px; line-height: 1.75; }
.adf-policy-card a { color: #78c8ff; text-decoration: underline; text-decoration-color: rgba(120,200,255,.35); text-underline-offset: 3px; }
.adf-policy-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.adf-policy-actions .adf-btn { text-decoration: none; }
.adf-policy-nav { position: sticky; top: 100px; display: grid; gap: 4px; padding: 20px; border: 1px solid var(--adf-line); border-radius: 18px; background: rgba(11,18,40,.82); backdrop-filter: blur(14px); }
.adf-policy-nav strong { margin-bottom: 9px; color: #fff; font-size: 13px; }
.adf-policy-nav a { padding: 8px 10px; border-radius: 9px; color: #8f9db9; font-size: 12px; transition: color .2s ease, background .2s ease; }
.adf-policy-nav a:hover { color: #fff; background: rgba(255,255,255,.045); }

.adf-contact-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(290px, .65fr); align-items: start; gap: 28px; }
.adf-contact-panel, .adf-contact-card { border: 1px solid var(--adf-line); background: #080d20; }
.adf-contact-panel { padding: 44px; border-radius: 24px; }
.adf-contact-panel h2, .adf-branches-head h2 { margin: 0; color: #fff; font-size: clamp(34px, 4.5vw, 54px); line-height: 1.06; letter-spacing: -.05em; }
.adf-contact-panel > p { max-width: 680px; margin: 18px 0 32px; color: var(--adf-muted); }
.adf-contact-form { display: grid; gap: 17px; }
.adf-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.adf-contact-form label { display: grid; gap: 8px; color: #cbd5e8; font-size: 12px; font-weight: 700; }
.adf-contact-form input, .adf-contact-form textarea, .adf-contact-form select { width: 100%; min-height: 50px; padding: 12px 14px; border: 1px solid rgba(157,178,224,.18); border-radius: 12px; outline: none; background: #0b1228; color: #fff; transition: border-color .2s ease, box-shadow .2s ease; }
.adf-contact-form textarea { resize: vertical; min-height: 142px; }
.adf-contact-form input:focus, .adf-contact-form textarea:focus, .adf-contact-form select:focus { border-color: rgba(85,199,255,.52); box-shadow: 0 0 0 3px rgba(10,164,246,.08); }
.adf-contact-form select option { color: #10172b; }
.adf-consent { grid-template-columns: 20px 1fr !important; align-items: start; gap: 10px !important; color: #8492ae !important; font-weight: 500 !important; line-height: 1.55; }
.adf-consent input { width: 18px; min-height: 18px; height: 18px; padding: 0; margin-top: 2px; accent-color: var(--adf-blue); }
.adf-contact-form .adf-btn { justify-self: start; }
.adf-form-status { margin: 0 !important; color: #71809e !important; font-size: 11px; }
.adf-contact-side { display: grid; gap: 16px; }
.adf-contact-card { padding: 26px; border-radius: 18px; }
.adf-contact-card > span { display: block; margin-bottom: 12px; color: #7fcfff; font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.adf-contact-card > a { display: block; margin: 8px 0; color: #fff; font-size: 17px; font-weight: 700; overflow-wrap: anywhere; }
.adf-contact-card strong { display: block; color: #fff; font-size: 16px; }
.adf-contact-card p { margin: 10px 0 0; color: #9dabca; font-size: 13px; line-height: 1.7; }
.adf-contact-card .adf-footer-social { margin-top: 0; }
.adf-branches-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin: 86px 0 30px; }
.adf-branches-head > p { max-width: 420px; margin: 0; color: var(--adf-muted); text-align: right; }
.adf-branch-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.adf-branch-card { min-height: 190px; padding: 25px; border: 1px solid var(--adf-line); border-radius: 18px; background: #080d20; }
.adf-branch-card small { color: #72c8ff; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.adf-branch-card h3 { margin: 55px 0 5px; color: #fff; font-size: 23px; letter-spacing: -.035em; }
.adf-branch-card p { margin: 0; color: #8997b3; font-size: 13px; }

@media (max-width: 980px) {
  .adf-policy-layout { grid-template-columns: 1fr; gap: 24px; }
  .adf-policy-nav { position: static; grid-template-columns: repeat(2, 1fr); order: -1; }
  .adf-policy-nav strong { grid-column: 1 / -1; }
  .adf-contact-grid { grid-template-columns: 1fr; }
  .adf-contact-side { grid-template-columns: repeat(3, 1fr); }
  .adf-branch-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .adf-subpage-main { padding-top: 64px; }
  .adf-page-hero { padding: 82px 0 64px; }
  .adf-page-hero h1 { font-size: clamp(43px, 14vw, 62px); }
  .adf-page-hero p { font-size: 15px; }
  .adf-page-section { padding: 58px 0 88px; }
  .adf-policy-card { padding: 28px 22px; border-radius: 19px; }
  .adf-policy-card section + section { margin-top: 32px; padding-top: 32px; }
  .adf-policy-nav { grid-template-columns: 1fr 1fr; padding: 14px; border-radius: 15px; }
  .adf-contact-panel { padding: 28px 20px; border-radius: 19px; }
  .adf-form-grid { grid-template-columns: 1fr; }
  .adf-contact-form .adf-btn { width: 100%; }
  .adf-contact-side { grid-template-columns: 1fr; }
  .adf-branches-head { align-items: flex-start; flex-direction: column; margin-top: 62px; }
  .adf-branches-head > p { text-align: left; }
  .adf-branch-grid { grid-template-columns: 1fr 1fr; }
  .adf-branch-card { min-height: 156px; padding: 20px; }
  .adf-branch-card h3 { margin-top: 35px; font-size: 20px; }
}
@media (max-width: 420px) {
  .adf-branch-grid { grid-template-columns: 1fr; }
  .adf-policy-nav { grid-template-columns: 1fr; }
  .adf-policy-nav strong { grid-column: auto; }
}


/* =====================================================================
   V8 polish — brighter footer PNG assets, universal contact updates,
   and visual placeholder slots for future creatives
   ===================================================================== */
.adf-footer-template-bg {
  background-image: url('../img/home2/fot_shape2-blue-clean.png');
  background-repeat: no-repeat;
  background-position: center 34%;
  background-size: min(1280px, 90vw) auto;
  opacity: .82;
  mix-blend-mode: normal;
  filter: saturate(1.06) brightness(1.08);
}
.adf-footer-shape {
  max-width: 100%;
  filter: saturate(1.06) brightness(1.06);
}
.adf-footer-shape--1 { opacity: .70; }
.adf-footer-shape--2 { opacity: .64; }

.adf-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.adf-visual-card {
  padding: 18px;
  border: 1px solid var(--adf-line);
  border-radius: 24px;
  background: rgba(255,255,255,.03);
}
.adf-visual-frame {
  min-height: 280px;
  border: 1.5px dashed rgba(99,169,255,.38);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 28px;
  text-align: center;
  background: linear-gradient(180deg, rgba(13,77,255,.08), rgba(255,255,255,.015));
}
.adf-visual-frame.mobile { min-height: 360px; }
.adf-visual-frame span { color: #8edaff; font-size: 12px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.adf-visual-frame strong { color: #fff; font-size: clamp(28px, 3vw, 40px); letter-spacing: -.04em; }
.adf-visual-frame small { color: var(--adf-muted); font-size: 13px; }

@media (max-width: 860px) {
  .adf-footer-template-bg {
    background-position: center 42%;
    background-size: 980px auto;
    opacity: .68;
    filter: saturate(1.04) brightness(1.05);
  }
  .adf-visual-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .adf-footer-template-bg {
    background-position: center 30%;
    background-size: 760px auto;
    opacity: .58;
    filter: saturate(1.02) brightness(1.03);
  }
  .adf-visual-card { padding: 14px; border-radius: 18px; }
  .adf-visual-frame { min-height: 224px; border-radius: 16px; padding: 22px; }
  .adf-visual-frame.mobile { min-height: 300px; }
}


/* =====================================================================
   V9 refinement — softer hero/footer gradients, brighter floating shapes,
   cookie consent modal, and dedicated product page sections
   ===================================================================== */
.adf-hero-template-bg {
  background-image: linear-gradient(180deg, rgba(4,7,19,.08) 0%, rgba(4,7,19,.04) 42%, rgba(4,7,19,.12) 100%), url('../img/home2/hero-bg-desktop-soft.svg');
  opacity: .56;
}
.adf-hero::before { background: radial-gradient(circle, rgba(14,71,192,.028) 0%, rgba(9,125,214,.010) 40%, rgba(4,8,19,0) 66%); }
.adf-hero::after { background: radial-gradient(circle, rgba(9,95,210,.007), transparent 64%); }
.adf-hero-shape--1 { opacity: .56; }
.adf-hero-shape--2 { opacity: .17; }
.adf-hero-shape--3 { opacity: .48; }
.adf-hero-shape--4 { opacity: .15; }

.adf-footer-template-bg {
  background-image: url('../img/home2/fot_shape2-blue-clean.png');
  opacity: .44;
  mix-blend-mode: screen;
  filter: saturate(.98) brightness(.96);
}
.adf-footer-shape { filter: saturate(.96) brightness(.96); }
.adf-footer-shape--1 { opacity: .46; }
.adf-footer-shape--2 { opacity: .40; }

.adf-cookie-modal { position: fixed; inset: 0; z-index: 70; display: grid; place-items: center; padding: 20px; }
.adf-cookie-backdrop { position: absolute; inset: 0; background: rgba(4,7,19,.72); backdrop-filter: blur(6px); }
.adf-cookie-card { position: relative; width: min(100%, 720px); padding: 28px; border: 1px solid rgba(150,178,232,.18); border-radius: 24px; background: #091021; box-shadow: 0 36px 100px rgba(0,0,0,.46); }
.adf-cookie-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 16px; background: rgba(13,77,255,.12); color: #8dd6ff; }
.adf-cookie-copy h2 { margin: 14px 0 10px; color: #fff; font-size: clamp(28px, 4vw, 42px); line-height: 1.02; letter-spacing: -.05em; }
.adf-cookie-copy p { margin: 0 0 14px; color: #aab8d2; line-height: 1.75; }
.adf-cookie-eyebrow { margin-top: 16px; color: #8edaff; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.adf-cookie-options { display: grid; gap: 10px; margin: 18px 0; }
.adf-cookie-option { display: flex; gap: 12px; align-items: flex-start; padding: 14px 16px; border: 1px solid var(--adf-line); border-radius: 16px; background: rgba(255,255,255,.025); cursor: pointer; }
.adf-cookie-option input { width: 18px; height: 18px; accent-color: #0d77ff; margin-top: 3px; }
.adf-cookie-option strong { display: block; color: #fff; font-size: 15px; }
.adf-cookie-option small { display: block; color: #9eb0cc; line-height: 1.55; }
.adf-cookie-option.is-locked { opacity: .92; cursor: not-allowed; }
.adf-cookie-links { color: #90a4c3; font-size: 13px; }
.adf-cookie-links a { color: #7dd2ff; }
.adf-cookie-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
body.cookie-open { overflow: hidden; }

.adf-product-page-body .adf-page-hero { padding: 102px 0 80px; }
.adf-product-hero-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr); align-items: center; gap: 38px; }
.adf-product-hero-copy { max-width: 640px; }
.adf-page-stats { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; margin-top: 26px; }
.adf-page-stat { padding: 16px 18px; border: 1px solid var(--adf-line); border-radius: 18px; background: rgba(255,255,255,.025); }
.adf-page-stat strong { display: block; color: #fff; font-size: 18px; line-height: 1.2; }
.adf-page-stat span { display: block; margin-top: 6px; color: #98a9c6; font-size: 12px; line-height: 1.55; }
.adf-motion-visual-wrap { display: grid; place-items: center; }
.adf-motion-visual { position: relative; width: min(100%, 520px); aspect-ratio: 1 / 1; border-radius: 36px; border: 1px solid rgba(154,183,240,.16); background: radial-gradient(circle at 50% 20%, rgba(13,119,255,.12), rgba(255,255,255,.02) 48%, rgba(255,255,255,.01) 100%); overflow: hidden; box-shadow: 0 30px 90px rgba(0,0,0,.28); }
.adf-motion-ring { position: absolute; inset: 12%; border-radius: 50%; border: 1px solid rgba(142,214,255,.18); animation: adfSpin 18s linear infinite; }
.adf-motion-ring.inner { inset: 24%; border-color: rgba(142,214,255,.12); animation-direction: reverse; animation-duration: 14s; }
.adf-motion-card { position: absolute; border: 1px solid rgba(148,179,243,.16); border-radius: 22px; background: rgba(8,14,32,.85); color: #fff; backdrop-filter: blur(12px); }
.adf-motion-card.main { left: 50%; top: 50%; width: min(78%, 330px); padding: 26px 24px; transform: translate(-50%, -50%); text-align: center; }
.adf-motion-card.main span { display: block; margin-bottom: 12px; color: #8edaff; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.adf-motion-card.main strong { display: block; font-size: 28px; line-height: 1.05; letter-spacing: -.04em; }
.adf-motion-card.main small { display: block; margin-top: 10px; color: #9fb0cd; }
.adf-motion-card.floating { display: inline-flex; align-items: center; gap: 10px; padding: 12px 16px; box-shadow: 0 18px 50px rgba(0,0,0,.22); animation: adfFloatA 7s ease-in-out infinite; }
.adf-motion-card.floating svg { width: 18px; height: 18px; color: #8dd6ff; }
.adf-motion-card.floating.left { top: 14%; left: 8%; }
.adf-motion-card.floating.right { top: 18%; right: 8%; animation-name: adfFloatB; }
.adf-motion-card.floating.bottom { bottom: 14%; left: 50%; transform: translateX(-50%); animation-name: adfFloatC; }
.adf-solution-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.adf-solution-card { padding: 28px; border: 1px solid var(--adf-line); border-radius: 24px; background: rgba(255,255,255,.025); }
.adf-solution-card h3 { margin: 0 0 10px; color: #fff; font-size: 22px; letter-spacing: -.03em; }
.adf-solution-card p { margin: 0; color: #aebad0; line-height: 1.8; }
.adf-page-section--soft { background: linear-gradient(180deg, rgba(8,13,30,.54), rgba(8,13,30,.12)); border-top: 1px solid rgba(157,178,224,.08); border-bottom: 1px solid rgba(157,178,224,.08); }
.adf-journey-grid { display: grid; gap: 14px; }
.adf-journey-step { display: grid; grid-template-columns: 72px 1fr; gap: 16px; align-items: start; padding: 22px 24px; border: 1px solid var(--adf-line); border-radius: 22px; background: rgba(255,255,255,.022); }
.adf-journey-step span { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 14px; background: rgba(13,77,255,.12); color: #8edaff; font-weight: 800; letter-spacing: .08em; }
.adf-journey-step strong { display: block; color: #fff; font-size: 20px; letter-spacing: -.03em; }
.adf-journey-step p { margin: 8px 0 0; color: #aab7d0; line-height: 1.75; }
.adf-visual-spec-layout { display: grid; grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr); gap: 30px; align-items: start; }
.adf-visual-spec-list { display: grid; gap: 12px; margin: 20px 0 0; padding-left: 18px; color: #aebad0; }
.adf-visual-specs { display: grid; gap: 14px; }
.adf-visual-frame.animation { min-height: 240px; }
.adf-inline-cta { margin-top: 28px; }
@keyframes adfSpin { from { transform: rotate(0deg);} to { transform: rotate(360deg);} }

@media (max-width: 860px) {
  .adf-hero-template-bg { background-image: linear-gradient(180deg, rgba(4,7,19,.07) 0%, rgba(4,7,19,.05) 42%, rgba(4,7,19,.11) 100%), url('../img/home2/hero-bg-mobile-soft.svg'); opacity: .52; }
  .adf-hero-shape--2 { width: 980px; left: -630px; opacity: .10; }
  .adf-hero-shape--4 { width: 720px; right: -520px; opacity: .08; }
  .adf-footer-template-bg { opacity: .34; }
  .adf-product-hero-grid, .adf-visual-spec-layout, .adf-solution-grid { grid-template-columns: 1fr; }
  .adf-page-stats { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .adf-cookie-card { padding: 22px 18px; border-radius: 20px; }
  .adf-cookie-copy h2 { font-size: 32px; }
  .adf-cookie-actions { justify-content: stretch; }
  .adf-cookie-actions .adf-btn { width: 100%; }
  .adf-product-page-body .adf-page-hero { padding: 86px 0 58px; }
  .adf-motion-visual { border-radius: 28px; }
  .adf-motion-card.main { width: min(84%, 290px); padding: 20px; }
  .adf-motion-card.main strong { font-size: 22px; }
  .adf-motion-card.floating.left { left: 6%; top: 12%; }
  .adf-motion-card.floating.right { right: 6%; top: 16%; }
  .adf-motion-card.floating.bottom { bottom: 12%; }
  .adf-solution-card, .adf-journey-step { padding: 20px 18px; border-radius: 18px; }
  .adf-journey-step { grid-template-columns: 56px 1fr; }
}


/* =====================================================================
   V10 compact cookie banner — fixed bottom line, desktop + mobile
   ===================================================================== */
.adf-cookie-modal,
.adf-cookie-backdrop,
.adf-cookie-card { display: none !important; }

.adf-cookie-banner {
  position: fixed;
  z-index: 75;
  left: 0;
  right: 0;
  bottom: 14px;
  padding: 0 16px;
  pointer-events: none;
}
.adf-cookie-banner[hidden] { display: none !important; }
.adf-cookie-bar {
  width: min(100%, 1060px);
  min-height: 58px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 11px 12px 11px 20px;
  border: 1px solid rgba(145,176,231,.2);
  border-radius: 14px;
  background: rgba(8,14,30,.96);
  box-shadow: 0 16px 44px rgba(0,0,0,.34);
  backdrop-filter: blur(16px);
  pointer-events: auto;
}
.adf-cookie-bar p {
  margin: 0;
  color: #aebbd1;
  font-size: 12px;
  line-height: 1.55;
}
.adf-cookie-bar p a {
  color: #80d2ff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.adf-cookie-bar-actions {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 8px;
}
.adf-cookie-text-btn,
.adf-cookie-accept-btn {
  min-height: 36px;
  padding: 0 14px;
  border-radius: 9px;
  font: inherit;
  font-size: 11px;
  font-weight: 750;
  cursor: pointer;
  white-space: nowrap;
}
.adf-cookie-text-btn {
  border: 1px solid rgba(147,174,225,.18);
  background: transparent;
  color: #c0cbe0;
}
.adf-cookie-accept-btn {
  border: 1px solid #1978ff;
  background: #1978ff;
  color: #fff;
}
.adf-cookie-text-btn:hover { color: #fff; border-color: rgba(147,174,225,.34); }
.adf-cookie-accept-btn:hover { background: #2b86ff; }
body.cookie-open { overflow: auto; }
body.cookie-open .adf-support-stack { bottom: 92px; }

@media (max-width: 860px) {
  .adf-cookie-banner { bottom: 84px; padding: 0 10px; }
  .adf-cookie-bar {
    min-height: 0;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border-radius: 13px;
  }
  .adf-cookie-bar p { font-size: 11px; }
  .adf-cookie-bar-actions { gap: 6px; }
  .adf-cookie-text-btn,
  .adf-cookie-accept-btn { min-height: 34px; padding: 0 11px; font-size: 10px; }
  body.cookie-open .adf-support-stack { bottom: 184px; }
  body.cookie-open .adf-chat-panel { bottom: 246px; }
}

@media (max-width: 560px) {
  .adf-cookie-bar { display: grid; grid-template-columns: 1fr; gap: 9px; }
  .adf-cookie-bar-actions { width: 100%; justify-content: flex-end; }
  body.cookie-open .adf-support-stack { bottom: 222px; }
  body.cookie-open .adf-chat-panel { bottom: 282px; }
}


/* =====================================================================
   V11 harmony pass — simplified centered heroes, homepage-style product
   dashboards, responsive banner placeholders and product-card spacing
   ===================================================================== */
.adf-hero { min-height: auto; padding: 138px 0 72px; }
.adf-hero-template-bg { opacity: .28; }
.adf-hero::before, .adf-hero::after { opacity: .45; }
.adf-hero-copy { max-width: 850px; }
.adf-hero h1 { font-size: clamp(46px, 6.2vw, 78px); line-height: 1.01; }
.adf-hero-copy > p { max-width: 690px; margin-top: 22px; line-height: 1.58; }
.adf-dashboard-wrap { margin-top: 64px; }
.adf-product-card { display: flex; flex-direction: column; min-height: 270px; padding-bottom: 70px; }
.adf-product-card p { margin-top: 10px; font-size: 14px; line-height: 1.48; }
.adf-product-link { bottom: 22px; }
.adf-product-simple-hero { padding-bottom: 84px; }
.adf-product-simple-copy { max-width: 820px; }
.adf-product-simple-copy h1 { font-size: clamp(44px, 6vw, 76px); }
.adf-product-simple-copy > p { max-width: 680px; }
.adf-product-dashboard-wrap { max-width: 1180px; margin: 60px auto 0; }
.adf-product-dashboard-wrap .adf-dashboard { min-height: 650px; }
.adf-product-dashboard-wrap .adf-dash-main { min-width: 0; }
.adf-product-dashboard-wrap .adf-dash-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
.adf-product-banner-shell { background: #080d20; }
.adf-product-placeholder-slide { min-height: 520px; display: block; padding: 34px; }
.adf-product-banner-placeholder { width: 100%; min-height: 450px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; padding: 34px; border: 1.5px dashed rgba(93,159,255,.42); border-radius: 22px; background: linear-gradient(145deg, rgba(13,77,255,.085), rgba(255,255,255,.018)); text-align: center; }
.adf-product-banner-placeholder.mobile { display: none; }
.adf-product-banner-placeholder span { color: #8edaff; font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.adf-product-banner-placeholder strong { color: #fff; font-size: clamp(34px, 5vw, 62px); letter-spacing: -.05em; }
.adf-product-banner-placeholder small { color: #9eacc5; font-size: 14px; }
.adf-product-banner-shell .adf-banner-controls { left: 50%; bottom: 14px; transform: translateX(-50%); }
.adf-product-banner-shell .adf-banner-dot { background: #334260; }
.adf-product-banner-shell .adf-banner-dot.active { background: #46bfff; }
.adf-solution-grid { max-width: 1080px; margin-inline: auto; }
.adf-solution-card { min-height: 190px; }
.adf-journey-grid { max-width: 980px; margin-inline: auto; }
.adf-inline-cta { max-width: 1100px; margin: 36px auto 0; }
@media (max-width: 1100px) { .adf-product-dashboard-wrap .adf-dashboard { min-height: auto; } .adf-product-dashboard-wrap .adf-dash-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 860px) { .adf-hero { padding: 116px 0 58px; } .adf-dashboard-wrap { margin-top: 46px; } .adf-product-simple-hero { padding-bottom: 64px; } .adf-product-placeholder-slide { min-height: 650px; padding: 22px; } .adf-product-banner-placeholder.desktop { display: none; } .adf-product-banner-placeholder.mobile { display: flex; min-height: 590px; } }
@media (max-width: 640px) { .adf-hero { padding: 104px 0 44px; } .adf-hero h1, .adf-product-simple-copy h1 { font-size: clamp(40px, 12vw, 54px); } .adf-hero-copy > p { font-size: 15px; line-height: 1.55; } .adf-dashboard-wrap { margin-top: 36px; } .adf-product-card { min-height: 228px; padding-bottom: 58px; } .adf-product-card p { font-size: 12px; line-height: 1.42; } .adf-product-link { bottom: 16px; } .adf-product-dashboard-wrap .adf-dash-grid { grid-template-columns: 1fr 1fr; } .adf-product-placeholder-slide { min-height: 550px; padding: 14px; } .adf-product-banner-placeholder.mobile { min-height: 510px; border-radius: 16px; padding: 20px; } .adf-product-banner-placeholder strong { font-size: 38px; } .adf-solution-card { min-height: auto; } }


/* =====================================================================
   V12 product landing pages — banners replace dashboards
   ===================================================================== */
.adf-product-landing-hero { position: relative; isolation: isolate; padding: 138px 0 86px; overflow: hidden; background: #050817; border-bottom: 1px solid rgba(157,178,224,.08); }
.adf-product-landing-glow { position: absolute; z-index: -1; width: min(900px, 80vw); height: 460px; left: 50%; top: -300px; transform: translateX(-50%); border-radius: 50%; background: radial-gradient(circle, rgba(13,77,255,.10), rgba(10,164,246,.035) 44%, transparent 72%); }
.adf-product-landing-copy { max-width: 880px; margin-inline: auto; text-align: center; }
.adf-product-landing-copy > p { max-width: 720px; margin-inline: auto; }
.adf-product-hero-banner { margin-top: 52px; background: #080d20; }
.adf-product-hero-banner .adf-product-placeholder-slide { min-height: 510px; padding: 22px; }
.adf-product-banner-spec { margin: 14px 0 0; color: #71809d; font-size: 12px; text-align: center; }
.adf-report-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; }
.adf-report-card { display: grid; grid-template-columns: 50px 1fr; gap: 16px; align-items: start; min-height: 150px; padding: 24px; border: 1px solid var(--adf-line); border-radius: 20px; background: rgba(255,255,255,.024); }
.adf-report-card > span { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 13px; background: rgba(13,77,255,.11); color: #8edaff; font-size: 12px; font-weight: 800; letter-spacing: .08em; }
.adf-report-card h3 { margin: 1px 0 8px; color: #fff; font-size: 19px; letter-spacing: -.025em; }
.adf-report-card p { margin: 0; color: #a8b6cf; font-size: 14px; line-height: 1.62; }
.adf-report-note { margin: 18px 0 0; padding: 13px 16px; border: 1px solid rgba(93,154,255,.14); border-radius: 12px; background: rgba(13,77,255,.035); color: #8292ae; font-size: 12px; line-height: 1.6; }
.adf-industry-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 15px; }
.adf-industry-card { min-height: 168px; padding: 22px; border: 1px solid var(--adf-line); border-radius: 20px; background: rgba(255,255,255,.024); }
.adf-industry-card h3 { margin: 0 0 10px; color: #fff; font-size: 18px; letter-spacing: -.025em; }
.adf-industry-card p { margin: 0; color: #a6b4cc; font-size: 13px; line-height: 1.62; }
.adf-contact-form select { color-scheme: dark; }
.adf-contact-form select option { color: #fff !important; background: #0b1228 !important; }
.adf-consent a { color: #80d1ff; text-decoration: underline; text-decoration-color: rgba(128,209,255,.35); text-underline-offset: 3px; }

@media (max-width: 960px) {
  .adf-industry-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 760px) {
  .adf-product-landing-hero { padding: 108px 0 60px; }
  .adf-product-hero-banner { margin-top: 36px; }
  .adf-product-hero-banner .adf-product-placeholder-slide { min-height: 570px; padding: 14px; }
  .adf-report-grid { grid-template-columns: 1fr; }
  .adf-report-card { min-height: auto; }
}
@media (max-width: 560px) {
  .adf-product-landing-copy h1 { font-size: clamp(40px, 12vw, 54px); }
  .adf-product-landing-copy > p { font-size: 15px; line-height: 1.58; }
  .adf-industry-grid { grid-template-columns: 1fr; }
  .adf-industry-card { min-height: auto; }
  .adf-report-card { grid-template-columns: 44px 1fr; padding: 19px 17px; border-radius: 17px; }
  .adf-product-banner-spec { font-size: 10px; line-height: 1.55; }
}

/* =====================================================================
   V13 light content system — dark navbar/hero/footer, light body sections
   ===================================================================== */
:root {
  --adf-light-bg: #ffffff;
  --adf-light-soft: #f5f7fb;
  --adf-light-card: #ffffff;
  --adf-light-text: #111a2e;
  --adf-light-muted: #5f6d84;
  --adf-light-line: #dfe5ef;
  --adf-light-shadow: 0 18px 48px rgba(18, 35, 68, .08);
}

/* Keep the header, all hero areas and footer untouched/dark. */
.adf-trust,
.adf-section,
.adf-template-testimonials,
.adf-cta,
.adf-page-section {
  color: var(--adf-light-text);
  background: var(--adf-light-bg);
}
.adf-section--soft,
.adf-page-section--soft,
.adf-template-testimonials {
  background: var(--adf-light-soft);
}
.adf-section--bordered,
.adf-page-section--soft,
.adf-template-testimonials {
  border-color: var(--adf-light-line);
}

.adf-trust-title,
.adf-section .adf-section-copy,
.adf-template-testimonials .adf-section-copy,
.adf-cta .adf-section-copy,
.adf-page-section .adf-section-copy,
.adf-page-section p,
.adf-section p {
  color: var(--adf-light-muted);
}
.adf-trust-title strong,
.adf-section .adf-section-title,
.adf-template-testimonials .adf-section-title,
.adf-cta .adf-section-title,
.adf-page-section .adf-section-title,
.adf-section h2,
.adf-section h3,
.adf-page-section h2,
.adf-page-section h3 {
  color: var(--adf-light-text);
}
.adf-section .adf-eyebrow,
.adf-template-testimonials .adf-eyebrow,
.adf-cta .adf-eyebrow,
.adf-page-section .adf-eyebrow {
  color: #1555cf;
}
.adf-section .adf-gradient-text,
.adf-template-testimonials .adf-gradient-text,
.adf-cta .adf-gradient-text,
.adf-page-section .adf-gradient-text {
  color: #0b2f73;
  background: linear-gradient(100deg, #0b2f73 4%, #0d4dff 56%, #139bd6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Shared light cards */
.adf-client-logo,
.adf-product-card,
.adf-fallback-visual,
.adf-banner-shell,
.adf-os-card,
.adf-template-testimonial,
.adf-solution-card,
.adf-report-card,
.adf-industry-card,
.adf-policy-card,
.adf-policy-nav,
.adf-contact-panel,
.adf-contact-card,
.adf-branch-card,
.adf-visual-card,
.adf-visual-frame {
  border-color: var(--adf-light-line);
  background: var(--adf-light-card);
  box-shadow: var(--adf-light-shadow);
}

/* Homepage product cards */
.adf-product-card:hover {
  border-color: rgba(13,77,255,.30);
  background: #fbfdff;
  box-shadow: 0 22px 56px rgba(18, 61, 132, .11);
}
.adf-product-icon {
  border-color: rgba(13,77,255,.16);
  background: #edf4ff;
  color: #0d4dff;
}
.adf-product-card h3 { color: var(--adf-light-text); }
.adf-product-card p { color: var(--adf-light-muted); }
.adf-product-link { color: #0d4dff; }
.adf-icon-spec { color: #7a879a; }

/* Smart fallback */
.adf-check-list li { color: #3e4b61; }
.adf-check-list span { background: #eaf2ff; color: #0d4dff; }
.adf-visual-top { border-color: var(--adf-light-line); }
.adf-visual-top strong,
.adf-fallback-node strong,
.adf-fallback-result strong { color: var(--adf-light-text); }
.adf-visual-top span,
.adf-fallback-node p,
.adf-fallback-result span { color: #66758c; }
.adf-fallback-node {
  border-color: var(--adf-light-line);
  background: #f8faff;
}
.adf-fallback-node::before {
  border-color: rgba(13,77,255,.18);
  background: #eaf2ff;
  color: #0d4dff;
}
.adf-fallback-node.is-success { background: #f1fbf5; }
.adf-fallback-result { background: #f0f6ff; border-color: #cfe0fb; }

/* Homepage campaign carousel */
.adf-section .adf-banner-content h3 { color: var(--adf-light-text); }
.adf-section .adf-banner-content p { color: var(--adf-light-muted); }
.adf-section .adf-banner-content small { color: #0d4dff; }
.adf-banner-shell { overflow: hidden; }
.adf-banner-slide { background: #ffffff; }
.adf-banner-metric {
  border-color: var(--adf-light-line);
  background: #f7f9fd;
}
.adf-banner-metric strong { color: var(--adf-light-text); }
.adf-banner-metric span { color: var(--adf-light-muted); }
.adf-banner-api { border-color: #d5dfef; }

/* Platform cards */
.adf-os-card h3 { color: var(--adf-light-text); }
.adf-os-card > p { color: var(--adf-light-muted); }
.adf-os-card { box-shadow: var(--adf-light-shadow); }

/* Testimonials */
.adf-template-testimonials { border-block: 1px solid var(--adf-light-line); }
.adf-template-testimonial { box-shadow: var(--adf-light-shadow); }
.adf-template-testimonial::before { background: radial-gradient(circle at 50% 0%, rgba(13,77,255,.06), transparent 56%); }
.adf-template-testimonial > p { color: #263248; }
.adf-template-author strong { color: var(--adf-light-text); }
.adf-template-author small { color: #718099; }
.adf-template-quote { opacity: .045; }
.adf-testimonial-shape--1 { opacity: .05; }
.adf-testimonial-shape--2 { opacity: .08; }

/* CTA blocks inside light sections */
.adf-cta { background: #ffffff; }
.adf-cta-card {
  border-color: #d7e2f4;
  background: linear-gradient(135deg, #f6f9ff 0%, #ffffff 62%, #eef5ff 100%);
  box-shadow: var(--adf-light-shadow);
}
.adf-cta-card::after { opacity: .16; }
.adf-cta-card h2 { color: var(--adf-light-text); }
.adf-cta-card p { color: var(--adf-light-muted); }
.adf-section .adf-btn--secondary,
.adf-page-section .adf-btn--secondary,
.adf-cta .adf-btn--secondary {
  border-color: #cfd8e8;
  background: #ffffff;
  color: #1e2b43;
}

/* Product page sections */
.adf-solution-card,
.adf-report-card,
.adf-industry-card { box-shadow: 0 12px 34px rgba(18,35,68,.065); }
.adf-solution-card h3,
.adf-report-card h3,
.adf-industry-card h3 { color: var(--adf-light-text); }
.adf-solution-card p,
.adf-report-card p,
.adf-industry-card p { color: var(--adf-light-muted); }
.adf-report-card > span {
  background: #edf4ff;
  color: #0d4dff;
}
.adf-report-note {
  border-color: #d6e4f8;
  background: #f2f7ff;
  color: #66758c;
}

/* Legal, contact and branch content */
.adf-policy-card h2,
.adf-policy-card h3,
.adf-policy-nav strong,
.adf-contact-panel h2,
.adf-branches-head h2,
.adf-contact-card strong,
.adf-branch-card h3 { color: var(--adf-light-text); }
.adf-policy-card p,
.adf-policy-card ul,
.adf-policy-card ol,
.adf-policy-card li,
.adf-contact-panel > p,
.adf-contact-card p,
.adf-branches-head > p,
.adf-branch-card p { color: var(--adf-light-muted); }
.adf-policy-card section + section { border-color: var(--adf-light-line); }
.adf-policy-note {
  border-color: #d6e4f8;
  background: #f2f7ff;
  color: #53627b;
}
.adf-policy-nav a { color: #596a84; }
.adf-policy-nav a:hover { color: #0d4dff; background: #eef4ff; }
.adf-contact-card > a { color: #15376f; }
.adf-contact-card > span,
.adf-branch-card small { color: #0d4dff; }
.adf-contact-form label { color: #344158; }
.adf-contact-form input,
.adf-contact-form textarea,
.adf-contact-form select {
  border-color: #d7deea;
  background: #ffffff;
  color: #142038;
  color-scheme: light;
}
.adf-contact-form input::placeholder,
.adf-contact-form textarea::placeholder { color: #8a96a8; }
.adf-contact-form select option {
  color: #142038 !important;
  background: #ffffff !important;
}
.adf-consent { color: #53627a; }
.adf-consent a { color: #0d4dff; }

/* Placeholder/visual cards used outside dark hero areas */
.adf-section .adf-visual-frame,
.adf-page-section .adf-visual-frame {
  border-color: #cbd8eb;
  background: linear-gradient(180deg, #f6f9ff, #ffffff);
}
.adf-section .adf-visual-frame span,
.adf-page-section .adf-visual-frame span { color: #0d4dff; }
.adf-section .adf-visual-frame strong,
.adf-page-section .adf-visual-frame strong { color: var(--adf-light-text); }
.adf-section .adf-visual-frame small,
.adf-page-section .adf-visual-frame small { color: var(--adf-light-muted); }

/* Mobile footer and fixed icon consistency */
.adf-support-button,
.adf-support-button.chat,
.adf-support-button.whatsapp {
  display: grid;
  place-items: center;
}
.adf-support-button img,
.adf-support-button.chat img,
.adf-support-button.whatsapp img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.adf-mobile-app-nav a,
.adf-mobile-app-nav a.active { transform: none; }
.adf-mobile-app-nav svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

@media (max-width: 640px) {
  .adf-section,
  .adf-page-section,
  .adf-template-testimonials { padding-top: 72px; padding-bottom: 72px; }
  .adf-cta { padding-bottom: 86px; }
  .adf-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 18px;
  }
  .adf-footer-brand,
  .adf-footer-contact { grid-column: 1 / -1; }
  .adf-footer-col h3 { margin-bottom: 14px; }
  .adf-footer-col a,
  .adf-footer-col span { margin: 8px 0; }
  .adf-footer-social { gap: 8px; }
  .adf-social-link {
    width: 40px;
    height: 40px;
    border-radius: 11px;
  }
  .adf-social-link svg { width: 18px; height: 18px; }
  .adf-support-stack { right: 12px; gap: 8px; }
  .adf-support-button,
  .adf-support-button.chat,
  .adf-support-button.whatsapp {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }
  .adf-support-button img,
  .adf-support-button.chat img,
  .adf-support-button.whatsapp img {
    width: 26px;
    height: 26px;
  }
  .adf-mobile-app-nav {
    height: 64px;
    align-items: stretch;
  }
  .adf-mobile-app-nav a {
    min-width: 0;
    height: 52px;
    padding: 5px 2px;
  }
  .adf-mobile-app-nav span { line-height: 1; }
}

/* =====================================================================
   V14 selective blue accents — testimonial cards + one mid-page section
   ===================================================================== */

/* Blue review cards while preserving the light testimonial section. */
.adf-template-testimonial,
.adf-review-card {
  border-color: rgba(126, 180, 255, .28);
  background: linear-gradient(145deg, #0a2a62 0%, #0d4dff 58%, #087fc1 118%);
  box-shadow: 0 22px 54px rgba(10, 48, 122, .22);
}
.adf-template-testimonial::before {
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,.16), transparent 54%);
}
.adf-template-testimonial > p,
.adf-review-card blockquote {
  color: #ffffff;
}
.adf-template-author strong,
.adf-review-author strong {
  color: #ffffff;
}
.adf-template-author small,
.adf-review-author span {
  color: rgba(255,255,255,.74);
}
.adf-template-avatar,
.adf-review-avatar {
  border-color: rgba(255,255,255,.26);
  background: rgba(255,255,255,.12);
}
.adf-template-quote { opacity: .10; filter: brightness(2.1); }

/* Homepage: make Smart Fallback the single blue feature section. */
#fallback.adf-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #08275d 0%, #0b3d9f 52%, #087fc1 100%);
  border-color: rgba(255,255,255,.10);
}
#fallback.adf-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -190px;
  top: -230px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(85,180,255,.22), transparent 68%);
  pointer-events: none;
}
#fallback .adf-eyebrow { color: #9cddff; }
#fallback .adf-section-title,
#fallback .adf-section-copy,
#fallback .adf-check-list li { color: #ffffff; }
#fallback .adf-section-copy { color: rgba(255,255,255,.76); }
#fallback .adf-gradient-text {
  color: #ffffff;
  background: linear-gradient(100deg, #ffffff 0%, #9fe2ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
#fallback .adf-check-list span {
  background: rgba(255,255,255,.13);
  color: #ffffff;
}
#fallback .adf-fallback-visual {
  border-color: rgba(255,255,255,.20);
  background: rgba(5,20,51,.42);
  box-shadow: 0 24px 60px rgba(3,17,47,.28);
  backdrop-filter: blur(10px);
}
#fallback .adf-visual-top { border-color: rgba(255,255,255,.15); }
#fallback .adf-visual-top strong,
#fallback .adf-fallback-node strong,
#fallback .adf-fallback-result strong { color: #ffffff; }
#fallback .adf-visual-top span,
#fallback .adf-fallback-node p,
#fallback .adf-fallback-result span { color: rgba(255,255,255,.68); }
#fallback .adf-fallback-node {
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.07);
}
#fallback .adf-fallback-node::before {
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.10);
  color: #ffffff;
}
#fallback .adf-fallback-node.is-success { background: rgba(62,215,130,.12); }
#fallback .adf-fallback-result {
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.09);
}

/* Product pages: use the reporting/CDR section as the one blue band. */
#reporting.adf-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #08275d 0%, #0b3d9f 54%, #087fc1 100%);
  border-color: rgba(255,255,255,.10);
}
#reporting.adf-section::after {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  left: -180px;
  bottom: -250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(85,180,255,.20), transparent 70%);
  pointer-events: none;
}
#reporting .adf-section-head,
#reporting .adf-report-grid,
#reporting .adf-report-note { position: relative; z-index: 1; }
#reporting .adf-eyebrow { color: #9cddff; }
#reporting .adf-section-title { color: #ffffff; }
#reporting .adf-section-copy,
#reporting .adf-report-note { color: rgba(255,255,255,.74); }
#reporting .adf-gradient-text {
  color: #ffffff;
  background: linear-gradient(100deg, #ffffff 0%, #9fe2ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
#reporting .adf-report-card {
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.09);
  box-shadow: 0 18px 40px rgba(2,16,49,.18);
  backdrop-filter: blur(8px);
}
#reporting .adf-report-card > span {
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.12);
  color: #ffffff;
}
#reporting .adf-report-card h3 { color: #ffffff; }
#reporting .adf-report-card p { color: rgba(255,255,255,.72); }

@media (max-width: 640px) {
  .adf-template-testimonial,
  .adf-review-card {
    box-shadow: 0 16px 38px rgba(10, 48, 122, .18);
  }
  #fallback.adf-section,
  #reporting.adf-section {
    background: linear-gradient(155deg, #08275d 0%, #0b3d9f 62%, #087fc1 100%);
  }
}

/* =====================================================================
   V15 review section refinement — blue section, clean white review cards
   ===================================================================== */
.adf-template-testimonials {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #08275d 0%, #0b3d9f 55%, #087fc1 100%);
  border-color: rgba(255,255,255,.10);
}
.adf-template-testimonials::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -210px;
  top: -300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111,203,255,.20), transparent 68%);
  pointer-events: none;
}
.adf-template-testimonials .adf-container,
.adf-template-testimonials .adf-testimonial-slider,
.adf-template-testimonials .adf-testimonial-shapes {
  position: relative;
  z-index: 1;
}
.adf-template-testimonials .adf-eyebrow { color: #9cddff; }
.adf-template-testimonials .adf-section-title { color: #ffffff; }
.adf-template-testimonials .adf-section-copy { color: rgba(255,255,255,.76); }
.adf-template-testimonials .adf-gradient-text {
  color: #ffffff;
  background: linear-gradient(100deg, #ffffff 0%, #a8e5ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.adf-template-testimonial,
.adf-review-card {
  border-color: rgba(13,77,255,.14);
  background: #ffffff;
  box-shadow: 0 22px 52px rgba(2,24,70,.20);
}
.adf-template-testimonial::before {
  background: radial-gradient(circle at 50% 0%, rgba(13,77,255,.055), transparent 56%);
}
.adf-template-testimonial > p,
.adf-review-card blockquote { color: #263248; }
.adf-template-author strong,
.adf-review-author strong { color: #111a2e; }
.adf-template-author small,
.adf-review-author span { color: #718099; }
.adf-template-avatar,
.adf-review-avatar {
  border-color: #dce5f3;
  background: #f5f8fd;
}
.adf-template-quote {
  opacity: .045;
  filter: none;
}
.adf-testimonial-shape--1 { opacity: .13; }
.adf-testimonial-shape--2 { opacity: .18; }

@media (max-width: 640px) {
  .adf-template-testimonials {
    background: linear-gradient(155deg, #08275d 0%, #0b3d9f 64%, #087fc1 100%);
  }
  .adf-template-testimonial,
  .adf-review-card {
    box-shadow: 0 16px 38px rgba(2,24,70,.17);
  }
}


/* =====================================================================
   V16 banner asset placement + white review logo circles
   ===================================================================== */
.adf-product-banner-art {
  border-style: solid;
  border-color: rgba(151,178,224,.18);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  overflow: hidden;
}
.adf-product-banner-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  border-radius: 18px;
}
.adf-product-banner-placeholder.desktop.adf-product-banner-art {
  min-height: 450px;
  padding: 12px;
}
.adf-product-banner-placeholder.mobile.adf-product-banner-art {
  min-height: 590px;
  padding: 10px;
}
.adf-template-avatar,
.adf-review-avatar {
  background: #ffffff !important;
  border-color: rgba(211,223,241,.96) !important;
  box-shadow: 0 10px 24px rgba(7,18,44,.10);
}
.adf-template-avatar img,
.adf-review-avatar img {
  object-fit: contain;
}
@media (max-width: 860px) {
  .adf-product-banner-placeholder.mobile.adf-product-banner-art {
    min-height: 590px;
    padding: 8px;
  }
}
@media (max-width: 640px) {
  .adf-product-banner-placeholder.mobile.adf-product-banner-art {
    min-height: 510px;
    padding: 8px;
  }
  .adf-product-banner-art img { border-radius: 14px; }
}


/* =====================================================================
   V17 homepage creative swap + restore product page placeholders
   ===================================================================== */
.adf-visual-frame--art {
  position: relative;
  padding: 14px;
  align-items: stretch;
  justify-content: flex-start;
  gap: 14px;
  overflow: hidden;
}
.adf-visual-frame--art img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  flex: 1 1 auto;
  object-fit: contain;
  object-position: center center;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(246,249,255,.96), rgba(233,240,252,.96));
  box-shadow: inset 0 0 0 1px rgba(191,205,229,.55);
}
.adf-visual-frame--art.desktop img { min-height: 250px; }
.adf-visual-frame--art.mobile img { min-height: 390px; }
.adf-visual-meta {
  text-align: center;
  padding: 2px 6px 8px;
}
.adf-visual-meta span {
  display: block;
  color: #0d4dff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.adf-visual-meta strong {
  display: block;
  color: var(--adf-light-text);
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -.04em;
  margin-top: 6px;
}
.adf-visual-meta small {
  display: block;
  color: var(--adf-light-muted);
  font-size: 13px;
  margin-top: 6px;
}
@media (max-width: 640px) {
  .adf-visual-frame--art { padding: 10px; gap: 10px; }
  .adf-visual-frame--art.desktop img { min-height: 170px; border-radius: 12px; }
  .adf-visual-frame--art.mobile img { min-height: 260px; border-radius: 12px; }
  .adf-visual-meta strong { font-size: 24px; }
  .adf-visual-meta small { font-size: 12px; }
}


/* =====================================================================
   V18 universal five-button mobile dock + centred elevated Home button
   ===================================================================== */
@media (max-width: 860px) {
  .adf-mobile-app-nav {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: end;
    left: 10px;
    right: 10px;
    bottom: 9px;
    height: 72px;
    padding: 6px 7px calc(6px + env(safe-area-inset-bottom));
    overflow: visible;
    border-radius: 22px;
    background: rgba(8,13,31,.96);
  }
  .adf-mobile-app-nav a,
  .adf-mobile-app-nav a.active {
    min-width: 0;
    height: 58px;
    padding: 5px 1px;
    gap: 4px;
    border-radius: 14px;
    color: #7f8da9;
    background: transparent;
    transform: none;
    transition: color .22s ease, background .22s ease, transform .22s ease;
  }
  .adf-mobile-app-nav a > span:last-child {
    font-size: 9px;
    font-weight: 750;
    line-height: 1;
    white-space: nowrap;
  }
  .adf-mobile-nav-icon {
    width: 34px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: transparent;
    transition: background .22s ease, color .22s ease, box-shadow .22s ease;
  }
  .adf-mobile-nav-icon svg,
  .adf-mobile-home-circle svg {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
  }
  .adf-mobile-app-nav a.active:not(.adf-mobile-home) {
    color: #ffffff;
  }
  .adf-mobile-app-nav a.active:not(.adf-mobile-home) .adf-mobile-nav-icon {
    color: #ffffff;
    background: linear-gradient(135deg, #0d4dff, #0aa4f6);
    box-shadow: 0 8px 20px rgba(13,77,255,.34);
  }
  .adf-mobile-home {
    position: relative;
    z-index: 3;
    align-self: end;
    transform: translateY(-14px) !important;
    color: #ffffff !important;
  }
  .adf-mobile-home-circle {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-top: -22px;
    border: 5px solid #080d1f;
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(145deg, #0d4dff 0%, #0aa4f6 100%);
    box-shadow: 0 12px 30px rgba(13,77,255,.42);
    transition: transform .22s ease, box-shadow .22s ease;
  }
  .adf-mobile-home.active .adf-mobile-home-circle {
    transform: scale(1.07);
    box-shadow: 0 14px 34px rgba(13,77,255,.56), 0 0 0 3px rgba(111,205,255,.20);
  }
  .adf-mobile-home:not(.active) .adf-mobile-home-circle {
    filter: saturate(.86) brightness(.92);
  }
  .adf-support-stack { bottom: 100px; }
  .adf-chat-panel { bottom: 164px; }
  body.cookie-open .adf-support-stack { bottom: 196px; }
  body.cookie-open .adf-chat-panel { bottom: 258px; }
}

@media (max-width: 420px) {
  .adf-mobile-app-nav {
    left: 7px;
    right: 7px;
    padding-inline: 4px;
  }
  .adf-mobile-app-nav a > span:last-child { font-size: 8px; }
  .adf-mobile-nav-icon { width: 31px; }
  .adf-mobile-home-circle { width: 56px; height: 56px; }
}


/* =====================================================================
   V19 RCS banners + industry icons + homepage creative polish
   ===================================================================== */
.adf-product-image-slide {
  min-height: 510px;
}
.adf-product-image-slide::after {
  display: none;
}
.adf-product-image-slide .adf-product-banner-placeholder {
  border-style: solid;
}
.adf-product-image-slide .adf-product-banner-placeholder.desktop {
  display: flex;
}
.adf-product-image-slide .adf-product-banner-placeholder.mobile {
  display: none;
}
.adf-product-image-slide .adf-product-banner-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 18px;
}
.adf-industry-card {
  position: relative;
  padding: 26px 24px 24px;
}
.adf-industry-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0d4dff;
  background: linear-gradient(180deg, rgba(13,77,255,.1), rgba(70,191,255,.08));
  box-shadow: inset 0 0 0 1px rgba(90,140,219,.16);
  margin-bottom: 18px;
}
.adf-industry-icon svg {
  width: 22px;
  height: 22px;
}
.adf-industry-card h3 {
  margin-top: 0;
}
#visual-placeholders .adf-visual-meta small {
  max-width: 240px;
  margin-inline: auto;
}
@media (max-width: 860px) {
  .adf-product-image-slide .adf-product-banner-placeholder.desktop {
    display: none;
  }
  .adf-product-image-slide .adf-product-banner-placeholder.mobile {
    display: flex;
    min-height: 590px;
  }
  .adf-product-image-slide .adf-product-banner-placeholder.mobile img {
    object-fit: contain;
  }
}
@media (max-width: 640px) {
  .adf-industry-card {
    padding: 22px 18px 20px;
  }
  .adf-industry-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    margin-bottom: 14px;
  }
  .adf-product-image-slide .adf-product-banner-placeholder.mobile {
    min-height: 510px;
    padding: 8px;
  }
}


/* =====================================================================
   V20 final responsive product banner system
   ===================================================================== */
.adf-product-banner-shell {
  max-width: 1600px;
  margin-inline: auto;
  background: #ffffff;
  border-color: rgba(177, 198, 226, .72);
  box-shadow: 0 26px 70px rgba(5, 32, 86, .20);
}
.adf-product-hero-banner .adf-product-image-slide,
.adf-product-image-slide {
  min-height: 0;
  padding: 0;
  display: block;
  background: #ffffff;
}
.adf-product-image-slide .adf-product-banner-placeholder,
.adf-product-banner-placeholder.desktop.adf-product-banner-art,
.adf-product-banner-placeholder.mobile.adf-product-banner-art {
  width: 100%;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #ffffff;
  overflow: hidden;
}
.adf-product-image-slide .adf-product-banner-placeholder.desktop {
  display: block;
  aspect-ratio: 8 / 3;
}
.adf-product-image-slide .adf-product-banner-placeholder.mobile {
  display: none;
  aspect-ratio: 4 / 5;
}
.adf-product-image-slide .adf-product-banner-placeholder img,
.adf-product-banner-art img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
}
.adf-product-banner-shell .adf-banner-controls {
  bottom: 12px;
  padding: 7px 10px;
  border: 1px solid rgba(190, 205, 228, .75);
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 8px 24px rgba(7, 31, 76, .13);
  backdrop-filter: blur(10px);
}
.adf-product-banner-shell .adf-banner-dot { background: #b7c5d9; }
.adf-product-banner-shell .adf-banner-dot.active { background: #126bff; }
@media (max-width: 860px) {
  .adf-product-hero-banner .adf-product-image-slide,
  .adf-product-image-slide { min-height: 0; padding: 0; }
  .adf-product-image-slide .adf-product-banner-placeholder.desktop { display: none; }
  .adf-product-image-slide .adf-product-banner-placeholder.mobile {
    display: block;
    min-height: 0;
    padding: 0;
    aspect-ratio: 4 / 5;
  }
  .adf-product-banner-shell { border-radius: 22px; }
  .adf-product-image-slide .adf-product-banner-placeholder img { object-fit: cover; border-radius: 0; }
}


/* =====================================================================
   V21 homepage slider refresh + hero counter animation
   ===================================================================== */
.adf-banner-slide--visual {
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,250,255,.98));
}
.adf-banner-slide--visual::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(189,221,255,0), rgba(231,241,255,.68));
  pointer-events: none;
}
.adf-banner-visual {
  position: relative;
  width: min(100%, 540px);
  min-height: 320px;
  display: grid;
  place-items: center;
}
.adf-banner-visual img,
.adf-banner-visual picture {
  display: block;
  width: 100%;
}
.adf-banner-visual img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center center;
}
.adf-banner-visual--cutout img {
  max-height: 340px;
  filter: drop-shadow(0 24px 48px rgba(24, 62, 130, .12));
}
.adf-banner-visual--product {
  width: min(100%, 620px);
}
.adf-banner-visual--product img {
  max-height: 350px;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(14, 33, 78, .10);
}
.adf-banner-slide--rcs .adf-banner-content small { color: #266cff; }
.adf-banner-slide--whatsapp .adf-banner-content small { color: #18b75f; }
.adf-banner-slide--cpaas .adf-banner-content small { color: #266cff; }
.adf-animated-number {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}
@media (max-width: 1100px) {
  .adf-banner-visual { width: min(100%, 470px); }
  .adf-banner-visual--cutout img { max-height: 310px; }
}
@media (max-width: 860px) {
  .adf-banner-slide--visual::before { height: 100px; }
  .adf-banner-visual {
    width: min(100%, 420px);
    min-height: 250px;
    margin-inline: auto;
  }
  .adf-banner-visual--cutout img { max-height: 260px; }
  .adf-banner-visual--product img { max-height: 420px; }
}
@media (max-width: 640px) {
  .adf-banner-visual {
    width: 100%;
    min-height: 220px;
  }
  .adf-banner-visual--cutout img {
    max-height: 230px;
  }
  .adf-banner-visual--product img {
    max-height: 360px;
  }
}


/* =====================================================================
   V22 homepage slider uses full PNG banners only
   ===================================================================== */
.adf-banner-slide--image {
  min-height: 0;
  padding: 0;
  display: block;
  background: #fff;
}
.adf-banner-slide--image::after,
.adf-banner-slide--image::before {
  content: none;
}
.adf-banner-image-link,
.adf-banner-image-link picture,
.adf-banner-image-link img {
  display: block;
  width: 100%;
}
.adf-banner-image-link {
  text-decoration: none;
}
.adf-banner-image-link img {
  height: auto;
  object-fit: cover;
  object-position: center center;
}
#adfBannerCarousel,
#adfBannerCarousel * {
  box-sizing: border-box;
}
@media (max-width: 860px) {
  .adf-banner-slide--image { min-height: 0; }
}
