@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Bricolage Grotesque:wght@700;800;900&display=swap');

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

:root {
  --blue: #0A66FF;
  --blue2: #0052CC;
  --blue3: #2684FF;
  --lightblue: #E8F0FE;
  --lightblue2: #F0F7FF;
  --white: #fff;
  --dark: #0D1B2A;
  --text: #1a2332;
  --muted: #5e6e82;
  --border: #d4e0f0;
  --green: #00a651;
  --yellow: #f5a623;
  --red: #e53e3e;
  --transition-fast: 0.2s ease;
    --transition-base: 0.35s ease;
    --transition-slow: 0.5s ease;
}

html {
  scroll-behavior: smooth;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  box-sizing: border-box;
}

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

body {
  font-family: "Google Sans", sans-serif;
  background: #fff;
  color: var(--text);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    margin: 0;
    padding: 0;
    word-break: break-word;
    font-family: "Bricolage Grotesque", sans-serif;
}

/* Announcement */
.ann-bar {
  background: linear-gradient(90deg, #0D1B2A, #1a2f4e);
  text-align: center;
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .3px;
}

.ann-bar span {
  background: rgba(255, 255, 255, .15);
  padding: 2px 10px;
  border-radius: 20px;
  margin-left: 8px;
  color: #f5a623;
}

/* Nav */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px max(32px, calc((100% - 1200px) / 2));
  background: #fff;
  border-bottom: 2px solid var(--lightblue);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(10, 102, 255, .08);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  font-weight: 900;
  color: var(--dark);
  cursor: pointer;
  text-decoration: none;
}

.nav-logo>img {
  max-width: 200px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.nav-cta {
  background: linear-gradient(135deg, #0A66FF, #2684FF);
  color: #fff;
  padding: 11px 26px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all .2s;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 14px rgba(10, 102, 255, .3);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 102, 255, .4);
}

/* Hero */
.hero {
  background-image: url(./assets/hero-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 70px 5% 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(10, 102, 255, .07), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(38, 132, 255, .06), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 2px solid #0A66FF;
  padding: 7px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  color: #0A66FF;
  margin-bottom: 24px;
  box-shadow: 0 2px 10px rgba(10, 102, 255, .12);
}

.hero-eyebrow .pulse {
  width: 8px;
  height: 8px;
  background: #00a651;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: .7; }
}

/*.hero h1 {*/
/*  font-family: 'Bricolage Grotesque', sans-serif;*/
/*  font-size: clamp(32px, 5.5vw, 60px);*/
/*  font-weight: 900;*/
/*  line-height: 1.1;*/
/*  letter-spacing: -1.5px;*/
/*  margin-bottom: 22px;*/
/*  color: var(--dark);*/
/*}*/
.geo_banner_text > h1 {
    font-size: 60px;
    font-weight: 700;
    color: #09090b;
    position: relative;
    width: fit-content;
    margin: 30px auto 0;
}
.geo_banner_text > h1 span.span_normal {
    background: linear-gradient(120deg, #09090B 0%, #2067F3 40%, #09090B 75%, #2067F3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 250% auto;
    animation: h1Sweep 5s linear infinite alternate;
}
.geo_banner_text > h1 span.span_gradinet {
    background: linear-gradient(
    89.09deg,
    #2887ff -4.43%,
    #22cfff 40.29%,
    #ffd106 62.12%,
    #ff6a35 106.32%
  );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
@keyframes h1Sweep {
      0%   { background-position: 0% center; }
      100% { background-position: 250% center; }
}

.hero h1 .blue { color: #0A66FF; }
.hero h1 .green { color: #00a651; }

.hero h1 .underline {
  position: relative;
  display: inline-block;
}

.hero h1 .underline::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0A66FF, #2684FF);
  border-radius: 2px;
}

.hero-sub {
  font-size: clamp(15px, 2vw, 19px);
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.hero-cta-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 42px;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  background: linear-gradient(135deg, #0A66FF, #2684FF);
  color: #fff;
  box-shadow: 0 8px 28px rgba(10, 102, 255, .35);
  transition: all .25s;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(10, 102, 255, .45);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 17px 36px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid #0A66FF;
  background: #fff;
  color: #0A66FF;
  transition: all .25s;
}

.btn-ghost:hover { background: var(--lightblue); }

.hero-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 16px;
}

.proof-item .check {
  color: #00a651;
  font-size: 18px;
}

/* Section commons */

.home_template_wrapper {
  position: relative;
  -webkit-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}
.home_template_mini {
  position: relative;
}
/*.home_template_mini::before,*/
/*.home_template_mini::after {*/
/*  content: "";*/
/*  position: absolute;*/
/*  top: 0;*/
/*  width: 160px;*/
/*  height: 100%;*/
/*  z-index: 2;*/
/*  pointer-events: none;*/
/*}*/
/*.home_template_mini::before {*/
/*  left: 0;*/
/*  background: linear-gradient(to right, #ffffff 0%, rgba(26, 1, 38, 0) 100%);*/
/*}*/

/*.home_template_mini::after {*/
/*  right: 0;*/
/*  background: linear-gradient(to left, #ffffff 0%, rgba(26, 1, 38, 0) 100%);*/
/*}*/

.home_slide_box {
  max-width: 280px;
  width: 100%;
  flex: 0 0 27%;
}
.home_slide_box img {
  max-width: 280px;
  max-height: 110px;
  object-fit: contain;
  width: 100%;
}

/*.aif-chatbot-tesmnl-leftslide {*/
/*  animation: scrollLeft 50s forwards linear infinite;*/
/*}*/

/*.aif-chatbot-tesmnl-rightslide {*/
/*  animation: scrollRight 50s linear infinite;*/
/*}*/

/*.aif-chatbot-tesmnl-slider:hover {*/
/*  animation-play-state: paused;*/
/*}*/

/*@keyframes scrollLeft {*/
/*  0% {*/
/*    transform: translate(0);*/
/*  }*/

/*  to {*/
/*    transform: translate(-100%);*/
/*  }*/
/*}*/

/*@keyframes scrollRight {*/
/*  0% {*/
/*    transform: translate(0);*/
/*  }*/

/*  to {*/
/*    transform: translate(100%);*/
/*  }*/
/*}*/
/* Three Box css */

section {
  padding: 72px 0;
}

.section-tag {
  display: inline-block;
  background: var(--lightblue);
  color: #0A66FF;
  border: 1px solid #b3d1ff;
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.18;
  letter-spacing: -.5px;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 620px;
}

.centered { text-align: center; }
.centered .section-sub { margin: 0 auto; }

/* Logos */
.logos-bar {
  background: var(--lightblue2);
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}

.logos-bar p {
    text-transform: capitalize;
    letter-spacing: 1.5px;
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #09090b;
}

.logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.ai-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  box-shadow: 0 2px 8px rgba(10, 102, 255, .07);
}

.ai-chip .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

/* Included / deliverables */
.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 20px;
  margin-top: 52px;
}

.inc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  transition: all .3s;
  box-shadow: 0 2px 10px rgba(10, 102, 255, .05);
  position: relative;
  overflow: hidden;
}

.inc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00a651, #38b2ac);
  opacity: 0;
  transition: .3s;
}

.inc-card:hover {
  box-shadow: 0 10px 32px rgba(10, 102, 255, .14);
  transform: translateY(-4px);
}

.inc-card:hover::before { opacity: 1; }

.inc-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--lightblue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 18px;
}

.inc-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.inc-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

.inc-badge {
  display: inline-block;
  margin-top: 14px;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  background: #d4edda;
  color: #155724;
}

/* How it works */
.flow-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 52px;
  position: relative;
}

@media(max-width:768px) {
  .flow-steps {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
}

.flow-step {
  flex: 1;
  max-width: 220px;
  text-align: center;
  position: relative;
  padding: 0 10px;
}

.flow-connector {
  flex: 1;
  max-width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #0A66FF, #2684FF);
  margin-top: 44px;
  flex-shrink: 0;
}

@media(max-width:768px) {
  .flow-connector { display: none; }
}

.flow-num {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 6px 20px rgba(10, 102, 255, .3);
  font-size: 30px;
}

.flow-step h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.flow-step p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.flow-step .flow-time {
  display: inline-block;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 700;
  color: #0A66FF;
  background: var(--lightblue);
  padding: 2px 10px;
  border-radius: 20px;
}

/* Case Studies */
.case-studies-bg {
  background: var(--lightblue2);
  border-top: solid 1px #e1e1e1;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 52px;
}

.cs-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(10, 102, 255, .08);
  transition: all .25s;
}

.cs-card:hover {
  box-shadow: 0 8px 32px rgba(10, 102, 255, .15);
  transform: translateY(-3px);
}

.cs-header {
  background: linear-gradient(135deg, #0D1B2A, #1a2f4e);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.cs-niche {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,.6);
  margin-bottom: 4px;
}

.cs-site {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.cs-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.cs-body {
  padding: 24px 28px;
}

.cs-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.cs-metric {
  text-align: center;
}

.cs-metric-val {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #00a651;
  line-height: 1;
}

.cs-metric-lbl {
  font-size: 11px;
  color: var(--muted);
  margin-top: 3px;
  line-height: 1.3;
}

.cs-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 16px;
}

.cs-quote {
  font-size: 13px;
  color: var(--text);
  line-height: 1.8;
  font-style: italic;
  padding-left: 14px;
  border-left: 3px solid #0A66FF;
}

.cs-author {
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
  font-style: normal;
  font-weight: 600;
}

/* Why DFY comparison */
.dfy-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 52px;
}

@media(max-width:768px) {
  .dfy-compare-grid {
    grid-template-columns: 1fr;
  }
}

.dfy-col {
  border-radius: 20px;
  padding: 32px 28px;
}

.dfy-col-diy {
  background: #fff5f5;
  border: 2px solid #fca5a5;
}

.dfy-col-dfy {
  background: linear-gradient(135deg, #0A66FF, #2684FF);
  border: none;
  position: relative;
  overflow: hidden;
}

.dfy-col-dfy::before {
  content: '⭐ RECOMMENDED';
  position: absolute;
  top: 16px;
  right: -22px;
  background: #f5a623;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 32px;
  transform: rotate(30deg);
  letter-spacing: .5px;
}

.dfy-col-plugin {
  background: var(--lightblue2);
  border: 2px solid var(--border);
}

.dfy-col-title {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 6px;
}

.dfy-col-diy .dfy-col-title { color: var(--red); }
.dfy-col-dfy .dfy-col-title { color: #fff; }
.dfy-col-plugin .dfy-col-title { color: var(--dark); }

.dfy-col-sub {
  font-size: 12px;
  margin-bottom: 20px;
  font-weight: 600;
}

.dfy-col-diy .dfy-col-sub { color: var(--muted); }
.dfy-col-dfy .dfy-col-sub { color: rgba(255,255,255,.75); }
.dfy-col-plugin .dfy-col-sub { color: var(--muted); }

.dfy-feat-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.dfy-feat-list li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  align-items: flex-start;
  line-height: 1.4;
}

.dfy-col-diy .dfy-feat-list li { color: var(--muted); }
.dfy-col-dfy .dfy-feat-list li { color: rgba(255,255,255,.9); }
.dfy-col-plugin .dfy-feat-list li { color: var(--text); }

.dfy-feat-yes { color: #00a651; font-weight: 700; flex-shrink: 0; }
.dfy-feat-no { color: #fca5a5; font-weight: 700; flex-shrink: 0; }
.dfy-feat-check { color: #fff; font-weight: 700; flex-shrink: 0; }
.dfy-feat-partial { color: #f5a623; font-weight: 700; flex-shrink: 0; }

/* For whom */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 52px;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 24px rgba(10,102,255,.07);
}

.audience-card {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: flex-start;
  padding: 28px 32px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  transition: background .2s;
}

/* Remove right border from every 2nd card (right column) */
.audience-card:nth-child(2n) {
  border-right: none;
}

/* Remove bottom border from last 2 cards */
.audience-card:nth-last-child(-n+2) {
  border-bottom: none;
}

.audience-card:hover {
  background: var(--lightblue2);
}

.audience-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--lightblue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.audience-card-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.audience-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

.audience-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* Testimonials */
.testi-bg {
  background: #fff;
}

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

.testi-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(10, 102, 255, .08);
  transition: all .25s;
}

.testi-card:hover {
  box-shadow: 0 8px 32px rgba(10, 102, 255, .15);
  transform: translateY(-3px);
  border-color: #0A66FF;
}

.testi-stars {
  color: #f5a623;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testi-quote {
  font-size: 14px;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 22px;
  font-style: italic;
  position: relative;
  padding-left: 18px;
}

.testi-quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -4px;
  font-size: 32px;
  color: #0A66FF;
  font-style: normal;
  line-height: 1;
  font-family: 'Bricolage Grotesque', sans-serif;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-photo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 3px solid var(--lightblue);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}

.testi-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
}

.testi-role {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.testi-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  color: #00a651;
  margin-top: 3px;
}

/* Guarantee */
.guarantee-section {
  padding: 20px 0 80px;
}

.guarantee-card {
  max-width: 960px;
  margin: 0 auto;
  background: linear-gradient(135deg, #f0fff8, #e6f9ee);
  border: 2px solid #9ae6b4;
  border-radius: 24px;
  display: grid;
  grid-template-columns: 260px 1fr;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,166,81,.1);
}

.guarantee-card-left {
  background: linear-gradient(160deg, #00a651, #00c96b);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 32px;
}

.guarantee-card-left img {
  width: 180px;
  height: auto;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,.15));
}

.guarantee-card-right {
  padding: 44px 48px;
}

.guarantee-card-right h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.2;
}

.guarantee-card-right p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 14px;
}

.guarantee-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin-top: 8px;
}

.gp-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
}

.gp-item::before {
  content: '✓';
  color: #00a651;
  font-size: 15px;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}


.geo_guarntee_box {
  background-image: url(./assets/guarantee-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  box-shadow: 0px 0px 90px 0px #0d45b233;
  padding: 130px 30px 30px 40px;
  max-width: 1050px;
  width: 100%;
  margin: 100px auto 0 auto;
  position: relative;
  text-align: center;
}
.geo_guarntee_box > img {
  position: absolute;
  top: -100px;
  left: 0;
  right: 0;
  margin: auto;
}
.geo_guarntee_box > p {
  font-size: 18px;
  font-weight: 400;
  color: #09090b;
  margin-top: 15px;
}
.geo_guarntee_bulelts {
  display: flex;
  justify-content: space-between;
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 30px 12px;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.geo_guarntee_bulelts ul {
    margin: 0;
    padding: 0;
}
.geo_guarntee_bulelts ul li {
  display: flex;
  justify-content: flex-start;
  align-items: self-start;
  gap: 12px;
  margin: 0;
}
/*.geo_guarntee_bulelts ul li:not(:last-child) {*/
/*  margin-bottom: 20px;*/
/*}*/
.geo_guarntee_bulelts ul li img {
  flex: none;
}
.geo_guarntee_bulelts ul li p {
  font-size: 18px;
  font-weight: 700;
  color: #09090b;
  text-align: left;
}
/* Guarantee section */




@media(max-width:760px) {
  .guarantee-card { grid-template-columns: 1fr; }
  .guarantee-card-left { padding: 36px; }
  .guarantee-card-left img { width: 140px; }
  .guarantee-card-right { padding: 32px 24px; }
  .guarantee-points { grid-template-columns: 1fr; }
}

/* Pricing */
.pricing-bg {
  background: var(--lightblue2);
}

.pricing-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 52px;
  align-items: center;
  flex-wrap: wrap;
}

.price-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 24px;
  padding: 36px;
  position: relative;
  transition: all .3s;
  box-shadow: 0 4px 16px rgba(10, 102, 255, .06);
  max-width: 400px;
  width: 100%;
}

.price-card.featured {
  border-color: #0A66FF;
  box-shadow: 0 12px 40px rgba(10, 102, 255, .2);
}

.price-pop {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #0A66FF, #2684FF);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.plan-name {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 20px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 5px 15px;
  border-radius: 60px;
  line-height: normal;
}

.plan-name.monthly {
  background: #0f6bff0f;
  color: #0f6bff;
  border: 1px solid #0f6bff;
}

.plan-name.annual {
  background: #0f6bff;
  color: #fff;
}

.plan-price {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 0;
}

.plan-price sup {
  font-size: 24px;
  vertical-align: middle;
  line-height: 1;
  margin-right: 2px;
}

.plan-price .orig {
  display: none;
}

.plan-per-site {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
}

.jvzoo-btn-wrap {
  display: block;
  text-align: center;
  margin: 8px 0 4px;
}

.jvzoo-btn-wrap img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

.no-thanks-link {
  display: block;
  text-align: center;
  margin-top: 40px;
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  text-decoration: underline;
  transition: color .2s;
}

.no-thanks-link:hover {
  color: rgba(255,255,255,1);
}

.pricing-footnote {
  text-align: center;
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 24px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.plan-period {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 28px;
  margin-top: 4px;
}

.plan-save {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: #00a651;
  background: #d4edda;
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.plan-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 32px;
  padding-left: 0;
}

.plan-feats li {
  display: flex;
  gap: 10px;
  font-size: 15px;
  align-items: flex-start;
}

.pf-yes {
  color: #00a651;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}

.pf-no {
  color: #ccc;
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 1px;
}

.pf-no + span { color: #ccc; }

.btn-plan {
  display: block;
  text-align: center;
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all .25s;
}

.btn-plan-main {
  background: linear-gradient(135deg, #0A66FF, #2684FF);
  color: #fff;
  box-shadow: 0 6px 20px rgba(10, 102, 255, .3);
}

.btn-plan-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(10, 102, 255, .4);
}

.btn-plan-out {
  background: #fff;
  color: #0A66FF;
  border: 2px solid #0A66FF;
}

.btn-plan-out:hover { background: var(--lightblue); }

/* Urgency / Slots */
.urgency-bar {
  background: linear-gradient(135deg, #0D1B2A, #1a2f4e);
  padding: 48px 0;
  text-align: center;
  color: #fff;
}

.urgency-bar h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 900;
  margin-bottom: 10px;
}

.urgency-bar p {
  font-size: 16px;
  opacity: .9;
  margin-bottom: 28px;
}

.slots-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.slot-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  transition: background .3s;
}

.slot-dot.taken { background: #e53e3e; }
.slot-dot.available { background: #00a651; box-shadow: 0 0 8px rgba(0,166,81,.5); }

.slots-legend {
  display: flex;
  gap: 20px;
  justify-content: center;
  font-size: 12px;
  margin-bottom: 28px;
  opacity: .8;
}

.slots-legend span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.countdown {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.cnt-box {
  background: rgba(255, 255, 255, .15);
  border: 2px solid rgba(255, 255, 255, .25);
  border-radius: 14px;
  padding: 16px 24px;
  text-align: center;
  min-width: 84px;
}

.cnt-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 38px;
  font-weight: 900;
  display: block;
  line-height: 1;
}

.cnt-lbl {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: .8;
  margin-top: 4px;
}

.cnt-sep {
  font-size: 32px;
  font-weight: 900;
  opacity: .6;
  align-self: center;
  margin-top: -10px;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(10, 102, 255, .04);
}

.faq-q {
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}

.faq-q:hover { background: var(--lightblue2); }

.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--lightblue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #0A66FF;
  flex-shrink: 0;
  transition: transform .3s;
}

.faq-icon.open {
  transform: rotate(45deg);
  background: #0A66FF;
  color: #fff;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: all .35s ease;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.9;
}

.faq-a.open {
  max-height: 300px;
  padding: 0 24px 20px;
}

/* Final CTA */
.final-cta {
  background: linear-gradient(135deg, #0A66FF, #2684FF);
  padding: 90px 0;
  text-align: center;
  color: #fff;
}

.final-cta h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 18px;
}

.final-cta p {
  font-size: 18px;
  opacity: .9;
  max-width: 750px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.btn-white {
  background: #fff;
  color: #0A66FF;
  padding: 18px 44px;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 900;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .2);
  transition: all .25s;
  cursor: pointer;
  border: none;
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .3);
}

.final-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 28px;
  flex-wrap: wrap;
  font-size: 13px;
  opacity: .85;
}

.final-trust span {
  display: flex;
  align-items: center;
  gap: 7px;
}

/* Disclaimer */
.disclaimer-section {
  background: #f8f9fa;
  border-top: 1px solid var(--border);
  padding: 36px 0;
}

.disclaimer-inner h4 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.disclaimer-inner p {
  font-size: 14px;
  color: #888;
  line-height: 1.9;
  margin-bottom: 10px;
}

/* Footer */
.site-footer {
  padding: 56px 60px 40px;
  text-align: center;
  background: #0e0a24;
  margin: 80px 60px;
  border-radius: 40px;
}

.site-footer__card {
  margin-top: 48px;
  border-radius: 24px;
  padding: 48px 60px 40px;
  background: linear-gradient(0deg, #170920 0%, #161247 100%);
  border: 1px solid rgba(100, 80, 200, 0.3);
}

.site-footer__disclaimer-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  color: #ffffff;
  margin-bottom: 20px;
}

.site-footer__disclaimer {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    max-width: 1080px;
    margin: 0 auto 48px;
}

.site-footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.site-footer__logo-img {
  display: block;
  height: 39px;
  width: auto;
}

.site-footer__tagline {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  max-width: 750px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

.site-footer__copy {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 28px;
}

.site-footer__copy a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.site-footer__copy a:hover {
  color: #ffffff;
}

.site-footer__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 24px;
    padding: 20px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: transparent;
    border-bottom: none;
    box-shadow: none;
}

.site-footer__nav a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.site-footer__nav a:hover {
  color: #ffffff;
}

/*footer {*/
/*  background: var(--dark);*/
/*  padding: 40px 0 20px;*/
/*  color: #fff;*/
/*  margin-bottom: 70px;*/
/*}*/

/*.footer-top {*/
/*  grid-template-columns: 1.5fr 1fr 1fr;*/
/*  gap: 40px;*/
/*  margin-bottom: 36px;*/
/*}*/

/*.footer-top .nav-logo {*/
/*  color: #fff;*/
/*  justify-content: center;*/
/*}*/

/*@media(max-width:768px) {*/
/*  .footer-top {*/
/*    grid-template-columns: 1fr;*/
/*    gap: 24px;*/
/*  }*/
/*}*/

/*.footer-col h5 {*/
/*  font-size: 12px;*/
/*  font-weight: 700;*/
/*  text-transform: uppercase;*/
/*  letter-spacing: 1px;*/
/*  color: rgba(255, 255, 255, .4);*/
/*  margin-bottom: 14px;*/
/*}*/

/*.footer-col a {*/
/*  display: block;*/
/*  font-size: 14px;*/
/*  color: rgba(255, 255, 255, .55);*/
/*  text-decoration: none;*/
/*  cursor: pointer;*/
/*  transition: color .2s;*/
/*}*/

/*.footer-col > span,*/
/*.footer-col > span a {*/
/*  font-size: 15px;*/
/*  font-weight: 400;*/
/*  color: #fff;*/
/*}*/

/*.footer-col > span a { text-decoration: underline; }*/
/*.footer-col a:hover { color: #fff; }*/

.lega-pages a {
  display: inline;
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
  text-decoration: none;
  transition: color .2s;
}

.lega-pages a:hover { color: #fff; }

/* Float bar */
.float-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0D1B2A;
  padding: 12px max(32px, calc((100% - 1200px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 200;
  gap: 16px;
  transform: translateY(100%);
  transition: transform .4s ease;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, .4);
}

.float-bar.visible { transform: translateY(0); }

.float-bar p {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  pointer-events: none;
}

.float-bar a {
  background: #fff;
  color: #0A66FF;
  padding: 11px 26px;
  border-radius: 10px;
  font-weight: 900;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .15);
}

.float-timer {
  display: flex;
  align-items: center;
  gap: 4px;
}

.ft-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, .15);
  border-radius: 8px;
  padding: 4px 10px;
  min-width: 48px;
}

.ft-block .cnt-num {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.ft-lbl {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, .75);
  text-transform: uppercase;
  letter-spacing: .5px;
}

.ft-sep {
  font-size: 18px;
  font-weight: 800;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 12px;
}

/* ── OTO Hero Centered Layout ── */
.hero-oto {
  text-align: center;
  padding: 64px 0 0;
  position: relative;
  overflow: hidden;
}

.hero-oto .hero-sub {
  margin: 0 auto 36px;
  max-width: 860px;
}

.hero-oto .hero-cta-group {
  justify-content: center;
}

.hero-oto .hero-proof {
  justify-content: center;
  flex-wrap: nowrap;
  gap: 20px;
}

.hero-oto .proof-item {
  font-size: 14px;
  white-space: nowrap;
}

/* Gradient blob background */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.hero-blob-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(10, 102, 255, .13), transparent 70%);
  top: -180px;
  right: -80px;
}

.hero-blob-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 166, 81, .1), transparent 70%);
  bottom: 60px;
  left: -80px;
}

/* Centered text wrapper */
.hero-center-wrap {
  max-width: 1060px;
  margin: 0 auto;
  padding-bottom: 52px;
  position: relative;
  z-index: 1;
}

/* Congrats pill */
.congrats-tag {
  display: block;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #00a651, #2d9e6a);
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

/* Bordered offer announcement box */
.hero-offer-strip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 2px solid #0A66FF;
  background: linear-gradient(135deg, rgba(10, 102, 255, .06), rgba(38, 132, 255, .03));
  color: #0A66FF;
  padding: 13px 30px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  margin: auto;
  letter-spacing: .2px;
  white-space: nowrap;
}

/* Wide engineer card at bottom of hero */
.engineer-card-wide {
  background: #fff;
  border-radius: 20px 20px 0 0;
  padding: 28px 40px;
  border-top: 3px solid #0A66FF;
  border-left: 1px solid #e8f0fe;
  border-right: 1px solid #e8f0fe;
  box-shadow: 0 -6px 32px rgba(10, 102, 255, .1);
  position: relative;
  z-index: 1;
}

.eng-wide-top {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}

.eng-wide-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.eng-wide-avatar {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--lightblue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}

.eng-wide-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  text-align: left;
}

.eng-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #00a651;
  font-weight: 600;
  margin-top: 4px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #00a651;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.eng-wide-score {
  margin-left: auto;
  text-align: right;
  flex-shrink: 0;
}

.eng-score-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: #0A66FF;
  line-height: 1;
}

.eng-score-lbl {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
  margin-top: 3px;
}

.eng-wide-tasks {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.eng-task {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  flex: 1;
  min-width: 160px;
}

.eng-task.done { background: #f0fff4; color: #276749; }
.eng-task.pending { background: #fff7ed; color: #92400e; }

/* ── Included List Layout ── */
.included-list {
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  margin-top: 52px;
  box-shadow: 0 4px 24px rgba(10, 102, 255, .07);
}

.inc-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 32px;
  border-bottom: 1px solid var(--border);
  background: #fff;
  transition: background .2s;
}

.inc-row:last-child { border-bottom: none; }
.inc-row:hover { background: var(--lightblue2); }

.inc-row-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--lightblue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}

.inc-row-content {
  flex: 1;
}

.inc-row-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.inc-row-content p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* ── Case Studies Stack ── */
.cs-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 52px;
}

.cs-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(10, 102, 255, .08);
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s;
}

.cs-item:hover { box-shadow: 0 8px 32px rgba(10, 102, 255, .14); }

/* Top row: category left | stats right */
.cs-item-top {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: stretch;
  border-bottom: 1px solid var(--border);
}

.cs-item-head {
  background: linear-gradient(135deg, #0A1929 0%, #0d2a50 100%);
  padding: 28px 28px;
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  justify-content: flex-start;
  border-right: 1px solid rgba(255,255,255,.07);
}

.cs-item-head .cs-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(10,102,255,.25);
  border: 1px solid rgba(10,102,255,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}

.cs-item-head .cs-niche {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .7px;
  color: #fff;
  line-height: 1.3;
}

.cs-item-head .cs-niche::after {
  content: 'Client Result';
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .5px;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  margin-top: 3px;
}

.cs-item-metrics {
  padding: 0 36px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  background: #fafcff;
}

.cs-item-metrics .cs-metric {
  text-align: center;
  flex: 1;
  padding: 24px 0;
  position: relative;
}

.cs-item-metrics .cs-metric + .cs-metric::before {
  content: '';
  position: absolute;
  left: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: var(--border);
}

/* Metric sizing inside case study cards */
.cs-item-metrics .cs-metric-val {
  font-size: 26px;
  font-weight: 900;
  color: #0A66FF;
}

.cs-item-metrics .cs-metric-lbl {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .4px;
  margin-top: 4px;
}

/* Full-width quote row below */
.cs-item-quote {
  padding: 28px 32px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.85;
  font-style: italic;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding-left: 44px;
}

.cs-item-quote::before {
  content: '"';
  position: absolute;
  left: 18px;
  top: 18px;
  font-size: 52px;
  color: var(--lightblue);
  font-style: normal;
  font-family: 'Bricolage Grotesque', sans-serif;
  line-height: 1;
}

.cs-item-quote .cs-author {
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
  font-style: normal;
  font-weight: 600;
}

/* ── Slots Progress Bar ── */
.slots-progress-wrap {
  max-width: 480px;
  margin: 0 auto 28px;
}

.slots-bar {
  height: 16px;
  background: rgba(255,255,255,.15);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 10px;
}

.slots-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #f5a623, #e53e3e);
  border-radius: 20px;
}

.slots-stats {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  opacity: .7;
  margin-bottom: 10px;
}

.slots-remaining {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 28px;
}

.slots-remaining strong { color: #f5a623; }

/* Responsive */
@media(max-width:900px) {
  .eng-wide-score { display: none; }
  .engineer-card-wide { padding: 20px 20px 20px; }
  .eng-task { min-width: 130px; }
}

@media(max-width:768px) { 
  /*nav .nav-cta { display: none; }*/

  section { padding: 52px 0; }

  .dfy-compare-grid { grid-template-columns: 1fr; }

  .audience-grid { grid-template-columns: 1fr; }
  .audience-card:nth-child(2n) { border-right: none; }
  .audience-card:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .audience-card:last-child { border-bottom: none; }

  .guarantee-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .cs-item-top {
    grid-template-columns: 1fr;
  }

  .cs-item-metrics {
    flex-wrap: wrap;
    gap: 0;
    padding: 16px 20px;
  }

  .cs-item-metrics .cs-metric {
    flex: 0 0 33.33%;
  }

  .cs-item-quote { padding: 20px 24px; }
  .cs-item-quote::before { display: none; }

  .inc-row { flex-wrap: wrap; gap: 16px; padding: 20px; }
}

@media(max-width:480px) {
    nav {
        padding: 15px max(15px, calc((100% - 1200px) / 2));
    }
  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary, .btn-ghost {
    text-align: center;
    justify-content: center;
  }

  .pricing-grid {
    flex-direction: column;
    align-items: stretch;
  }

  .price-card { max-width: 100%; }
}

/* ========================================================== */
/*   RESPONSIVE DESIGN FIXES                                   */
/* ========================================================== */

/* Tablet: flow steps too cramped at 769–900px */
@media (max-width: 900px) {
  .flow-steps { flex-direction: column; align-items: center; gap: 32px; }
  .flow-connector { display: none; }
  .flow-step { max-width: 380px; width: 100%; }
  .geo_banner_text > h1 {
    font-size: 40px;
}
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {
  /* Pricing: stack cards vertically */
  .pricing-grid { flex-direction: column; align-items: center; }
  .price-card { max-width: 100%; width: 100%; }

  /* Hero proof: allow wrapping (overrides hero-oto's nowrap) */
  .hero-oto .hero-proof { flex-wrap: wrap; gap: 14px; }
  .hero-oto .proof-item { white-space: normal; }

  /* Hero offer strip: allow text to wrap instead of overflowing */
  .hero-offer-strip { white-space: normal; text-align: center; padding: 12px 20px; }

  /* Logos bar: tighter gap */
  .logos-row { gap: 12px; }

  /* Flow steps: add spacing between stacked steps */
  .flow-steps { gap: 32px; }

  /* Float bar: fix absolute-positioned text overflowing on narrow screens */
  .float-bar { flex-direction: column; padding: 10px 20px; gap: 8px; text-align: center; }
  .float-bar p { position: static; transform: none; left: auto; white-space: normal; pointer-events: auto; }
  .float-timer { justify-content: center; }
  .geo_banner_text > h1 {
    font-size: 30px;
}
.site-footer {
    padding: 56px 20px 40px;
    margin: 80px 20px 160px;
}
.site-footer__card {
    padding: 48px 20px 40px;
}

}

/* Footer copyright: wrap flex items on mobile */
@media (max-width: 640px) {
  .footer-col > span {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 4px;
    row-gap: 2px;
  }
  .inc-row {
        flex-direction: column;
        text-align: center;
    }
    
}

/* Small mobile (≤ 480px) */
@media (max-width: 480px) {
  /* Nav logo */
  .nav-logo > img { max-width: 120px; }
  
  .nav-cta {
    padding: 10px 20px;
    font-size: 12px;
    }

  /* Hero h1: remove forced line-breaks and let text reflow */
  .hero h1 br { display: none; }

  /* Announcement bar */
  .ann-bar { font-size: 12px; padding: 9px 14px; }

  /* Countdown: slightly smaller boxes */
  .cnt-box { padding: 12px 16px; min-width: 68px; }
  .cnt-num { font-size: 30px; }

  /* CTA buttons */
  .btn-white { padding: 15px 28px; font-size: 15px; }
  
  .audience-card {
    flex-direction: column;
    }
    .geo_guarntee_box {
        padding: 130px 15px 25px;
    }
    .geo_guarntee_bulelts {
        padding: 30px 15px 12px;
    }
    .geo_guarntee_bulelts ul li p {
        font-size: 16px;
    }
    .cs-item-metrics .cs-metric-val {
        font-size: 18px;
    }
    .cs-item-metrics .cs-metric-lbl {
        font-size: 10px;
    }
}
