/* =========================================================
   MetaShip CSS Reset + Typography System
   Font: Poppins
   Primary: #046e3d
========================================================= */

/* Google Font Import */
@import url("https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.css");
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');



/* =========================================================
   ROOT TOKENS
========================================================= */
:root{
  /* Brand Colors */
  --primary: #046e3d;
  --primary-dark: #033D22;
  --primary-darker: #022E1A;

  /* Text Colors */
  --text-main: #022E1A;
  --text-secondary: #2D7A55;
  --text-muted: #5b7a69;

  /* Background */
  --bg-light: #F0FAF4;

  /* Typography */
  --font-base: 'Poppins', sans-serif;

  /* Font Sizes */
  --fs-h1: 64px;
  --fs-h2: 44px;
  --fs-h3: 32px;
  --fs-h4: 24px;
  --fs-h5: 20px;
  --fs-h6: 18px;

  --fs-body-lg: 20px;
  --fs-body: 18px;
  --fs-small: 16px;
  --fs-caption: 13px;
  --fs-tiny: 12px;

  /* Line Heights */
  --lh-tight: 1.1;
  --lh-normal: 1.4;
  --lh-body: 1.75;

  /* Letter Spacing */
  --ls-tight: -0.03em;
  --ls-medium: -0.02em;
  --ls-small: -0.01em;
}
:root {
  /* blue palette */
  --blue:          #005F86;
  --blue-dark:     #00243D;
  --blue-darker:   #022E1A;
  --blue-deep:     #00243D;
  --blue-mid:      #42B0D5;
  --blue-light:    #e7f9ff;
  --blue-border:   #93d7ef;
  --blue-border2:  #D8EFE3;
  --blue-muted:    #2E4D5E;
  --blue-bright:   #005F86;
  --blue-glow:     rgba(66, 176, 213, 0.15);
  --blue-glow2:    rgba(4, 110, 61, 0.08);

  /* Neutrals */
  --ink:    #00243D;
  --ink-2:  #0D1F14;
  --text:   #0A0F0C;
  --text-2: #3A4D42;
  --text-3: #42B0D5;
  --mist:   #F4F7F9;
  --white:  #ffffff;
  --border: rgba(66, 176, 213, 0.12);
  --card:   rgba(255,255,255,0.75);

  /* Typography — Poppins scale */
  --font: 'Poppins', sans-serif;

  /* Radius */
  --r:    16px;
  --r-lg: 24px;
  --r-xl: 36px;
}

/* =========================================================
   GLOBAL RESET
========================================================= */
*,
*::before,
*::after{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:var(--font-base);
  background:#fff;
  color:var(--text-main);
  font-size:var(--fs-body);
  line-height:var(--lh-body);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

/* =========================================================
   TYPOGRAPHY RESET
========================================================= */

h1,
h2,
h3,
h4,
h5,
h6{
  font-family:var(--font-base);
  color:var(--text-main);
  margin-bottom:16px;
}

/* H1 */
h1{
  font-size:var(--fs-h1);
  font-weight:700;
  line-height:1.05;
  letter-spacing:var(--ls-tight);
}

/* H2 */
h2{
  font-size:var(--fs-h2);
  font-weight:700;
  line-height:var(--lh-tight);
  letter-spacing:var(--ls-medium);
}

/* H3 */
h3{
  font-size:var(--fs-h3);
  font-weight:600;
  line-height:1.2;
  letter-spacing:var(--ls-small);
}

/* H4 */
h4{
  font-size:var(--fs-h4);
  font-weight:600;
  line-height:1.3;
}

/* H5 */
h5{
  font-size:var(--fs-h5);
  font-weight:600;
  line-height:1.4;
}

/* H6 */
h6{
  font-size:var(--fs-h6);
  font-weight:600;
  line-height:1.4;
  color:var(--primary-dark);
}


/* ── Typography tokens ────────────────────────────── */
.t-hero-h1    { font-size: clamp(48px,7vw,64px); font-weight: 700; line-height: 1.05; letter-spacing: -0.03em; }
.t-section-h1 { font-size: clamp(36px,5vw,56px); font-weight: 700; line-height: 1.1;  letter-spacing: -0.03em; }
.t-h2         { font-size: clamp(28px,4vw,44px); font-weight: 700; line-height: 1.1;  letter-spacing: -0.02em; }
.t-h3         { font-size: clamp(20px,2.5vw,32px); font-weight: 600; line-height: 1.2; letter-spacing: -0.01em; }
.t-h4         { font-size: 24px; font-weight: 600; line-height: 1.3; }
.t-h5         { font-size: 20px; font-weight: 600; line-height: 1.4; }
.t-large-p    { font-size: 20px; font-weight: 400; line-height: 1.75; }
.t-body       { font-size: 18px; font-weight: 400; line-height: 1.75; }
.t-small      { font-size: 16px; font-weight: 400; line-height: 1.65; }
.t-nav        { font-size: 15px; font-weight: 500; line-height: 1; }
.t-btn        { font-size: 16px; font-weight: 600; line-height: 1; }
.t-label      { font-size: 14px; font-weight: 500; line-height: 1; letter-spacing: 0.02em; }
.t-caption    { font-size: 13px; font-weight: 400; line-height: 1.5; }
.t-tiny       { font-size: 12px; font-weight: 500; line-height: 1.4; letter-spacing: 0.02em; }

/* =========================================================
   PARAGRAPH STYLES
========================================================= */

p{
  font-size:var(--fs-body);
  font-weight:400;
  line-height:var(--lh-body);
  color:var(--text-main);
  margin-bottom:16px;
}

.text-lg{
  font-size:var(--fs-body-lg);
}

.text-small{
  font-size:var(--fs-small);
  line-height:1.65;
  color:var(--text-secondary);
}

.text-caption{
  font-size:var(--fs-caption);
  line-height:1.5;
  color:var(--text-secondary);
}

.text-tiny{
  font-size:var(--fs-tiny);
  line-height:1.4;
  letter-spacing:0.02em;
  color:var(--text-muted);
}

/* =========================================================
   LINKS
========================================================= */

a{
  text-decoration:none;
  color:var(--primary);
  transition:0.3s ease;
}

a:hover{
  color:var(--primary-dark);
}

/* =========================================================
   LIST RESET
========================================================= */

ul,
ol{
  list-style:none;
}

/* =========================================================
   IMAGE RESET
========================================================= */

img{
  max-width:100%;
  height:auto;
  display:block;
}

/* =========================================================
   BUTTON RESET
========================================================= */

button,
input,
textarea,
select{
  font-family:var(--font-base);
  outline:none;
  border:none;
}

/* =========================================================
   RESPONSIVE TYPOGRAPHY
========================================================= */

@media(max-width:768px){

  h1{
    font-size:48px;
  }

  h2{
    font-size:36px;
  }

  h3{
    font-size:28px;
  }

  h4{
    font-size:22px;
  }

  h5{
    font-size:18px;
  }

  h6{
    font-size:16px;
  }

  p{
    font-size:16px;
  }

}



/* ----------------------------------------- */

.ast-builder-footer-grid-columns{padding-left: 0 !important;padding-right: 0!important;}

/* ---------------------------------------- */

#masthead{
position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 30;
    background: rgba(246, 250, 247, 0.88);
    backdrop-filter: blur(20px);
	transition: box-shadow .3s;
}

.btn-ghost-nav {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-2);
    background: none;
    border: none;
    padding: 8px 16px;
    border-radius: 10px;
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
}
.ast-logo-svg-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #046e3d;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-title a{
    font-size: 22px;
    font-weight: 800 !important;
    color: var(--blue);
    text-decoration: none;
    letter-spacing: -0.5px;
}

/* ── Footer ───────────────────────────────────────── */
footer {
  background: var(--blue-darker); color: rgba(255,255,255,0.5);
  padding: 64px 48px 40px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px; max-width: 1320px; margin-left: auto; margin-right: auto;
}
.footer-brand h3 { font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 12px; letter-spacing: -0.03em; text-align: left;}
.footer-brand p  { font-size: 14px; line-height: 1.7; text-align: left;color: rgba(255, 255, 255, 0.5);}
.footer-col h4 {
  font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.35);
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px;text-align: left;
}
.footer-col p{text-align: left;}
.footer-col a {
  display: block; font-size: 14px; color: rgba(255,255,255,0.5);
  text-decoration: none; margin-bottom: 10px; transition: color .2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; max-width: 1320px; margin: 0 auto;
  flex-wrap: wrap; gap: 12px;
}
.footer-wordmark {
    font-size: clamp(80px, 16vw, 206px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
    user-select: none;
    pointer-events: none;
    padding: 0;
    margin-top: 16px;
    overflow: hidden;
    white-space: nowrap;
    text-align: center;
    max-height: 0.55em;
    display: block;
}
.footer-social {
    color: rgba(255, 255, 255, 0.3);
    font-size: 13px;
    text-decoration: none;
    transition: color .2s;
}

/* ── Hero ─────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 50px 48px 80px;
  position: relative; overflow: hidden; text-align: center;
}
.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(66, 176, 213, 0.10) 0%, transparent 65%), radial-gradient(ellipse 50% 40% at 80% 70%, rgba(66, 176, 213, 0.07) 0%, transparent 60%), radial-gradient(ellipse 40% 30% at 20% 80%, rgba(66, 176, 213, 0.05) 0%, transparent 55%);
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none; opacity: .4;
  background-image:
    linear-gradient(rgba(4,110,61,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(4,110,61,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 30%, transparent 80%);
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 100px; padding: 6px 16px 6px 8px;
  font-size: 13px; font-weight: 500; color: var(--blue);
  margin-bottom: 32px; animation: fadeUp .8s ease both;
  box-shadow: 0 4px 16px var(--blue-glow);
  animation: chipFloat 3s ease-in-out infinite;
}
.badge-dot {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--blue); display: flex; align-items: center; justify-content: center;
}
.badge-dot svg { width: 12px; height: 12px; }

/* ── Cycling hero H1 ─────────────────────── */
.hero-h1-cycle {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 700; line-height: 1.1;
  letter-spacing: -0.03em; color: var(--ink);
  max-width: 1200px;
  animation: fadeUp .8s .1s ease both;
  text-align: center;
}
.h1c-static { display: block; }
.h1c-line {
  display: flex; align-items: baseline;
  justify-content: center; flex-wrap: wrap;
}
.h1c-prefix { color: var(--ink); white-space: nowrap; }
.h1c-word-wrap { display: inline-block; min-width: 2ch;width: 100%;}
.h1c-word {
  display: inline-block;
  color: var(--blue);
  white-space: nowrap;
}
/* Letter animation */
.h1c-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.06s ease, transform 0.08s ease;
}
.h1c-letter.in  { opacity: 1; transform: translateY(0); }
.h1c-letter.out { opacity: 0; transform: translateY(-10px); transition: opacity .05s, transform .06s; }

.hero-sub {
  font-size: 19px; font-weight: 400; color: var(--text-2);
  max-width: 580px; margin: 24px auto 48px;
  line-height: 1.75; animation: fadeUp .8s .2s ease both;
}

.hero-actions {
  display: flex; align-items: center; gap: 14px;
  justify-content: center; animation: fadeUp .8s .3s ease both;
  margin-bottom: 48px; flex-wrap: wrap;
}

.btn-primary-g {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    background: var(--blue);
    border: none;
    padding: 15px 32px;
    border-radius: var(--r);
    cursor: pointer;
    transition: all .25s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 32px rgba(66, 176, 213, 0.25);
    letter-spacing: 0.01em;
}
.btn-primary-g:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 16px 48px rgba(66, 176, 213, 0.3);
    color: #fff;
}
.btn-primary-g svg { width: 18px; height: 18px; transition: transform .2s; }
.btn-primary-g:hover svg { transform: translateX(3px); }

.btn-secondary-g {
  font-size: 16px; font-weight: 500;
  color: var(--text); background: var(--white);
  border: 1px solid var(--border); padding: 15px 32px; border-radius: var(--r);
  cursor: pointer; transition: all .25s; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary-g:hover { border-color: rgba(4,110,61,0.3); color: var(--blue); transform: translateY(-2px); box-shadow: 0 8px 24px var(--blue-glow2); }
.btn-secondary-g svg { width: 18px; height: 18px; }

.carrier-strip {
  display: flex; align-items: center;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 100px; padding: 10px 24px;
  font-size: 13px; color: var(--text-3);
  animation: fadeUp .8s .4s ease both;
  box-shadow: 0 4px 20px var(--blue-glow2);
  flex-wrap: wrap; justify-content: center; gap: 4px;
}
.carrier-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--blue-light); border-radius: 100px;
  padding: 4px 12px; font-size: 12px; font-weight: 500;
  color: var(--blue); margin: 2px;
}
.carrier-strip-label { font-size: 12px; color: var(--text-3); margin-right: 6px; }

/* ── Dashboard preview ────────────────────────────── */
.dashboard-preview {
  width: 100%; max-width: 1000px; margin: 48px auto 0;
  animation: fadeUp .8s .5s ease both;
}
.dashboard-frame {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 24px;
    box-shadow: 0 32px 80px rgba(66, 176, 213, 0.1), 0 2px 0 rgba(66, 176, 213, 0.08);
    position: relative;
    overflow: hidden;
}
.dashboard-frame::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px; background: linear-gradient(90deg, transparent, var(--blue-bright), transparent);
}
.dashboard-topbar { display: flex; align-items: center; gap: 8px; margin-bottom: 0px; }
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot-r { background: #FF6B6B; } .dot-y { background: #FFD93D; } .dot-g { background: #6BCB77; }
.dash-title {
  font-size: 20px; font-weight: 600; color: var(--text-3);
  flex: 1; text-align: center; letter-spacing: 0.05em;
}
.dashboard-grid { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.stat-card {
  background: var(--blue-light); border-radius: var(--r);
  padding: 16px 18px; border: 1px solid var(--blue-border);
}
.stat-label { font-size: 13px; font-weight: 500; color: var(--text-3); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 6px; }
.stat-value { font-size: 24px; font-weight: 700; color: var(--ink); letter-spacing: -0.03em; }
.stat-change {
    font-size: 13px;
    font-weight: 500;
    color: #005F86;
    margin-top: 4px;
}
.stat-change.down { color: #DC2626; }
.dash-row { display: grid; grid-template-columns: 2fr 1fr; gap: 12px; }

.shipment-list {
  background: var(--blue-light); border-radius: var(--r); padding: 16px;
  border: 1px solid var(--blue-border);
}
.sh-header { font-size: 13px; font-weight: 600; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; }
.sh-row {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0; border-bottom: 1px solid rgba(4,110,61,0.06);
}
.sh-row:last-child { border: none; }
.sh-icon { width: 28px; height: 28px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; }
.sh-info { flex: 1; min-width: 0; }
.sh-id { font-size: 12px; font-weight: 600; color: var(--ink); }
.sh-dest { font-size: 13px; color: var(--text-3); }
.sh-status { font-size: 10px; font-weight: 600; border-radius: 6px; padding: 3px 8px; letter-spacing: 0.04em; text-transform: uppercase; white-space: nowrap; }
.status-transit   { background: rgba(4,110,61,0.1);   color: var(--blue); }
.status-delivered { background: rgba(22,163,74,0.1);  color: #16A34A; }
.status-processing{ background: rgba(245,158,11,0.1); color: #D97706; }

.carrier-usage { background: var(--blue-light); border-radius: var(--r); padding: 16px; border: 1px solid var(--blue-border); }
.cu-header { font-size: 13px; font-weight: 600; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; }
.cu-row { margin-bottom: 10px; }
.cu-label { display: flex; justify-content: space-between; font-size: 13px; color: var(--text-2); margin-bottom: 4px; }
.cu-bar { height: 6px; background: rgba(4,110,61,0.1); border-radius: 3px; overflow: hidden; }
.cu-fill         { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--blue), var(--blue-mid)); }
.cu-fill.teal    { background: linear-gradient(90deg, #00B5A3, #3DBF7A); }
.cu-fill.violet  { background: linear-gradient(90deg, #2E8B57, #6BCB77); }
.cu-fill.orange  { background: linear-gradient(90deg, #1A6B40, #046e3d); }

/* ── Trust strip ──────────────────────────────────── */
.trust-strip {
  background: var(--white); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); padding: 24px 48px;
  display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 500; color: var(--text-3); }
.trust-num { font-size: 26px; font-weight: 700; color: var(--blue); }

/* ── Section base ─────────────────────────────────── */
.section { padding: 100px 48px; }
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--blue);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.section-label::before { content: ''; width: 20px; height: 2px; background: var(--blue); border-radius: 1px; }
/* ── Muted heading words (ClickUp pattern) ── */
.h-muted { color: var(--text-3); }
.how-section .h-muted {
    color: #42B0D5;
}
.integ-section .h-muted { color:#42B0D5; }
.integ-hub-glow {
    position: absolute;
    inset: -16px;
    border-radius: 50%;
    background: rgba(66, 176, 213, 0.2);
    z-index: 0;
}
.integ-hub-glow::after {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    background: rgba(66, 176, 213, 0.1);
}

.integ-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(66, 176, 213, 0.2) 0%, transparent 65%);
}
.section-title {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--ink);
    max-width: 620px;
    margin-bottom: 16px;
}
.section-sub { font-size: 17px; font-weight: 400; color: var(--text-2); max-width: 500px; line-height: 1.7; }

/* ── Features ─────────────────────────────────────── */
.features-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; max-width: 1200px; margin: 0 auto;
}
.features-list { margin-top: 48px; display: flex; flex-direction: column; gap: 4px; }
.feature-item {
  display: flex; gap: 18px; padding: 20px 24px;
  border-radius: var(--r); cursor: pointer; transition: all .25s;
  border: 1px solid transparent;
}
.feature-item:hover, .feature-item.active {
  background: var(--white); border-color: var(--border);
  box-shadow: 0 8px 32px var(--blue-glow);
}
.feature-item.active .feat-icon { background: var(--blue); }
.feature-item.active .feat-icon svg { stroke: var(--white); }
.feat-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--blue-light); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; transition: all .25s;
}
.feat-icon svg { width: 22px; height: 22px; stroke: var(--blue); stroke-width: 1.8; fill: none; transition: all .25s; }
.feat-text h3 { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 4px; letter-spacing: -0.01em; }
.feat-text p  { font-size: 14px; color: var(--text-2); line-height: 1.6; }

.feature-visual {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 32px;
  box-shadow: 0 24px 60px var(--blue-glow2);
  position: sticky; top: 100px; overflow: hidden;
}
.feature-visual::after {
  content: ''; position: absolute; top: -40%; right: -30%;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, var(--blue-glow) 0%, transparent 70%);
  pointer-events: none;
}
.fv-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--blue-light); border-radius: 8px; padding: 6px 12px;
  font-size: 12px; font-weight: 600; color: var(--blue); margin-bottom: 20px;
}
.fv-chip::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--blue-bright); }

.packing-items { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.pack-item {
  display: flex; align-items: center; gap: 6px;
  background: var(--blue-light); border-radius: 8px; padding: 8px 12px;
  font-size: 12px; font-weight: 500; color: var(--text-2); flex: 1; min-width: 120px;
}
.pack-item-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

.rate-cards-mini { display: flex; flex-direction: column; gap: 8px; }
.rate-card-mini {
  display: flex; align-items: center; gap: 12px;
  background: var(--blue-light); border-radius: 12px; padding: 12px 16px;
  border: 1px solid transparent; transition: all .2s; cursor: pointer;
}
.rate-card-mini.best { border-color: var(--blue); background: var(--blue-border2); }
.rate-card-mini:hover { border-color: rgba(4,110,61,0.2); }
.rate-carrier { font-size: 12px; font-weight: 700; color: var(--ink); flex: 1; }
.rate-time    { font-size: 13px; color: var(--text-3); }
.rate-price   { font-size: 18px; font-weight: 700; color: var(--ink); }
.best-badge   { font-size: 9px; font-weight: 700; background: var(--blue); color: white; border-radius: 4px; padding: 2px 6px; letter-spacing: 0.04em; }

/* ── How it works ─────────────────────────────────── */
.how-section {
  background: var(--blue-deep); color: var(--white); padding: 100px 48px;
}
.how-section .section-label { color: var(--blue-bright); }
.how-section .section-label::before { background: var(--blue-bright); }
.how-section .section-title { color: var(--white); }
.how-section .section-sub   { color: rgba(255,255,255,0.55); }

.steps-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 2px;
  margin-top: 64px; max-width: 1200px; margin-left: auto; margin-right: auto;
}
.step {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  padding: 40px 32px; position: relative; transition: all .3s; cursor: default;
}
.step:first-child { border-radius: var(--r-xl) 0 0 var(--r-xl); }
.step:last-child  { border-radius: 0 var(--r-xl) var(--r-xl) 0; }
.step:hover {
    background: rgba(66, 176, 213, 0.15);
    border-color: rgba(66, 176, 213, 0.3);
}
.step-num {
    font-size: 64px;
    font-weight: 800;
    position: absolute;
    top: 20px;
    right: 24px;
    line-height: 1;
    letter-spacing: -0.04em;
    color: rgba(66, 176, 213, 0.25);
}
.step-icon-wrap {
  width: 48px; height: 48px; border-radius: 14px;
  background: rgba(66, 176, 213, 0.2);
    border: 1px solid rgba
(66, 176, 213, 0.3);
  display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
}
.step-icon-wrap svg {
    width: 24px;
    height: 24px;
    stroke: #539fc3;
    stroke-width: 1.8;
    fill: none;
}
.step h3 { font-size: 18px; font-weight: 700; color: var(--text-3); margin-bottom: 10px; letter-spacing: -0.02em; }
.step p   { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; }
.step-connector {
    position: absolute;
    top: 50%;
    right: -14px;
    width: 28px;
    height: 2px;
    z-index: 2;
    background: linear-gradient(90deg, rgba(66, 176, 213, 0.35), rgba(47, 156, 199, 0.45));
}
.step-connector::after {
  content: ''; position: absolute; right: -4px; top: -3px;
  border: 4px solid transparent; border-left-color: rgba(61,191,122,0.6);
}

/* ── Industries ───────────────────────────────────── */
.industries-section { padding: 100px 48px; background: var(--white); }
.industries-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 16px;
  margin-top: 56px; max-width: 1200px; margin-left: auto; margin-right: auto;
}
.industry-card {
  background: var(--mist); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 32px;
  transition: all .3s; cursor: pointer; position: relative; overflow: hidden;
}
.industry-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.industry-card:hover::before { transform: scaleX(1); }
.industry-card:hover { border-color: rgba(4,110,61,0.2); transform: translateY(-4px); box-shadow: 0 16px 48px var(--blue-glow2); background: var(--white); }
.ind-icon  { font-size: 32px; margin-bottom: 16px; display: block; }
.ind-title { font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 8px; letter-spacing: -0.02em; }
.ind-desc  { font-size: 14px; color: var(--text-2); line-height: 1.6; }

/* ── Integrations ─────────────────────────────────── */
.integrations-section { padding: 100px 48px; }
.integrations-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 56px; max-width: 900px; margin-left: auto; margin-right: auto; }
.carrier-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px 36px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  min-width: 140px; transition: all .25s; cursor: pointer;
}
.carrier-card:hover { border-color: rgba(4,110,61,0.3); transform: translateY(-4px); box-shadow: 0 16px 40px var(--blue-glow); }
.carrier-logo {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--blue-light); display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.carrier-name  { font-size: 14px; font-weight: 700; color: var(--ink); }
.carrier-count { font-size: 13px; color: var(--text-3); }
.bc-badge {
  background: var(--blue-light); border: 1px solid var(--blue-border); border-radius: var(--r-lg);
  padding: 32px 48px; display: flex; align-items: center; gap: 20px;
  max-width: 600px; margin: 40px auto 0;
}
.bc-icon  { font-size: 40px; }
.bc-text h3 { font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.bc-text p  { font-size: 14px; color: var(--text-2); }

/* ── CTA ──────────────────────────────────────────── */
.cta-section {
    padding: 100px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;

    background-image:
    linear-gradient(
        135deg,
        rgba(0, 36, 61, 0.6) 0%,
        rgba(0, 95, 134, 0.6) 100%
    ),
    url('../images/Intelligence.webp');

    background-position: center center, bottom center;
    background-size: cover, cover;
    background-repeat: no-repeat, no-repeat;
}
.bkdemo{background:#005f86 !important;box-shadow:none !important;}
.cta-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(66, 176, 213, 0.25) 0%, transparent 60%);
}
.cta-grid {
  position: absolute; inset: 0; pointer-events: none; opacity: .2;
  background-image:
    linear-gradient(rgba(4,110,61,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(4,110,61,0.1) 1px, transparent 1px);
  background-size: 48px 48px;
}
.cta-section h2 {
  font-size: clamp(36px,5vw,44px); font-weight: 800;
  color: var(--white); letter-spacing: -0.04em;
  line-height: 1.05; max-width: 700px; margin: 0 auto 24px; position: relative;
}
.cta-sub { font-size: 18px; color: rgba(255,255,255,0.5); margin-bottom: 48px; position: relative; }
.cta-actions { display: flex; gap: 14px; justify-content: center; position: relative; flex-wrap: wrap; }
.btn-cta-hero {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    background: var(--blue);
    border: none;
    padding: 16px 36px;
    border-radius: var(--r);
    cursor: pointer;
    transition: all .25s;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(66, 176, 213, 0.4);
}
.btn-cta-hero:hover { background: var(--blue-mid); transform: translateY(-2px); color: #fff; }
.btn-outline-hero {
  font-size: 16px; font-weight: 500;
  color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15); padding: 16px 36px; border-radius: var(--r);
  cursor: pointer; transition: all .25s; text-decoration: none;
}
.btn-outline-hero:hover { background: rgba(255,255,255,0.12); color: #fff; }

/* ── Footer ───────────────────────────────────────── */
footer {
    background: #134364;
    color: rgba(255, 255, 255, 0.8);
    padding: 64px 48px 40px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px; max-width: 1200px; margin-left: auto; margin-right: auto;
}
.footer-brand h3 { font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 12px; letter-spacing: -0.03em; }
.footer-brand p  { font-size: 14px; line-height: 1.7; }
.footer-col h4 {
  font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.35);
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px;
}
.footer-col a {
  display: block; font-size: 14px; color: rgba(255,255,255,0.5);
  text-decoration: none; margin-bottom: 10px; transition: color .2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; max-width: 1200px; margin: 0 auto;
  flex-wrap: wrap; gap: 12px;
}
.wwd2-section {
  background: var(--mist);
  padding: 100px 48px;
  overflow: hidden;
}

.wwd2-head {
  text-align: center;
  max-width: 730px;
  margin: 0 auto 48px;
}
.wwd2-title {
  font-size: clamp(26px,3.5vw,40px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 8px 0 12px;
}
.wwd2-sub {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
}

/* Column labels */
.wwd2-col-labels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
  max-width: 1200px;
  margin: 0 auto 16px;
  padding: 0 4px;
}
.wwd2-col-label {
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  padding: 0 0 12px;
}
.wwd2-label-bad  { color: #DC2626; }
.wwd2-label-good { color: var(--blue); }

/* Stage — two boxes side by side */
.wwd2-stage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

/* Shared box */
.wwd2-box {
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: visible;
}

/* Left: red-tinted background */
.wwd2-box-bad {
background: #e6e9eb;
    border: 1px solid #c2c2c2;
}

/* Right: green-tinted background */
.wwd2-box-good {
    background: #e7f9ff;
    border: 1px solid var(--blue-border);
	
}

/* ── LEFT: Chaos zone ───────────────────────── */
.chaos-zone2 {
  position: relative;
  height: 500px;
}
.chaos-svg2 {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; overflow: visible;
}

.sc2 {
  position: absolute;
  background: var(--white);
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.05);
  display: flex; flex-direction: column; gap: 3px;
  min-width: 110px;
}
.sc2-icon { font-size: 17px; line-height: 1; }
.sc2-name { font-size: 12px; font-weight: 600; color: var(--ink); line-height: 1.3; }

.app-chip2 {
  position: absolute;
  background: var(--white);
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.xmark2 {
  position: absolute;
  font-size: 13px; font-weight: 800;
  color: #EF4444; opacity: 0.55; line-height: 1;
}

/* Red (not orange) complaint bubbles */
.cbubble2 {
  position: absolute;
  background: #DC2626;
  color: #fff;
  border-radius: 10px 10px 10px 2px;
  padding: 7px 12px 7px 8px;
  font-size: 12px; font-weight: 500; line-height: 1.35;
  display: flex; align-items: center; gap: 7px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(220,38,38,0.3);
  z-index: 10;
}
.cbubble2-flip { border-radius: 10px 10px 2px 10px; }
.bav2 {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; flex-shrink: 0;
}

/* ── RIGHT: Order zone ──────────────────────── */
.order-zone2 {
  position: relative;
}
.order-svg2 {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; overflow: visible; z-index: 2;
}

.order-grid2 {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: repeat(4, auto);
  gap: 30px;
  align-items: stretch;
}

.oc2 {
  background: var(--white);
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 2px 8px rgba(0,0,0,0.04);
  display: flex; flex-direction: column; gap: 3px;
  min-width: 120px; position: relative;
}
.oc2-icon { font-size: 15px; line-height: 1; margin-bottom: 2px; }
.oc2-name { font-size: 12px; font-weight: 600; color: var(--ink); line-height: 1.35; }
.oc2-sub  { font-size: 11px; color: var(--text-3); line-height: 1.3; }

/* Hub */
.hub2 {
  grid-column: 2; grid-row: 2 / 4;
  background: var(--white);
  border: 2px solid var(--blue);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(66, 176, 213, 0.18), 0 0 0 6px rgba(66, 176, 213, 0.07);
  padding: 18px 16px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 9px;
  width: 150px; position: relative; z-index: 5;
}
.hub2 {
    grid-column: 2;
    grid-row: 2 / 4;
    background: var(--white);
    border: 2px solid var(--blue);
    border-radius: 16px;
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 150px;
    position: relative;
    z-index: 5;
    box-shadow: 0 4px 24px rgba(66, 176, 213, 0.18), 0 0 0 6px rgba(66, 176, 213, 0.07);
}
.hub2-logo {
  width: 42px; height: 42px;
  background: var(--blue); border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
}
.hub2-logo svg { width: 24px; height: 24px; }
.hub2-name { font-size: 13px; font-weight: 700; color: var(--ink); text-align: center; }
.hub2-sub  { font-size: 10px; color: var(--text-3); text-align: center; line-height: 1.4; }
.hub2-carriers { display: flex; flex-wrap: wrap; gap: 3px; justify-content: center; }
.hc2 {
  font-size: 9px; font-weight: 600;
  background: #E8F7EF; color: var(--blue);
  border-radius: 4px; padding: 2px 5px;
}

/* Success bubbles */
.sbubble2 {
  position: absolute;
  background: var(--blue);
  color: #fff;
  border-radius: 10px 10px 10px 2px;
  padding: 7px 13px 7px 8px;
  font-size: 13px; font-weight: 500; line-height: 1.35;
  display: flex; align-items: center; gap: 7px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(4,110,61,0.3);
  z-index: 20; pointer-events: none;
}
.sbubble2-flip { border-radius: 10px 10px 2px 10px; }
.sbav2 {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; flex-shrink: 0;
}
.cf-feat-avatar {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #eafaff, #9fe4ff) !important;
}

.net-wrap{
position: relative;
    width: 100%;
    height: 100%;
    background: #e6e9eb;
    border-radius: 18px;
    overflow: hidden;
}

/* SVG LINES */
.lines{
  position:absolute;
  width:100%;
  height:100%;
  z-index:1;
  left: -30px;
}

.lines line{
  stroke:#ff6b6b;
  stroke-width:2;
  stroke-dasharray:6 6;
  opacity:0.5;
}

/* NODE BASE */
.node{
  position:absolute;
  z-index:2;
  background:#fff;
  padding:10px 12px;
  border-radius:12px;
  font-size:12px;
  font-weight:600;
  display:flex;
  gap:8px;
  align-items:center;
  border:1px solid #ffd1d1;
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
  transition:0.3s;
      flex-direction: column;
    gap: 3px;
    min-width: 110px;
    padding: 10px 14px;
	 /*  DROP ANIMATION */
opacity:0;
  transform:translateY(-80px) scale(0.8);
}
.net-wrap.in-view .node{
  animation: dropIn 0.9s ease forwards;
}

/* ICON */
.node i{
  color:#ff4d4d;
  font-size: 20px;
}

/* CENTER HUB (Manual Spreadsheet) */
.center{
  top:166px;
  left:190px;
  transform:translate(-50%,-50%) rotate(0deg);
  background:#ff4d4d;
  color:#fff;
  border:none;
  box-shadow:0 10px 25px rgba(255,0,0,0.25);
}

/* ===== ZIG ZAG POSITIONS ===== */

/* TOP */
.n1{ top:40px; left:120px; transform:rotate(-8deg); }
.n2{ top:22px; left:380px; transform:rotate(6deg); }

/* MID */
.n3{ top:150px; left:0px; transform:rotate(5deg); }
.n4{ top:185px; left:405px; transform:rotate(-6deg); }

/* SIDE */
.n5{ top:240px; left:40px; transform:rotate(-7deg); }
.n6{ top:270px; left:380px; transform:rotate(7deg); }

/* BOTTOM */
.n7{ top:360px; left:180px; transform:rotate(-5deg); }
.n8{ top:360px; left:330px; transform:rotate(6deg); }

/* EXTRA */
.n9{ top:160px; left:388px; transform:rotate(-4deg);text-align:center; }

/* HOVER EFFECT */
.node:hover{
  transform:scale(1.05) rotate(0deg);
  z-index:10;
}


/* ═══════════════════════════════════════
   WHY METASHIP
═══════════════════════════════════════ */

.why-meta{
  position:relative;
  padding:110px 24px;
  background:
    radial-gradient(circle at top right,
      rgba(66,176,213,0.12),
      transparent 30%),
    #fff;
  overflow:hidden;
}

/* heading */
.why-head{
  max-width:760px;
  margin:auto;
  text-align:center;
  margin-bottom:70px;
}

.why-tag{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:9px 18px;
  border-radius:50px;
  background:var(--blue-light);
  border:1px solid var(--blue-border);
  color:var(--blue);
  font-size:13px;
  font-weight:600;
  margin-bottom:22px;
}

.why-title{
  font-size:clamp(34px,5vw,58px);
  line-height:1.08;
  font-weight:800;
  letter-spacing:-2px;
  color:var(--blue-dark);
  margin-bottom:22px;
}

.why-title span{
  color:var(--blue-mid);
}

.why-sub{
  font-size:17px;
  line-height:1.9;
  color:var(--blue-muted);
}

/* grid */
.why-grid{
  max-width:1280px;
  margin:auto;

  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

/* card */
.why-card{
  position:relative;
  background:#fff;
  border-radius:28px;
  padding:36px 34px;
  overflow:hidden;

  border:1px solid var(--blue-border2);

  box-shadow:
    0 10px 30px rgba(0,0,0,.04),
    0 2px 10px rgba(0,0,0,.03);

  transition:
    transform .45s ease,
    box-shadow .45s ease,
    border-color .45s ease;
}

/* hover */
.why-card:hover{
  transform:translateY(-12px);

  border-color:var(--blue-border);

  box-shadow:
    0 22px 50px rgba(66,176,213,.15),
    0 8px 20px rgba(0,0,0,.06);
}

/* top glow */
.why-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:5px;

  background:linear-gradient(
    90deg,
    var(--blue-mid),
    var(--blue)
  );
}

/* number */
.why-no{
  position:absolute;
  top:24px;
  right:24px;

  font-size:52px;
  font-weight:800;
  line-height:1;
  color:rgba(66,176,213,.10);
}

/* icon */
.why-icon{
  width:68px;
  height:68px;
  border-radius:18px;

  background:var(--blue-glow);

  border:1px solid rgba(66,176,213,.25);

  display:flex;
  align-items:center;
  justify-content:center;

  margin-bottom:28px;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.7),
    0 10px 25px rgba(66,176,213,.10);
}

.why-icon i{
  font-size:28px;
  color:var(--blue);
}

/* title */
.why-card h3{
  font-size:22px;
  line-height:1.35;
  font-weight:700;
  color:var(--blue-dark);
  margin-bottom:16px;
}

/* text */
.why-card p{
  font-size:15px;
  line-height:1.9;
  color:var(--blue-muted);
  margin:0;
}

/* reveal animation */
.reveal{
  opacity:0;
  transform:translateY(40px);
  transition:
    opacity .8s ease,
    transform .8s ease;
}

.reveal.visible{
  opacity:1;
  transform:translateY(0);
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */

@media(max-width:1100px){

  .why-grid{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:768px){

  .why-meta{
    padding:80px 18px;
  }

  .why-grid{
    grid-template-columns:1fr;
    gap:22px;
  }

  .why-head{
    margin-bottom:50px;
  }

  .why-title{
    letter-spacing:-1px;
  }

  .why-sub{
    font-size:15px;
    line-height:1.8;
  }

  .why-card{
    padding:30px 24px;
    border-radius:22px;
  }

  .why-card h3{
    font-size:20px;
  }

  .why-icon{
    width:60px;
    height:60px;
    border-radius:16px;
  }

  .why-icon i{
    font-size:24px;
  }

  .why-no{
    font-size:42px;
  }

}

@media(max-width:480px){

  .why-title{
    font-size:32px;
    line-height:1.15;
  }

  .why-card{
    padding:26px 20px;
  }

  .why-card h3{
    font-size:18px;
  }

  .why-card p{
    font-size:14px;
  }

}
/* ═══════════════════════════════
   METASHIP FAQ
═══════════════════════════════ */

/* section */
.metaship-faq{
  background:
    radial-gradient(circle at top right,
      rgba(66,176,213,0.08),
      transparent 30%),
    #fff;
}

/* heading */
.faq-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:10px 18px;
  border-radius:50px;

  background:var(--blue-light);
  border:1px solid var(--blue-border);

  color:var(--blue);
  font-size:13px;
  font-weight:600;
}

.faq-title{
  font-size:clamp(34px,5vw,54px);
  line-height:1.1;
  font-weight:800;
  color:var(--blue-dark);
  letter-spacing:-2px;
}

.faq-title span{
  color:var(--blue-mid);
}

.faq-sub{
  max-width:700px;
  margin:auto;

  font-size:17px;
  line-height:1.9;
  color:var(--blue-muted);
}

/* accordion */
.faq-accordion{
  max-width:950px;
  margin:auto;
}

.faq-item{
  border:none !important;
  border-radius:24px !important;
  overflow:hidden;

  background:#fff;

  box-shadow:
    0 8px 24px rgba(0,0,0,.04),
    0 2px 8px rgba(0,0,0,.03);

  transition:.35s ease;
}

.faq-item:hover{
  transform:translateY(-4px);

  box-shadow:
    0 20px 40px rgba(66,176,213,.12),
    0 4px 14px rgba(0,0,0,.05);
}

/* accordion button */
.accordion-button{
  padding:28px 30px !important;

  display:flex;
  align-items:center;
  gap:18px;

  font-size:20px !important;
  font-weight:600 !important;
  line-height:1.5 !important;

  color:var(--blue-dark) !important;
  background:#fff !important;

  box-shadow:none !important;
}

/* remove bootstrap blue */
.accordion-button:not(.collapsed){
  background:#fff !important;
  color:var(--blue-dark) !important;
}

/* icon */
.faq-icon{
  width:60px;
  height:60px;
  min-width:60px;

  border-radius:18px;

  background:rgba(66,176,213,0.12);
  border:1px solid rgba(66,176,213,0.18);

  display:flex;
  align-items:center;
  justify-content:center;
}

.faq-icon i{
  font-size:25px;
  color:var(--blue);
}

/* body */
.accordion-body{
  padding:
    0
    30px
    32px
    108px !important;

  font-size:15px;
  line-height:1.9;
  color:var(--blue-muted);
}

/* custom arrow */
.accordion-button::after{
  filter:hue-rotate(165deg);
}

/* responsive */
@media(max-width:768px){

  .faq-title{
    letter-spacing:-1px;
  }

  .faq-sub{
    font-size:15px;
  }

  .accordion-button{
    padding:22px 20px !important;
    font-size:17px !important;
    align-items:flex-start;
  }

  .faq-icon{
    width:52px;
    height:52px;
    min-width:52px;
    border-radius:16px;
  }

  .faq-icon i{
    font-size:22px;
  }

  .accordion-body{
    padding:
      0
      20px
      24px
      92px !important;

    font-size:14px;
  }

}

@media(max-width:480px){

  .faq-title{
    font-size:30px;
    line-height:1.15;
  }

  .accordion-button{
    font-size:15px !important;
    gap:14px;
  }

  .faq-icon{
    width:46px;
    height:46px;
    min-width:46px;
    border-radius:14px;
  }

  .faq-icon i{
    font-size:20px;
  }

  .accordion-body{
    padding:
      0
      18px
      20px
      78px !important;
  }

}
/* ── Core Features (ClickUp-style) ────────────────────── */
.cf-section {
  padding: 100px 48px;
  background: var(--white);
}

.cf-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}
.cf-title {
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 8px 0 12px;
}
.cf-title-muted { color: var(--text-3); font-weight: 700; }
.cf-sub {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
}

/* Tab pills */
.cf-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.cf-tab {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  background: var(--white);
  border: 1.5px solid #E5E7EB;
  border-radius: 100px;
  padding: 8px 20px;
  cursor: pointer;
  transition: all .2s;
  outline: none;
  white-space: nowrap;
}
.cf-tab:hover { border-color: var(--blue); color: var(--white); background: var(--text-3); }
.cf-tab.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  font-weight: 600;
}

/* Panel container */
.cf-panel {
  background: #F4F7F9;
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

/* Individual panes */
.cf-pane {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 56px 56px 56px 56px;
  align-items: start;
  animation: cfFadeIn .3s ease;
}
.cf-pane.active { display: grid; }
@keyframes cfFadeIn { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:translateY(0)} }

/* Left content */
.cf-pane-left {
  padding-right: 48px;
  border-right: 1px solid #E5E7EB;
}

.cf-pane-title {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.cf-pane-title-muted { color: var(--text-3); }

.cf-pane-desc {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 24px;
}

.cf-replaces {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.cf-replaces-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--text-3);
}
.cf-replace-chip {
  font-size: 11px;
  font-weight: 500;
  background: #F3F4F6;
  color: var(--text-2);
  border-radius: 6px;
  padding: 3px 10px;
  text-decoration: line-through;
  opacity: 0.7;
}

.cf-checks {
  list-style: none;
  padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.cf-checks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.5;
}
.cf-checks li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

.cf-explore-btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1.5px solid var(--blue-border);
  padding-bottom: 2px;
  transition: border-color .2s, color .2s;
}
.cf-explore-btn:hover { border-color: var(--blue); }

/* Right feature rows */
.cf-pane-right {
  padding-left: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

.cf-feature-row {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  transition: box-shadow .2s, border-color .2s;
}
.cf-feature-row:hover {
  border-color: var(--blue-border);
  box-shadow: 0 4px 16px rgba(4,110,61,0.08);
}

.cf-feat-avatar {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

/* Custom feature CTA */
.cf-custom-cta {
  max-width: 1200px;
  margin: 24px auto 0;
}
.cf-custom-cta-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--blue-light);
  border: 1px solid var(--blue-border);
  border-radius: 16px;
  padding: 24px 32px;
  flex-wrap: wrap;
}
.cf-custom-cta-icon {
  font-size: 28px;
  flex-shrink: 0;
}
.cf-custom-cta-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 200px;
}
.cf-custom-cta-text strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}
.cf-custom-cta-text span {
  font-size: 13px;
  color: var(--text-2);
}
.cf-custom-cta-btn {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  background: var(--blue);
  border: none;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  transition: all .2s;
  box-shadow: 0 4px 12px rgba(4,110,61,0.2);
  flex-shrink: 0;
}
.cf-custom-cta-btn:hover {
  background: var(--text-3);
  transform: translateY(-1px);
  color: #fff;
}

/* ── Industries Slider ────────────────────────────── */
.ind2-section {
  padding: 100px 0 60px;
  background: var(--mist);
  overflow: hidden;
}

.ind2-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 64px;
  margin-bottom: 44px;
  gap: 24px;
  flex-wrap: wrap;
}
.ind2-header-left { max-width: 930px; }
.ind2-title {
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 8px 0 12px;
}
.ind2-sub { font-size: 16px; color: var(--text-2); line-height: 1.7; }

/* Arrows */
.ind2-arrows { display: flex; gap: 10px; flex-shrink: 0; padding-bottom: 4px; }
.ind2-arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--blue-border);
  background: var(--white);
  color: var(--text-3);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .2s; outline: none;padding:5px;
}
.ind2-arrow svg { width: 20px; height: 20px; }
.ind2-arrow:hover { background: var(--blue-light); border-color: var(--blue); color: var(--blue); }
.ind2-arrow-next { background: var(--blue); border-color: var(--blue); color: #fff; }
.ind2-arrow-next:hover { background: var(--blue-dark); border-color: var(--blue-dark); color: #fff; }

/* Track */
.ind2-track-wrap {
  padding-left: 64px;
  overflow: hidden;
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
}
.ind2-track-wrap:active { cursor: grabbing; }
.ind2-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

/* Cards */
.ind2-card {
  flex-shrink: 0;
  width: 320px;
  height: 460px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: transform .35s ease;
}
.ind2-card:hover { transform: translateY(-6px); }

.ind2-card-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .55s ease;
}
.ind2-card:hover .ind2-card-bg { transform: scale(1.07); }

/* Default overlay — lighter, title sits at bottom */
.ind2-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(3,20,10,0.08) 0%,
    rgba(3,20,10,0.30) 50%,
    rgba(3,20,10,0.82) 100%
  );
  transition: background .35s ease;
}
/* On hover: deepen overlay so bullets are readable */
.ind2-card:hover .ind2-card-overlay {
  background: linear-gradient(
    to bottom,
    rgba(3,20,10,0.30) 0%,
    rgba(3,20,10,0.65) 40%,
    rgba(3,20,10,0.97) 100%
  );
}

.ind2-card-content {
  position: absolute; inset: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;   /* pin everything to bottom by default */
}

.ind2-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 0;
  transition: margin-bottom .35s ease;
}
.ind2-card:hover .ind2-card-top { margin-bottom: 16px; }

.ind2-card-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.ind2-card-arrow-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 16px; flex-shrink: 0;
  transition: all .25s;
  position: absolute;
    right: 10px;
    top: 10px;
}
.ind2-card:hover .ind2-card-arrow-icon {
  background: var(--blue);
  border-color: var(--blue);
}

/* Bullet list — hidden by default, revealed on hover */
.ind2-card-bullets {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  /* hidden state */
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(0.4,0,0.2,1), opacity .35s ease;
}
.ind2-card:hover .ind2-card-bullets {
  max-height: 220px;
  opacity: 1;
}

.ind2-card-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  transform: translateY(8px);
  opacity: 0;
  transition: transform .3s ease, opacity .3s ease;
}
.ind2-card:hover .ind2-card-bullets li { transform: translateY(0); opacity: 1; }
.ind2-card:hover .ind2-card-bullets li:nth-child(1) { transition-delay: .05s; }
.ind2-card:hover .ind2-card-bullets li:nth-child(2) { transition-delay: .10s; }
.ind2-card:hover .ind2-card-bullets li:nth-child(3) { transition-delay: .15s; }
.ind2-card:hover .ind2-card-bullets li:nth-child(4) { transition-delay: .20s; }

.ind2-card-bullets li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue-bright);
  flex-shrink: 0;
  margin-top: 5px;
}

/* Footer */
.ind2-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 64px 0;
}
.ind2-progress-wrap {
  flex: 1;
  height: 3px;
  background: rgba(4,110,61,0.1);
  border-radius: 2px;
  overflow: hidden;
  max-width: 480px;
}
.ind2-progress-bar {
  height: 100%;
  background: var(--blue);
  border-radius: 2px;
  transition: width 0.4s ease;
  width: 11.1%;
}
.ind2-counter {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-3);
  white-space: nowrap;
}

/* ── Integrations (Draup-style) ─────────────────────── */
.integ-section {
  background: var(--blue-deep);
  padding: 100px 48px;
  position: relative;
  overflow: hidden;
}

/* Background radial glow */
.integ-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  border-radius: 50%;
  pointer-events: none;
}

/* Heading block */
.integ-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
  position: relative;
}
.integ-title {
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 8px 0 16px;
}
.integ-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* Dual CTAs */
.integ-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.integ-btn-primary {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--blue);
  padding: 12px 26px;
  border-radius: 100px;
  text-decoration: none;
  transition: background .2s, transform .2s;
  box-shadow: 0 4px 16px rgba(4,110,61,0.35);
}
.integ-btn-primary:hover { background: var(--blue-mid); transform: translateY(-1px); color: #fff; }

.integ-btn-secondary {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 12px 26px;
  border-radius: 100px;
  text-decoration: none;
  transition: all .2s;
  backdrop-filter: blur(6px);
}
.integ-btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}

/* Spoke diagram */
.integ-diagram {
  position: relative;
  max-width: 1000px;
  height: 470px;
  margin: 0 auto;
}

.integ-svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  overflow: visible;
}

/* Hub */
.integ-hub {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--blue);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 4px;
  z-index: 10;
}
.integ-hub-glow {
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  z-index: 0;
}
.integ-hub-glow::after {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
}
.integ-hub-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  position: relative; z-index: 2;
}
.integ-hub-sub {
  font-size: 9px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  position: relative; z-index: 2;
  text-align: center;
  line-height: 1.3;
}

/* Nodes */
.integ-node {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
  backdrop-filter: blur(4px);
  transition: background .2s, border-color .2s;
  cursor: default;
}
.integ-node:hover {
background: rgba(66, 176, 213, 0.25);
border-color: rgba(66, 176, 213, 0.4);
}
.integ-node-icon { font-size: 18px; flex-shrink: 0; }
.integ-node-label { font-size: 13px; }

/* ── Page split ─────────────────────── */
.contact-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 68px);
}

/* ── LEFT PANEL ─────────────────────── */
.left-panel {
  background: var(--white);
  padding: 25px 64px 30px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.left-panel::before {
  content: '';
  position: absolute; top: -120px; left: -100px;
  width: 450px; height: 450px; border-radius: 50%;
  background: radial-gradient(circle, rgba(4,110,61,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.lp-eyebrow {
  font-size: 15px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.lp-eyebrow::before {
  content: ''; width: 20px; height: 2px;
  background: var(--blue); border-radius: 1px;
}

.lp-title {
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 700; line-height: 1.12;
  letter-spacing: -0.03em; color: var(--ink); margin-bottom: 8px;
}
.lp-title .highlight { color: var(--blue); }
.lp-title .muted     { color: var(--text-3); }

.lp-sub {
  font-size: 15px; color: var(--text-2); line-height: 1.7;
  margin-bottom: 40px; max-width: 400px;
}

/* What to expect */
.expect-label {
  font-size: 13px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 16px;
}
.expect-list {
  list-style: none; padding: 0; margin: 0 0 48px;
  display: flex; flex-direction: column; gap: 14px;
}
.expect-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: var(--text-2); line-height: 1.6;
}
.expect-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--blue); flex-shrink: 0; margin-top: 6px;
}
.expect-list li strong { color: var(--ink); font-weight: 600; }

/* Contact info */
.contact-info-block {
  border-top: 1px solid var(--blue-border); padding-top: 32px;
  display: flex; flex-direction: column; gap: 10px;
}
.contact-info-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--text-2);
}
.contact-info-item i { color: var(--blue); font-size: 15px; flex-shrink: 0; }
.contact-info-item a { color: var(--text-2); text-decoration: none; transition: color .2s; }
.contact-info-item a:hover { color: var(--blue); }

/* ── RIGHT PANEL ────────────────────── */
.right-panel {
  background: rgba(66, 176, 213, 0.06);
  display: flex; align-items: center; justify-content: center;
  padding: 25px 56px 30px; position: relative; overflow: hidden;
}
.rp-deco {
  position: absolute; border-radius: 40px; pointer-events: none;
}
.rp-deco-1 {
  width: 420px; height: 420px;
  background: rgba(66, 176, 213, 0.07);
  top: -80px; right: -60px; transform: rotate(15deg);
}
.rp-deco-2 {
  width: 320px; height: 320px;
  background: rgba(66, 176, 213, 0.08);
  bottom: -70px; left: -50px; transform: rotate(-10deg);
}
.rp-deco-3 {
  width: 180px; height: 180px;
  background: rgba(66, 176, 213, 0.09);
  top: 35%; right: 8%; transform: rotate(25deg);
}

/* Form card */
.form-card {
  background: var(--white);
  border-radius: 20px; padding: 40px;
  width: 100%; max-width: 440px;
  box-shadow:
  0 16px 56px rgba(66, 176, 213, 0.1),
  0 2px 8px rgba(66, 176, 213, 0.06);
  position: relative; z-index: 2;
}

/* Form fields — exactly Synthesia style */
.ms-field { margin-bottom: 14px; }
.ms-input {
  width: 100% !important; background: var(--white) !important;
  border: none !important; border-bottom: 1.5px solid #D1D5DB !important;
  border-radius: 0 !important; padding: 10px 4px !important;
  font-size: 14px !important; color: var(--ink) !important; outline: none !important;
  transition: border-color .2s !important;
  font-weight: 400 !important;
}
textarea.ms-input {height: 60px;}
.ms-input::placeholder { color: #9CA3AF !important; }
.ms-input:focus { border-bottom-color: var(--blue) !important; }
.ms-input.error { border-bottom-color: #EF4444 !important; }

/* Phone row — flag + input */
.phone-row { display: flex; align-items: center; gap: 0; border-bottom: 1.5px solid #D1D5DB; }
.phone-row:focus-within { border-bottom-color: var(--blue); }
.flag-select {
  background: transparent; border: none; outline: none;
  font-size: 14px; color: var(--text-2); padding: 10px 4px;
  cursor: pointer; flex-shrink: 0;
}
.phone-input {
  flex: 1; background: transparent; border: none;
  outline: none; font-size: 14px; color: var(--ink);
  padding: 10px 4px;
  font-family: var(--font) !important;
}
.phone-input::placeholder { color: #9CA3AF; }

/* Submit button */
.btn-submit {
  width: 100%; background: var(--blue) !important; color: var(--white) !important
  border: none !important; border-radius: 10px !important; padding: 13px 24px !important;
  font-size: 15px !important; font-weight: 600 !important; cursor: pointer !important;
  display: flex !important; align-items: center !important; justify-content: center !important; gap: 8px !important;
  transition: all .25s !important; margin-top: 20px !important;
}
.btn-submit:hover { background: var(--blue-dark); transform: translateY(-1px); }
.btn-submit svg { width: 17px; height: 17px; transition: transform .2s; }
.btn-submit:hover svg { transform: translateX(3px); }

/* Success */
.success-state {
  display: none; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 20px 0; min-height: 300px;
}
.success-icon {
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--blue-light); border: 2px solid var(--blue-border);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.success-icon svg { width: 34px; height: 34px; stroke: var(--blue); }
.success-title { font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.success-sub   { font-size: 14px; color: var(--text-2); line-height: 1.65; max-width: 280px; margin: 0 auto; }

.ast-custom-button-link:hover{Background:#42B0D5;}
.btn-primary-g:hover{Background:#42B0D5;}

.wpcf7-form p {
    margin: 0;
    display: inline;
}
.sectionLable{
	justify-content: center;
    display: flex;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 6px 25px;
    font-size: 15px;
    font-weight: 500;
    color: var(--blue);
    margin-bottom: 32px;
    animation: fadeUp .8s ease both;
    box-shadow: 0 4px 16px var(--blue-glow);
    animation: chipFloat 3s ease-in-out infinite;
}

/* ================= WRAPPER ================= */
.flow-wrap{
  position:relative;
  width:100%;
  max-width:1100px;
  height:510px;
  margin:auto;
  background:#eaf6ff;
  border-radius:20px;
  font-family:Arial;
  overflow:hidden;
}

/* ================= HUB ================= */
.hub{
  position:absolute;
  top:48%;
  left:50%;
  transform:translate(-50%,-50%);
  width:180px;
  background:#fff;
  border:2px solid #0a6ea8;
  border-radius:16px;
  text-align:center;
  padding:14px;
  z-index:5;
  box-shadow:0 10px 25px rgba(0,0,0,0.1);
  font-size: 17px;
  
}

.hub small{
  display:block;
  font-size:12px;
  color:#666;
  margin-top:4px;
}

.chips span{
  display:inline-block;
  font-size:10px;
  background:#e6f7ff;
  padding:2px 6px;
  margin:2px;
  border-radius:6px;
}

/* ================= CARD ================= */
.flow-wrap .flowcard{
  position:absolute;
  width:140px;
  background:#fff;
  border-radius:12px;
  padding:5px;
  text-align:center;
  box-shadow:0 6px 18px rgba(0,0,0,0.08);
  border:1px solid #e5e5e5;
}

/* ICON */
.flow-wrap .flowcard .icon{
  font-size:25px;
  color:#0a6ea8;
  display:block;
}

/* TITLE */
.flow-wrap .flowcard .title{
  font-size:14px;
  font-weight:600;
}

/* DESC */
.flow-wrap .flowcard .desc{
  font-size: 11px;
  color:#666;
  font-weight:400;
  line-height: 15px;
}

/* ================= POSITIONS ================= */
.c1{top:40px;left:20px;}
.c2{top:140px;left:20px;margin-top: 6px;}
.c3{top:240px;left:20px;margin-top: 12px;}
.c4{top:340px;left:20px;margin-top: 18px;}

.c5{top:40px;right:40px;}
.c6{top:140px;right:20px;margin-top: 6px;}
.c7{top:240px;right:20px;margin-top: 12px;}
.c8{top:340px;right:20px;margin-top: 18px;}

.c9{top:20px;left:50%;transform:translateX(-50%);}
.c10{bottom:40px;left:50%;transform:translateX(-50%);}

/* ================= LINES ================= */
/* LEFT */
.c1::after, .c2::after, .c3::after, .c4::after{
  content:"";
  position:absolute;
  right:-120px;
  top:50%;
  width:120px;
  height:2px;
  background:linear-gradient(to right,#3DBF7A,transparent);
}

/* RIGHT */
.c5::before, .c6::before, .c7::before, .c8::before{
  content:"";
  position:absolute;
  left:-120px;
  top:50%;
  width:120px;
  height:2px;
  background:linear-gradient(to left,#3DBF7A,transparent);
}

/* TOP */
.c9::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-120px;
  width:2px;
  height:120px;
  background:linear-gradient(to bottom,#3DBF7A,transparent);
}

/* BOTTOM */
.c10::after{
  content:"";
  position:absolute;
  left:50%;
  top:-120px;
  width:2px;
  height:120px;
  background:linear-gradient(to top,#3DBF7A,transparent);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px){

}

@media (max-width: 600px){

}


















































/* ── Animations ───────────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes floatY2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }
    @keyframes chipFloat{
      0%,100%{
        transform:translateY(0);
      }
      50%{
        transform:translateY(-5px);
      }
    }
	
	/* ===== DROP ANIMATION ===== */
@keyframes dropIn{
  0%{
    opacity:0;
    transform:translateY(-100px) scale(0.7) rotate(-6deg);
  }
  60%{
    opacity:1;
    transform:translateY(10px) scale(1.05) rotate(2deg);
  }
  100%{
    opacity:1;
    transform:translateY(0) scale(1) rotate(var(--r,0deg));
  }
}

/* ── Responsive ───────────────────────────────────── */

@media (max-width: 992px) {
	  .flow-wrap{
    height:auto;
    padding:40px 10px;
  }

.flow-wrap .flowcard{
    position:relative;
    width:48%;
    margin:10px 1%;
    display:inline-block;
  }

  .hub{
    position:relative;
    transform:none;
    margin:20px auto;
  }

.flow-wrap .flowcard::before, .flow-wrap .flowcard::after{
    display:none;
  }
	.badge-dot {
    padding: 5px;
}
	.hero-h1-cycle{width:100%;}
	.h1c-prefix {
    white-space: normal;
}
	  .contact-page { grid-template-columns: 1fr; }
  .left-panel   { padding: 48px 32px; }
  .right-panel  { padding: 48px 24px; }
  .ms-nav       { padding: 0 24px; }
  .nav-links-row { display: none; }
  #mainNav { padding: 0 24px; }
  .nav-links, .nav-actions .btn-ghost-nav { display: none; }
  .hero { padding: 100px 24px 60px; }
  .section { padding: 60px 24px; }
  .features-layout { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .step:first-child { border-radius: var(--r-lg) var(--r-lg) 0 0; }
  .step:last-child  { border-radius: 0 0 var(--r-lg) var(--r-lg); }
  .industries-grid  { grid-template-columns: 1fr 1fr; }
  .footer-grid      { grid-template-columns: 1fr 1fr; }
  .dashboard-grid   { grid-template-columns: 1fr 1fr; }
  .dash-row         { grid-template-columns: 1fr; }
  .trust-strip      { padding: 20px 24px; gap: 24px; }
  .how-section      { padding: 60px 24px; }
  .industries-section, .integrations-section, .cta-section { padding: 60px 24px; }
  footer { padding: 48px 24px 32px; }
  .bc-badge { padding: 24px; flex-direction: column; text-align: center; }
    .wwd2-section { padding: 60px 24px; }
  .wwd2-stage   { grid-template-columns: 1fr; }
  .wwd2-col-labels { grid-template-columns: 1fr; gap: 0; }
  .wwd2-col-labels .wwd2-label-good { margin-top: 32px; }
  .chaos-zone2  { height: 420px; }
    .integ-section { padding: 60px 24px; }
  .integ-diagram { height: auto; display: flex; flex-direction: column; gap: 12px; align-items: center; }
  .integ-svg { display: none; }
  .integ-hub  { position: static; transform: none; margin: 20px auto; }
  .integ-node { position: static; }
    .ind2-section { padding: 60px 0 40px; }
  .ind2-header { padding: 0 24px; }
  .ind2-track-wrap { padding-left: 24px; }
  .ind2-footer { padding: 20px 24px 0; }
  .ind2-card { width: 280px; height: 420px; }
    .cf-section { padding: 60px 24px; }
  .cf-pane { grid-template-columns: 1fr; padding: 32px 24px; }
  .cf-pane-left { padding-right: 0; border-right: none; border-bottom: 1px solid #E5E7EB; padding-bottom: 32px; margin-bottom: 32px; }
  .cf-pane-right { padding-left: 0; }
  .cf-custom-cta-inner { flex-direction: column; align-items: flex-start; }
}

/* =========================================================
   FOOTER RESPONSIVE MEDIA CSS
========================================================= */


/* =========================================================
   Large Laptop
========================================================= */
@media (max-width: 1200px) {

  .footer-grid{
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
  }

  .footer-wordmark{
    font-size: clamp(90px, 14vw, 170px);
  }

}


/* =========================================================
   Tablet Landscape
========================================================= */
@media (max-width: 991px) {

  footer{
    padding: 56px 32px 32px;
  }

  .footer-grid{
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand{
    grid-column: span 2;
  }

  .footer-brand p{
    max-width: 100%;
  }

  .footer-bottom{
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-wordmark{
    font-size: clamp(72px, 14vw, 130px);
    margin-top: 20px;
  }

}


/* =========================================================
   Tablet Portrait
========================================================= */
@media (max-width: 768px) {
	.h1c-line {
    flex-wrap: wrap;
}
.wwd2-section{display:none;}	

  footer{
    padding: 48px 24px 28px;
  }

  .footer-grid{
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 40px;
  }

  .footer-brand{
    grid-column: span 2;
  }

  .footer-brand h3{
    font-size: 20px;
  }

  .footer-brand p{
    font-size: 14px;
    line-height: 1.7;
  }

  .footer-col h4{
    font-size: 13px;
    margin-bottom: 14px;
  }

  .footer-col a{
    font-size: 14px;
    margin-bottom: 8px;
  }

  .footer-bottom{
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: 24px;
  }

  .footer-wordmark{
    font-size: clamp(60px, 16vw, 100px);
    margin-top: 18px;
    max-height: 0.65em;
  }

}


/* =========================================================
   Mobile Devices
========================================================= */
@media (max-width: 576px) {
	.flow-wrap .flowcard{
    width:100%;
    display:block;
    margin:10px 0;
  }

  .hub{
    width:100%;
  }
	  .left-panel { padding: 40px 20px; }
  .form-card  { padding: 28px 20px; }

  footer{
    padding: 42px 20px 24px;
  }

  .footer-grid{
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 32px;
  }

  .footer-brand{
    grid-column: unset;
  }

  .footer-brand h3{
    font-size: 18px;
    margin-bottom: 10px;
  }

  .footer-brand p{
    font-size: 13px;
    line-height: 1.6;
  }

  .footer-col{
    width: 100%;
  }

  .footer-col h4{
    font-size: 10px;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
  }

  .footer-col a{
    font-size: 13px;
    margin-bottom: 8px;
  }

  .footer-bottom{
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-top: 20px;
    font-size: 12px;
  }

  .footer-social{
    font-size: 12px;
  }

  .footer-wordmark{
    font-size: clamp(48px, 18vw, 72px);
    text-align: left;
    margin-top: 14px;
    max-height: 0.75em;
    letter-spacing: -0.03em;
  }

}


/* =========================================================
   Extra Small Devices (415px and below)
========================================================= */
@media (max-width: 415px) {

  footer{
    padding: 36px 18px 22px;
  }

  .footer-grid{
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-brand h3{
    font-size: 17px;
  }

  .footer-brand p{
    font-size: 12px;
  }

  .footer-col h4{
    font-size: 10px;
  }

  .footer-col a{
    font-size: 12px;
  }

  .footer-bottom{
    gap: 8px;
    font-size: 13px;
  }

  .footer-social{
    font-size: 13px;
  }

  .footer-wordmark{
    font-size: clamp(42px, 20vw, 60px);
    margin-top: 10px;
  }

}






