:root {
  --ink: #0c0f0b;
  --ink-soft: #12150f;
  --paper: #f3f4ef;
  --paper-dim: #e6e7df;
  --green: #3fa636;
  --green-bright: #6ed94f;
  --graphite: #171a14;
  --steel: #9a9f92;
  --steel-dim: #6c7166;
  --line: #2a2e24;
  --line-light: #d8dacf;
  --display: "Big Shoulders Display", sans-serif;
  --body: "Manrope", sans-serif;
  --mono: "Space Mono", monospace;
  --radius: 2px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
}
.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
}
.logo,
.hero h1,
.section-head h2,
.offer-price,
.about-copy h2,
.cta-band h2 {
  font-weight: 800;
}

.logo img {
  width: 70px;
}

/* ---------- road-line scroll spine ---------- */
#roadline {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: repeating-linear-gradient(
    90deg,
    var(--green) 0 24px,
    transparent 24px 44px
  );
  background-size: 44px 4px;
  z-index: 999;
  transform-origin: left;
  transform: scaleX(0);
}

/* ---------- sign badge (section eyebrow) ---------- */
.sign {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--green-bright);
  padding: 5px 12px 5px 10px;
  border-radius: 3px;
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
}
.sign.on-dark {
  color: var(--ink);
}

/* ================= NAV ================= */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 15, 11, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
nav.wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 86px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  color: var(--paper);
  font-size: 22px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.logo .mark {
  width: 34px;
  height: 34px;
  border: 2px solid var(--green-bright);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-bright);
  font-size: 14px;
}
.logo span {
  color: var(--green-bright);
}
.logo small {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--steel);
  text-transform: uppercase;
  font-weight: 400;
}
.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}
.nav-links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--steel);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--paper);
}
.nav-links a.active {
  color: var(--green-bright);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.phone-pill {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--paper);
  display: flex;
  align-items: center;
  gap: 8px;
}
.phone-pill svg {
  width: 14px;
  height: 14px;
  stroke: var(--green-bright);
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--paper);
}

/* ================= BUTTONS ================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 24px;
  border-radius: 2px;
  border: 2px solid transparent;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}
.btn-primary {
  background: var(--green-bright);
  color: var(--ink);
  border-color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}
.btn-primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}
.btn-primary:active {
  transform: translate(0, 0);
  box-shadow: 2px 2px 0 var(--ink);
}
.btn-ghost {
  background: transparent;
  color: var(--paper);
  border-color: var(--steel-dim);
}
.btn-ghost:hover {
  border-color: var(--green-bright);
  color: var(--green-bright);
}
.btn-wa {
  background: #171a14;
  color: var(--paper);
  border: 2px solid #25d366;
}
.btn-wa svg {
  width: 16px;
  height: 16px;
  fill: #25d366;
}
.btn-wa:hover {
  background: #25d366;
  color: var(--ink);
}
.btn-wa:hover svg {
  fill: var(--ink);
}
.btn-block {
  width: 100%;
  justify-content: center;
}

/*================ HERO ================*/

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;

  background: url("/images/hero.jpeg") center center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(10, 10, 10, 0.72), rgba(10, 10, 10, 0.72));
}

.hero .wrap {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 900px;
  margin: auto;
}

.hero-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--ink);
  letter-spacing: 2px;
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(52px, 8vw, 95px);
  line-height: 0.95;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--green-bright);
}

.hero-dash {
  width: 120px;
  height: 5px;
  background: var(--green);
  margin: 30px auto;
  border-radius: 30px;
}

.hero-text {
  max-width: 700px;
  margin: auto;
  color: #d5d5d5;
  font-size: 19px;
  line-height: 1.8;
}

.hero-actions {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.dash-strip {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.dash-item {
  padding: 25px 15px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}

.dash-num {
  color: var(--green-bright);
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 8px;
}

.dash-label {
  color: #d9d9d9;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/*================ Responsive ================*/

@media (max-width: 991px) {
  .hero {
    min-height: 90vh;
  }

  .hero h1 {
    font-size: 60px;
  }

  .dash-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 120px 0 80px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* ================= TRUST STRIP ================= */
.trust {
  background: var(--paper);
  border-bottom: 1px solid var(--line-light);
  position: relative;
}
.checkpoints {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 64px 0 56px;
}
.checkpoint-line {
  position: absolute;
  top: 57px;
  left: 6%;
  right: 6%;
  height: 0;
  border-top: 3px dashed var(--green);
  opacity: 0.45;
  z-index: 0;
}
.checkpoint {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}
.checkpoint-tag {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}
.checkpoint-badge {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--ink);
  border: 3px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 7px var(--paper),
    0 10px 22px rgba(12, 15, 11, 0.18);
  margin-bottom: 12px;
}
.checkpoint-badge svg {
  width: 32px;
  height: 32px;
  stroke: var(--green-bright);
}
.checkpoint h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.checkpoint p {
  font-size: 13px;
  color: var(--steel-dim);
  max-width: 190px;
}
@media (max-width: 720px) {
  .checkpoints {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 48px 0;
  }
  .checkpoint-line {
    top: 0;
    bottom: 0;
    left: 50%;
    right: auto;
    width: 0;
    height: auto;
    border-top: none;
    border-left: 3px dashed var(--green);
  }
}

/* ================= SECTION SHELL ================= */
section {
  padding: 96px 0;
}
.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}
.section-head .sign {
  margin-bottom: 18px;
}
.section-head h2 {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.02;
}
.section-head p {
  color: var(--steel-dim);
  margin-top: 14px;
  font-size: 16px;
  max-width: 520px;
}
.dark .section-head h2 {
  color: var(--paper);
}
.dark .section-head p {
  color: var(--steel);
}

/* ================= SERVICES ================= */
.services {
  background: var(--ink);
  color: var(--paper);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card {
  background: var(--ink);
  padding: 34px 26px;
  position: relative;
  transition: background 0.2s;
}
.service-card:hover {
  background: var(--ink-soft);
}
.service-index {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--green-bright);
  letter-spacing: 0.1em;
}
.service-card svg {
  width: 36px;
  height: 36px;
  stroke: var(--green-bright);
  margin: 18px 0 20px;
}
.service-card h3 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 13.5px;
  color: var(--steel);
}
.service-tag {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink);
  background: var(--green-bright);
  padding: 3px 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
}

/* ================= OFFER ================= */
.offer {
  position: relative;
  color: var(--ink);
  padding: 100px 0;
  overflow: hidden;
  background: var(--ink);
}
.offer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(
      100deg,
      var(--ink) 0%,
      var(--ink) 36%,
      rgba(12, 15, 11, 0.62) 58%,
      rgba(12, 15, 11, 0.18) 100%
    ),
    url("/images/offer.png") right center/cover no-repeat;
}
.offer .wrap {
  position: relative;
  z-index: 1;
  padding: 0 32px;
}
.ticket {
  display: flex;
  max-width: 800px;
  background: var(--paper);
  border-radius: 6px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
  transform: rotate(-1.4deg);
}
.ticket-stub {
  flex: 0 0 220px;
  padding: 38px 26px;
  background: var(--green-bright);
  border-radius: 6px 0 0 6px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}
.ticket-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.ticket-price {
  font-family: var(--display);
  font-weight: 800;
  font-size: 58px;
  line-height: 0.9;
  text-transform: uppercase;
}
.ticket-price small {
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 600;
  text-transform: none;
}
.ticket-sub {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink);
  opacity: 0.65;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.ticket-divider {
  position: relative;
  width: 0;
  border-left: 3px dashed rgba(12, 15, 11, 0.3);
  margin: 22px 0;
}
.ticket-divider::before,
.ticket-divider::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--ink);
}
.ticket-divider::before {
  top: -35px;
}
.ticket-divider::after {
  bottom: -35px;
}
.ticket-main {
  flex: 1;
  padding: 34px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.ticket-main h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 26px;
  text-transform: uppercase;
  line-height: 1.1;
}
.ticket-main p {
  font-size: 14.5px;
  color: var(--steel-dim);
  max-width: 340px;
}
.ticket-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.ticket-fine {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--steel-dim);
  letter-spacing: 0.04em;
}
@media (max-width: 680px) {
  .ticket {
    flex-direction: column;
    transform: rotate(0);
  }
  .ticket-stub {
    border-radius: 6px 6px 0 0;
    flex: none;
  }
  .ticket-divider {
    width: auto;
    border-left: none;
    border-top: 3px dashed rgba(12, 15, 11, 0.3);
    margin: 0 22px;
  }
  .ticket-divider::before,
  .ticket-divider::after {
    top: 50%;
    transform: translateY(-50%);
  }
  .ticket-divider::before {
    left: -13px;
  }
  .ticket-divider::after {
    left: auto;
    right: -13px;
  }
}

/* ================= ABOUT ================= */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.about-photo {
  position: relative;
  border: 1px solid var(--line-light);
  background: var(--paper-dim);
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}
.about-photo svg {
  width: 72px;
  height: 72px;
  stroke: var(--steel-dim);
}
.about-photo p {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--steel-dim);
  text-align: center;
  padding: 0 24px;
  letter-spacing: 0.03em;
}
.about-photo .plate-mini {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 10px;
  padding: 6px 10px;
  border-radius: 2px;
  letter-spacing: 0.08em;
}
.about-copy .sign {
  margin-bottom: 20px;
}
.about-copy h2 {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.04;
  margin-bottom: 6px;
}
.about-role {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 20px;
  display: block;
}
.about-copy p.body-text {
  font-size: 16px;
  color: var(--steel-dim);
  margin-bottom: 26px;
  max-width: 480px;
}
.about-stats {
  display: flex;
  gap: 36px;
  margin-bottom: 28px;
}
.about-stats div {
  font-family: var(--mono);
}
.about-stats .num {
  font-size: 24px;
  font-weight: 700;
  color: var(--green);
}
.about-stats .lbl {
  font-size: 10px;
  color: var(--steel-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/*=========================
WHY CHOOSE + SERVICES
==========================*/

.why-services {
  background: #0b0b0b;
  color: #fff;
  padding: 110px 0;
}

.section-title {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}

.section-title h2 {
  font-family: var(--display);
  font-size: clamp(34px, 5vw, 56px);
  text-transform: uppercase;
  margin: 18px 0;
  color: #fff;
}

.section-title p {
  color: #a9a9a9;
  line-height: 1.8;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 100px;
}

.why-card {
  display: flex;
  align-items: flex-start;
  gap: 22px;

  background: #121212;

  border: 1px solid rgba(110, 217, 79, 0.18);

  padding: 30px;

  transition: 0.35s;
}

.why-card:hover {
  transform: translateY(-8px);

  border-color: var(--green-bright);

  box-shadow: 0 15px 35px rgba(110, 217, 79, 0.08);
}

.why-icon {
  width: 70px;
  height: 70px;

  border: 2px solid var(--green-bright);

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--green-bright);

  font-size: 28px;

  flex-shrink: 0;
}

.why-content h3 {
  font-family: var(--display);

  font-size: 28px;

  text-transform: uppercase;

  margin-bottom: 10px;
}

.why-content p {
  color: #9e9e9e;

  line-height: 1.7;
}

.service-heading {
  margin-bottom: 55px;
}

.service-boxes {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 22px;
}

.service-box {
  background: #121212;

  border: 1px solid rgba(110, 217, 79, 0.18);

  padding: 40px 30px;

  transition: 0.35s;

  position: relative;

  overflow: hidden;
}

.service-box::before {
  content: "";

  position: absolute;

  left: 0;

  top: 0;

  width: 5px;

  height: 100%;

  background: var(--green-bright);
}

.service-box:hover {
  transform: translateY(-8px);

  border-color: var(--green-bright);
}

.service-box span {
  color: var(--green-bright);

  font-family: var(--mono);

  font-size: 13px;

  letter-spacing: 2px;

  display: block;

  margin-bottom: 18px;
}

.service-box h3 {
  font-family: var(--display);

  font-size: 30px;

  line-height: 1.2;

  text-transform: uppercase;
}

/*====================
Responsive
====================*/

@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .service-boxes {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .why-services {
    padding: 80px 0;
  }

  .section-title {
    margin-bottom: 50px;
  }

  .why-card {
    flex-direction: column;
  }

  .why-content h3 {
    font-size: 24px;
  }

  .service-boxes {
    grid-template-columns: 1fr;
  }

  .service-box h3 {
    font-size: 24px;
  }
}

/*======================================
COVERAGE AREA
======================================*/

.coverage-section {
  padding: 50px 0;
  background: var(--paper);
}

.coverage-header {
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
}

.coverage-header .sign {
  margin-bottom: 18px;
}

.coverage-header h2 {
  font-family: var(--display);
  font-size: clamp(34px, 5vw, 54px);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 18px;
  color: var(--ink);
}

.coverage-header p {
  font-size: 16px;
  color: var(--steel-dim);
  line-height: 1.8;
}

.coverage-map {
  overflow: hidden;
  border: 2px solid var(--line);
  border-radius: 4px;
  background: var(--paper-dim);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  transition: 0.35s ease;
}

.coverage-map img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.coverage-map:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.coverage-map:hover img {
  transform: scale(1.03);
}

/*=====================
Responsive
=====================*/

@media (max-width: 768px) {
  .coverage-header {
    margin-bottom: 40px;
  }

  .coverage-header h2 {
    font-size: 38px;
  }
}

@media (max-width: 576px) {
  .coverage-header h2 {
    font-size: 32px;
  }

  .coverage-header p {
    font-size: 15px;
  }
}

/*======================================
STUDENT SUCCESS
======================================*/

/*======================================
STUDENT SUCCESS
======================================*/

.success-section {
  padding: 100px 0;
  background: var(--ink);
}

.success-header {
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
}

.success-header .sign {
  margin-bottom: 18px;
}

.success-header h2 {
  font-family: var(--display);
  font-size: clamp(34px, 5vw, 54px);
  text-transform: uppercase;
  color: var(--paper);
  line-height: 1;
  margin-bottom: 18px;
}

.success-header p {
  color: var(--steel);
  line-height: 1.8;
  font-size: 16px;
}

/* Swiper */

.successSwiper {
  padding-bottom: 70px;
}

.successSwiper .swiper-slide {
  height: auto;
}

.success-card {
  background: var(--graphite);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: 0.35s ease;
  height: 100%;
}

.success-card:hover {
  transform: translateY(-8px);
  border-color: var(--green);
}

.success-image {
  aspect-ratio: 4/5;
  overflow: hidden;
}

.success-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.5s ease;
}

.success-card:hover img {
  transform: scale(1.08);
}

.success-content {
  padding: 22px;
}

.success-badge {
  display: inline-block;
  background: var(--green-bright);
  color: var(--ink);
  padding: 6px 12px;
  border-radius: 3px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.success-content h3 {
  font-family: var(--display);
  font-size: 28px;
  color: var(--paper);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.success-content p {
  color: var(--steel);
  font-size: 14px;
}

/* Navigation */

.successSwiper .swiper-button-next,
.successSwiper .swiper-button-prev {
  color: var(--green-bright);
  width: 48px;
  height: 48px;
}

.successSwiper .swiper-button-next::after,
.successSwiper .swiper-button-prev::after {
  font-size: 22px;
  font-weight: bold;
}

/* Pagination */

.successSwiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ffffff;
  opacity: 0.35;
}

.successSwiper .swiper-pagination-bullet-active {
  background: var(--green-bright);
  opacity: 1;
}

/* Responsive */

@media (max-width: 768px) {
  .success-section {
    padding: 80px 0;
  }

  .success-header {
    margin-bottom: 40px;
  }

  .success-content h3 {
    font-size: 24px;
  }

  .successSwiper .swiper-button-next,
  .successSwiper .swiper-button-prev {
    display: none;
  }
}
/* ================= REVIEWS ================= */
.reviews {
  background: var(--ink);
  color: var(--paper);
}
.review-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.review-card {
  background: var(--ink);
  padding: 32px 28px;
}
.stars {
  color: var(--green-bright);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.review-card blockquote {
  font-size: 15px;
  line-height: 1.6;
  color: var(--paper);
  margin-bottom: 20px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--steel);
}
.review-author .dot {
  width: 8px;
  height: 8px;
  background: var(--green-bright);
  border-radius: 50%;
}

/* ================= CTA BAND ================= */
.cta-band {
  background: var(--paper);
  border-top: 1px solid var(--line-light);
}
.cta-band .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 64px 32px;
}
.cta-band h2 {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(26px, 3.4vw, 38px);
  max-width: 520px;
  line-height: 1.05;
}
.cta-band-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ================= FOOTER ================= */
footer {
  background: var(--ink);
  color: var(--steel);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .logo {
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 13.5px;
  color: var(--steel-dim);
  max-width: 240px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.2s,
    color 0.2s;
  color: var(--steel);
}
.footer-social a:hover {
  border-color: var(--green-bright);
  color: var(--green-bright);
}
.footer-social svg {
  width: 16px;
  height: 16px;
}
footer h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 18px;
}
footer ul li {
  margin-bottom: 11px;
}
footer ul a {
  font-size: 14px;
  color: var(--steel);
  transition: color 0.2s;
}
footer ul a:hover {
  color: var(--paper);
}
.footer-contact li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  align-items: flex-start;
}
.footer-contact svg {
  width: 16px;
  height: 16px;
  stroke: var(--green-bright);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--steel-dim);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a:hover {
  color: var(--paper);
}

/* ================= WHATSAPP FLOAT ================= */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s;
}
.wa-float:hover {
  transform: scale(1.08);
}
.wa-float svg {
  width: 28px;
  height: 28px;
  fill: #0c0f0b;
}

/* ================= REVEAL ================= */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  #roadline {
    transition: none;
  }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 980px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .checkpoints {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
  }
  .checkpoint-line {
    display: none;
  }
  .review-track {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    background: var(--ink);
    flex-direction: column;
    padding: 20px 32px 30px;
    gap: 12px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    transition: transform 0.25s ease;
  }
  .nav-links.open {
    transform: translateY(0);
  }
  .nav-links a {
    padding: 5px 0;
    width: 100%;
  }
  .phone-pill {
    display: none;
  }
  .menu-toggle {
    display: block;
  }

  .dash-item {
    flex: 1 1 50%;
    padding-right: 12px;
    margin-bottom: 8px;
  }
  .dash-item + .dash-item {
    border-left: none;
    padding-left: 0;
  }
  .dash-item:nth-child(even) {
    border-left: 1px solid var(--line);
    padding-left: 16px;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .offer .wrap {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .cta-band .wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

/*======================================
CONTACT US PAGE
======================================*/

.contactus-section {
  padding: 100px 0;
  background: var(--paper);
}

.contactus-header {
  max-width: 700px;
  margin: 0 auto 70px;
  text-align: center;
}

.contactus-header .sign {
  margin-bottom: 20px;
}

.contactus-header h2 {
  font-family: var(--display);
  font-size: clamp(34px, 5vw, 54px);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 18px;
}

.contactus-header p {
  color: var(--steel-dim);
  font-size: 16px;
  line-height: 1.8;
}

/*=====================
LAYOUT
=====================*/

.contactus-wrapper {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 45px;
  align-items: start;
}

/*=====================
CONTACT INFO
=====================*/

.contactus-card {
  background: var(--ink);
  color: var(--paper);
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 4px;
  position: sticky;
  top: 120px;
}

.contactus-card h3 {
  font-family: var(--display);
  font-size: 36px;
  text-transform: uppercase;
  margin-bottom: 35px;
}

.contactus-item {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contactus-item:last-child {
  border-bottom: none;
}

.contactus-item span {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 8px;
}

.contactus-item p {
  color: var(--steel);
  line-height: 1.7;
  font-size: 15px;
}

/*=====================
FORM
=====================*/

.contactus-formbox {
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: 4px;
  padding: 45px;
}

.contactus-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.contactus-group {
  margin-bottom: 22px;
}

.contactus-group label {
  display: block;
  margin-bottom: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel-dim);
}

.contactus-group input,
.contactus-group textarea {
  width: 100%;
  padding: 16px 18px;
  background: var(--paper);
  border: 1px solid var(--line-light);
  border-radius: 2px;
  font-family: var(--body);
  font-size: 15px;
  color: var(--ink);
  transition: 0.3s ease;
}

.contactus-group textarea {
  resize: vertical;
  min-height: 180px;
}

.contactus-group input::placeholder,
.contactus-group textarea::placeholder {
  color: var(--steel);
}

.contactus-group input:focus,
.contactus-group textarea:focus {
  outline: none;
  border-color: var(--green);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(110, 217, 79, 0.12);
}

.contactus-formbox .btn {
  margin-top: 8px;
}

/*=====================
HOVER
=====================*/

.contactus-card,
.contactus-formbox {
  transition: 0.35s ease;
}

.contactus-formbox:hover {
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.contactus-card:hover {
  transform: translateY(-3px);
}

/*=====================
RESPONSIVE
=====================*/

@media (max-width: 992px) {
  .contactus-wrapper {
    grid-template-columns: 1fr;
  }

  .contactus-card {
    position: static;
  }
}

@media (max-width: 768px) {
  .contactus-section {
    padding: 80px 0;
  }

  .contactus-header {
    margin-bottom: 50px;
  }

  .contactus-formbox {
    padding: 35px 28px;
  }

  .contactus-card {
    padding: 35px 28px;
  }

  .contactus-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 576px) {
  .contactus-section {
    padding: 70px 0;
  }

  .contactus-header h2 {
    font-size: 34px;
  }

  .contactus-header p {
    font-size: 15px;
  }

  .contactus-formbox,
  .contactus-card {
    padding: 24px;
  }

  .contactus-card h3 {
    font-size: 28px;
  }

  .contactus-group input,
  .contactus-group textarea {
    padding: 14px 16px;
  }

  .contactus-formbox .btn {
    width: 100%;
    justify-content: center;
  }
}
