:root {
  --blue:          #4599e4;
  --blue-hover:    #3387d4;
  --ink:           #1e1e1e;
  --panel:         #ddecfa;
  --white:         #ffffff;
  --border:        #ececec;
  --border-soft:   #aeaeae;
  --card-border:   rgba(30, 30, 30, 0.06);

  --footer-bg:      #1e1e1e;
  --footer-muted:   rgba(255, 255, 255, 0.70);
  --footer-divider: rgba(255, 255, 255, 0.20);

  --font-head: "Oswald", "Arial Narrow", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --fs-h1:   clamp(2.00rem, 1.30rem + 3.0vw, 3.50rem);
  --fs-h2:   clamp(1.75rem, 1.45rem + 1.8vw, 3.00rem);
  --fs-card: clamp(1.20rem, 1.15rem + 0.6vw, 1.50rem);
  --fs-body: 1rem;
  --fs-nav:  0.9375rem;
  --fs-eyebrow: 0.8125rem;

  --r-btn:   6px;
  --r-card:  16px;
  --r-panel: 24px;

  --maxw: 1440px;
  --pad-x: clamp(16px, 4vw, 60px);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --t-fast: 150ms;
  --t-mid: 240ms;

  --shadow-card: 0 1px 2px rgba(30, 30, 30, 0.04), 0 8px 24px rgba(30, 30, 30, 0.06);
  --shadow-card-hover: 0 4px 10px rgba(30, 30, 30, 0.06), 0 18px 40px rgba(30, 30, 30, 0.12);
  --shadow-nav: 0 1px 0 var(--border);
}

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

img {
  max-width: 100%;
  height: auto;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--ink);
  background-color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, .font-head {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: var(--fs-nav);
  font-weight: 600;
  border-radius: var(--r-btn);
  text-decoration: none;
  transition: all var(--t-fast) var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
  text-align: center;
}

.btn-primary {
  background-color: var(--blue);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--blue-hover);
}

.btn-outline {
  border-color: var(--border-soft);
  color: var(--ink);
  background: transparent;
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--white);
}

header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-nav);
  z-index: 1000;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__brand img {
  max-height: 70px;
  width: auto;
}

.hero {
  padding: clamp(40px, 8vw, 80px) 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 40px);
  text-align: left;
  grid-auto-flow: row;
align-content: center;
justify-content: center;
align-items: center;
justify-items: center;
}

.eyebrow, .vflow__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--blue);
  margin-bottom: 12px;
}

.vflow__eyebrow-dot {
  width: 8px;
  height: 8px;
  background-color: var(--blue);
  border-radius: 50%;
  display: inline-block;
}

.hero h1 {
  font-size: var(--fs-h1);
  margin-bottom: 20px;
  color: var(--ink);
}

.hero p {
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.125rem);
  color: #555;
  margin-bottom: 30px;
}

.hero-card-large {
  background-color: var(--panel);
  border-radius: var(--r-panel);
  padding: clamp(24px, 5vw, 20px);
  border: 1px solid var(--card-border);
}

.inner-boxes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.inner-box {
  background: var(--white);
  padding: 16px;
  border-radius: var(--r-card);
  border: 1px solid var(--border);
}

.inner-box h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.inner-box p {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 0;
}

.hero p.bullet-line {
  margin: 24px 0;
  font-size: 1rem;
  color: #333;
  text-align: center;
}
.hero-card-large .stat__badge{
  width: 20px;
  height: 20px;
}
.hero-card-large .stat__badge .card__icon{
  width: 20px;
  height: 20px;
  padding: 4px;
}
.features {
  padding: clamp(40px, 6vw, 60px) 0;
  background-color: #fafafa;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.feature-card {
  background: var(--white);
  padding: clamp(20px, 4vw, 32px);
  border-radius: var(--r-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: transform var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.feature-card h3 {
  font-size: var(--fs-card);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.95rem;
  color: #666;
}
.feature-card img {        
    max-width: 180px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.weve-work-with .features-grid {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 30px;
  }

  .weve-work-with .feature-card {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 120px; /* Card width */
      height: 50px; /* Card height */
  }

  .weve-work-with .feature-card img {
      max-width: 100px;   /* Smaller logo */
      max-height: 50px;
      width: auto;
      height: auto;
      object-fit: contain;
      display: block;
  }
/* vflow dynamic interactive section styling */
.vflow {
  padding: clamp(40px, 6vw, 80px) 0;
}

.vflow__container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.vflow__head {
  margin-bottom: 32px;
}

.vflow__title {
  font-size: var(--fs-h2);
  margin-bottom: 12px;
}

.vflow__lede {
  font-size: 1.05rem;
  color: #555;
}

.metrics {
  padding: clamp(40px, 6vw, 80px) 0;
}

.stat {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3rem);
  color: var(--blue);
  font-weight: 700;
  margin-top: 8px;
}

.demo-section {
  padding: clamp(40px, 6vw, 80px) 0;
  background: var(--panel);
}

.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 40px);
  background: var(--white);
  border-radius: var(--r-panel);
  padding: clamp(24px, 5vw, 48px);
  box-shadow: var(--shadow-card-hover);
}

.demo-info h2 {
  font-size: var(--fs-h2);
  margin-bottom: 16px;
}

.demo-list {
  list-style: none;
  margin: 24px 0;
}

.demo-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.demo-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: bold;
}

.widget-placeholder {
  border: 2px dashed var(--border-soft);
  border-radius: var(--r-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 4vw, 32px);
  text-align: center;
  background: #fcfcfc;
}

footer {
  background: var(--footer-bg);
  color: var(--white);
  padding: clamp(40px, 6vw, 60px) 0 30px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--footer-divider);
  gap: 20px;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 2rem;
  letter-spacing: 1px;
}

.footer-bottom {
  padding-top: 30px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--footer-muted);
}

/* --- Media Queries for Mobile Responsiveness --- */
@media (max-width: 900px) {
  .hero-grid, 
  .demo-grid, 
  .vflow__panel-step {
    grid-template-columns: 1fr;
  }
  
  .vflow__track {
    justify-content: flex-start;
  }

}

@media (max-width: 767px) {
  section.features.weve-work-with .features-grid {          
      grid-template-columns: repeat(1, 1fr);  
      gap: 10px;        
  }
  .weve-work-with .feature-card {
    height: 70px;
    padding: 10px;
  }
  .nav__brand img{
    height: 60px;
  }
}
@media (max-width: 600px) {
  .inner-boxes-grid {
    grid-template-columns: 1fr;
  }

  .nav-wrapper {
    height: 64px;
  }

  .nav-wrapper .btn {
    padding: 8px 14px;
    font-size: 0.85rem;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .bullet-line {
    font-size: 0.85rem;
  }
}

/* Calendly's own iframe gets a fixed height directly (set inline on
   .calendly-inline-widget, per Calendly's documented embed pattern),
   so this container no longer forces its own height/overflow — it
   just wraps the widget at whatever height the widget actually is.
   That avoids Calendly ever needing its own internal scrollbar. */
.cta__card {
  height: auto;
  overflow: visible;
}

/* Left column was vertically centered against the tall Calendly card;
   now that the card is shorter, top-align it so the "Book a Demo"
   heading lines up with "Select a Day" instead of sitting low. */
.cta {
  align-items: start;
}
.cta__body {
  padding-top: 36px;
}