 :root {
   --navy: #062448;
   --navy2: #08345f;
   --navy3: #0c3e73;
   --blue: #0d6dcc;
   --blue2: #eaf4ff;
   --orange: #f25a21;
   --orange2: #dd4614;
   --green: #16a05d;
   --text: #10213c;
   --muted: #667085;
   --line: #d9e3ef;
   --soft: #f7faff;
   --white: #fff;
   --shadow: 0 18px 48px rgba(4, 28, 57, .18);
   --shadow2: 0 10px 30px rgba(4, 28, 57, .10);
   --radius: 20px;
   --font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
   --serif: "Lora", Georgia, serif;
 }

 * {
   box-sizing: border-box;
   margin: 0;
   padding: 0
 }

 html {
   scroll-behavior: smooth
 }

 body {
   font-family: var(--font);
   color: var(--text);
   background: #fff;
   line-height: 1.55;
   -webkit-font-smoothing: antialiased;
   overflow-x: hidden;
 }

 a {
   text-decoration: none;
   color: inherit
 }

 button,
 input,
 select {
   font-family: inherit
 }

 button {
   cursor: pointer;
   border: 0;
   background: none
 }

 img {
   max-width: 100%;
   display: block
 }

 .wrap {
   max-width: 1320px;
   margin: 0 auto;
   padding: 0 44px
 }

 @media(max-width:760px) {
   .wrap {
     padding: 0 18px
   }
 }

 /* Header */
 .site-header {
   position: sticky;
   top: 0;
   z-index: 999;
   width: 100%;
   background: rgba(255, 255, 255, 0.96);
   backdrop-filter: blur(16px);
   -webkit-backdrop-filter: blur(16px);
   border-bottom: 1px solid rgba(11, 37, 69, 0.10);
   box-shadow: 0 8px 28px rgba(11, 37, 69, 0.08);
 }

 .header-wrap {
   max-width: 1180px;
   margin: 0 auto;
   padding: 13px 22px;
   display: grid;
   grid-template-columns: auto 1fr auto;
   align-items: center;
   gap: 28px;
 }

 /* Logo */
 .header-logo {
   display: inline-flex;
   align-items: center;
 }

 .header-logo img {
   height: 46px;
   width: auto;
   display: block;
   object-fit: contain;
 }

 /* Center Nav */
 .header-nav {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 34px;
 }

 .header-nav a {
   position: relative;
   color: #0b2545;
   font-size: 14px;
   font-weight: 700;
   letter-spacing: 0.01em;
   text-decoration: none;
   transition: color 0.2s ease;
 }

 .header-nav a::after {
   content: "";
   position: absolute;
   left: 50%;
   bottom: -9px;
   width: 0;
   height: 2px;
   background: #f25a2a;
   border-radius: 20px;
   transform: translateX(-50%);
   transition: width 0.2s ease;
 }

 .header-nav a:hover {
   color: #f25a2a;
 }

 .header-nav a:hover::after {
   width: 100%;
 }

 /* Right Buttons */
 .header-actions {
   display: flex;
   align-items: center;
   gap: 10px;
 }

 .header-btn {
   height: 42px;
   padding: 0 16px;
   border-radius: 10px;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   font-size: 13px;
   font-weight: 800;
   text-decoration: none;
   white-space: nowrap;
   transition: all 0.2s ease;
 }

 .call-btn {
   color: #0b2545;
   background: #ffffff;
   border: 1px solid rgba(11, 37, 69, 0.18);
   box-shadow: 0 6px 18px rgba(11, 37, 69, 0.06);
 }

 .call-btn:hover {
   color: #f25a2a;
   border-color: rgba(242, 90, 42, 0.45);
   transform: translateY(-1px);
 }

 .whatsapp-btn {
   color: #ffffff;
   background: linear-gradient(135deg, #f25a2a, #e1491d);
   box-shadow: 0 10px 24px rgba(242, 90, 42, 0.28);
 }

 .whatsapp-btn:hover {
   background: linear-gradient(135deg, #ff6839, #e1491d);
   transform: translateY(-1px);
   box-shadow: 0 14px 28px rgba(242, 90, 42, 0.38);
 }

 .header-btn i {
   font-size: 14px;
 }

 /* Responsive */
 @media (max-width: 860px) {
   .header-wrap {
     grid-template-columns: auto auto;
     justify-content: space-between;
   }

   .header-nav {
     display: none;
   }

   .header-logo img {
     height: 40px;
   }
 }

 @media (max-width: 520px) {
   .header-wrap {
     padding: 10px 14px;
     gap: 12px;
   }

   .header-logo img {
     height: 36px;
   }

   .header-actions {
     gap: 7px;
   }

   .header-btn {
     height: 38px;
     padding: 0 11px;
     font-size: 12px;
     border-radius: 9px;
   }

   .call-btn span {
     display: none;
   }
 }

 /* Hero */
 /* Hero */
 .hero {
   position: relative;
   min-height: 540px;
   padding: 48px 0 42px;
   color: #fff;
   overflow: hidden;
   background:
     radial-gradient(circle at 82% 24%, rgba(40, 130, 220, 0.34), transparent 34%),
     radial-gradient(circle at 12% 18%, rgba(242, 90, 33, 0.18), transparent 28%),
     linear-gradient(135deg, #061f3f 0%, #073765 52%, #062448 100%);
 }

 .hero::before {
   content: "";
   position: absolute;
   inset: 0;
   background-image:
     radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
     linear-gradient(120deg, transparent 0, transparent 45%, rgba(255, 255, 255, 0.05) 45.2%, transparent 45.8%);
   background-size: 30px 30px, 100% 100%;
   opacity: 0.42;
   pointer-events: none;
 }

 .hero::after {
   content: "";
   position: absolute;
   inset: 0;
   background:
     linear-gradient(90deg, rgba(2, 17, 35, 0.68) 0%, rgba(2, 17, 35, 0.30) 48%, rgba(2, 17, 35, 0.05) 100%);
   pointer-events: none;
 }

 .hero-grid {
   position: relative;
   z-index: 2;
   display: grid;
   grid-template-columns: minmax(360px, 520px) 1fr;
   gap: 56px;
   align-items: center;
   min-height: 450px;
 }

 .hero-copy {
   position: relative;
   z-index: 3;
 }

 .hero-badge {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 8px 15px;
   margin-bottom: 18px;
   border-radius: 999px;
   color: #ffffff;
   font-size: 12px;
   font-weight: 800;
   letter-spacing: 0.03em;
   background: rgba(255, 255, 255, 0.10);
   border: 1px solid rgba(255, 255, 255, 0.16);
   backdrop-filter: blur(10px);
 }

 .hero-badge i {
   color: #ff6a36;
 }

 .hero-copy h1 {
   font-family: var(--serif);
   font-size: 50px;
   line-height: 1.12;
   letter-spacing: -1.2px;
   margin: 0 0 18px;
   max-width: 560px;
 }

 .hero-copy h1 span {
   display: block;
   color: #ff6a36;
 }

 .hero-copy p {
   max-width: 500px;
   color: rgba(255, 255, 255, 0.86);
   font-size: 16px;
   line-height: 1.72;
   margin: 0 0 22px;
 }

 .check-list {
   display: grid;
   grid-template-columns: repeat(2, minmax(0, 1fr));
   gap: 12px 18px;
   max-width: 520px;
   margin: 0 0 26px;
 }

 .check-item {
   display: flex;
   align-items: center;
   gap: 10px;
   color: #fff;
   font-size: 14px;
   font-weight: 800;
 }

 .check-item i {
   width: 23px;
   height: 23px;
   border-radius: 50%;
   display: grid;
   place-items: center;
   flex: 0 0 23px;
   background: #19b865;
   color: #fff;
   font-size: 11px;
   box-shadow: 0 0 0 4px rgba(25, 184, 101, 0.12);
 }

 .hero-actions {
   display: flex;
   align-items: center;
   gap: 14px;
   flex-wrap: wrap;
   margin-bottom: 24px;
 }

 .hero-start,
 .secondary-btn {
   height: 50px;
   padding: 0 22px;
   border-radius: 11px;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 9px;
   font-size: 14px;
   font-weight: 900;
   text-decoration: none;
   transition: all 0.22s ease;
 }

 .hero-start {
   color: #fff;
   background: linear-gradient(135deg, #ff6a36, #e94f1d);
   box-shadow: 0 14px 30px rgba(242, 90, 42, 0.35);
 }

 .hero-start:hover {
   transform: translateY(-2px);
   box-shadow: 0 18px 38px rgba(242, 90, 42, 0.45);
 }

 .secondary-btn {
   color: #fff;
   background: rgba(255, 255, 255, 0.09);
   border: 1px solid rgba(255, 255, 255, 0.28);
 }

 .secondary-btn:hover {
   background: rgba(255, 255, 255, 0.15);
   transform: translateY(-2px);
 }

 /* Right Student Image */
 .hero-student {
   position: relative;
   min-height: 400px;
   display: flex;
   align-items: flex-end;
   justify-content: center;
 }

 .student-glow {
   position: absolute;
   width: 450px;
   height: 450px;
   right: 17%;
   bottom: 9px;
   border-radius: 50%;
   background:
     radial-gradient(circle, rgba(255, 255, 255, 0.16) 0%, rgba(20, 117, 207, 0.18) 42%, transparent 70%);
   border: 1px solid rgba(255, 255, 255, 0.12);
 }
 

 .student-glow::before {
   content: "";
   position: absolute;
   inset: 34px;
   border-radius: 50%;
   border: 1px dashed rgba(255, 255, 255, 0.22);
 }

 .student-img {
   position: relative;
   /* z-index: 2; */
   max-height: 400px;
   width: auto;
   max-width: 100%;
   object-fit: cover;
    transform: scale(1.09);
      transform-origin: bottom center;
   filter: drop-shadow(0 28px 38px rgba(0, 0, 0, 0.34));
 }
 

 

 .floating-note {
   position: absolute;
   z-index: 4;
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 11px 14px;
   border-radius: 999px;
   color: #08274b;
   background: rgba(255, 255, 255, 0.94);
   border: 1px solid rgba(255, 255, 255, 0.55);
   box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
   font-size: 12px;
   font-weight: 900;
 }

 .floating-note i {
   color: #ff5a2a;
 }

 .note-one {
   top: 96px;
   right: 5%;
 }

 .note-two {
   bottom: 88px;
   left: 6%;
 }

 /* Plus Decorations */
 .hero-plus {
   position: absolute;
   z-index: 1;
   color: rgba(35, 130, 220, 0.34);
   font-weight: 900;
   font-size: 44px;
   line-height: 1;
 }

 .p1 {
   left: 48%;
   top: 78px;
 }

 .p2 {
   left: 31%;
   top: 330px;
 }

 .p3 {
   right: 5%;
   top: 210px;
 }

 /* Responsive */
 @media (max-width: 1060px) {
   .hero {
     min-height: auto;
     padding: 46px 0 34px;
   }

   .hero-grid {
     grid-template-columns: 1fr;
     gap: 20px;
     min-height: auto;
     text-align: center;
   }

   .hero-copy {
     max-width: 740px;
     margin: 0 auto;
   }

   .hero-copy p,
   .hero-copy h1,
   .check-list {
     margin-left: auto;
     margin-right: auto;
   }

   .check-item {
     justify-content: flex-start;
     text-align: left;
   }

   .hero-actions {
     justify-content: center;
   }

   .hero-student {
     min-height: 340px;
   }

   .student-img {
     max-height: 360px;
   }

   .student-glow {
     right: 50%;
     transform: translateX(50%);
     width: 330px;
     height: 330px;
   }

   .note-one {
     right: 18%;
     top: 56px;
   }

   .note-two {
     left: 16%;
     bottom: 42px;
   }
 }

 @media (max-width: 620px) {
   .hero {
     padding: 34px 0 26px;
   }

   .hero-copy h1 {
     font-size: 36px;
     letter-spacing: -0.5px;
   }

   .hero-copy p {
     font-size: 15px;
   }

   .check-list {
     grid-template-columns: 1fr;
     max-width: 330px;
     gap: 11px;
   }

   .hero-actions {
     flex-direction: column;
     align-items: stretch;
     max-width: 330px;
     margin-left: auto;
     margin-right: auto;
   }

   .hero-start,
   .secondary-btn {
     width: 100%;
   }

   .rating-card {
     width: 100%;
     max-width: 330px;
     justify-content: center;
   }

   .hero-student {
     min-height: 300px;
     margin-top: 8px;
   }

   .student-img {
     max-height: 310px;
   }

   .student-glow {
     width: 270px;
     height: 270px;
   }

   .floating-note {
     font-size: 11px;
     padding: 9px 12px;
   }

   .note-one {
     right: 4%;
     top: 42px;
   }

   .note-two {
     left: 4%;
     bottom: 38px;
   }
 }
/*separate checker section */

/* ================================
          PREMIUM CHECKER SECTION REDESIGN
          ================================ */

.checker-section {
  padding: 86px 20px 64px;
  background:
    radial-gradient(circle at 12% 0%, rgba(13, 109, 204, .08), transparent 28%),
    radial-gradient(circle at 92% 18%, rgba(242, 90, 33, .08), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
  position: relative;
  z-index: 4;
}

.checker-section .wrap {
  max-width: 1180px;
  margin: 0 auto;
}

/* Section Head */
.checker-head {
  max-width: 850px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  background: #fff4ed;
  border: 1px solid #ffd8c7;
  border-radius: 999px;
  padding: 8px 15px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .09em;
  margin-bottom: 14px;
}

.section-kicker i {
  font-size: 12px;
}

.checker-head h2 {
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1.16;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -.4px;
}

.checker-head p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 15px;
  color: #5d6e85;
  line-height: 1.75;
}

/* Main Shell */
.checker-shell {
  display: block;
  background: rgba(255, 255, 255, .92);
  border: 1px solid #dfeaf6;
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 28px 70px rgba(4, 28, 57, .11);
}

/* Timeline now becomes a clean top rail, not a bulky side card */
.checker-side {
  position: relative;
  top: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: linear-gradient(180deg, #f8fbff 0%, #f3f8ff 100%);
  border: 1px solid #e0ebf6;
  border-radius: 22px;
  padding: 18px 18px 16px;
  box-shadow: none;
  margin-bottom: 22px;
  overflow: hidden;
}

/* .checker-side::before {
       content: "";
       position: absolute;
       left: 9%;
       right: 9%;
       top: 38px;
       height: 2px;
       background: #d7e4f2;
       z-index: 0;
     } */

.side-card {
  position: relative;
  z-index: 1;
  padding: 0 14px;
  text-align: center;
  display: block;
}

.side-card:not(:last-of-type)::before {
  display: none;
}

.side-num {
  width: 42px;
  height: 42px;
  margin: 0 auto 11px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #ffffff;
  color: #7d8ca2;
  font-size: 14px;
  font-weight: 900;
  border: 2px solid #d5e2ef;
  box-shadow: 0 8px 18px rgba(7, 48, 92, .07);
}

.side-card.active .side-num {
  background: var(--blue);
  border-color: var(--blue);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(13, 109, 204, .25);
}

.side-card.done .side-num {
  background: var(--green);
  border-color: var(--green);
  color: #ffffff;
}

.side-card h3 {
  font-size: 15px;
  color: var(--navy);
  margin: 0 0 5px;
  font-weight: 900;
}

.side-card p {
  max-width: 160px;
  margin: 0 auto;
  font-size: 12px;
  color: #61728a;
  line-height: 1.45;
}

.side-note {
  grid-column: 1 / -1;
  width: fit-content;
  margin: 16px auto 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eefaf4;
  border: 1px solid #ccefdc;
  color: #087344;
  border-radius: 999px;
  padding: 9px 15px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
}

.side-note i {
  font-size: 13px;
}

/* Wizard becomes light and spacious, not another heavy card */
.wizard,
.checker-shell .wizard {
  max-width: none;
  width: 100%;
  margin: 0;
  min-height: auto;
  background: #ffffff;
  border: 1px solid #e3edf7;
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(4, 28, 57, .08);
  overflow: hidden;
}

.wizard-inner {
  padding: 30px 34px 26px;
}

/* Hide duplicate inner timeline because top rail already handles steps */
.timeline {
  display: none;
}

/* Form Head */
.form-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid #edf3fa;
}

.head-icon {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: #edf6ff;
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 18px;
  flex: 0 0 auto;
  border: 1px solid #d7eaff;
}

.form-head h2 {
  font-size: 24px;
  line-height: 1.2;
  margin: 0 0 4px;
  color: var(--navy);
  font-weight: 900;
}

.form-head p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

/* Compact professional form */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 22px;
}

.full {
  grid-column: 1 / -1;
}

.field label,
.option-block .lbl {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 8px;
}

.req {
  color: #d11f1f;
}

.field input,
.field select {
  width: 100%;
  height: 48px;
  border: 1.8px solid #dce7f3;
  border-radius: 12px;
  background: #ffffff;
  color: var(--text);
  padding: 0 15px;
  font-size: 14px;
  font-weight: 700;
  outline: none;
  transition: .18s ease;
  appearance: none;
}

.field input:focus,
.field select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(13, 109, 204, .10);
}

.field.select {
  position: relative;
}

.field.select::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 16px;
  bottom: 15px;
  font-size: 11px;
  color: #8291a6;
  pointer-events: none;
}

/* Use premium FA icon chips, not sticker/emoji feel */
.chips {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 11px;
}

.chip {
  min-height: 58px;
  border: 1.8px solid #dce7f3;
  border-radius: 14px;
  background: #fbfdff;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 850;
  color: var(--navy);
  transition: .18s ease;
  text-align: left;
}

.chip i,
.chip .emoji {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #edf6ff;
  color: var(--blue);
  font-size: 14px;
  flex: 0 0 auto;
}

.chip:hover,
.chip.selected {
  border-color: rgba(13, 109, 204, .55);
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(13, 109, 204, .10);
}

.chip.selected {
  background: #eff7ff;
}

/* Category pills */
.cat-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cat-chip {
  border: 1.8px solid #dce7f3;
  background: #fbfdff;
  border-radius: 999px;
  padding: 11px 22px;
  font-size: 13px;
  font-weight: 900;
  color: var(--navy);
  transition: .18s ease;
}

.cat-chip:hover,
.cat-chip.selected {
  border-color: var(--blue);
  background: #eff7ff;
  color: #0b5daf;
}

/* Main CTA */
.cta-main {
  width: 100%;
  height: 56px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: #fff;
  font-size: 16px;
  font-weight: 950;
  box-shadow: 0 14px 30px rgba(242, 90, 33, .30);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: .2s ease;
  margin-top: 4px;
}

.cta-main:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(242, 90, 33, .40);
}

.privacy,
.tiny-note {
  text-align: center;
  color: #77869b;
  font-size: 12px;
  margin-top: 12px;
  font-weight: 650;
  line-height: 1.6;
}

/* Error */
.err {
  display: none;
  background: #fff3f3;
  border: 1px solid #ffd3d3;
  color: #a31515;
  padding: 11px 13px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 12px;
}

.err.show {
  display: block;
}

/* Analysis step refinement */
.analysis-card {
  display: grid;
  gap: 14px;
}

.analysis-top {
  background: linear-gradient(180deg, #f8fbff, #f2f7fd);
  border: 1px solid #e0ebf6;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.spinner {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #edf6ff;
  color: var(--blue);
  display: grid;
  place-items: center;
  box-shadow: none;
  border: 1px solid #d7eaff;
  animation: none;
}

.analysis-top h3 {
  font-size: 19px;
  color: var(--navy);
  margin-bottom: 3px;
}

.analysis-top p {
  font-size: 13px;
  color: var(--muted);
}

.progressbar {
  height: 7px;
  background: #e4ecf5;
  border-radius: 99px;
  overflow: hidden;
}

.progressbar span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--blue), var(--blue));
  border-radius: inherit;
  transition: width 2.4s ease;
}

.analysis-caption {
  text-align: right;
  font-size: 12px;
  color: var(--muted);
  font-weight: 800;
}

.checks {
  display: grid;
  gap: 10px;
}

.check-row {
  background: #fbfdff;
  border: 1px solid #e6eef7;
  border-radius: 13px;
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  font-size: 14px;
  font-weight: 750;
  color: var(--text);
}

.check-row .box {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: #eafaf2;
  color: var(--green);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

/* Contact step */
.ready-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--navy), var(--navy3));
  color: #fff;
  padding: 14px 16px;
  border-radius: 14px;
  margin-bottom: 22px;
  font-size: 14px;
  font-weight: 900;
}

.ready-banner i {
  color: var(--orange);
}

.contact-grid {
  display: grid;
  gap: 16px;
}

.phone-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px;
  gap: 12px;
  align-items: end;
}

.verify-btn {
  height: 48px;
  align-self: end;
  border-radius: 12px;
  border: 1.8px solid var(--blue);
  background: #eef7ff;
  color: var(--navy);
  font-weight: 950;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  white-space: nowrap;
  cursor: pointer;
  transition: .18s ease;
}

.verify-btn:hover:not(:disabled) {
  background: #dff0ff;
  transform: translateY(-1px);
}

.verify-btn:disabled {
  cursor: not-allowed;
}

.verify-btn.loading {
  opacity: .86;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), #094d91);
  border-color: var(--blue);
}

.verify-btn.cooldown {
  color: #607088;
  background: #f4f8fd;
  border-color: #dce7f3;
  box-shadow: none;
}

.verify-btn.verified {
  color: #087344;
  background: #eafaf2;
  border-color: #19b865;
  box-shadow: 0 10px 22px rgba(25, 184, 101, .12);
}

.otp-block {
  display: none;
}

.otp-block.show {
  display: block;
}

.form-error,
.otp-ok {
  display: none;
  margin-top: 7px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.form-error {
  color: #b42318;
}

.form-error.show,
.otp-ok.show {
  display: block;
}

.otp-ok {
  color: #087344;
}

.field input.invalid {
  border-color: #e04444;
  box-shadow: 0 0 0 4px rgba(224, 68, 68, .10);
}

.field input.verified {
  border-color: #19b865;
  box-shadow: 0 0 0 4px rgba(25, 184, 101, .10);
}

.field input.checking {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(13, 109, 204, .10);
}

/* Report step */
.report-head {
  background: linear-gradient(135deg, var(--navy), var(--navy3));
  border-radius: 18px;
  padding: 22px;
  color: #fff;
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}

.score-ring {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, .22);
  display: grid;
  place-items: center;
  text-align: center;
  flex: 0 0 auto;
  background: rgba(255, 255, 255, .08);
}

.score-ring b {
  display: block;
  font-size: 25px;
  line-height: 1;
}

.score-ring small {
  display: block;
  font-size: 9px;
  color: rgba(255, 255, 255, .74);
  font-weight: 900;
  text-transform: uppercase;
}

.tabs {
  display: flex;
  gap: 8px;
  overflow: auto;
  padding-bottom: 10px;
  margin-bottom: 14px;
  scrollbar-width: none;
}

.tabs::-webkit-scrollbar {
  display: none;
}

.tab {
  border: 1px solid #dce7f3;
  border-radius: 999px;
  padding: 10px 14px;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 900;
  color: #64748b;
  background: #fff;
}

.tab.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.report-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  border-top: 1px solid #e8eff7;
  margin: 20px -34px -26px;
  padding: 18px 34px 20px;
  background: #fbfdff;
}

.action-btn,
.action-link {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 900;
  border: 1px solid #dce7f3;
  background: #fff;
  color: var(--navy);
}

.action-link {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

/* Responsive */
@media (max-width: 900px) {
  .checker-section {
    padding: 64px 16px 42px;
  }

  .checker-head h2 {
    font-size: 31px;
  }

  .checker-shell {
    padding: 18px;
    border-radius: 22px;
  }

  .checker-side {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 10px;
  }

  .checker-side::before {
    display: none;
  }

  .side-note {
    margin-top: 4px;
  }

  .wizard-inner {
    padding: 24px 20px 22px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .chips {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .checker-head {
    margin-bottom: 28px;
  }

  .checker-head h2 {
    font-size: 27px;
  }

  .checker-head p {
    font-size: 14px;
  }

  .checker-shell {
    padding: 14px;
    border-radius: 20px;
  }

  .checker-side {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .side-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
    padding: 0;
  }

  .side-num {
    margin: 0;
    width: 38px;
    height: 38px;
  }

  .side-card p {
    max-width: none;
    margin: 0;
  }

  .side-note {
    width: 100%;
    border-radius: 14px;
    justify-content: flex-start;
  }

  .wizard-inner {
    padding: 22px 16px;
  }

  .form-head {
    align-items: flex-start;
  }

  .form-head h2 {
    font-size: 21px;
  }

  .chips {
    grid-template-columns: 1fr;
  }

  .phone-row {
    grid-template-columns: 1fr;
  }

  .report-actions {
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
  }
}



/* ================================
     PROFESSIONAL REPORT STEP WHITE CARD
  ================================ */

.report-step .report-dashboard {
  position: relative;
  overflow: hidden;
  margin: -6px -8px 24px;
  padding: 28px;
  border-radius: 24px;
  color: var(--navy);
  background:
    radial-gradient(circle at 92% 10%, rgba(13, 109, 204, 0.08), transparent 28%),
    radial-gradient(circle at 8% 20%, rgba(242, 90, 42, 0.07), transparent 26%),
    #ffffff;
  border: 1px solid #dde8f4;
  box-shadow: 0 22px 55px rgba(4, 28, 57, 0.11);
}

.report-dashboard::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(13, 109, 204, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.35;
  pointer-events: none;
}

.report-hero-row,
.report-summary-grid {
  position: relative;
  z-index: 1;
}

.report-kicker {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #eef7ff;
  border: 1px solid #d5eaff;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.report-kicker i {
  color: var(--orange);
}

.report-hero-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e8eff7;
}

.report-score-ring {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  background: conic-gradient(var(--orange) calc(var(--score, 76) * 1%), #e7eef7 0);
  box-shadow: 0 14px 30px rgba(242, 90, 42, 0.18);
  flex: 0 0 auto;
}

.report-score-ring span {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #ffffff;
  border: 1px solid #e1ebf5;
  box-shadow: inset 0 0 0 4px #f7fbff;
}

.report-score-ring b {
  display: block;
  color: var(--navy);
  font-size: 27px;
  line-height: 1;
  font-weight: 950;
}

.report-score-ring small {
  display: block;
  margin-top: 4px;
  color: #6f8198;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.report-title {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.18;
  font-weight: 900;
  margin: 0 0 7px;
  letter-spacing: -0.3px;
}

.report-sub {
  color: #5f7188;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 650;
}

.report-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 15px;
  border-radius: 999px;
  background: #eafaf2;
  color: #067044;
  border: 1px solid #ccefdc;
  font-size: 12px;
  font-weight: 950;
  white-space: nowrap;
}

/* Metrics: 2 cards in first row, 2 cards in second row */
.report-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.report-metric {
  position: relative;
  min-height: 104px;
  padding: 18px 18px 18px 56px;
  border-radius: 18px;
  background: #f8fbff;
  border: 1px solid #dfeaf6;
  box-shadow: 0 12px 26px rgba(7, 48, 92, 0.06);
  transition: 0.22s ease;
}

.report-metric:hover {
  transform: translateY(-2px);
  background: #ffffff;
  border-color: rgba(13, 109, 204, 0.28);
  box-shadow: 0 18px 34px rgba(7, 48, 92, 0.10);
}

.report-metric::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 20px;
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: #eef7ff;
  border: 1px solid #d5eaff;
}

.report-metric::after {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 25px;
  top: 26px;
  color: var(--blue);
  font-size: 14px;
}

.report-metric:nth-child(1)::after {
  content: "\f3c5";
  color: var(--orange);
}

.report-metric:nth-child(2)::after {
  content: "\f156";
  color: var(--green);
}

.report-metric:nth-child(3)::after {
  content: "\f201";
  color: var(--blue);
}

.report-metric:nth-child(4)::after {
  content: "\f095";
  color: var(--orange);
}

.report-metric small {
  display: block;
  color: #6f8198;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 900;
  margin-bottom: 7px;
}

.report-metric b {
  display: block;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 950;
}

.report-metric span {
  display: block;
  margin-top: 5px;
  color: #65778d;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 760px) {
  .report-step .report-dashboard {
    padding: 22px;
    border-radius: 20px;
  }

  .report-hero-row {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 14px;
  }

  .report-score-ring {
    margin: 0 auto;
  }

  .report-status-badge {
    justify-content: center;
    width: fit-content;
    margin: 0 auto;
  }

  .report-summary-grid {
    grid-template-columns: 1fr;
  }

  .report-title {
    font-size: 23px;
  }
}


.report-tabs {
  position: sticky;
  top: 76px;
  z-index: 8;
  display: flex;
  gap: 9px;
  overflow: auto;
  margin: 0 -8px 18px;
  padding: 10px 8px;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid #e5edf6;
  scrollbar-width: none;
}

.report-tabs::-webkit-scrollbar {
  display: none;
}

.report-tabs .tab {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #dce7f3;
  border-radius: 999px;
  padding: 0 15px;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 950;
  color: #53657c;
  background: #fff;
  transition: .2s ease;
}

.report-tabs .tab i {
  color: var(--blue);
}

.report-tabs .tab:hover {
  border-color: rgba(13, 109, 204, .35);
  box-shadow: 0 10px 22px rgba(13, 109, 204, .08);
}

.report-tabs .tab.active {
  color: #fff;
  border-color: var(--navy);
  background: var(--navy);
  box-shadow: 0 12px 26px rgba(8, 36, 71, .16);
}

.report-tabs .tab.active i {
  color: #fff;
}

.tab-panel {
  display: none;
  animation: reportFade .24s ease;
}

.tab-panel.active {
  display: block;
}

@keyframes reportFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 18px;
}

.panel-head h3 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 21px;
  font-weight: 950;
}

.panel-head p {
  margin: 0;
  color: #63758c;
  font-size: 13px;
  line-height: 1.65;
  font-weight: 650;
}

.panel-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border-radius: 999px;
  background: #eff7ff;
  color: #0b5daf;
  border: 1px solid #d9ecff;
  font-size: 12px;
  font-weight: 950;
  white-space: nowrap;
}

.country-list {
  display: grid;
  gap: 16px;
}

.country-card {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #dce7f3;
  box-shadow: 0 14px 36px rgba(4, 28, 57, .08);
}

.country-card.best {
  border-color: rgba(13, 109, 204, .65);
  box-shadow: 0 18px 42px rgba(13, 109, 204, .13);
}

.country-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  margin-bottom: 17px;
}

.flag {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 15px;
  font-weight: 950;
  color: var(--navy);
  background: #edf6ff;
  border: 1px solid #d8ebff;
}

.country-name {
  color: var(--navy);
  font-size: 18px;
  font-weight: 950;
}

.country-rank {
  display: block;
  color: #718198;
  font-size: 11px;
  font-weight: 850;
  margin-top: 3px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 31px;
  padding: 0 11px;
  border-radius: 999px;
  background: #e8f3ff;
  color: #0b64b5;
  font-size: 11px;
  font-weight: 950;
  white-space: nowrap;
}

.country-card.best .badge {
  color: #fff;
  background: var(--blue);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.mini {
  min-height: 86px;
  border-radius: 14px;
  padding: 13px;
  background: #f6f9fd;
  border: 1px solid #e6eef7;
}

.mini small {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #66768b;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 9px;
}

.mini b {
  display: block;
  color: #061f3d;
  font-size: 13px;
  line-height: 1.32;
  font-weight: 950;
}

.report-meter {
  width: 100%;
  height: 7px;
  border-radius: 999px;
  background: #dfe8f2;
  overflow: hidden;
  margin: 8px 0 7px;
}

.report-meter span {
  display: block;
  height: 100%;
  width: var(--w, 50%);
  border-radius: inherit;
  background: var(--blue);
}

.report-meter.orange span {
  background: var(--orange);
}

.report-meter.green span {
  background: var(--green);
}

.report-meter.brown span {
  background: #a24a12;
}

.why {
  margin-top: 13px;
  padding: 14px 16px;
  border-radius: 14px;
  color: #31455e;
  background: #f8fbff;
  border: 1px solid #e8f0f8;
  font-size: 13px;
  line-height: 1.65;
  font-weight: 650;
}

.country-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
}

.report-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px;
  padding: 13px 15px;
  border-radius: 14px;
  color: #8a3404;
  background: #fff8ec;
  border: 1px solid #f5d2a8;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 850;
}

.report-note.blue {
  color: #0b4f8f;
  background: #eef7ff;
  border-color: #d8ebff;
}

.details-btn {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 11px;
  border: 1px solid #dce7f3;
  background: #fff;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 950;
  transition: .18s ease;
}

.details-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-1px);
}

.compare-list,
.info-list,
.faq-list,
.roadmap-list {
  display: grid;
  gap: 13px;
}

.compare-card {
  padding: 17px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #dce7f3;
  box-shadow: 0 12px 30px rgba(4, 28, 57, .06);
}

.compare-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 11px;
}

.compare-head b {
  color: var(--navy);
  font-size: 15px;
  font-weight: 950;
}

.compare-head span {
  color: var(--orange);
  font-size: 16px;
  font-weight: 950;
  white-space: nowrap;
}

.compare-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  color: #63758c;
  font-size: 12px;
  font-weight: 750;
}

.budget-ok {
  color: #067044;
  font-weight: 950;
}

.budget-warn {
  color: #a31515;
  font-weight: 950;
}

.info-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #dce7f3;
  box-shadow: 0 10px 26px rgba(4, 28, 57, .055);
}

.info-row>i {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #edf6ff;
  color: var(--blue);
}

.info-row b {
  display: block;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 950;
}

.info-row p {
  margin: 5px 0 0;
  color: #61728a;
  font-size: 12px;
  line-height: 1.6;
  font-weight: 650;
}

.roadmap-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 13px;
  padding: 17px;
  border-radius: 17px;
  background: #fff;
  border: 1px solid #dce7f3;
  box-shadow: 0 10px 26px rgba(4, 28, 57, .055);
}

.roadmap-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 950;
}

.roadmap-item h4,
.faq-item h4 {
  margin: 0 0 5px;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 950;
}

.roadmap-item p,
.faq-item p {
  margin: 0;
  color: #61728a;
  font-size: 13px;
  line-height: 1.65;
  font-weight: 650;
}

.faq-item {
  padding: 17px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #dce7f3;
}

.final-cta-box {
  margin-top: 16px;
  padding: 24px;
  border-radius: 20px;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--navy3));
}

.final-cta-box p {
  color: rgba(255, 255, 255, .78);
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 750;
}

.report-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  border-top: 1px solid #e8eff7;
  margin: 22px -34px -26px;
  padding: 18px 34px 20px;
  background: #fbfdff;
}

.action-btn,
.action-link {
  min-height: 46px;
  padding: 0 17px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 950;
  border: 1.5px solid #dce7f3;
  background: #fff;
  color: var(--navy);
  transition: .18s ease;
  text-decoration: none;
}

.action-btn:hover,
.action-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(4, 28, 57, .08);
}

.action-link,
.action-btn.primary-action {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

.report-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(3, 20, 39, .68);
  backdrop-filter: blur(8px);
}

.report-modal.show {
  display: flex;
}

.report-modal-card {
  width: min(760px, 100%);
  max-height: 88vh;
  overflow: auto;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .30);
  border: 1px solid rgba(255, 255, 255, .30);
}

.report-modal-head {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  background: var(--navy);
  color: #fff;
}

.report-modal-head h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.3;
  font-weight: 950;
}

.modal-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .18);
}

.report-modal-body {
  padding: 20px;
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}

.modal-point {
  padding: 14px;
  border-radius: 14px;
  background: #f7faff;
  border: 1px solid #e3edf7;
}

.modal-point small {
  display: block;
  color: #6a7a90;
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 5px;
}

.modal-point b {
  color: var(--navy);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 950;
}

.print-report {
  display: none;
}

@media (max-width: 860px) {
  .report-hero-row {
    grid-template-columns: auto 1fr;
  }

  .report-status-badge {
    grid-column: 1 / -1;
    width: fit-content;
  }

  .report-summary-grid,
  .mini-grid,
  .info-grid-2 {
    grid-template-columns: 1fr 1fr;
  }

  .report-title {
    font-size: 24px;
  }

  .report-tabs {
    top: 64px;
  }
}

@media (max-width: 560px) {
  .report-step .report-dashboard {
    padding: 20px;
    margin-left: -4px;
    margin-right: -4px;
  }

  .report-hero-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .report-score-ring {
    margin: 0 auto;
  }

  .report-status-badge {
    margin: 0 auto;
  }

  .report-summary-grid,
  .mini-grid,
  .info-grid-2,
  .modal-grid {
    grid-template-columns: 1fr;
  }

  .country-top {
    grid-template-columns: auto 1fr;
  }

  .country-top .badge {
    grid-column: 1 / -1;
    width: fit-content;
  }

  .country-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .details-btn {
    width: 100%;
    justify-content: center;
  }

  .panel-head {
    flex-direction: column;
  }

  .report-actions {
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .action-btn,
  .action-link {
    flex: 1 1 100%;
  }
}

@media print {
  @page {
    size: A4;
    margin: 10mm;
  }

  html,
  body {
    width: auto !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    background: #ffffff !important;
  }

  body.is-report-printing {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  body.is-report-printing>*:not(#printReportClone) {
    display: none !important;
  }

  body.is-report-printing #printReportClone {
    display: block !important;
    position: static !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    max-width: none !important;
    min-height: 0 !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #ffffff !important;
    color: #17243b !important;
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 10.5px !important;
    line-height: 1.42 !important;
    box-shadow: none !important;
    page-break-before: auto !important;
    page-break-after: auto !important;
    break-before: auto !important;
    break-after: auto !important;
  }

  #printReportClone *,
  #printReportClone *::before,
  #printReportClone *::after {
    box-sizing: border-box !important;
  }

  #printReportClone .print-doc {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #ffffff !important;
  }

  #printReportClone .print-doc>*:first-child {
    margin-top: 0 !important;
    page-break-before: auto !important;
    break-before: auto !important;
  }

  #printReportClone .print-doc>*:last-child {
    margin-bottom: 0 !important;
    page-break-after: auto !important;
    break-after: auto !important;
  }

  #printReportClone .print-hero {
    display: block !important;
    margin: 0 0 7mm !important;
    padding: 8mm !important;
    border-radius: 5mm !important;
    color: #ffffff !important;
    background: linear-gradient(135deg, #062448 0%, #0d6dcc 100%) !important;
    border: 0 !important;
    box-shadow: none !important;
    page-break-inside: avoid !important;
    break-inside: avoid !important;
  }

  #printReportClone .print-brand-row {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    gap: 10mm !important;
    margin: 0 0 6mm !important;
  }

  #printReportClone .print-brand {
    font-size: 12px !important;
    font-weight: 900 !important;
    letter-spacing: 0.02em !important;
  }

  #printReportClone .print-small,
  #printReportClone .print-date {
    font-size: 9.5px !important;
    font-weight: 700 !important;
    color: rgba(255, 255, 255, 0.82) !important;
  }

  #printReportClone .print-hero h1 {
    margin: 0 0 3mm !important;
    color: #ffffff !important;
    font-size: 23px !important;
    line-height: 1.16 !important;
    font-weight: 900 !important;
  }

  #printReportClone .print-hero p {
    max-width: 175mm !important;
    margin: 0 !important;
    color: rgba(255, 255, 255, 0.88) !important;
    font-size: 11px !important;
    line-height: 1.45 !important;
  }

  #printReportClone .print-kpi-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 3mm !important;
    margin: 0 0 4mm !important;
    page-break-inside: avoid !important;
    break-inside: avoid !important;
  }

  #printReportClone .print-kpi,
  #printReportClone .print-card,
  #printReportClone .print-profile-grid>div,
  #printReportClone .print-country-card {
    border: 1px solid #dbe8f5 !important;
    background: #fbfdff !important;
    border-radius: 3.5mm !important;
    padding: 3.3mm !important;
    box-shadow: none !important;
  }

  #printReportClone .print-kpi small,
  #printReportClone .print-card small,
  #printReportClone .print-profile-grid small {
    display: block !important;
    margin: 0 0 1.5mm !important;
    color: #64748b !important;
    font-size: 8.5px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
  }

  #printReportClone .print-kpi b,
  #printReportClone .print-card b,
  #printReportClone .print-profile-grid b {
    display: block !important;
    color: #062448 !important;
    font-size: 13px !important;
    line-height: 1.22 !important;
    font-weight: 900 !important;
  }

  #printReportClone .print-section {
    display: block !important;
    margin: 0 0 4mm !important;
    padding: 4mm !important;
    border: 1px solid #e1eaf5 !important;
    border-radius: 4mm !important;
    background: #ffffff !important;
    box-shadow: none !important;
    page-break-inside: auto !important;
    break-inside: auto !important;
  }

  #printReportClone .print-section h2 {
    margin: 0 0 3mm !important;
    padding-bottom: 2mm !important;
    border-bottom: 1px solid #e8eef6 !important;
    color: #062448 !important;
    font-size: 14px !important;
    line-height: 1.25 !important;
    font-weight: 900 !important;
  }

  #printReportClone .print-section p,
  #printReportClone .print-section li {
    color: #334155 !important;
    font-size: 10.2px !important;
    line-height: 1.5 !important;
  }

  #printReportClone .print-muted {
    margin: 0 0 3mm !important;
    color: #64748b !important;
    font-size: 10px !important;
  }

  #printReportClone .print-profile-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 3mm !important;
  }

  #printReportClone .print-table {
    width: 100% !important;
    border-collapse: collapse !important;
    table-layout: fixed !important;
    margin: 0 !important;
    font-size: 9.5px !important;
    page-break-inside: auto !important;
  }

  #printReportClone .print-table thead {
    display: table-header-group !important;
  }

  #printReportClone .print-table tr {
    page-break-inside: avoid !important;
    break-inside: avoid !important;
  }

  #printReportClone .print-table th {
    background: #edf6ff !important;
    color: #062448 !important;
    border: 1px solid #dbe8f5 !important;
    padding: 2.5mm 2mm !important;
    text-align: left !important;
    font-size: 9.2px !important;
    font-weight: 900 !important;
  }

  #printReportClone .print-table td {
    border: 1px solid #e5edf6 !important;
    padding: 2.4mm 2mm !important;
    color: #22324a !important;
    vertical-align: top !important;
  }

  #printReportClone .print-table small {
    display: block !important;
    margin-top: 1mm !important;
    color: #64748b !important;
    font-size: 8.4px !important;
  }

  #printReportClone .print-ok,
  #printReportClone .print-warn {
    display: inline-block !important;
    border-radius: 99px !important;
    padding: 1mm 2mm !important;
    font-size: 8.5px !important;
    font-weight: 900 !important;
    white-space: nowrap !important;
  }

  #printReportClone .print-ok {
    color: #087344 !important;
    background: #e9f9f1 !important;
    border: 1px solid #bfead3 !important;
  }

  #printReportClone .print-warn {
    color: #9a5200 !important;
    background: #fff4df !important;
    border: 1px solid #ffd99b !important;
  }

  #printReportClone .print-country-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 3mm !important;
  }

  #printReportClone .print-two-col {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 3mm !important;
  }

  #printReportClone .print-country-card,
  #printReportClone .print-card,
  #printReportClone .print-kpi {
    page-break-inside: avoid !important;
    break-inside: avoid !important;
  }

  #printReportClone .print-country-head {
    display: flex !important;
    align-items: center !important;
    gap: 2.4mm !important;
    margin-bottom: 2.2mm !important;
  }

  #printReportClone .print-country-head>span {
    width: 9mm !important;
    height: 9mm !important;
    border-radius: 50% !important;
    display: grid !important;
    place-items: center !important;
    background: #edf6ff !important;
    font-size: 14px !important;
  }

  #printReportClone .print-country-head b {
    display: block !important;
    color: #062448 !important;
    font-size: 12px !important;
    line-height: 1.2 !important;
  }

  #printReportClone .print-country-head small {
    display: block !important;
    color: #64748b !important;
    font-size: 8.5px !important;
    font-weight: 800 !important;
  }

  #printReportClone .print-country-card p {
    margin: 0 0 2.5mm !important;
    color: #42526b !important;
    font-size: 9.5px !important;
    line-height: 1.45 !important;
  }

  #printReportClone .print-country-meta {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 1.5mm !important;
  }

  #printReportClone .print-country-meta span {
    display: inline-block !important;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 99px !important;
    padding: 1mm 1.8mm !important;
    color: #334155 !important;
    font-size: 8.5px !important;
    font-weight: 800 !important;
  }

  #printReportClone .print-highlight {
    margin: 0 !important;
    padding: 3mm 4mm !important;
    border-left: 4px solid #f25a2a !important;
    border-radius: 3mm !important;
    background: #fff6f1 !important;
    color: #27364d !important;
    font-size: 10.4px !important;
    line-height: 1.55 !important;
  }

  #printReportClone .print-card p {
    margin: 1.8mm 0 0 !important;
    color: #64748b !important;
    font-size: 9.6px !important;
    line-height: 1.45 !important;
  }

  #printReportClone .print-checklist,
  #printReportClone .print-steps {
    margin: 0 !important;
    padding-left: 5mm !important;
  }

  #printReportClone .print-checklist li,
  #printReportClone .print-steps li {
    margin-bottom: 1.4mm !important;
  }

  #printReportClone .print-footer {
    display: block !important;
    margin: 3mm 0 0 !important;
    padding: 3mm 4mm !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 3.5mm !important;
    background: #f8fafc !important;
    color: #475569 !important;
    font-size: 9.5px !important;
    line-height: 1.45 !important;
    page-break-inside: avoid !important;
    break-inside: avoid !important;
  }
}
 /* Sections */
 .section {
   padding: 34px 0
 }

 .section-title {
   font-family: var(--serif);
   font-size: 30px;
   text-align: center;
   color: var(--navy);
   margin-bottom: 30px;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 24px;
 }

 .section-title:before,
 .section-title:after {
   content: "";
   height: 1px;
   background: #dbe5ef;
   flex: 1;
   max-width: 260px
 }

 .how-grid {
   display: grid;
   grid-template-columns: repeat(5, 1fr);
   gap: 22px;
   align-items: start;
 }

 .how-item {
   text-align: center;
   position: relative
 }

 .how-item:not(:last-child):after {
   content: "→";
   position: absolute;
   right: -18px;
   top: 32px;
   color: #8fb1d1;
   font-size: 28px;
 }

 .how-icon {
   font-size: 48px;
   color: var(--blue);
   margin-bottom: 13px
 }

 .how-item h4 {
   font-size: 16px;
   color: var(--navy);
   margin-bottom: 6px
 }

 .how-item p {
   font-size: 13px;
   color: #42536d;
   line-height: 1.55
 }

 .includes {
   border: 1px solid #dce6f0;
   border-radius: 14px;
   display: grid;
   grid-template-columns: repeat(6, 1fr);
   overflow: hidden;
   box-shadow: 0 8px 26px rgba(8, 52, 95, .06);
 }

 .include-card {
   text-align: center;
   padding: 28px 18px;
   border-right: 1px solid #dce6f0;
   background: #fff;
 }

 .include-card:last-child {
   border-right: 0
 }

 .include-card i {
   font-size: 40px;
   color: var(--blue);
   margin-bottom: 15px
 }

 .include-card h4 {
   font-size: 17px;

   line-height: 1.15;
   color: var(--navy);
   margin-bottom: 8px
 }

 .include-card p {
   font-size: 12px;
   color: #42536d;
   line-height: 1.45
 }

 .stat-strip {
   margin: 28px 0 22px;
   background: linear-gradient(90deg, #082a52, #0b3768);
   border-radius: 14px;
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   color: #fff;
   box-shadow: 0 14px 34px rgba(6, 36, 72, .18);
   overflow: hidden;
 }

 .stat {
   display: flex;
   align-items: center;
   gap: 18px;
   padding: 24px 34px;
   border-right: 1px solid rgba(255, 255, 255, .17);
 }

 .stat:last-child {
   border-right: 0
 }

 .stat i {
   width: 50px;
   height: 50px;
   border-radius: 50%;
   display: grid;
   place-items: center;
   background: rgba(255, 255, 255, .12);
   color: #cbe5ff;
   font-size: 23px;
 }

 .stat b {
   font-size: 26px;
   line-height: 1
 }

 .stat span {
   display: block;
   font-size: 12px;
   color: rgba(255, 255, 255, .8);
   margin-top: 3px;
   font-weight: 600
 }

/* ------------------------------------------------ */
/* Testimonial Section */
.testimonial-section {
  position: relative;
  padding: 86px 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(242, 90, 42, 0.08), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(13, 109, 204, 0.10), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  overflow: hidden;
}

.testimonial-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(11, 37, 69, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.45;
  pointer-events: none;
}

.testimonial-section .wrap {
  position: relative;
  z-index: 2;
}

.testimonial-head {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  margin-bottom: 14px;
  border-radius: 999px;
  color: #f25a2a;
  background: rgba(242, 90, 42, 0.09);
  border: 1px solid rgba(242, 90, 42, 0.16);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.testimonial-head h2 {
  margin: 0 0 14px;
  color: #0b2545;
  font-family: var(--serif);
  font-size: 42px;
  line-height: 1.18;
  letter-spacing: -0.8px;
}

.testimonial-head p {
  margin: 0;
  color: #5d6f86;
  font-size: 16px;
  line-height: 1.75;
}

.testimonial-slider-wrap {
  position: relative;
  padding: 4px 56px 48px;
}

.testimonialSwiper {
  overflow: hidden;
}

.testimonial-card {
  height: 100%;
  min-height: 310px;
  padding: 28px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(11, 37, 69, 0.10);
  box-shadow: 0 20px 50px rgba(11, 37, 69, 0.10);
  transition: all 0.28s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(11, 37, 69, 0.14);
  border-color: rgba(242, 90, 42, 0.22);
}

.testimonial-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.user-avatar {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  background: linear-gradient(135deg, #0d6dcc, #2bb673);
  box-shadow: 0 10px 24px rgba(13, 109, 204, 0.25);
}

.avatar-orange {
  background: linear-gradient(135deg, #f25a2a, #ff9f43);
}

.avatar-green {
  background: linear-gradient(135deg, #19b865, #0b8f56);
}

.avatar-blue {
  background: linear-gradient(135deg, #0b2545, #0d6dcc);
}

.testimonial-user h3 {
  margin: 0 0 4px;
  color: #0b2545;
  font-size: 16px;
  font-weight: 900;
}

.testimonial-user span {
  display: block;
  color: #6b7c91;
  font-size: 12px;
  font-weight: 800;
}

.quote-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: rgba(242, 90, 42, 0.85);
  background: rgba(242, 90, 42, 0.08);
  font-size: 16px;
}

.testimonial-stars {
  color: #ffc83d;
  font-size: 17px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card p {
  margin: 0 0 22px;
  color: #485b73;
  font-size: 15px;
  line-height: 1.75;
}

.testimonial-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border-radius: 999px;
  color: #0b2545;
  background: #f3f7fc;
  border: 1px solid rgba(11, 37, 69, 0.08);
  font-size: 12px;
  font-weight: 900;
}

.testimonial-tag i {
  color: #f25a2a;
}

/* Swiper Controls */
.testimonial-nav {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.testimonial-prev,
.testimonial-next {
  position: absolute;
  top: 42%;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #0b2545;
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(11, 37, 69, 0.14);
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.22s ease;
}

.testimonial-prev {
  left: 0;
}

.testimonial-next {
  right: 0;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  color: #ffffff;
  background: #f25a2a;
  transform: translateY(-2px);
}

.testimonial-pagination {
  bottom: 0 !important;
}

.testimonial-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: rgba(11, 37, 69, 0.25);
  opacity: 1;
}

.testimonial-pagination .swiper-pagination-bullet-active {
  width: 26px;
  border-radius: 999px;
  background: #f25a2a;
}

/* Responsive */
@media (max-width: 900px) {
  .testimonial-section {
    padding: 70px 0;
  }

  .testimonial-slider-wrap {
    padding: 0 0 48px;
  }

  .testimonial-nav {
    display: none;
  }

  .testimonial-head h2 {
    font-size: 34px;
  }
}

@media (max-width: 560px) {
  .testimonial-section {
    padding: 58px 0;
  }

  .testimonial-head {
    margin-bottom: 30px;
  }

  .testimonial-head h2 {
    font-size: 29px;
  }

  .testimonial-head p {
    font-size: 14px;
  }

  .testimonial-card {
    min-height: auto;
    padding: 22px;
    border-radius: 18px;
  }

  .testimonial-top {
    gap: 12px;
  }

  .user-avatar {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .quote-icon {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }
}



 /* More Free Tools Section */
 .tools-section {
   position: relative;
   padding: 86px 0;
   background:
     radial-gradient(circle at 10% 18%, rgba(242, 90, 42, 0.07), transparent 28%),
     radial-gradient(circle at 92% 10%, rgba(12, 109, 204, 0.10), transparent 30%),
     linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
   overflow: hidden;
 }

 .tools-section::before {
   content: "";
   position: absolute;
   inset: 0;
   background-image: radial-gradient(rgba(9, 36, 69, 0.055) 1px, transparent 1px);
   background-size: 30px 30px;
   opacity: 0.45;
   pointer-events: none;
 }

 .tools-section .wrap {
   position: relative;
   z-index: 2;
 }

 .tools-head {
   max-width: 760px;
   margin: 0 auto 46px;
   text-align: center;
 }

 .tools-kicker {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 9px 16px;
   margin-bottom: 16px;
   border-radius: 999px;
   color: #f25a2a;
   background: rgba(242, 90, 42, 0.09);
   border: 1px solid rgba(242, 90, 42, 0.15);
   font-size: 12px;
   font-weight: 900;
   letter-spacing: 0.04em;
   text-transform: uppercase;
 }

 .tools-head h2 {
   margin: 0 0 14px;
   color: #092445;
   font-family: var(--serif);
   font-size: 44px;
   line-height: 1.12;
   letter-spacing: -0.9px;
 }

 .tools-head p {
   max-width: 620px;
   margin: 0 auto;
   color: #5f7084;
   font-size: 16px;
   line-height: 1.7;
 }

 /* 3 Equal Cards */
 .tools-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 28px;
 }

 .tool-card {
   position: relative;
   display: flex;
   flex-direction: column;
   min-height: 100%;
   color: inherit;
   text-decoration: none;
   background: #ffffff;
   border-radius: 24px;
   overflow: hidden;
   border: 1px solid rgba(9, 36, 69, 0.08);
   box-shadow: 0 16px 42px rgba(9, 36, 69, 0.08);
   transition: all 0.28s ease;
 }

 .tool-card:hover {
   transform: translateY(-6px);
   border-color: rgba(242, 90, 42, 0.26);
   box-shadow: 0 28px 70px rgba(9, 36, 69, 0.15);
 }

 .tool-img {
   position: relative;
   height: 225px;
   background: #061f3f;
   overflow: hidden;
 }

 .tool-img img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
   transition: transform 0.35s ease;
 }

 .tool-card:hover .tool-img img {
   transform: scale(1.05);
 }

 .tool-img::after {
   content: "";
   position: absolute;
   inset: 0;
   background:
     linear-gradient(180deg, rgba(6, 31, 63, 0.02) 35%, rgba(6, 31, 63, 0.42) 100%);
   pointer-events: none;
 }

 .tool-tag {
   position: absolute;
   left: 18px;
   bottom: 18px;
   z-index: 2;
   padding: 8px 13px;
   border-radius: 999px;
   color: #ffffff;
   background: linear-gradient(135deg, #ff6a36, #e94f1d);
   font-size: 11px;
   font-weight: 900;
   letter-spacing: 0.04em;
   box-shadow: 0 12px 26px rgba(242, 90, 42, 0.34);
 }

 .tool-body {
   padding: 26px 24px 24px;
   display: flex;
   flex-direction: column;
   flex: 1;
 }

 .tool-body h3 {
   margin: 0 0 12px;
   color: #092445;
   font-size: 24px;
   line-height: 1.25;
   letter-spacing: -0.4px;
   font-weight: 900;
 }

 .tool-body p {
   margin: 0 0 22px;
   color: #617286;
   font-size: 14.5px;
   line-height: 1.72;
 }

 .tool-link {
   margin-top: auto;
   padding-top: 18px;
   border-top: 1px solid rgba(9, 36, 69, 0.08);
   display: inline-flex;
   align-items: center;
   gap: 9px;
   width: 100%;
   color: #f25a2a;
   font-size: 14px;
   font-weight: 900;
   transition: gap 0.22s ease;
 }

 .tool-card:hover .tool-link {
   gap: 14px;
 }

 .tool-link i {
   font-size: 12px;
 }

 /* Responsive */
 @media (max-width: 1060px) {
   .tools-grid {
     grid-template-columns: repeat(2, 1fr);
   }
 }

 @media (max-width: 720px) {
   .tools-section {
     padding: 64px 0;
   }

   .tools-head h2 {
     font-size: 34px;
   }

   .tools-head p {
     font-size: 15px;
   }

   .tools-grid {
     grid-template-columns: 1fr;
     gap: 22px;
   }

   .tool-img {
     height: 210px;
   }

   .tool-body {
     padding: 22px;
   }

   .tool-body h3 {
     font-size: 22px;
   }
 }

 /* FAQ Section */
 .faq-section {
   position: relative;
   padding: 86px 0;
   background:
     radial-gradient(circle at 12% 18%, rgba(242, 90, 42, 0.07), transparent 28%),
     radial-gradient(circle at 88% 12%, rgba(12, 109, 204, 0.10), transparent 28%),
     #f6f9fd;
   overflow: hidden;
 }

 .faq-head {
   max-width: 720px;
   margin: 0 auto 42px;
   text-align: center;
 }

 .section-kicker {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 8px 15px;
   margin-bottom: 15px;
   border-radius: 999px;
   color: #f25a2a;
   background: rgba(242, 90, 42, 0.09);
   border: 1px solid rgba(242, 90, 42, 0.14);
   font-size: 12px;
   font-weight: 900;
   letter-spacing: 0.04em;
   text-transform: uppercase;
 }

 .faq-head h2 {
   margin: 0 0 14px;
   color: #092445;
   font-size: 42px;
   line-height: 1.15;
   letter-spacing: -0.8px;
   font-family: var(--serif);
 }

 .faq-head p {
   margin: 0;
   color: #5c6f85;
   font-size: 16px;
   line-height: 1.7;
 }

 .faq-accordion {
   max-width: 860px;
   margin: 0 auto;
   display: grid;
   gap: 14px;
 }

 .faq-item {
   border-radius: 18px;
   background: #ffffff;
   border: 1px solid rgba(9, 36, 69, 0.08);
   box-shadow: 0 14px 38px rgba(9, 36, 69, 0.07);
   overflow: hidden;
   transition: all 0.25s ease;
 }

 .faq-item.active {
   border-color: rgba(242, 90, 42, 0.24);
   box-shadow: 0 18px 46px rgba(9, 36, 69, 0.10);
 }

 .faq-question {
   width: 100%;
   padding: 22px 24px;
   border: 0;
   background: transparent;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 18px;
   color: #092445;
   cursor: pointer;
   text-align: left;
   font-size: 16px;
   font-weight: 900;
   line-height: 1.45;
 }

 .faq-question i {
   width: 34px;
   height: 34px;
   border-radius: 50%;
   display: grid;
   place-items: center;
   flex: 0 0 34px;
   color: #0b3768;
   background: #eef4fb;
   font-size: 12px;
   transition: all 0.25s ease;
 }

 .faq-item.active .faq-question i {
   color: #ffffff;
   background: #f25a2a;
   transform: rotate(180deg);
 }

 .faq-answer {
   max-height: 0;
   overflow: hidden;
   transition: max-height 0.28s ease;
 }

 .faq-item.active .faq-answer {
   max-height: 240px;
 }

 .faq-answer p {
   margin: 0;
   padding: 0 24px 22px;
   color: #5d6e82;
   font-size: 14px;
   line-height: 1.75;
 }

 .faq-bottom-cta {
   max-width: 860px;
   margin: 34px auto 0;
   padding: 22px 26px;
   border-radius: 18px;
   background: linear-gradient(135deg, #073765, #061f3f);
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 18px;
   box-shadow: 0 18px 44px rgba(7, 35, 68, 0.16);
 }

 .faq-bottom-cta p {
   margin: 0;
   color: #ffffff;
   font-size: 16px;
   font-weight: 900;
 }

 .faq-bottom-cta a {
   height: 46px;
   padding: 0 18px;
   border-radius: 11px;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   color: #ffffff;
   background: linear-gradient(135deg, #ff6a36, #e94f1d);
   font-size: 13px;
   font-weight: 900;
   text-decoration: none;
   white-space: nowrap;
   box-shadow: 0 12px 26px rgba(242, 90, 42, 0.34);
   transition: all 0.22s ease;
 }

 .faq-bottom-cta a:hover {
   transform: translateY(-2px);
   box-shadow: 0 16px 34px rgba(242, 90, 42, 0.44);
 }

 /* Responsive */
 @media (max-width: 620px) {
   .faq-section {
     padding: 62px 0;
   }

   .faq-head h2 {
     font-size: 32px;
   }

   .faq-head p {
     font-size: 15px;
   }

   .faq-question {
     padding: 18px;
     font-size: 15px;
   }

   .faq-answer p {
     padding: 0 18px 20px;
   }

   .faq-bottom-cta {
     flex-direction: column;
     text-align: center;
     padding: 24px 18px;
   }

   .faq-bottom-cta a {
     width: 100%;
   }
 }

 footer {
   background: linear-gradient(90deg, #061d3b, #062c58);
   color: #fff;
   padding: 30px 0;
   border-top: 1px solid rgba(255, 255, 255, .12);
 }

 .footer-grid {
   display: grid;
   grid-template-columns: 1.2fr repeat(3, 1fr);
   gap: 28px;
   align-items: center;
 }

 .footer-item {
   display: flex;
   align-items: center;
   gap: 12px;
   color: rgba(255, 255, 255, .78);
   font-size: 13px;
   font-weight: 600
 }

 .footer-item i {
   width: 36px;
   height: 36px;
   border-radius: 50%;
   background: rgba(255, 255, 255, .1);
   display: grid;
   place-items: center;
   color: #cbe5ff
 }

 @media(max-width:900px) {
   .footer-grid {
     grid-template-columns: 1fr
   }

   .footer-item {
     justify-content: center
   }

   .footer-grid .brand {
     justify-content: center;
     text-align: left;
     margin: 0 auto
   }
 }

 @media print {

   .site-header,
   .checker-side,
   .journey,
   .section,
   .stat-strip,
   .bottom-grid,
   footer {
     display: none !important
   }

   .hero {
     background: #fff;
     color: #000;
     padding: 0;
     min-height: 0
   }

   .hero-copy {
     display: none
   }

   .hero-grid {
     display: block
   }

   .wizard {
     box-shadow: none;
     border: 1px solid #ddd
   }

   .step {
     display: block !important
   }

   .timeline,
   .tabs,
   .report-actions {
     display: none !important
   }
 }



 /* =================================================
   FINAL FIX + PREMIUM LEFT STEP CHECKER REDESIGN
   Added at end to override earlier styles
================================================= */

 /* CRITICAL: only current step is visible */
 .step {
   display: none !important;
 }

 .step.active {
   display: block !important;
   animation: stepFade .28s ease;
 }

 @keyframes stepFade {
   from {
     opacity: 0;
     transform: translateY(8px);
   }

   to {
     opacity: 1;
     transform: translateY(0);
   }
 }

 /* Cleaner checker section */
 .checker-section {
   padding: 72px 20px 58px;
   background:
     radial-gradient(circle at 10% 4%, rgba(13, 109, 204, .07), transparent 28%),
     radial-gradient(circle at 90% 18%, rgba(242, 90, 33, .07), transparent 25%),
     linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
 }

 .checker-section .wrap {
   max-width: 1100px;
   margin: 0 auto;
 }

 .checker-head {
   max-width: 760px;
   margin: 0 auto 34px;
   text-align: center;
 }

 .section-kicker {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   color: var(--orange);
   background: #fff4ed;
   border: 1px solid #ffd8c7;
   border-radius: 999px;
   padding: 8px 14px;
   font-size: 11px;
   font-weight: 900;
   text-transform: uppercase;
   letter-spacing: .09em;
   margin-bottom: 13px;
 }

 .checker-head h2 {
   font-family: var(--serif);
   font-size: 34px;
   line-height: 1.18;
   color: var(--navy);
   margin-bottom: 10px;
 }

 .checker-head p {
   max-width: 660px;
   margin: 0 auto;
   font-size: 14px;
   color: #62748c;
   line-height: 1.7;
 }

 /* Left timeline + right compact wizard */
 .checker-shell {
   display: grid !important;
   grid-template-columns: 285px minmax(0, 690px);
   justify-content: center;
   gap: 22px;
   align-items: start;
   background: rgba(255, 255, 255, .82);
   border: 1px solid #dfeaf6;
   border-radius: 26px;
   padding: 22px;
   box-shadow: 0 24px 62px rgba(4, 28, 57, .10);
 }

 .checker-side {
   position: sticky;
   top: 92px;
   display: block !important;
   background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
   border: 1px solid #e1ebf6;
   border-radius: 22px;
   padding: 18px;
   box-shadow: 0 14px 34px rgba(4, 28, 57, .07);
 }

 .checker-side::before {
   display: none !important;
 }

 .side-card {
   position: relative;
   display: flex !important;
   align-items: flex-start;
   gap: 12px;
   padding: 0 0 22px 0;
   text-align: left !important;
 }

 .side-card:not(:last-of-type)::before {
   content: "";
   position: absolute;
   left: 18px;
   top: 42px;
   bottom: 6px;
   width: 2px;
   background: #dce7f3;
   display: block !important;
 }

 .side-card.done:not(:last-of-type)::before {
   background: linear-gradient(180deg, var(--green), #dce7f3);
 }

 .side-card.active:not(:last-of-type)::before {
   background: linear-gradient(180deg, var(--blue), #dce7f3);
 }

 .side-num {
   width: 38px;
   height: 38px;
   margin: 0 !important;
   border-radius: 50%;
   display: grid;
   place-items: center;
   flex: 0 0 38px;
   background: #f4f8fd;
   color: #7a8aa0;
   font-size: 13px;
   font-weight: 900;
   border: 2px solid #d8e4f0;
   box-shadow: 0 7px 16px rgba(7, 48, 92, .06);
 }

 .side-num i {
   font-size: 13px;
 }

 .side-card.active .side-num {
   background: var(--blue);
   border-color: var(--blue);
   color: #ffffff;
   box-shadow: 0 10px 22px rgba(13, 109, 204, .24);
 }

 .side-card.done .side-num {
   background: var(--green);
   border-color: var(--green);
   color: #ffffff;
 }

 .side-card h3 {
   font-size: 15px;
   color: var(--navy);
   margin: 0 0 4px;
   font-weight: 900;
 }

 .side-card p {
   max-width: none;
   margin: 0;
   font-size: 12px;
   color: #61728a;
   line-height: 1.45;
 }

 .side-note {
   width: 100%;
   margin: 2px 0 0;
   display: flex;
   align-items: flex-start;
   gap: 9px;
   background: #eefaf4;
   border: 1px solid #ccefdc;
   color: #087344;
   border-radius: 15px;
   padding: 12px;
   font-size: 12px;
   font-weight: 800;
   line-height: 1.45;
 }

 .side-note i {
   margin-top: 2px;
   font-size: 13px;
 }

 /* Compact wizard */
 .wizard,
 .checker-shell .wizard {
   width: 100%;
   max-width: 690px !important;
   min-height: auto !important;
   margin: 0 !important;
   background: #ffffff;
   border: 1px solid #e2ebf5;
   border-radius: 22px;
   box-shadow: 0 16px 38px rgba(4, 28, 57, .08);
   overflow: hidden;
 }

 /* Hide duplicate internal timeline; left timeline is the visual stepper */
 .timeline {
   display: none !important;
 }

 .wizard-inner {
   padding: 24px 28px 22px;
 }

 .form-head {
   display: flex;
   align-items: center;
   gap: 12px;
   margin-bottom: 18px;
   padding-bottom: 14px;
   border-bottom: 1px solid #edf3fa;
 }

 .head-icon {
   width: 40px;
   height: 40px;
   border-radius: 12px;
   background: #edf6ff;
   color: var(--blue);
   display: grid;
   place-items: center;
   font-size: 17px;
   flex: 0 0 40px;
   border: 1px solid #d7eaff;
 }

 .form-head h2 {
   font-size: 21px;
   line-height: 1.2;
   margin: 0 0 3px;
   color: var(--navy);
   font-weight: 900;
 }

 .form-head p {
   font-size: 13px;
   color: var(--muted);
   margin: 0;
 }

 .form-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 15px 18px;
 }

 .full {
   grid-column: 1 / -1;
 }

 .field label,
 .option-block .lbl {
   display: flex;
   align-items: center;
   gap: 6px;
   font-size: 12px;
   font-weight: 900;
   color: var(--navy);
   margin-bottom: 7px;
 }

 .field input,
 .field select {
   width: 100%;
   height: 45px;
   border: 1.6px solid #dce7f3;
   border-radius: 11px;
   background: #ffffff;
   color: var(--text);
   padding: 0 14px;
   font-size: 13px;
   font-weight: 700;
   outline: none;
   transition: .18s ease;
   appearance: none;
 }

 .field input:focus,
 .field select:focus {
   border-color: var(--blue);
   box-shadow: 0 0 0 4px rgba(13, 109, 204, .09);
 }

 .field.select {
   position: relative;
 }

 .field.select::after {
   content: "\f078";
   font-family: "Font Awesome 6 Free";
   font-weight: 900;
   position: absolute;
   right: 15px;
   bottom: 14px;
   font-size: 10px;
   color: #8291a6;
   pointer-events: none;
 }

 .chips {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 10px;
 }

 .chip {
   min-height: 50px;
   border: 1.6px solid #dce7f3;
   border-radius: 13px;
   background: #fbfdff;
   display: flex;
   align-items: center;
   gap: 9px;
   padding: 9px 11px;
   font-size: 12px;
   font-weight: 850;
   color: var(--navy);
   transition: .18s ease;
   text-align: left;
 }

 .chip i,
 .chip .emoji {
   width: 28px;
   height: 28px;
   display: grid;
   place-items: center;
   border-radius: 9px;
   background: #edf6ff;
   color: var(--blue);
   font-size: 13px;
   flex: 0 0 auto;
 }

 .chip:hover,
 .chip.selected {
   border-color: rgba(13, 109, 204, .55);
   background: #ffffff;
   box-shadow: 0 8px 18px rgba(13, 109, 204, .09);
 }

 .chip.selected {
   background: #eff7ff;
 }

 .cat-chips {
   display: flex;
   gap: 8px;
   flex-wrap: wrap;
 }

 .cat-chip {
   border: 1.6px solid #dce7f3;
   background: #fbfdff;
   border-radius: 999px;
   padding: 9px 18px;
   font-size: 12px;
   font-weight: 900;
   color: var(--navy);
   transition: .18s ease;
 }

 .cat-chip:hover,
 .cat-chip.selected {
   border-color: var(--blue);
   background: #eff7ff;
   color: #0b5daf;
 }

 .cta-main {
   width: 100%;
   height: 52px;
   border-radius: 12px;
   background: linear-gradient(135deg, var(--orange), var(--orange2));
   color: #fff;
   font-size: 15px;
   font-weight: 950;
   box-shadow: 0 12px 26px rgba(242, 90, 33, .28);
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 10px;
   transition: .2s ease;
   margin-top: 2px;
 }

 .cta-main:hover {
   transform: translateY(-1px);
   box-shadow: 0 16px 34px rgba(242, 90, 33, .36);
 }

 .privacy,
 .tiny-note {
   text-align: center;
   color: #77869b;
   font-size: 11px;
   margin-top: 10px;
   font-weight: 650;
   line-height: 1.55;
 }

 .err {
   display: none;
   background: #fff3f3;
   border: 1px solid #ffd3d3;
   color: #a31515;
   padding: 10px 12px;
   border-radius: 11px;
   font-size: 12px;
   font-weight: 800;
   margin-bottom: 10px;
 }

 .err.show {
   display: block;
 }

 /* Compact analysis */
 .analysis-card {
   display: grid;
   gap: 12px;
 }

 .analysis-top {
   background: linear-gradient(180deg, #f8fbff, #f2f7fd);
   border: 1px solid #e0ebf6;
   border-radius: 15px;
   padding: 15px;
   display: flex;
   align-items: center;
   gap: 13px;
 }

 .spinner {
   width: 42px;
   height: 42px;
   border-radius: 13px;
   background: #edf6ff;
   color: var(--blue);
   display: grid;
   place-items: center;
   box-shadow: none;
   border: 1px solid #d7eaff;
   animation: none;
   flex: 0 0 42px;
 }

 .analysis-top h3 {
   font-size: 17px;
   color: var(--navy);
   margin-bottom: 2px;
 }

 .analysis-top p {
   font-size: 12px;
   color: var(--muted);
 }

 .progressbar {
   height: 6px;
   background: #e4ecf5;
   border-radius: 99px;
   overflow: hidden;
 }

 .progressbar span {
   display: block;
   height: 100%;
   width: 0;
   background: linear-gradient(90deg, var(--blue), var(--orange));
   border-radius: inherit;
   transition: width 2.4s ease;
 }

 .analysis-caption {
   text-align: right;
   font-size: 11px;
   color: var(--muted);
   font-weight: 800;
 }

 .checks {
   display: grid;
   gap: 8px;
 }

 .check-row {
   background: #fbfdff;
   border: 1px solid #e6eef7;
   border-radius: 12px;
   min-height: 44px;
   display: flex;
   align-items: center;
   gap: 10px;
   padding: 9px 12px;
   font-size: 13px;
   font-weight: 750;
   color: var(--text);
 }

 .check-row .box {
   width: 28px;
   height: 28px;
   border-radius: 9px;
   background: #eafaf2;
   color: var(--green);
   display: grid;
   place-items: center;
   flex: 0 0 auto;
 }

 .match-teaser {
   margin-top: 4px;
   background: linear-gradient(135deg, var(--navy), var(--navy3));
   border-radius: 15px;
   padding: 15px;
 }

 /* Contact */
 .ready-banner {
   display: flex;
   align-items: center;
   gap: 9px;
   background: linear-gradient(135deg, var(--navy), var(--navy3));
   color: #fff;
   padding: 12px 14px;
   border-radius: 13px;
   margin-bottom: 16px;
   font-size: 13px;
   font-weight: 900;
 }

 .ready-banner i {
   color: var(--orange);
 }

 .contact-grid {
   display: grid;
   gap: 14px;
 }

 .phone-row {
   display: grid;
   grid-template-columns: 1fr 112px;
   gap: 9px;
 }

 .verify-btn {
   height: 45px;
   border-radius: 11px;
   border: 1.6px solid var(--blue);
   background: #eef7ff;
   color: var(--navy);
   font-size: 13px;
   font-weight: 900;
 }

 .verify-btn:hover {
   background: #dff0ff;
 }

 /* Report */
 .report-head {
   background: linear-gradient(135deg, var(--navy), var(--navy3));
   border-radius: 16px;
   padding: 18px;
   color: #fff;
   display: flex;
   gap: 15px;
   align-items: center;
   margin-bottom: 15px;
 }

 .score-ring {
   width: 62px;
   height: 62px;
   border-radius: 50%;
   border: 4px solid rgba(255, 255, 255, .22);
   display: grid;
   place-items: center;
   text-align: center;
   flex: 0 0 auto;
   background: rgba(255, 255, 255, .08);
 }

 .score-ring b {
   display: block;
   font-size: 22px;
   line-height: 1;
 }

 .score-ring small {
   display: block;
   font-size: 8px;
   color: rgba(255, 255, 255, .74);
   font-weight: 900;
   text-transform: uppercase;
 }

 .report-title {
   font-size: 18px;
   font-weight: 900;
 }

 .report-sub {
   font-size: 12px;
   color: rgba(255, 255, 255, .74);
 }

 .tabs {
   display: flex;
   gap: 7px;
   overflow: auto;
   padding-bottom: 8px;
   margin-bottom: 12px;
   scrollbar-width: none;
 }

 .tabs::-webkit-scrollbar {
   display: none;
 }

 .tab {
   border: 1px solid #dce7f3;
   border-radius: 999px;
   padding: 9px 12px;
   white-space: nowrap;
   font-size: 11px;
   font-weight: 900;
   color: #64748b;
   background: #fff;
 }

 .tab.active {
   background: var(--navy);
   color: #fff;
   border-color: var(--navy);
 }

 .report-actions {
   display: flex;
   gap: 9px;
   flex-wrap: wrap;
   border-top: 1px solid #e8eff7;
   margin: 18px -28px -22px;
   padding: 16px 28px 18px;
   background: #fbfdff;
 }

 .action-btn,
 .action-link {
   min-height: 41px;
   padding: 0 14px;
   border-radius: 10px;
   display: flex;
   align-items: center;
   gap: 7px;
   font-size: 12px;
   font-weight: 900;
   border: 1px solid #dce7f3;
   background: #fff;
   color: var(--navy);
 }

 .action-link {
   background: var(--orange);
   color: #fff;
   border-color: var(--orange);
 }

 @media (max-width: 960px) {
   .checker-shell {
     grid-template-columns: 1fr;
     max-width: 760px;
     margin: 0 auto;
   }

   .checker-side {
     position: relative;
     top: auto;
   }

   .wizard,
   .checker-shell .wizard {
     max-width: none !important;
   }
 }

 @media (max-width: 640px) {
   .checker-section {
     padding: 54px 14px 38px;
   }

   .checker-head h2 {
     font-size: 27px;
   }

   .checker-head p {
     font-size: 14px;
   }

   .checker-shell {
     padding: 14px;
     border-radius: 20px;
   }

   .checker-side {
     padding: 15px;
     border-radius: 18px;
   }

   .wizard-inner {
     padding: 20px 15px;
   }

   .form-grid {
     grid-template-columns: 1fr;
     gap: 14px;
   }

   .chips {
     grid-template-columns: 1fr;
   }

   .phone-row {
     grid-template-columns: 1fr;
   }

   .form-head {
     align-items: flex-start;
   }

   .form-head h2 {
     font-size: 20px;
   }

   .report-actions {
     margin-left: -15px;
     margin-right: -15px;
     padding-left: 15px;
     padding-right: 15px;
   }
 }



 /* =================================================
   FUNCTIONAL OTP + STEP 2 PREMIUM FIX
   Integrated from previous readiness checker logic
================================================= */

 .step {
   display: none !important;
 }

 .step.active {
   display: block !important;
   animation: stepFade .28s ease;
 }

 @keyframes stepFade {
   from {
     opacity: 0;
     transform: translateY(8px);
   }

   to {
     opacity: 1;
     transform: translateY(0);
   }
 }

 .analysis-card {
   display: grid;
   gap: 14px;
 }

 .analysis-top {
   position: relative;
   overflow: hidden;
   background: radial-gradient(circle at 92% 0%, rgba(13, 109, 204, .12), transparent 34%), linear-gradient(135deg, #f8fbff 0%, #eef6ff 100%);
   border: 1px solid #dce9f7;
   border-radius: 16px;
   padding: 16px;
   display: flex;
   align-items: center;
   gap: 14px;
 }


 .spinner {
   position: relative;
   z-index: 1;
   width: 44px;
   height: 44px;
   border-radius: 14px;
   background: #fff;
   color: var(--blue);
   display: grid;
   place-items: center;
   border: 1px solid #cfe2f7;
   box-shadow: 0 10px 24px rgba(13, 109, 204, .12);
   flex: 0 0 44px;
   animation: pulseSoft 1.7s infinite;
 }

 @keyframes pulseSoft {

   0%,
   100% {
     box-shadow: 0 10px 24px rgba(13, 109, 204, .12), 0 0 0 0 rgba(13, 109, 204, .24);
   }

   50% {
     box-shadow: 0 10px 24px rgba(13, 109, 204, .12), 0 0 0 10px rgba(13, 109, 204, 0);
   }
 }

 .spinner i {
   font-size: 18px;
 }

 .analysis-top h3 {
   position: relative;
   z-index: 1;
   font-size: 18px;
   color: var(--navy);
   margin: 0 0 3px;
   font-weight: 900;
 }

 .analysis-top p {
   position: relative;
   z-index: 1;
   font-size: 12.5px;
   color: #60758d;
   margin: 0;
   font-weight: 600;
 }

 .progressbar {
   height: 7px;
   background: #e2ebf5;
   border-radius: 999px;
   overflow: hidden;
 }

 .progressbar span {
   display: block;
   height: 100%;
   width: 0;
   background: linear-gradient(90deg, var(--blue), var(--orange));
   border-radius: inherit;
   transition: width 2.4s ease;
 }

 .analysis-caption {
   text-align: right;
   font-size: 12px;
   color: #667085;
   font-weight: 800;
 }

 .checks {
   display: grid;
   gap: 9px;
 }

 .check-row {
   background: #fff;
   border: 1px solid #e3edf7;
   border-radius: 13px;
   min-height: 46px;
   display: flex;
   align-items: center;
   gap: 11px;
   padding: 10px 13px;
   font-size: 13px;
   font-weight: 750;
   color: var(--text);
   box-shadow: 0 6px 16px rgba(4, 28, 57, .035);
 }

 .check-row .box {
   width: 29px;
   height: 29px;
   border-radius: 9px;
   background: #eafaf2;
   color: var(--green);
   display: grid;
   place-items: center;
   flex: 0 0 auto;
 }

 .check-row .lock {
   margin-left: auto;
   color: #8a98aa;
 }

 .match-teaser {
   display: none;
   position: relative;
   overflow: hidden;
   align-items: center;
   gap: 16px;
   margin-top: 4px;
   padding: 18px;
   border-radius: 18px;
   color: #fff;
   background: linear-gradient(135deg, #062448 0%, #0c3e73 100%);
   box-shadow: 0 18px 42px rgba(6, 36, 72, .22);
 }

 .match-teaser.show {
   display: flex !important;
   animation: resultReveal .35s ease;
 }

 @keyframes resultReveal {
   from {
     opacity: 0;
     transform: translateY(10px) scale(.98);
   }

   to {
     opacity: 1;
     transform: translateY(0) scale(1);
   }
 }

 .match-teaser .score-ring {
   position: relative;
   z-index: 1;
   width: 74px;
   height: 74px;
   border-radius: 50%;
   border: 4px solid rgba(255, 255, 255, .22);
   display: grid;
   place-items: center;
   text-align: center;
   flex: 0 0 74px;
   background: rgba(255, 255, 255, .10);
   box-shadow: inset 0 0 0 6px rgba(255, 255, 255, .04);
 }

 .match-teaser .score-ring b {
   display: block;
   font-size: 26px;
   line-height: 1;
   color: #fff;
 }

 .match-teaser .score-ring small {
   display: block;
   font-size: 9px;
   color: rgba(255, 255, 255, .74);
   font-weight: 900;
   text-transform: uppercase;
   margin-top: 2px;
 }

 .match-teaser h4 {
   position: relative;
   z-index: 1;
   max-width: 360px;
   font-size: 16px;
   line-height: 1.35;
   margin: 0 0 5px;
   color: #fff;
   font-weight: 900;
 }

 .match-teaser p {
   position: relative;
   z-index: 1;
   max-width: 420px;
   font-size: 13px;
   color: rgba(255, 255, 255, .78);
   line-height: 1.55;
   margin: 0;
   font-weight: 600;
 }

 .analysis-actions {
   display: flex;
   justify-content: flex-end;
   margin-top: 6px;
 }

 .analysis-actions .secondary-btn,
 #unlockBtn {
   min-height: 48px;
   padding: 0 20px;
   border-radius: 12px;
   display: none;
   align-items: center;
   justify-content: center;
   gap: 9px;
   background: linear-gradient(135deg, var(--orange), var(--orange2));
   color: #fff !important;
   border: 0 !important;
   font-size: 14px;
   font-weight: 950;
   box-shadow: 0 14px 30px rgba(242, 90, 33, .30);
   transition: .2s ease;
 }

 .analysis-actions .secondary-btn:hover,
 #unlockBtn:hover {
   transform: translateY(-1px);
   box-shadow: 0 18px 38px rgba(242, 90, 33, .40);
 }

 .verify-btn.loading,
 .cta-main.loading {
   opacity: .78;
   pointer-events: none;
 }

 .verify-btn:disabled,
 .cta-main:disabled {
   opacity: .58;
   cursor: not-allowed;
   box-shadow: none;
   transform: none;
 }

 .otp-block.show {
   display: block !important;
   animation: stepFade .25s ease;
 }

 .form-error.show,
 .otp-ok.show {
   display: block !important;
 }

 .otp-ok {
   display: none;
   color: var(--green);
   font-size: 12px;
   font-weight: 900;
   margin-top: 5px;
 }

 .form-error {
   display: none;
   color: #bd1717;
   font-size: 12px;
   font-weight: 800;
   margin-top: 5px;
 }

 .phone-row .field input.verified,
 #otp.verified {
   border-color: var(--green) !important;
   box-shadow: 0 0 0 4px rgba(22, 160, 93, .10) !important;
 }

 .phone-row .field input.invalid,
 #otp.invalid {
   border-color: #bd1717 !important;
   box-shadow: 0 0 0 4px rgba(189, 23, 23, .08) !important;
 }

 @media (max-width:560px) {
   .analysis-top {
     align-items: flex-start;
   }

   .match-teaser {
     align-items: flex-start;
     padding: 16px;
   }

   .match-teaser::after {
     display: none;
   }

   .match-teaser .score-ring {
     width: 62px;
     height: 62px;
     flex-basis: 62px;
   }

   .match-teaser .score-ring b {
     font-size: 22px;
   }

   .analysis-actions {
     justify-content: stretch;
   }

   .analysis-actions .secondary-btn,
   #unlockBtn {
     width: 100%;
   }
 }

 
/* =========================================================
   RESPONSIVE LAYOUT OVERRIDES
   CSS-only additions; HTML, JavaScript and PHP remain unchanged.
========================================================= */

html,
body {
  width: 100%;
  max-width: 100%;
}

body {
  overflow-x: hidden;
}

.wrap,
.header-wrap,
.hero-grid,
.checker-shell,
.wizard,
.wizard-inner,
.form-grid,
.phone-row,
.report-dashboard,
.report-hero-row,
.report-summary-grid,
.country-card,
.country-top,
.mini-grid,
.info-grid-2,
.how-grid,
.includes,
.stat-strip,
.tools-grid,
.footer-grid {
  min-width: 0;
}

.hero-copy,
.hero-student,
.checker-side,
.side-card > div,
.form-head > div,
.field,
.option-block,
.analysis-top > div,
.match-teaser > div,
.report-hero-row > div,
.country-top > div,
.compare-card,
.info-row > div,
.testimonial-user > div,
.tool-body,
.footer-item {
  min-width: 0;
}

h1,
h2,
h3,
h4,
p,
a,
button,
label,
span,
b,
small {
  overflow-wrap: break-word;
}

input,
select,
button,
textarea {
  max-width: 100%;
}

.report-tabs,
.tabs {
  max-width: 100%;
  overscroll-behavior-inline: contain;
}

.report-tabs .tab,
.tabs .tab {
  flex: 0 0 auto;
}

@media (max-width: 1200px) {
  .wrap {
    padding-left: 32px;
    padding-right: 32px;
  }

  .header-wrap {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-grid {
    gap: 36px;
  }

  .hero-copy h1 {
    font-size: clamp(42px, 4.4vw, 50px);
  }

  .student-glow {
    right: 8%;
  }

  .note-one {
    right: 1%;
  }

  .note-two {
    left: 1%;
  }

  .checker-shell {
    grid-template-columns: 265px minmax(0, 1fr);
  }

  .includes {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .include-card:nth-child(3n) {
    border-right: 0;
  }

  .include-card:nth-child(-n + 3) {
    border-bottom: 1px solid #dce6f0;
  }
}

@media (max-width: 1024px) {
  .header-wrap {
    max-width: none;
  }

  .header-nav {
    gap: 22px;
  }

  .hero {
    padding-top: 42px;
  }

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

  .hero-copy {
    max-width: 760px;
    margin: 0 auto;
  }

  .hero-copy h1,
  .hero-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-student {
    width: min(620px, 100%);
    margin: 0 auto;
  }

  .student-glow {
    right: 50%;
    transform: translateX(50%);
  }

  .note-one {
    right: 10%;
  }

  .note-two {
    left: 10%;
  }

  .checker-shell {
    grid-template-columns: 1fr !important;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
  }

  .checker-side {
    position: relative;
    top: auto;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }

  .side-card {
    display: block !important;
    padding: 0 !important;
    text-align: center !important;
  }

  .side-card:not(:last-of-type)::before {
    display: none !important;
  }

  .side-num {
    margin: 0 auto 8px !important;
  }

  .side-card p {
    font-size: 11px;
  }

  .side-note {
    grid-column: 1 / -1;
    justify-content: center;
    text-align: center;
    margin-top: 2px;
  }

  .wizard,
  .checker-shell .wizard {
    max-width: none !important;
  }

  .how-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 30px;
  }

  .how-item:not(:last-child)::after {
    display: none;
  }

  .stat-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat:nth-child(2) {
    border-right: 0;
  }

  .stat:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, .17);
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid .brand {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .footer-item {
    justify-content: center;
  }
}

@media (max-width: 860px) {
  .header-wrap {
    grid-template-columns: auto 1fr;
    gap: 16px;
  }

  .header-actions {
    justify-content: flex-end;
  }

  .header-nav {
    display: none;
  }

  .hero-copy h1 {
    font-size: clamp(36px, 6vw, 44px);
  }

  .checker-section,
  .testimonial-section,
  .tools-section,
  .faq-section {
    padding-top: 64px;
    padding-bottom: 54px;
  }

  .checker-head h2,
  .testimonial-head h2,
  .tools-head h2,
  .faq-head h2 {
    font-size: clamp(30px, 5vw, 36px);
  }

  .wizard-inner {
    padding: 24px 22px 22px;
  }

  .report-hero-row {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .report-status-badge {
    grid-column: 1 / -1;
  }

  .country-top {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .report-modal {
    padding: 16px;
  }

  .report-modal-card {
    max-height: calc(100dvh - 32px);
  }
}

@media (max-width: 768px) {
  .wrap {
    padding-left: 20px;
    padding-right: 20px;
  }

  .header-wrap {
    padding: 11px 18px;
  }

  .header-logo img {
    height: 38px;
  }

  .header-btn {
    height: 40px;
    padding: 0 13px;
  }

  .hero {
    padding: 36px 0 26px;
  }

  .hero-grid {
    gap: 14px;
  }

  .hero-copy p {
    font-size: 15px;
  }

  .hero-student {
    min-height: 310px;
  }

  .student-img {
    max-height: 320px;
    transform: scale(1.04);
  }

  .student-glow {
    width: 300px;
    height: 300px;
  }

  .note-one {
    right: 4%;
  }

  .note-two {
    left: 4%;
  }

  .checker-section {
    padding-left: 0;
    padding-right: 0;
  }

  .checker-shell {
    padding: 16px;
    border-radius: 22px;
  }

  .checker-side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .side-card {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    text-align: left !important;
  }

  .side-num {
    margin: 0 !important;
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
  }

  .side-note {
    justify-content: flex-start;
    text-align: left;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .chips {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .phone-row {
    grid-template-columns: minmax(0, 1fr) 120px;
  }

  .section {
    padding: 48px 0;
  }

  .section-title {
    font-size: 27px;
    gap: 14px;
  }

  .section-title::before,
  .section-title::after {
    max-width: 90px;
  }

  .how-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .includes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .include-card,
  .include-card:nth-child(3n) {
    border-right: 1px solid #dce6f0;
  }

  .include-card:nth-child(2n) {
    border-right: 0;
  }

  .include-card:nth-child(-n + 4) {
    border-bottom: 1px solid #dce6f0;
  }

  .include-card:nth-child(n + 5) {
    border-bottom: 0;
  }

  .stat {
    padding: 22px 24px;
  }

  .testimonial-slider-wrap {
    padding-left: 0;
    padding-right: 0;
  }

  .report-step .report-dashboard {
    padding: 20px;
  }

  .report-summary-grid,
  .mini-grid,
  .info-grid-2,
  .modal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .report-tabs {
    top: 62px;
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .country-card,
  .compare-card,
  .info-row,
  .roadmap-item,
  .faq-item {
    padding-left: 16px;
    padding-right: 16px;
  }

  .report-actions {
    gap: 8px;
  }

  .action-btn,
  .action-link {
    flex: 1 1 calc(50% - 8px);
    justify-content: center;
  }

  .faq-bottom-cta {
    padding: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-grid .brand {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .wrap {
    padding-left: 16px;
    padding-right: 16px;
  }

  .header-wrap {
    padding: 9px 12px;
    gap: 10px;
  }

  .header-logo img {
    height: 34px;
    max-width: 118px;
  }

  .header-actions {
    gap: 6px;
  }

  .header-btn {
    height: 38px;
    padding: 0 10px;
    border-radius: 9px;
    font-size: 12px;
  }

  .call-btn span {
    display: none;
  }

  .hero {
    padding-top: 30px;
  }

  .hero-copy h1 {
    font-size: clamp(31px, 9vw, 37px);
    line-height: 1.14;
  }

  .hero-copy p {
    line-height: 1.65;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 360px);
    margin-left: auto;
    margin-right: auto;
  }

  .hero-start,
  .secondary-btn {
    width: 100%;
    min-height: 48px;
    height: auto;
    padding: 13px 18px;
  }

  .hero-student {
    min-height: 270px;
  }

  .student-img {
    max-height: 280px;
    transform: none;
  }

  .student-glow {
    width: 250px;
    height: 250px;
  }

  .floating-note {
    max-width: 145px;
    white-space: normal;
    line-height: 1.25;
  }

  .note-one {
    top: 36px;
    right: 0;
  }

  .note-two {
    bottom: 28px;
    left: 0;
  }

  .hero-plus {
    display: none;
  }

  .checker-section,
  .testimonial-section,
  .tools-section,
  .faq-section {
    padding-top: 52px;
    padding-bottom: 44px;
  }

  .checker-head,
  .testimonial-head,
  .tools-head,
  .faq-head {
    margin-bottom: 28px;
  }

  .checker-head h2,
  .testimonial-head h2,
  .tools-head h2,
  .faq-head h2 {
    font-size: 28px;
  }

  .section-kicker,
  .tools-kicker {
    max-width: 100%;
    white-space: normal;
    justify-content: center;
    text-align: center;
  }

  .checker-shell {
    padding: 12px;
    border-radius: 18px;
  }

  .checker-side {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 14px;
  }

  .side-card {
    display: flex !important;
    padding: 0 !important;
  }

  .side-card h3 {
    font-size: 14px;
  }

  .side-card p {
    font-size: 11px;
  }

  .wizard,
  .checker-shell .wizard {
    border-radius: 17px;
  }

  .wizard-inner {
    padding: 18px 14px;
  }

  .form-head {
    align-items: flex-start;
  }

  .form-head h2 {
    font-size: 20px;
  }

  .chips {
    grid-template-columns: 1fr;
  }

  .cat-chips {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cat-chip {
    width: 100%;
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
  }

  .phone-row {
    grid-template-columns: 1fr;
  }

  .verify-btn {
    width: 100%;
  }

  .analysis-top,
  .match-teaser,
  .report-head {
    align-items: flex-start;
  }

  .match-teaser {
    flex-direction: column;
  }

  .match-teaser .score-ring {
    margin: 0 auto;
  }

  .analysis-actions,
  .analysis-actions .secondary-btn,
  #unlockBtn {
    width: 100%;
  }

  .cta-main {
    min-height: 52px;
    height: auto;
    padding: 13px 14px;
    line-height: 1.35;
  }

  .section {
    padding: 42px 0;
  }

  .section-title {
    font-size: 25px;
    display: block;
  }

  .section-title::before,
  .section-title::after {
    display: none;
  }

  .how-grid,
  .includes,
  .stat-strip {
    grid-template-columns: 1fr;
  }

  .how-grid {
    gap: 26px;
  }

  .include-card,
  .include-card:nth-child(2n),
  .include-card:nth-child(3n) {
    border-right: 0;
    border-bottom: 1px solid #dce6f0;
  }

  .include-card:last-child {
    border-bottom: 0;
  }

  .stat,
  .stat:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .17);
  }

  .stat:last-child {
    border-bottom: 0;
  }

  .stat {
    justify-content: flex-start;
    padding: 20px 22px;
  }

  .testimonial-card {
    padding: 20px;
  }

  .testimonial-top {
    gap: 10px;
  }

  .testimonial-user {
    gap: 10px;
  }

  .testimonial-user h3 {
    font-size: 15px;
  }

  .quote-icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .tools-head p,
  .faq-head p,
  .testimonial-head p {
    font-size: 14px;
  }

  .tool-img {
    height: 190px;
  }

  .tool-body {
    padding: 20px;
  }

  .tool-body h3 {
    font-size: 21px;
  }

  .faq-question {
    align-items: flex-start;
    padding: 17px 16px;
    gap: 12px;
  }

  .faq-question i {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .faq-answer p {
    padding: 0 16px 18px;
  }

  .faq-bottom-cta {
    flex-direction: column;
    text-align: center;
  }

  .faq-bottom-cta a {
    width: 100%;
  }

  .report-step .report-dashboard {
    margin-left: 0;
    margin-right: 0;
    padding: 16px;
    border-radius: 16px;
  }

  .report-hero-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .report-score-ring,
  .report-status-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .report-summary-grid,
  .mini-grid,
  .info-grid-2,
  .modal-grid {
    grid-template-columns: 1fr;
  }

  .report-title {
    font-size: 22px;
  }

  .report-tabs {
    top: 56px;
    margin-left: -14px;
    margin-right: -14px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .panel-head,
  .country-actions,
  .report-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .country-top {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .country-top .badge {
    grid-column: 1 / -1;
    width: fit-content;
  }

  .details-btn,
  .action-btn,
  .action-link {
    width: 100%;
    flex: 1 1 100%;
    justify-content: center;
  }

  .report-actions {
    margin-left: -14px;
    margin-right: -14px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .report-modal {
    align-items: flex-end;
    padding: 0;
  }

  .report-modal-card {
    width: 100%;
    max-height: 92dvh;
    border-radius: 20px 20px 0 0;
  }

  .report-modal-head {
    padding: 15px 16px;
  }

  .report-modal-head h3 {
    font-size: 17px;
  }

  .report-modal-body {
    padding: 16px;
  }

  footer {
    padding: 26px 0;
  }

  .footer-grid {
    text-align: center;
  }

  .footer-item,
  .footer-grid .brand {
    justify-content: center;
  }
}

@media (max-width: 400px) {
  .header-logo img {
    max-width: 104px;
  }

  .header-btn {
    width: 38px;
    padding: 0;
  }

  .header-btn span {
    display: none;
  }

  .hero-copy h1 {
    font-size: 30px;
  }

  .hero-student {
    min-height: 245px;
  }

  .student-img {
    max-height: 250px;
  }

  .student-glow {
    width: 220px;
    height: 220px;
  }

  .floating-note {
    font-size: 10px;
    padding: 8px 10px;
    max-width: 125px;
  }

  .checker-shell {
    padding: 10px;
  }

  .wizard-inner {
    padding: 16px 12px;
  }

  .cat-chips {
    grid-template-columns: 1fr;
  }

  .analysis-top {
    padding: 13px;
  }

  .spinner {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .section-kicker,
  .tools-kicker {
    font-size: 10px;
  }

  .checker-head h2,
  .testimonial-head h2,
  .tools-head h2,
  .faq-head h2 {
    font-size: 26px;
  }

  .testimonial-top {
    align-items: center;
  }

  .user-avatar {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .report-tabs .tab {
    padding: 9px 11px;
    font-size: 11px;
  }
}

@media (max-height: 520px) and (orientation: landscape) {
  .site-header {
    position: relative;
  }

  .hero {
    min-height: auto;
  }

  .report-modal-card {
    max-height: calc(100dvh - 16px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
