.elementor-23140 .elementor-element.elementor-element-1d23c5a{--display:flex;--min-height:164px;--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;--justify-content:space-between;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:60px;--padding-bottom:60px;--padding-left:60px;--padding-right:60px;}.elementor-23140 .elementor-element.elementor-element-1d23c5a.e-con{--align-self:stretch;}.elementor-23140 .elementor-element.elementor-element-f3323b3{width:100%;max-width:100%;}.elementor-23140 .elementor-element.elementor-element-f3323b3 > .elementor-widget-container{margin:0px -120px 0px -120px;padding:0px 0px 0px 0px;border-radius:16px 16px 16px 16px;}.elementor-23140 .elementor-element.elementor-element-f3323b3.elementor-element{--align-self:flex-start;}@media(max-width:1024px){.elementor-23140 .elementor-element.elementor-element-f3323b3 > .elementor-widget-container{margin:-27px -6px -6px -6px;padding:-3px -3px -3px -3px;}.elementor-23140 .elementor-element.elementor-element-f3323b3.elementor-element{--align-self:flex-start;}}@media(min-width:768px){.elementor-23140 .elementor-element.elementor-element-1d23c5a{--content-width:1237px;}}@media(max-width:767px){.elementor-23140 .elementor-element.elementor-element-1d23c5a{--margin-top:4px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:1px;--padding-left:0px;--padding-right:-1px;}.elementor-23140 .elementor-element.elementor-element-f3323b3 > .elementor-widget-container{margin:45px 0px 0px 0px;padding:0px 0px 0px 0px;}}/* Start custom CSS for html, class: .elementor-element-f3323b3 */*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #ffffff;
  --bg2: #f5f7fa;
  --blue: #022C7B;
  --blue2: #0057b8;
  --dark: #1a1a2e;
  --grey: #4a5568;
  --lgrey: #8492a6;
  --border: #dde4ef;
  --card: #ffffff;
  --card-alt: #e8f0fb;
  --navy: #ffffff;
  --navy2: #f5f7fa;
  --teal: #022C7B;
  --teal2: #0057b8;
  --white: #1a1a2e;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  background: var(--bg);
  color: var(--dark);
  overflow-x: hidden;
}

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  align-items: center;
  gap: 48px;
  padding: 100px 60px 80px;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.hero-grid-bg {
  grid-column: 1 / -1;
  position: absolute;
  inset: 0;
  opacity: .06;
  background-image: linear-gradient(#b3cef0 1px, transparent 1px), linear-gradient(90deg, #b3cef0 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero-image {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-right: 0;
}

.hero-image img {
  width: 100%;
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(0,87,184,.2);
  animation: fadeUp .9s .3s ease both;
}

@media(max-width:900px) {
  #hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 40px;
  }
  .hero-image { display: none; }
  .hero-content { align-items: center; text-align: center; }
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,87,184,.07) 0%, transparent 70%), radial-gradient(ellipse 40% 50% at 90% 100%, rgba(0,87,184,.05) 0%, transparent 70%);
}

.hero-label {
  font-family: 'Montserrat', sans-serif;
  font-size: .65rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
  background: var(--card-alt);
  border: 1px solid #b3cef0;
  display: inline-block;
  padding: 5px 13px;
  border-radius: 4px;
  font-weight: 600;
  animation: fadeUp .8s ease both;
}

#hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 5.6vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -.01em;
  max-width: 100%;
  color: #1a1a2e;
  animation: fadeUp .9s .1s ease both;
}

#hero h1 span { color: var(--blue); }

#hero p.sub {
  font-size: clamp(0.9rem, 1.54vw, 0.91rem);
  font-weight: 400;
  color: #4a5568;
  max-width: 650px;
  line-height: 1.7;
  margin-top: 24px;
  animation: fadeUp .9s .2s ease both;
}

.product-buttons {
  display: flex;
  gap: 20px;
  margin-top: 44px;
  flex-wrap: wrap;
}

.hero-btns { display: flex; gap: 20px; margin-top: 30px; flex-wrap: wrap; animation: fadeUp .9s .3s ease both; }

.btn-primary {
  background: var(--blue);
  color: #ffffff;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 48px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all .3s ease;
  box-shadow: 0 4px 18px rgba(0,87,184,.3);
  display: inline-block;
  min-width: 200px;
  text-align: center;
}

.btn-primary:hover {
  background: var(--blue2);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,87,184,.45);
}

.btn-ghost {
  border: 2px solid var(--blue);
  color: var(--blue);
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 48px;
  border-radius: 50px;
  background: transparent;
  cursor: pointer;
  transition: all .3s ease;
  display: inline-block;
  min-width: 200px;
  text-align: center;
}

.btn-ghost:hover {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 18px rgba(0,87,184,.3);
}

.hero-stats { display: flex; gap: 56px; margin-top: 45px; flex-wrap: wrap; animation: fadeUp .9s .4s ease both; }

.hero-stat { text-align: left; }

.hero-stat .num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.75rem, 3.5vw, 2.45rem);
  color: var(--blue);
  line-height: 1;
}

.hero-stat .desc { font-size: .75rem; color: #4a5568; margin-top: 6px; font-weight: 500; }

/* ── PROBLEM ── */
#problem {
  padding: 120px 60px;
  background: var(--bg2);
  position: relative;
  width: 100%;
  max-width: 100%;
}

#problem::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
}

.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: .75rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
  font-weight: 600;
}

.section-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  line-height: 1.05;
  max-width: 100%;
  color: var(--dark);
}

.section-heading span { color: var(--blue); }

.section-sub {
  font-size: 1.1rem;
  font-weight: 400;
  color: #4a5568;
  max-width: 700px;
  line-height: 1.75;
  margin-top: 20px;
}

.problem-content {
  margin-top: 40px;
  margin-bottom: 40px;
}

.problem-description {
  font-size: 1.05rem;
  color: #4a5568;
  max-width: 100%;
  line-height: 1.8;
  text-align: center;
  margin: 0 auto;
}

.problem-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.problem-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px 36px;
  box-shadow: 0 2px 12px rgba(0,87,184,.06);
  transition: border-color .25s, transform .25s, box-shadow .25s;
}

.problem-card:hover { border-color: #b3cef0; transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,87,184,.12); }

.problem-card .icon { font-size: 2.5rem; margin-bottom: 20px; }

.problem-card h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.25rem; margin-bottom: 12px; color: var(--dark); }

.problem-card p { font-size: 1rem; color: #4a5568; line-height: 1.7; }

.quote-block {
  margin-top: 60px;
  padding: 50px 55px;
  border-left: 5px solid var(--blue);
  background: var(--card-alt);
  border-radius: 0 8px 8px 0;
}

.quote-block blockquote { font-family: 'Montserrat', sans-serif; font-size: clamp(1.4rem, 2.8vw, 2rem); font-weight: 600; line-height: 1.5; color: var(--dark); }

.quote-block blockquote span { color: var(--blue); }

.quote-block cite { display: block; margin-top: 20px; font-size: 1rem; color: #4a5568; font-style: normal; }

/* ── GUIDE ── */
#guide {
  padding: 120px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  width: 100%;
  max-width: 100%;
}

@media(max-width:900px) {
  #guide { grid-template-columns: 1fr; gap: 60px; padding: 80px 40px; }
}

.guide-visual { position: relative; display: flex; align-items: center; justify-content: center; }

.guide-ring {
  width: clamp(300px, 45vw, 500px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 3px solid #dde4ef;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: spin 24s linear infinite;
  box-shadow: 0 0 50px rgba(0,87,184,.1);
}

.guide-ring::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: conic-gradient(var(--blue) 0%, transparent 35%, transparent 100%);
  mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 3px));
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 3px));
}

.guide-center { text-align: center; padding: 50px; animation: spin-rev 24s linear infinite; }

.guide-center .big { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: clamp(2.8rem, 6vw, 4.2rem); color: var(--blue); line-height: 1.1; }

.guide-center p { font-size: 1rem; color: #4a5568; margin-top: 10px; font-weight: 500; }

@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

@keyframes spin-rev { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }

.guide-text .trust-items { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }

.trust-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,87,184,.05);
  transition: all .3s ease;
}

.trust-item:hover { border-color: #b3cef0; box-shadow: 0 4px 15px rgba(0,87,184,.1); }

.trust-item .t-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  width: 55px;
  height: 55px;
  background: var(--card-alt);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-item h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.15rem; margin-bottom: 6px; color: var(--dark); }

.trust-item p { font-size: .95rem; color: #4a5568; line-height: 1.7; }

/* ── PLAN ── */
#plan {
  padding: 120px 60px;
  background: var(--bg2);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

#plan::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,87,184,.08), transparent 70%);
  pointer-events: none;
}

.plan-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
}

.plan-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 0;
  width: 68%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue2));
  z-index: 0;
}

@media(max-width:1024px) { .plan-steps { grid-template-columns: repeat(2, 1fr); } }

@media(max-width:640px) { .plan-steps { grid-template-columns: 1fr; } .plan-steps::before { display: none; } }

.plan-step { position: relative; z-index: 1; background: var(--bg2); padding: 0 32px 0 0; text-align: center; }

.plan-step:last-child { padding-right: 0; }

.step-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  box-shadow: 0 6px 20px rgba(0,87,184,.35);
}

.plan-step h3 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.4rem; margin-bottom: 14px; color: var(--dark); }

.plan-step p { font-size: .95rem; color: #4a5568; line-height: 1.7; }

.plan-step ul { list-style: none; margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }

.plan-step ul li { font-size: .9rem; color: var(--grey); display: flex; gap: 8px; justify-content: center; }

.plan-step ul li::before { content: '✓'; color: var(--blue); font-weight: bold; }

/* ── ACTION ── */
#action {
  padding: 100px 60px;
  display: flex;
  justify-content: center;
  background: var(--bg);
  width: 100%;
  max-width: 100%;
}

.action-banner {
  width: 100%;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  border-radius: 20px;
  padding: 70px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  box-shadow: 0 15px 60px rgba(0,87,184,.35);
}

.action-banner h2 { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.2; max-width: 550px; color: #ffffff; }

.action-banner h2 span { color: #ffffff; text-decoration: underline; }

.action-banner p { font-size: 1.05rem; color: rgba(255,255,255,.9); margin-top: 14px; max-width: 500px; }

.action-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── FAILURE SECTION ── */
#failure {
  padding: 120px 60px;
  background: var(--bg);
  position: relative;
  width: 100%;
  max-width: 100%;
}

#failure > .reveal {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

#failure .section-label {
  display: block;
  text-align: center;
}

.failure-compare {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 70px;
  margin-bottom: 80px;
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

@media(max-width: 1024px) {
  .failure-compare {
    gap: 20px;
  }
}

@media(max-width: 900px) {
  .failure-compare {
    flex-direction: column;
    gap: 5px;
  }

  .vs-divider {
    position: relative;
    transform: none;
    left: auto;
    top: auto;
    margin: 5px 0;
    padding: 5px 0;
    text-align: center;
    width: 100%;
    font-size: 2.5rem;
    color: #000000;
    font-weight: 900;
  }
}

@media(max-width: 768px) {
  .failure-compare {
    gap: 7px;
  }

  .compare-col {
    padding: 24px 20px;
  }

  .compare-col li {
    font-size: 0.9rem;
    gap: 12px;
    margin-bottom: 10px;
  }

  .vs-divider {
    margin: 5px 0 !important;
    padding: 5px 0 !important;
  }
}

@media(max-width: 480px) {
  .failure-compare {
    gap: 6px;
  }

  .vs-divider {
    margin: 4px 0 !important;
    padding: 4px 0 !important;
  }

  .compare-col {
    padding: 20px 16px;
    min-width: 100%;
  }

  .compare-col h3 {
    font-size: 1rem;
    margin-bottom: 14px;
  }

  .compare-col li {
    font-size: 0.85rem;
    line-height: 1.3;
    margin-bottom: 8px;
  }

  .vs-divider {
    font-size: 1.5rem;
  }
}

.compare-col {
  flex: 1;
  min-width: 320px;
  max-width: 500px;
  padding: 28px 30px;
  border-radius: 14px;
  border: 1px solid;
  text-align: left;
  display: flex;
  flex-direction: column;
  min-height: 380px;
}

.compare-col.bad { background: #fff8f8; border-color: #efcaca; }

.compare-col.good { background: #f7fbff; border-color: #c8dafd; }

.compare-col h3 { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 1.15rem; margin-bottom: 18px; color: var(--dark); line-height: 1.1; letter-spacing: -0.5px; }

.compare-col.bad h3 { color: #df2f2f; }

.compare-col.good h3 { color: #005cc8; }

.compare-col ul { list-style: none; padding: 0; margin: 0; }

.compare-col li { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 12px; font-size: 0.95rem; font-weight: 500; line-height: 1.35; color: #606978; }

.compare-col.bad li::before { content: '✕'; color: #ff4a4a; font-weight: 700; font-size: 1rem; margin-top: 2px; flex-shrink: 0; }

.compare-col.good li::before { content: '✓'; color: #2979ff; font-weight: 700; font-size: 1rem; margin-top: 2px; flex-shrink: 0; }

.vs-divider {
  flex: 0 0 auto;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  z-index: 20;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media(max-width: 900px) {
  .vs-divider {
    flex: 1;
    width: 100%;
    font-size: 2.5rem;
    color: #000000;
    margin: 20px 0;
    padding: 20px 0;
  }
}

.final-cta {
  text-align: center;
  padding: 60px 40px;
  background: transparent;
  border-radius: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.final-cta h2 { color: #1a1a2e; margin-bottom: 20px; }

.final-cta h2 span { color: var(--blue); }

.final-cta p { font-size: 1rem; color: #4a5568; margin-top: 40px; margin-bottom: 28px; line-height: 1.6; }

.final-cta .btn-primary { background: var(--blue); color: #fff; box-shadow: 0 4px 18px rgba(0,87,184,.3); }

.final-cta .btn-primary:hover { background: var(--blue2); }

/* ── RESULTS ── */
#results {
  padding: 120px 60px;
  background: var(--bg2);
  width: 100%;
  max-width: 100%;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 60px;
}

.result-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0,87,184,.08);
  transition: transform .25s, border-color .25s, box-shadow .25s;
}

.result-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--blue2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}

.result-card:hover { transform: translateY(-8px); border-color: #b3cef0; box-shadow: 0 12px 35px rgba(0,87,184,.18); }

.result-card:hover::after { transform: scaleX(1); }

.result-card .r-num { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: clamp(2.8rem, 5vw, 3.8rem); color: var(--blue); line-height: 1; }

.result-card .r-label { font-size: .95rem; color: #4a5568; margin-top: 12px; line-height: 1.6; font-weight: 500; }

.testimonial {
  margin-top: 70px;
  padding: 55px 60px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  position: relative;
  box-shadow: 0 5px 25px rgba(0,87,184,.09);
}

.testimonial::before { content: '"'; position: absolute; top: -25px; left: 50px; font-family: 'Montserrat', sans-serif; font-size: 140px; color: var(--blue); opacity: .12; line-height: 1; }

.testimonial blockquote { font-family: 'Montserrat', sans-serif; font-size: clamp(1.5rem, 2.8vw, 2rem); font-weight: 600; line-height: 1.5; max-width: 100%; color: var(--dark); }

.testimonial cite { display: block; margin-top: 24px; font-size: 1rem; color: #4a5568; font-style: normal; font-weight: 500; }

.stars { color: #f59e0b; font-size: 1.3rem; letter-spacing: 3px; margin-bottom: 24px; }

/* ── SOFTWARE PRODUCT SECTION ── */
#software-product {
  width: 100%;
  max-width: 100%;
  background: #ffffff;
  padding: 0;
}

.product-container {
  display: flex;
  width: 100%;
  max-width: 1700px;
  margin: 0 auto;
  min-height: 650px;
  overflow: hidden;
}

.product-left {
  width: 50%;
  padding: 80px 70px 80px 80px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: #ffffff;
}

.product-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.product-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 700;
  color: #4a7ba7;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: inline-block;
  padding: 12px 30px;
  border-radius: 4px;
  width: fit-content;
  margin-bottom: 0;
}

.product-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(48px, 8vw, 82px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -1.5px;
  color: #0c3483;
  margin: 70px 0 40px 0;
  max-width: 90%;
}

.product-paragraph {
  font-family: 'Open Sans', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.65;
  color: #334155;
  max-width: 760px;
  margin: 0 0 32px 0;
}

.product-paragraph:last-of-type {
  margin-bottom: 60px;
}

.product-buttons {
  display: flex;
  gap: 24px;
  margin-top: 0;
  flex-wrap: wrap;
  align-items: center;
}

.product-buttons .btn-primary {
  background: #156fe5;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 48px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-block;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: auto;
}

.product-buttons .btn-primary:hover {
  background: #0c5bb8;
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(21, 111, 229, 0.3);
}

.product-buttons .btn-ghost {
  border: 2px solid #0c3483;
  color: #0c3483;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 48px;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-block;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: auto;
}

.product-buttons .btn-ghost:hover {
  background: #0c3483;
  color: #ffffff;
  box-shadow: 0 12px 35px rgba(12, 52, 131, 0.3);
}

.product-divider {
  width: 1px;
  background: rgba(0, 0, 0, 0.04);
  height: 100%;
}

.product-right {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 80px;
  position: relative;
  overflow: hidden;
}

.product-image {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  width: 88%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(12, 52, 131, 0.12);
  transform: rotate(-4deg) perspective(1200px) rotateY(2deg);
  animation: floatImage 3s ease-in-out infinite;
  transition: all 0.4s ease;
}

.product-image:hover img {
  transform: rotate(-2deg) perspective(1200px) rotateY(2deg) scale(1.02);
}

@keyframes floatImage {
  0%, 100% { transform: rotate(-4deg) perspective(1200px) rotateY(2deg) translateY(0px); }
  50% { transform: rotate(-4deg) perspective(1200px) rotateY(2deg) translateY(-10px); }
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .product-left {
    padding: 60px 50px;
  }

  .product-right {
    padding: 60px;
  }

  .product-title {
    font-size: clamp(40px, 6vw, 72px);
    margin: 50px 0 30px 0;
  }

  .product-paragraph {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 24px 0;
  }

  .product-paragraph:last-of-type {
    margin-bottom: 40px;
  }
}

@media (max-width: 992px) {
  .product-container {
    flex-direction: column;
    min-height: auto;
  }

  .product-left {
    width: 100%;
    padding: 60px 40px;
  }

  .product-right {
    width: 100%;
    padding: 40px;
    min-height: 400px;
  }

  .product-divider {
    display: none;
  }

  .product-title {
    font-size: clamp(32px, 5vw, 56px);
    margin: 40px 0 24px 0;
  }

  .product-paragraph {
    font-size: 16px;
    line-height: 1.5;
    margin: 0 0 20px 0;
  }

  .product-buttons {
    flex-direction: column;
    gap: 16px;
  }

  .product-buttons .btn-primary,
  .product-buttons .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .product-image img {
    width: 100%;
    transform: rotate(-2deg) perspective(1200px) rotateY(1deg);
  }

  .product-image:hover img {
    transform: rotate(0deg) perspective(1200px) rotateY(1deg) scale(1.01);
  }
}

@media (max-width: 768px) {
  .product-left {
    padding: 40px 24px;
  }

  .product-right {
    padding: 30px 24px;
    min-height: 300px;
  }

  .product-label {
    font-size: 11px;
    padding: 10px 20px;
  }

  .product-title {
    font-size: clamp(28px, 4vw, 44px);
    margin: 30px 0 20px 0;
  }

  .product-paragraph {
    font-size: 15px;
    line-height: 1.5;
    margin: 0 0 16px 0;
  }

  .product-paragraph:last-of-type {
    margin-bottom: 32px;
  }

  .product-buttons .btn-primary,
  .product-buttons .btn-ghost {
    font-size: 13px;
    padding: 14px 32px;
    height: auto;
  }

  .product-image img {
    width: 95%;
    border-radius: 12px;
  }
}

/* ── FOOTER ── */
footer {
  background: #f5f7fa;
  padding: 70px 60px;
  text-align: center;
  color: #4a5568;
  font-size: 1rem;
  width: 100%;
  max-width: 100%;
}

/* ── PRODUCT SECTION ── */
#software-product {
  padding: 120px 60px;
  background: #ffffff;
  width: 100%;
  max-width: 100%;
}

.product-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.product-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.product-content .section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0;
  font-weight: 600;
  background: transparent;
  border: 2px solid var(--blue);
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  width: fit-content;
}

.product-content .section-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.05;
  color: var(--blue);
  margin: 0;
}

.product-content .section-sub {
  font-size: 1rem;
  font-weight: 400;
  color: #4a5568;
  line-height: 1.75;
  margin: 0;
}

.product-buttons {
  display: flex;
  gap: 20px;
  margin-top: 44px;
  flex-wrap: wrap;
  align-items: center;
}

.product-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(2, 44, 123, 0.15);
  animation: fadeUp 0.9s 0.3s ease both;
}

@media(max-width: 1024px) {
  .product-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .product-image {
    order: -1;
  }
}

@media(max-width: 768px) {
  #software-product {
    padding: 80px 40px;
  }

  .product-wrapper {
    gap: 40px;
  }

  .product-content .section-heading {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
  }

  .product-content .section-sub {
    font-size: 0.95rem;
  }

  .product-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
  }
}

@media(max-width: 480px) {
  #software-product {
    padding: 50px 20px;
  }

  .product-wrapper {
    gap: 30px;
  }

  .product-content .section-heading {
    font-size: clamp(1.5rem, 3vw, 2rem);
  }

  .product-buttons {
    gap: 12px;
  }

  .btn-primary,
  .btn-ghost {
    padding: 14px 28px;
    font-size: 0.85rem;
    min-width: auto;
  }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* Animaciones para elementos específicos */
.compare-col {
  animation: scaleIn 0.6s ease-out both;
  transition: all 0.3s ease;
}

.compare-col:nth-child(1) { animation-delay: 0.1s; }
.compare-col:nth-child(3) { animation-delay: 0.2s; }

.compare-col:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 87, 184, 0.12);
}

.compare-col li {
  transition: all 0.3s ease;
}

.compare-col li:hover {
  transform: translateX(8px);
}


.problem-card {
  animation: fadeUp 0.6s ease-out both;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.problem-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 87, 184, 0.15);
}

.trust-item {
  animation: slideInLeft 0.6s ease-out both;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.trust-item:hover {
  transform: translateX(8px);
  box-shadow: 0 10px 25px rgba(0, 87, 184, 0.15);
}

.plan-step {
  animation: fadeUp 0.6s ease-out both;
  transition: all 0.4s ease;
}

.plan-step:nth-child(1) { animation-delay: 0s; }
.plan-step:nth-child(2) { animation-delay: 0.15s; }
.plan-step:nth-child(3) { animation-delay: 0.3s; }

.plan-step:hover .step-num {
  transform: scale(1.15);
  box-shadow: 0 15px 35px rgba(0, 87, 184, 0.4);
}

/* ── ANIMACIONES ADICIONALES PROFESIONALES ── */

@keyframes titleGlow {
  0% { opacity: 0; transform: translateY(20px); filter: blur(4px); }
  100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes smoothFadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes buttonShine {
  0% { box-shadow: 0 4px 12px rgba(2, 44, 123, 0.2); }
  50% { box-shadow: 0 8px 24px rgba(2, 44, 123, 0.35); }
  100% { box-shadow: 0 4px 12px rgba(2, 44, 123, 0.2); }
}

/* Secciones */
section {
  animation: smoothFadeIn 0.6s ease-out;
}

#problem, #guide, #plan, #action, #failure {
  animation: smoothFadeIn 0.7s ease-out;
}

/* Títulos */
h1, .section-heading {
  animation: titleGlow 0.8s ease-out;
}

/* Párrafos */
p, .section-sub {
  animation: fadeUp 0.7s ease-out both;
}

.section-label {
  animation: fadeUp 0.6s ease-out both;
  animation-delay: 0.1s;
}

/* Botones - Transición suave mejorada */
.btn-primary, .btn-ghost {
  position: relative;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-primary {
  background: var(--blue);
  box-shadow: 0 4px 12px rgba(2, 44, 123, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(2, 44, 123, 0.35);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-ghost {
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-ghost:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(2, 44, 123, 0.25);
}

/* Tarjetas - Efecto suave */
.problem-card, .compare-col, .trust-item, .plan-step {
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.problem-card:hover, .compare-col:hover, .trust-item:hover, .plan-step:hover {
  box-shadow: 0 16px 40px rgba(2, 44, 123, 0.12);
}

/* Icono animado */
.icon, .t-icon {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-block;
}

.problem-card:hover .icon,
.trust-item:hover .t-icon {
  transform: scale(1.1) translateY(-4px);
}

.step-num {
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.action-banner {
  animation: slideInUp 0.8s ease-out both;
  transition: all 0.4s ease;
}

.action-banner:hover {
  box-shadow: 0 20px 70px rgba(0, 87, 184, 0.4);
}

.btn-primary, .btn-ghost {
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 87, 184, 0.4);
}

.btn-ghost:hover {
  transform: translateY(-4px);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  #hero { padding: 40px 16px 60px 16px; gap: 20px; min-height: auto; }
  #problem { padding: 50px 16px; }
  #guide { padding: 50px 16px; gap: 30px; }
  #plan { padding: 50px 16px; }
  .plan-steps { gap: 20px; }
  #action { padding: 40px 16px; }
  .action-banner { padding: 30px 16px; }
  .action-btns { flex-direction: column; gap: 14px; }
  #failure { padding: 50px 16px; }
  #results { padding: 70px 30px; }

  .action-banner { padding: 50px 30px; gap: 30px; flex-direction: column; }
  .action-banner div { width: 100%; }
  .action-btns { width: 100%; flex-direction: column; }
  .action-btns a { width: 100%; }

  .failure-compare { gap: 30px; margin-top: 50px; margin-bottom: 60px; }
  .compare-col { padding: 30px; }
  .final-cta { padding: 40px 30px; }

  .hero-stats { gap: 40px; }
  .problem-cards { gap: 20px; }
  .results-grid { gap: 20px; }
}

@media (max-width: 480px) {
  #hero { padding: 30px 14px 50px 14px; }
  #hero h1 { font-size: clamp(1.8rem, 5vw, 2.5rem); }

  .btn-primary, .btn-ghost { padding: 12px 20px; font-size: .8rem; width: 100%; }
  .hero-btns { flex-direction: column; gap: 12px; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .hero-stat .num { font-size: clamp(1.8rem, 4vw, 2.5rem); }

  .problem-card { padding: 16px 12px; margin-bottom: 10px; }
  .problem-cards { gap: 10px; }
  .problem-card h3 { font-size: 1rem; }
  .quote-block { padding: 24px 14px; padding-left: 18px; }

  .plan-steps { grid-template-columns: 1fr; gap: 16px; }
  .plan-step { padding: 20px 12px; }
  .step-num { width: 60px; height: 60px; font-size: 1.2rem; }

  .action-banner { padding: 24px 14px; }
  .testimonial { padding: 24px 14px; }

  #problem, #guide, #plan, #action, #failure { padding: 40px 14px; }
}/* End custom CSS */