.elementor-8527 .elementor-element.elementor-element-545eab6{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-1c2c729 *//* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #0a0a0a;
  --surface:    #111111;
  --card:       #161616;
  --border:     #222222;
  --accent1:    #5de8e6;
  --accent2:    #7cffc4;
  --grad:       linear-gradient(90deg, #5de8e6, #7cffc4);
  --grad-v:     linear-gradient(180deg, #5de8e6, #7cffc4);
  --white:      #ffffff;
  --text:       #cccccc;
  --muted:      #777777;
  --radius:     14px;
  --radius-sm:  8px;
  --max-w:      1140px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY BASE ── */
h1, h2, h3, h4, .stat-num, .metric-val, .revenue-num,
.story-name, .step-num, .cpl-val {
  font-family: 'Figtree', sans-serif;
}

/* ── GRADIENT TEXT UTILITY ── */
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO
━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero {
  padding: 20px 20px 20px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent1);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--grad);
  border-radius: 2px;
}

.hero-title {
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.1;
  color: var(--white);
  max-width: 820px;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero-title em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.85;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   STATS STRIP
━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.stats-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0 20px;
}
.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-box {
  padding: 20px 10px;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.25s;
}
.stat-box:last-child { border-right: none; }
.stat-box::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.stat-box:hover::after { transform: scaleX(1); }
.stat-box:hover { background: rgba(93,232,230,0.03); }

.stat-num {
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1;
  margin-bottom: 8px;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SHARED SECTION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 20px;
}

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--accent1);
  margin-bottom: 12px;
}
.section-title {
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-body {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 680px;
  line-height: 1.9;
}

.divider {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 60px;
}
.divider hr {
  border: none;
  border-top: 1px solid var(--border);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CHALLENGE CARDS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.challenge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 36px;
}
.challenge-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: border-color 0.25s;
}
.challenge-card:hover {
  border-color: rgba(93,232,230,0.3);
}
.challenge-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: var(--radius-sm);
  background: rgba(93,232,230,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}
.challenge-text {
  font-size: 0.87rem;
  color: var(--text);
  line-height: 1.55;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   STORY CARD
━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.story-wrapper {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  margin-top: 44px;
}

.story-header {
  background: linear-gradient(135deg, #0d1a0d 0%, #0a0f1a 100%);
  padding: 36px 44px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}
.story-badge {
  display: inline-block;
  background: rgba(93,232,230,0.1);
  border: 1px solid rgba(93,232,230,0.25);
  color: var(--accent1);
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 10px;
}
.story-name {
  font-weight: 800;
  font-size: 2rem;
  color: var(--white);
  letter-spacing: -0.5px;
}
.story-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: right;
}
.meta-item {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: var(--muted);
}
.meta-item strong {
  color: var(--text);
  font-weight: 600;
}

/* ── METRICS ROW ── */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--border);
}
.metric-cell {
  padding: 30px 24px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.metric-cell:last-child { border-right: none; }

.metric-val {
  font-weight: 800;
  font-size: 2rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.metric-val.accent {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.metric-key {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

/* ── STRATEGY STEPS ── */
.strategy-body {
  padding: 36px 44px;
}
.strategy-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Inter', sans-serif;
}
.strategy-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 16px;
}
.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s;
}
.step-card:hover { border-color: rgba(124,255,196,0.3); }
.step-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--grad);
}
.step-num {
  font-weight: 800;
  font-size: 3.2rem;
  color: rgba(93,232,230,0.07);
  line-height: 1;
  margin-bottom: 6px;
}
.step-heading {
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--white);
  margin-bottom: 10px;
}
.step-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 14px;
}
.step-results {
  list-style: none;
}
.step-results li {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: var(--text);
  padding: 4px 0;
  display: flex;
  gap: 8px;
  align-items: center;
}
.step-results li::before {
  content: '↑';
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: 0.75rem;
}

/* ── REVENUE BLOCK ── */
.revenue-block {
  background: linear-gradient(135deg, rgba(93,232,230,0.05) 0%, rgba(124,255,196,0.04) 100%);
  border: 1px solid rgba(93,232,230,0.15);
  border-radius: var(--radius);
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0 44px 36px;
}
.revenue-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.revenue-num {
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.8rem);
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.revenue-note {
  font-family: 'Inter', sans-serif;
  font-size: 0.87rem;
  color: var(--muted);
  max-width: 340px;
  line-height: 1.7;
}

/* ── CPL COMPARISON ── */
.cpl-section {
  margin-top: 44px;
}
.cpl-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 20px;
}
.cpl-bars {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cpl-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cpl-dev {
  font-family: 'Inter', sans-serif;
  width: 150px;
  font-size: 0.85rem;
  color: var(--text);
  flex-shrink: 0;
}
.cpl-bar-wrap {
  flex: 1;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 30px;
  height: 10px;
  overflow: hidden;
}
.cpl-bar {
  height: 100%;
  border-radius: 30px;
  background: var(--grad);
}
.cpl-val {
  font-weight: 700;
  font-size: 0.92rem;
  width: 56px;
  text-align: right;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ABOUT SECTION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}
.about-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.25s;
}
.about-card:hover { border-color: rgba(93,232,230,0.25); }

.about-card-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-card-title .ic { font-size: 1.15rem; }

.about-card p {
  font-family: 'Inter', sans-serif;
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.8;
}
.guarantee-badge {
  display: inline-block;
  margin-top: 14px;
  padding: 5px 14px;
  border-radius: 30px;
  background: var(--grad);
  color: #000;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CONCLUSION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.conclusion-block {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 20px;
}
.conclusion-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.conclusion-body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--muted);
  max-width: 760px;
  line-height: 1.95;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CONTACT STRIP (bottom only)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.contact-strip {
  background: #070707;
  border-top: 1px solid var(--border);
  padding: 20px 20px;
}
.contact-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.contact-logo {
  font-family: 'Figtree', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--white);
}
.contact-logo span {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.contact-details {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}
.contact-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.contact-item-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-item-value {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}
.contact-item-value a {
  color: var(--accent1);
  text-decoration: none;
}
.contact-item-value a:hover {
  color: var(--accent2);
}
.office-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.office-tag {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.73rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 20px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 960px) {
  .hero             { padding: 50px 10px 50px; }
  .stats-strip      { padding: 0 10px; }
  .stats-inner      { grid-template-columns: repeat(2, 1fr); }
  .stat-box:nth-child(2) { border-right: none; }
  .stat-box:nth-child(3) { border-top: 1px solid var(--border); }
  .stat-box:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
  .section          { padding: 50px 10px; }
  .divider          { padding: 0 50px; }
  .metrics-grid     { grid-template-columns: repeat(2, 1fr); }
  .metric-cell:nth-child(2) { border-right: none; }
  .metric-cell:nth-child(3) { border-top: 1px solid var(--border); }
  .metric-cell:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
  .story-header     { padding:50px 10px; }
  .story-meta       { text-align: left; }
  .strategy-body    { padding: 50px 10px; }
  .revenue-block    { margin: 10px 10px; padding: 24px 20px; }
  .about-grid       { grid-template-columns: 1fr; }
  .conclusion-block { padding: 50px 10px; }
  .contact-strip   {
      padding: 50px 10px; }
  .contact-strip-inner { flex-direction: column; align-items: center; }
}

@media (max-width: 560px) {
  .hero-title       { font-size: 1.5rem; }
  .stats-inner      { grid-template-columns: 1fr 1fr; }
  .metrics-grid     { grid-template-columns: 1fr 1fr; }
  .challenge-grid   { grid-template-columns: 1fr; }
  .strategy-steps   { grid-template-columns: 1fr; }
  .cpl-dev          { width: 110px; font-size: 0.78rem; }
  .contact-details  { flex-direction: column; gap: 16px; }
}/* End custom CSS */
/* Start custom CSS */.elementor-58 .elementor-element.elementor-element-61d6c224 {
    background-repeat: no-repeat !important;
    background-size: cover !important;
        background-position: center center !important;

  
}/* End custom CSS */