/* ============================================================
   RigMac — COMPILED stylesheet (generated from scss/main.scss)
   Do not edit by hand: edit the SCSS partials and recompile with
       sass scss/main.scss css/main.css
   This file is committed so the template renders without a build step.
   ============================================================ */

/* ---- base/_fonts.scss ---- */
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/poppins-400.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/poppins-500.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/poppins-600.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 700; font-display: swap; src: url("../fonts/poppins-700.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 800; font-display: swap; src: url("../fonts/poppins-800.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 900; font-display: swap; src: url("../fonts/poppins-900.woff2") format("woff2"); }

/* ---- base/_tokens.scss ---- */
:root {
  --ink: #0d0a04;
  --royal: #0a66bb;
  --royal-dark: #095aa6;
  --royal-deep: #0a4f93;
  --cyan: #28c7ec;
  --cyan-dark: #209fbc;
  --tint: #e9f9fd;
  --tint-2: #d4f3fb;
  --maple: #e8462d;
  --line: rgba(13, 10, 4, 0.1);
  --line-w: rgba(255, 255, 255, 0.22);
  --white: #ffffff;
  --neutral-lightest: #f2f2f2;
  --neutral-lighter: #dadad9;
  --white-10: rgba(255, 255, 255, 0.1);
  --white-20: rgba(255, 255, 255, 0.2);
  --white-40: rgba(255, 255, 255, 0.4);
  --white-60: rgba(255, 255, 255, 0.6);
  --font-heading: "Poppins", system-ui, sans-serif;
  --font-body: "Manrope", "Inter", system-ui, sans-serif;
  --radius-button: 0.625rem;
  --radius-badge: 6.25rem;
  --radius-card: 1rem;
  --radius-image: 1rem;
  --radius-form: 0.75rem;
  --radius-checkbox: 0.25rem;
  --container-max: 80rem;
  --space-section-x: 5%;
  --text-large: 1.625rem;
  --text-medium: 1.25rem;
  --text-regular: 1.125rem;
  --text-small: 1rem;
  --text-tiny: 0.75rem;
}
@media (max-width: 991px) {
  :root {
    --text-large: 1.125rem;
    --text-medium: 1rem;
    --text-regular: 0.875rem;
    --text-small: 0.875rem;
    --text-tiny: 0.6875rem;
  }
}

/* ---- base/_reset.scss ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--text-small);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
input, select, textarea { font-family: inherit; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }

/* ---- base/_typography.scss ---- */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-section-x);
}
.section { padding-block: 3rem; }
@media (min-width:1600px){
  .section { padding-block: 5.5rem; }
}
.section--sm { padding-block: 3.5rem; }
.section--flush-top { padding-top: 0; }
.display {
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.02;
}
.section-head { max-width: 56rem; margin: 0 auto 3rem; text-align: center; }
.section-head__title {
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
  font-size: clamp(2rem, 4vw, 3.25rem);
}
.section-head__lead {
  margin-top: 14px;
  font-size: var(--text-regular);
  line-height: 1.65;
  color: rgba(13, 10, 4, 0.6);
}
.section-head--inverse .section-head__title { color: #fff; }
.section-head--inverse .section-head__lead { color: rgba(255, 255, 255, 0.85); }
.u-center { text-align: center; }
.u-accent { color: var(--cyan); }

/* ---- layout/_header.scss ---- */
.site-header { position: sticky; top: 0; z-index: 1000; background: var(--ink); }
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 84px;
  padding-block: 10px;
}
.site-header__brand img { height: 46px; width: auto; }
.site-header__spacer { flex: 1; }
.site-header__actions { display: flex; align-items: center; gap: 26px; }

.phone-link { display: flex; align-items: center; gap: 12px; }
.phone-link__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.phone-link__label {
  display: block;
  font-size: var(--text-tiny);
  color: var(--white-60);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.phone-link__number {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  line-height: 1.1;
  transition: color 0.16s ease;
}
.phone-link:hover .phone-link__number { color: var(--cyan); }
.phone-link--final .phone-link__icon { width: 48px; height: 48px; }
.phone-link--final .phone-link__number { font-size: 1.6rem; }

/* ---- layout/_footer.scss ---- */
.site-footer {
  background: var(--cyan);
  color: var(--ink);
  text-align: center;
  padding: 28px 20px;
  font-size: var(--text-small);
}
.site-footer__brand { font-weight: 700; }
.site-footer__powered { margin-top: 6px; }
.site-footer__powered-name { font-weight: 700; }
.site-footer__powered a:hover{
  text-decoration: underline;
}
/* ---- components/_button.scss ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: var(--radius-button);
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: var(--text-small);
  padding: 15px 30px;
  white-space: nowrap;
  transition: all 0.18s ease-in-out;
}
.btn__arrow { transition: transform 0.2s ease; }
.btn:hover .btn__arrow { transform: translate(2px, -2px); }
.btn--cyan { background: var(--cyan); color: var(--ink); }
.btn--cyan:hover { background: var(--cyan-dark); }
.btn--royal { background: var(--royal); color: #fff; }
.btn--royal:hover { background: var(--royal-dark); }
.btn--white { background: #fff; color: var(--ink); }
.btn--white:hover { background: var(--neutral-lightest); }
.btn--ghost { background: transparent; color: #fff; border: 1.5px solid var(--white-40); }
.btn--ghost:hover { border-color: #fff; background: var(--white-10); }
.btn--lg { padding: 18px 38px; font-size: var(--text-regular); }
.btn--block { width: 100%; }

/* ---- components/_flag.scss ---- */
.flag { display: inline-block; border-radius: 50%; object-fit: cover; vertical-align: middle; flex: none; }
.m-icon { display: inline-block; vertical-align: middle; }
.m-icon--white { filter: brightness(0) invert(1); }
.feature-icon { position: relative; display: flex; align-items: center; justify-content: center; }
.feature-icon__dot {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--cyan);
  top: 4px;
  right: 6px;
  z-index: 0;
}
.feature-icon .m-icon { position: relative; z-index: 1; }

/* ---- components/_form.scss ---- */
.lead-form {
  background: var(--royal);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
  color: #fff;
}
@media (min-width:1200px){
  .lead-form {
    min-width: 560px;
    padding: 50px;
  }
}
.lead-form__title {
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
  font-size: 1.9rem;
  margin-bottom: 8px;
}
.lead-form__intro {
  font-size: var(--text-small);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
  margin-bottom: 22px;
}
.lead-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 16px; }
.lead-form__field { display: flex; flex-direction: column; gap: 5px; }
.lead-form__field--full { grid-column: 1 / -1; }
.lead-form__label {
  font-size: var(--text-tiny);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.01em;
}
.lead-form__input {
  background: transparent;
  border: 0;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  padding: 9px 2px;
  font-size: var(--text-small);
  transition: border-color 0.18s ease;
}
.lead-form__input::placeholder { color: rgba(255, 255, 255, 0.5); }
.lead-form__input:focus { outline: none; border-color: var(--cyan); }
.lead-form__input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(1); opacity: 0.85; cursor: pointer; }
textarea.lead-form__input { resize: vertical; min-height: 44px; }
.lead-form__checks { display: flex; gap: 24px; grid-column: 1 / -1; }
.lead-form__check {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: var(--text-small);
  font-weight: 600;
  cursor: pointer;
}
.lead-form__check input {
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: var(--radius-checkbox);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.12);
  display: grid;
  place-content: center;
  cursor: pointer;
  transition: all 0.15s ease;
}
.lead-form__check input::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--cyan);
  transform: scale(0);
  transition: transform 0.15s ease;
}
.lead-form__check input:checked { border-color: var(--cyan); }
.lead-form__check input:checked::after { transform: scale(1); }
.lead-form__submit { width: 100%; margin-top: 22px; }
.lead-form__success { text-align: center; padding: 26px 6px; }
.lead-form__success .lead-form__success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.lead-form__success h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
  font-size: 1.9rem;
  margin-bottom: 15px;
}
.lead-form__success p { font-size: var(--text-small); color: rgba(255, 255, 255, 0.85); }
.lead-form--glass {
  background: rgba(10, 102, 187, 0.8);
  /* border: 1px solid var(--white-20); */
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
}
.lead-form[hidden] { display: none; }

/* ---- components/_rating.scss ---- */
.stars { display: inline-flex; gap: 1px; color: #ffc857; line-height: 0; }
.stars svg { display: block; fill: currentColor; }
.google-rating { display: inline-flex; align-items: center; gap: 5px; }
.google-rating__score { font-weight: 700; font-size: var(--text-tiny); }

/* ---- sections/_hero.scss ---- */
.hero { position: relative; background: var(--ink); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 8, 8, 0.88) 0%, rgba(8, 8, 8, 0.7) 38%, rgba(8, 8, 8, 0.45) 70%, rgba(8, 8, 8, 0.55) 100%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
  padding-block: 4.5rem 5rem;
}
.hero__copy { color: #fff; 

}
@media (min-width:1200px){
  .hero__copy { 
    max-width: 480px;
}
}
.hero__title {
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.02;
  font-size: clamp(2.6rem, 5.2vw, 4.6rem);
  color: #fff;
}
.hero__subtitle {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
  margin-top: 14px;
  font-size: clamp(1.1rem, 2.3vw, 1.9rem);
  color: #fff;
}
.hero__subtitle .u-accent { color: var(--cyan); }
.awards { margin-top: 38px; }
.awards__label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1.05;
  font-size: var(--text-small);
  color: var(--white-60);
  margin-bottom: 16px;
}
.awards__label::after { content: ""; flex: 1; height: 1px; background: var(--white-20); }
.awards__list { display: flex; gap: 14px; flex-wrap: wrap; }
.awards__badge {
  background: #fff;
  border-radius: 14px;
  padding: 14px 18px;
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
  flex: none;
}
.awards__badge img { height: 100%; width: auto; object-fit: contain; }
.canadian-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  background: rgba(255,255,255,.5);
  color: var(--ink);
  border-radius: var(--radius-badge);
  padding: 9px 18px;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.05;
  font-size: var(--text-tiny);
}
@media (max-width: 991px) {
  .hero__inner { grid-template-columns: 1fr; gap: 36px; padding-block: 3rem 3.5rem; }
}

/* ---- sections/_process.scss ---- */
.process { background: var(--tint); }
.process__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.process__step { padding: 14px 26px; text-align: center; border-left: 1px solid rgba(13, 10, 4, 0.1); }
.process__step:first-child { border-left: 0; }
.process__icon { width: 74px; height: 74px; margin: 0 auto 16px; }
.process__icon .feature-icon__dot { top: 6px; right: 8px; }
.process__title {
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.process__text { font-size: var(--text-small); color: rgba(13, 10, 4, 0.6); line-height: 1.5; }
@media (max-width: 991px) {
  .process__grid { grid-template-columns: 1fr 1fr; }
  .process__step { border-left: 0; border-top: 1px solid rgba(13, 10, 4, 0.1); padding-block: 24px; }
}
@media (max-width: 600px) {
  .process__grid { grid-template-columns: 1fr; }
}

/* ---- sections/_services.scss ---- */
.services__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 40px; }
.services__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.services__col-title {
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
  font-size: 1.5rem;
  margin-bottom: 14px;
}
.services__col-text { font-size: var(--text-small); color: rgba(13, 10, 4, 0.66); line-height: 1.65; margin-bottom: 12px; }
.service-card {
  position: relative;
  border-radius: var(--radius-image);
  overflow: hidden;
  aspect-ratio: 16 / 8.5;
  display: flex;
  align-items: flex-end;
}
.service-card__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(13, 10, 4, 0.62), rgba(13, 10, 4, 0.15)); }
.service-card:hover .service-card__img { transform: scale(1.05); }
.service-card__label { 
  position: relative; z-index: 1; margin-left: 40px; margin-right: auto; display: flex; align-items: center; gap: 16px; color: #fff;
  margin-bottom: 25px;
 }
 @media (max-width:767){
  .service-card__label { 
    margin: 15px;
  }
 }
.service-card__label-text {
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1;
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
}
.rates {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 280px 1fr;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(13, 10, 4, 0.08);
}
.rates__head { position: relative; background: var(--royal); color: #fff; display: flex; align-items: center; padding: 50px 34px; }
.rates__head::after {
  content: "";
  position: absolute;
  right: -26px;
  top: 0;
  bottom: 0;
  width: 52px;
  background: var(--royal);
  clip-path: polygon(0 0, 50% 50%, 0 100%);
  z-index: 2;
}
.rates__title {
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
  font-size: 1.6rem;
}
.rates__cells { display: grid; grid-template-columns: repeat(4, 1fr); background: #fafafa; }
.rates__cell { padding: 28px 26px; border-left: 1px dashed rgba(13, 10, 4, 0.18); display: flex; flex-direction: column; justify-content: center; }
.rates__cell:nth-child(even) { background: var(--tint); }
.rates__cell-label {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.05;
  font-size: var(--text-small);
  color: rgba(13, 10, 4, 0.7);
  margin-bottom: 8px;
}
.rates__price { font-family: var(--font-heading); font-weight: 800; font-size: 1.7rem; color: var(--ink); }
.rates__price--small { font-size: 1.05rem; line-height: 1.2; }
.rates__price-tax { font-size: var(--text-tiny); font-weight: 700; color: rgba(13, 10, 4, 0.5); margin-left: 3px; }
@media (max-width: 991px) {
  .services__cols { grid-template-columns: 1fr; }
  .rates { grid-template-columns: 1fr; }
  .rates__head::after { display: none; }
  .rates__cells { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .services__cards { grid-template-columns: 1fr; }
  .rates__cells { grid-template-columns: 1fr; }
}

/* ---- sections/_junk.scss ---- */
.junk-banner { background: #f2f2f2; }
.junk-banner__inner { display: flex; align-items: center; justify-content: center; gap: 16px; padding: 28px; 

}

@media (min-width: 600px) {
  .junk-banner__inner {
    padding: 40px; 
  }
}
.junk-banner__title {
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}
.junk { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.junk__title {
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.junk__text { font-size: var(--text-small); color: rgba(13, 10, 4, 0.66); line-height: 1.65; margin-bottom: 28px; }
.pricing { background: #fff; border-radius: var(--radius-card); box-shadow: 0 16px 40px rgba(13, 10, 4, 0.1); overflow: hidden; }
.pricing__head { position: relative; background: var(--royal); color: #fff; text-align: center; padding: 24px 28px 30px; }
.pricing__head::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%);
  border: 16px solid transparent;
  border-top-color: var(--royal);
  border-bottom: 0;
}
.pricing__title {
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.pricing__intro { font-size: var(--text-small); color: rgba(255, 255, 255, 0.85); line-height: 1.5; }
.pricing__rows { padding: 26px 26px 30px; }
.pricing__row { display: flex; align-items: center; gap: 16px; padding: 14px 8px; border-radius: 8px; }
.pricing__row:nth-child(even) { background: #f6f6f6; }
.pricing__check { width: 30px; height: 30px; border-radius: 7px; background: var(--royal); display: flex; align-items: center; justify-content: center; flex: none; }
.pricing__name {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  font-size: var(--text-small);
  flex: 1;
}
.pricing__price { font-family: var(--font-heading); font-weight: 800; font-size: 1.5rem; }
.pricing__price-tax { font-size: var(--text-tiny); font-weight: 700; color: rgba(13, 10, 4, 0.5); margin-left: 3px; }
.remove__intro { font-size: var(--text-small); color: rgba(13, 10, 4, 0.62); line-height: 1.6; margin-bottom: 24px; }
.remove__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.remove__item { padding: 22px 10px; text-align: center; }
.remove__icon { width: 58px; height: 58px; margin: 0 auto 12px; }
.remove__icon .feature-icon__dot { width: 14px; height: 14px; top: 2px; right: 6px; }
.remove__label { font-family: var(--font-heading); font-weight: 600; font-size: var(--text-small); line-height: 1.25; }
.trailer {
  grid-column: span 2;
  background: var(--royal);
  color: #fff;
  border-radius: var(--radius-card);
  padding: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.trailer__title {
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.trailer__text { font-size: var(--text-tiny); color: rgba(255, 255, 255, 0.85); margin-bottom: 8px; }
.trailer__dims {
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  font-size: var(--text-small);
}
@media (max-width: 991px) {
  .junk { grid-template-columns: 1fr; }
  .remove__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .remove__grid { grid-template-columns: 1fr; }
  .trailer { grid-column: 1 / -1; }
}

/* ---- sections/_about.scss ---- */
.additional__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 36px; }
.additional__card { display: flex; flex-direction: column; border-radius: var(--radius-card); overflow: hidden; box-shadow: 0 10px 26px rgba(13, 10, 4, 0.1); transition: transform 0.2s ease; }
.additional__card:hover { transform: translateY(-5px); }
.additional__pic { aspect-ratio: 4 / 3; overflow: hidden; flex: none; }
.additional__pic img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.additional__card:hover .additional__pic img { transform: scale(1.06); }
.additional__caption {
  flex: 1;
  min-height: 84px;
  background: var(--royal);
  color: #fff;
  text-align: center;
  padding: 20px 16px;
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.2;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about { background: var(--tint); }
.about__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
@media (max-width:1023px){
  .about__grid {
    gap: 30px;
  }
}
.about__media { position: relative; }
.about__badge {
  position: absolute;
  top: -22px;
  left: -22px;
  width: 116px;
  height: 128px;
  background: var(--royal);
  color: #fff;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 14px 34px rgba(10, 102, 187, 0.45);
  border: 3px solid var(--cyan);
  z-index: 2;
}
@media (max-width:767px){
  .about__badge {
    left: -15px;
  }
}
.about__badge-num { font-family: var(--font-heading); font-weight: 800; font-size: 2.5rem; line-height: 1; }
.about__badge-years {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.05;
  font-size: 11px;
}
.about__badge-label { font-size: 9px; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255, 255, 255, 0.8); margin-top: 2px; }
.about__collage { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.about__photo { border-radius: 14px; overflow: hidden; box-shadow: 0 12px 30px rgba(13, 10, 4, 0.16); }
.about__photo img { width: 100%; height: 100%; object-fit: cover; }
.about__photo--tall { grid-row: span 2; aspect-ratio: 3 / 4.4; }
.about__photo--square { aspect-ratio: 4 / 3; }
.about__title {
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 8px;
}
.about__title .u-accent { color: var(--cyan); }
.about__tagline { font-family: var(--font-heading); font-weight: 700; color: var(--royal); font-size: var(--text-medium); margin-bottom: 18px; }
.about__text { font-size: var(--text-small); color: rgba(13, 10, 4, 0.7); line-height: 1.7; margin-bottom: 14px; }
.about__text b { color: var(--ink); }
.values { display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 4rem; }
.values__item { text-align: center; padding: 8px 18px; border-left: 1px solid rgba(13, 10, 4, 0.1); }
.values__item:first-child { border-left: 0; }
.values__icon { width: 66px; height: 66px; margin: 0 auto 14px; }
.values__icon .feature-icon__dot { top: 2px; right: 8px; }
.values__title {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.25;
  font-size: var(--text-small);
}
@media (max-width: 991px) {
  .additional__grid { grid-template-columns: 1fr 1fr; }
  .about__grid { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr 1fr; }
  .values__item { border-left: 0; }
}
@media (max-width: 600px) {
  .additional__grid { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
}

/* ---- sections/_projects.scss ---- */
.projects__tabs { display: flex; align-items: center; justify-content: center; gap: 26px; margin-bottom: 36px; }
.projects__tab {
  position: relative;
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: rgba(13, 10, 4, 0.3);
  background: none;
  border: 0;
  padding: 4px 2px;
  transition: color 0.18s ease;
}
.projects__tab.is-active { color: var(--ink); cursor: default; }
.projects__tab.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 4px;
  background: var(--royal);
  border-radius: 2px;
}
.projects__band { position: relative; padding-bottom: 80px; }

@media (max-width:1199px){
  .projects__band {
padding-bottom: 50px;
  }
}
.projects__band::before { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 55%; background: var(--royal); z-index: 0; }
.projects__grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.projects__item { border-radius: 12px; overflow: hidden; box-shadow: 0 14px 34px rgba(13, 10, 4, 0.22); aspect-ratio: 4 / 3; background: #ddd; }
.projects__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.projects__item:hover img { transform: scale(1.06); }
.projects__item--wide { grid-row: span 2; aspect-ratio: auto; }
.projects__cta { position: relative; z-index: 1; text-align: center; padding: 36px 20px 0; color: #fff; }
.projects__cta p { font-family: var(--font-heading); font-weight: 700; font-size: var(--text-medium); max-width: 44ch; margin: 0 auto 22px; line-height: 1.4; }
.students__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 54px; align-items: center; }
.students__media { border-radius: var(--radius-card); overflow: hidden; box-shadow: 0 18px 44px rgba(13, 10, 4, 0.18); aspect-ratio: 4 / 3.4; }
.students__media img { width: 100%; height: 100%; object-fit: cover; }
.students__title {
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
  font-size: clamp(2rem, 4vw, 3.25rem);
}
.students__text { font-size: var(--text-small); color: rgba(13, 10, 4, 0.7); line-height: 1.7; margin: 18px 0 22px; }
.students__points { display: flex; gap: 28px; flex-wrap: wrap; margin-bottom: 26px; }
.students__point { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: var(--text-small); }
.students__point-bubble { width: 26px; height: 26px; border-radius: 50%; background: var(--royal); display: flex; align-items: center; justify-content: center; flex: none; }
.students__band {
  background: var(--royal);
  color: #fff;
  border-radius: var(--radius-card);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.students__band-text {
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
  font-size: var(--text-medium);
}
@media (max-width: 991px) {
  .projects__grid { grid-template-columns: 1fr 1fr; }
  .projects__item--wide { grid-row: auto; aspect-ratio: 4 / 3; }
  .students__grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .projects__grid { grid-template-columns: 1fr; }
}

/* ---- sections/_testimonials.scss ---- */
.testimonials { background: var(--royal); color: #fff; }
.testimonials__rail { display: grid; grid-template-columns: 1fr 1.5fr 1fr; gap: 22px; align-items: center; max-width: 64rem; margin: 0 auto; }
.testimonials__nav { display: flex; justify-content: center; gap: 14px; margin-top: 32px; }
.testimonials__btn {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: var(--royal-deep);
  color: #fff;
  border: 1px solid var(--white-20);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.16s ease;
}
.testimonials__btn:hover { background: var(--ink); }
.testimonials__btn svg { display: block; }
.testimonials__btn--prev svg { transform: rotate(180deg); }
.testimonial-side { background: var(--tint); border-radius: var(--radius-card); padding: 26px 22px; text-align: center; color: var(--ink); }
.testimonial-side__name {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
  font-size: var(--text-small);
  margin-bottom: 8px;
}
.testimonial-side__rating { display: inline-flex; flex-direction: column; align-items: center; gap: 3px; margin-bottom: 12px; }
.testimonial-side__text { font-size: var(--text-small); color: rgba(13, 10, 4, 0.7); line-height: 1.55; }
.testimonial { position: relative; background: #fff; border-radius: var(--radius-card); padding: 40px; color: var(--ink); box-shadow: 0 26px 60px rgba(0, 0, 0, 0.3); }
.testimonial__mark { font-family: var(--font-heading); font-weight: 900; font-size: 5rem; color: var(--cyan); line-height: 0.7; height: 44px; }
.testimonial__quote { font-size: var(--text-medium); line-height: 1.5; margin-bottom: 24px; font-weight: 500; }
.testimonial__author { display: flex; align-items: center; gap: 16px; }
.testimonial__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--royal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
}
.testimonial__name {
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
  font-size: var(--text-regular);
}
.final { position: relative; background: var(--royal); color: #fff; overflow: hidden; }
.final__bg { position: absolute; inset: 0; z-index: 0; }
.final__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 38%; }
.final__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 14, 22, 0.86) 0%, rgba(8, 14, 22, 0.78) 55%, rgba(10, 79, 147, 0.7) 100%);
}
.final__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: center; }
.final__title {
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: #fff;
  margin-bottom: 16px;
}
.final__text { font-size: var(--text-small); color: rgba(255, 255, 255, 0.85); line-height: 1.6; margin-bottom: 30px; }
@media (max-width: 991px) {
  .testimonials__rail { grid-template-columns: 1fr; }
  .testimonial-side { display: none; }
  .final__grid { grid-template-columns: 1fr; }
}

.phone-link{
  cursor: default;

}
.phone-link__number:hover{
 color: #fff !important;
}
textarea{
  resize: none !important;
}
@media (max-width: 1199px) {
  .section--sm{
    padding-block: 40px;
  }
  .section {
    padding-block: 40px;
  }
  .process__step{
    border: 0;
    padding-block: 15px;
  }
  .service-card__label{
    margin-left: 15px;
    
  }
  .service-card__label-text{
    font-size: 20px !important;
  }
  .services__cols{
        gap: 15px;
  }
  .rates{
    margin-top: 15px;
  }
  .rates__head{
    padding: 20px;
    text-align: center;
  }
  .rates__title{
        width: 100%;
  }
  .rates__cell{
        padding: 10px 26px;
        border-left: 0;
  }
  .junk-banner__inner{
      padding: 15px;
  }
    .additional {
      padding-top: 10px;
    }
    .section-head{
      margin-bottom: 20px;
    }
    .btn{
      padding: 10px 20px;
    }
    .projects__tab{
      font-size: 24px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
.remove__grid {
        grid-template-columns: repeat(3, 1fr);
    }
        .values {
        justify-content: center;
        display: flex;
        flex-wrap: wrap;
        margin-top: 20px;
    }
    
}
.students {
  padding-top: 0;
}
@media (max-width: 767px){
  .values {
    margin-top: 20px;
  }
  .site-header__actions .phone-link__label{
    display: none;
  }
  .site-header__actions .phone-link__number{
    display: none;
  }
  .site-header__actions .btn--cyan{
    padding: 10px;
    font-size: 12px !important;
    border-radius:5px;
  }
  .site-header__actions{
    gap: 15px;
  }
  .site-header__actions .phone-link{
    gap: 0;
  }
  .site-header__inner{
    gap: 10px;
  }
.lead-form__grid{
  display: block;
}
.lead-form__checks{
  gap: 15px;
  padding-top: 15px;
    padding-bottom: 15px;
}
.lead-form__field{
  padding-top: 15px;
}
.phone-link__icon{
  width: 32px;
    height: 32px;
}
.students__grid{
      gap: 20px;
}
.students {
  padding-top: 0;
}
.remove__item{
      padding: 15px 10px;
}
    .remove__grid {
        grid-template-columns: 1fr 1fr;
    }
    .section-head__title{
      font-size: 28px;
    }
    .lead-form{
      padding: 15px;
    }
}

.thank_you{
  display: flex;
  justify-content: center;
}
.thank_txt{
  padding-bottom: 20px;
}
.bg_position_center img{
  object-position: center;
}
.phone-link:hover .phone-link__number{
  color: #fff;
}

.lead-form__field{
  position: relative;
}


.lead-form__field{
		position: relative;
}
		.lead-form__field span.error,
		.lead-form__field span.newerror{
			position: absolute;
			left: 0;
			background: #f00;
			padding: 3px 5px;
			font-size: 12px;
			border-radius: 2px;
			color: #fff;
			font-weight: 400;
			bottom: 50px;
			line-height: 1;
		}

    .lead-form__field span.error::after,
		.lead-form__field span.newerror::after{
        position: absolute;
				border-top: 6px solid #f00;
				border-left:6px solid transparent;
				border-right:6px solid transparent;
				bottom: -4px;
				left: 3px;
				content: '';
    }
.grecaptcha-badge{
  display: none !important;
}