/* ========== Reset & Base ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Rubik', Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #5a6275;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #34d1b6;
  text-decoration: none;
  transition: color .25s;
}

a:hover {
  color: #28a892;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Rubik', Helvetica, Arial, sans-serif;
  color: #2c2f3e;
  line-height: 1.3;
  margin: 0 0 .6em;
  font-weight: 600;
}

h1 {
  font-size: 2.6rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.6rem;
}

h4 {
  font-size: 1.2rem;
}

h5 {
  font-size: 1rem;
}

p {
  margin: 0 0 1rem;
}

.container {
  width: 100%;
  max-width: 1246px;
  margin-inline: auto;
  padding-inline: 16px;
}

.section {
  padding: 80px 0;
}

.section-sm {
  padding: 40px 0;
}
/* ========== Header ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(44, 47, 62, .06);
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.site-header.scrolled {
  background: #fff;
  border-bottom-color: transparent;
  box-shadow: 0 6px 24px rgba(20, 30, 50, .08);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  transition: min-height .3s ease;
}

.site-header.scrolled .container {
  min-height: 68px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  display: block;
  width: auto;
  transition: max-height .3s ease, opacity .25s ease;
}

.logo .logo-full {
  max-height: 38px;
}

.logo .logo-icon {
  max-height: 40px;
  display: none;
}

.site-header.scrolled .logo .logo-full {
  display: none;
}

.site-header.scrolled .logo .logo-icon {
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 36px;
}

.main-nav li {
  position: relative;
}

.main-nav a {
  color: #2c2f3e;
  font-weight: 400;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 30px 0;
  display: block;
  position: relative;
  transition: color .2s ease, padding .3s ease;
}

.site-header.scrolled .main-nav a {
  padding: 22px 0;
}

.main-nav>ul>li>a::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 2px;
  background: #34d1b6;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}

.main-nav>ul>li>a:hover::before,
.main-nav>ul>li.current>a::before {
  transform: scaleX(1);
}

.sub-menu a::before {
  display: none;
}

.main-nav a:hover,
.main-nav .current>a {
  color: #34d1b6;
}

.main-nav .has-children>a::after {
  content: ' ▾';
  font-size: 10px;
  opacity: .6;
}

.sub-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  background: #fff;
  min-width: 240px;
  padding: 12px 0 !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
  border-radius: 4px;
  flex-direction: column !important;
  gap: 0 !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .2s;
}

.has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sub-menu li {
  width: 100%;
}

.sub-menu a {
  padding: 10px 24px !important;
  text-transform: none !important;
  font-size: 13px !important;
  letter-spacing: 0 !important;
}

.sub-menu a:hover {
  background: #f5f7fa;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  width: 32px;
  height: 32px;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 6px 0;
  background: #2c2f3e;
  transition: transform .25s, opacity .25s;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    transform: translateX(100%);
    transition: transform .3s;
    overflow-y: auto;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .main-nav a {
    padding: 14px 0;
    border-bottom: 1px solid #eef0f3;
  }

  .main-nav .has-children>a::after {
    content: '';
  }

  .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0 0 0 16px !important;
  }
}

/* push body content below fixed header */
main {
  padding-top: 84px;
}

/* ========== Page hero with background image ========== */
.page-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero {

  h1 {
    color: #fff;
    font-size: clamp(2.2rem, 5vw, 4.4rem);
    font-weight: 100;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
  }

  span {
    font-weight: 700;
  }
}

.page-hero h1 .accent {
  color: #34d1b6;
}

/* Centered single-column form (Contact page) */
.form-centered {
  max-width: 455px;
  margin: 0 auto;
}

.form-centered .icon-mail {
  display: block;
  margin: 0 auto 30px;
  width: 50px;
  height: 50px;
  color: #34d1b6;
}

.form-centered .icon-mail svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.form-centered .icon-mail i {
  font-size: 38px;
  line-height: 1;
  color: #34d1b6;
}

.contact-form input[type=text],
.contact-form input[type=email],
.contact-form input[type=tel],
.contact-form textarea {
  background: #f0f2f5;
  border: 1px solid #f0f2f5;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: #fff;
  border-color: #34d1b6;
}

.btn-rounded {
  border-radius: 30px;
  padding: 14px 44px;
}

.text-center .btn {
  display: inline-block;
}

/* ========== Service-page hero (light gray banner with title + illustration) ========== */
.service-hero {
  background: #f7f7f7;
  padding: 80px 0;
}

.service-hero .two-col {
  align-items: center;
  grid-template-columns: 1.5fr 1fr;
}

.service-hero h1 {
  font-size: clamp(2.063rem, 1.607vw + 1.741rem, 3.188rem);
  font-weight: 700;
  margin-bottom: 22px;
  color: #2c2f3e;
  line-height: 1.2;
}

.service-hero p {
  color: #5a6275;
  font-size: 14px;
  line-height: 1.8;
  text-align: left;
}

.service-hero img {
  max-width: 100%;
}

/* CTA banner (teal full-width) */
.cta-banner {
  background: #34d1b6;
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.cta-banner h3 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255, 255, 255, .92);
  max-width: 800px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.85;
}

/* "Our services" bullet list */
.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: #5a6275;
  font-size: 14px;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  border: 2px solid #34d1b6;
  border-radius: 50%;
}

/* ========== Centered decorative section heading ========== */
.center-heading {
  text-align: center;
  margin-bottom: 36px;
}

.center-heading h2 {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2c2f3e;
  margin-bottom: 18px;
}

.center-heading h2 .accent {
  color: #2c2f3e;
  font-weight: 700;
}


.center-heading p {
  max-width: 760px;
  margin: 24px auto 0;
  text-align: center;
  font-size: 14px;
  color: #6e7689;
  line-height: 1.8;
}

/* ========== How we do – 4-step timeline ========== */
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 30px;
  padding: 40px 0 0;
}

.steps::before {
  content: '';
  position: absolute;
  top: 70px;
  left: 4%;
  right: 4%;
  height: 1px;
  border-top: 1px dashed #b3b8c2;
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step .step-icon {
  width: 60px;
  height: 60px;
  border: 1px solid #d8dde6;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #2c2f3e;
}

.step .step-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.step .step-icon i {
  font-size: 32px;
  line-height: 1;
  color: #2c2f3e;
}

.step h4 {
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.step h4 .light {
  color: #898b92;
  font-weight: 400;
}

.step p {
  font-size: 13px;
  color: #6e7689;
  line-height: 1.7;
}

@media (max-width: 800px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }

  .steps::before {
    display: none;
  }
}

/* ========== SEO stats (4 colored counters with underline) ========== */
.stats-colored {
  background: #f4f6f8;
  padding: 60px 0;
}

.stats-colored .stats-grid {
  gap: 20px;
}

.stats-colored .stat {
  text-align: center;
}

.stats-colored .stat-row {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.stats-colored .stat .icon {
  width: 40px;
  height: 40px;
}

.stats-colored .stat .icon i {
  font-size: 38px;
}

.stats-colored .stat .num {
  font-size: 2.2rem;
  font-weight: 700;
}

.stats-colored .stat .suffix {
  font-size: 1.6rem;
  font-weight: 700;
  color: #2c2f3e;
}

.stats-colored .stat h5 {
  font-size: 12px;
  text-transform: none;
  letter-spacing: 0;
  color: #6e7689;
  margin-top: 14px;
  font-weight: 400;
}

.stat-c1 .icon {
  color: #34d1b6;
}

.stat-c2 .icon {
  color: #ff8a4c;
}

.stat-c3 .icon {
  color: #b56cff;
}

.stat-c4 .icon {
  color: #34a8ff;
}

.stat-line {
  display: block;
  width: 40px;
  height: 2px;
  background: currentColor;
  margin: 12px auto 0;
  opacity: .9;
}

/* ========== Benefits cards (3x2 grid, teal background) ========== */
.benefits-section {
  background: #34d1b6;
  padding: 70px 0;
  color: #fff;
}

.benefits-section .center-heading h2 {
  color: #fff;
}

.benefits-section .center-heading h2 .accent {
  color: #fff;
  font-weight: 700;
}

.benefits-section .center-heading h2 {
  font-weight: 400;
}


.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

@media (max-width: 800px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

.benefit-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.benefit-card .b-icon {
  flex-shrink: 0;
  width: 92px;
  height: 92px;
  border: 2px solid rgba(243, 239, 239, 0.929);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.benefit-card .b-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.benefit-card .b-icon i {
  font-size: 32px;
  line-height: 1;
  color: #fff;
}

.benefit-card h4 {
  color: #fff;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 700;
}

.benefit-card h4 .light {
  color: rgba(255, 255, 255, .85);
  font-weight: 400;
}

.benefit-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, .85);
  margin: 0;
  line-height: 1.6;
}

/* ========== CTA centered (Get Started block) ========== */
.cta-centered {
  text-align: center;
  padding: 60px 20px 80px;
}

.cta-centered h2 {
  font-size: 2rem;
  font-weight: 400;
  color: #2c2f3e;
  margin-bottom: 8px;
}

.cta-centered h2 strong {
  display: block;
  font-weight: 700;
  font-size: 2.2rem;
}

.cta-centered p {
  color: #6e7689;
  margin-bottom: 26px;
}

/* ========== Two-column block ========== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.two-col>* {
  min-width: 0;
}

.two-col.right-img {
  grid-template-columns: 7fr 5fr;
}

.two-col.left-img {
  grid-template-columns: 6fr 6fr;
}

@media (max-width: 800px) {

  .two-col,
  .two-col.right-img,
  .two-col.left-img {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.two-col img {
  display: block;
  max-width: 100%;
}

/* ========== Stats / counters ========== */
.stats {
  background: #fff;
}

.stats .stat .icon {
  color: #34d1b6;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

@media (max-width: 800px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat-row {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.stat .icon {
  width: 44px;
  height: 44px;
  color: #34d1b6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat .icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.4;
}

.stat .icon i {
  font-size: 38px;
  line-height: 1;
  color: inherit;
}

.facts-section .stat .icon {
  color: #34d1b6;
}

.stats-colored .stat .icon i {
  font-size: 30px;
}

.stat .num-wrap {
  display: inline-flex;
  align-items: baseline;
}

.stat .num {
  font-family: 'Rubik', Helvetica, Arial, sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: #2c2f3e;
  line-height: 1;
}

.stat .suffix {
  font-family: 'Rubik', Helvetica, Arial, sans-serif;
  font-size: 1.6rem;
  color: #34d1b6;
  font-weight: 600;
}

.stat h5 {
  font-size: 11px;
  letter-spacing: 2px;
  color: #898b92;
  text-transform: uppercase;
  font-weight: 500;
  margin: 14px 0 0;
}

/* ========== Section title (two-line: green word + dark line) ========== */
.section-title {
  margin-bottom: 40px;
  line-height: 1.1;
}

.section-title .line1 {
  display: block;
  color: #6dd6bd;
  font-family: 'Rubik', Helvetica, Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
}

.section-title .line2 {
  display: block;
  color: #1a1d2b;
  font-family: 'Rubik', Helvetica, Arial, sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  margin-top: 6px;
  letter-spacing: -.5px;
}

/* ========== Testimonials ========== */
.two-col:has(.testimonial-wrap) {
  align-items: start;
}

.testimonial-wrap {
  position: relative;
  padding: 0 80px;
  width: 100%;
}

.testimonial-slider {
  width: 100%;
  overflow: hidden;
}

.testimonial-slider .swiper-wrapper {
  align-items: stretch;
}

.testimonial-slider .swiper-slide {
  padding: 10px 0 30px;
  height: auto;
  flex-shrink: 0;
}

.testimonial {
  text-align: center;
  padding: 10px 20px;
}

.testimonial p {
  color: #898b92;
  font-size: 14px;
  line-height: 1.85;
  margin-bottom: 24px;
}

.testimonial .author {
  font-weight: 700;
  color: #2c2f3e;
  display: block;
  font-size: 15px;
}

.testimonial .role {
  font-size: 13px;
  color: #898b92;
  display: block;
  margin-top: 2px;
}

/* Custom round arrow buttons */
.testimonial-wrap .nav-btn {
  position: absolute;
  top: 50%;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid #6dd6bd;
  background: #fff;
  color: #6dd6bd;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, color .2s;
  transform: translateY(-50%);
  z-index: 5;
  font-size: 24px;
  padding: 0;
}

.testimonial-wrap .nav-btn:hover {
  background: #6dd6bd;
  color: #fff;
}

.testimonial-wrap .nav-prev {
  left: 0;
}

.testimonial-wrap .nav-next {
  right: 0;
  left: auto;
}

@media (max-width: 600px) {
  .testimonial-wrap {
    padding: 0 0 70px;
  }

  .testimonial-wrap .nav-btn {
    top: auto;
    bottom: 0;
    transform: none;
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .testimonial-wrap .nav-prev {
    left: calc(50% - 50px);
  }

  .testimonial-wrap .nav-next {
    right: calc(50% - 50px);
    left: auto;
  }
}

/* ========== Form ========== */
.contact-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 16px;
}

@media (max-width: 600px) {
  .contact-form .row {
    grid-template-columns: 1fr;
  }
}

.contact-form label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #2c2f3e;
  margin-bottom: 6px;
}

.contact-form input[type=text],
.contact-form input[type=tel],
.contact-form input[type=email],
.contact-form textarea {
  width: 100%;
  padding: 11px 6px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .062) inset;
  border: 1px solid #e3e6ec;
  border-radius: 0;
  font: inherit;
  background: #fff;
  transition: border-color .2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #6dd6bd;
}

.contact-form textarea {
  resize: vertical;
  height: 90px;
}

.contact-form .form-goal {
  margin: 26px 0 30px;
}

.contact-form .form-goal .goal-title {
  display: block;
  font-size: 14px;
  color: #8a8f9c;
  font-weight: 400;
  margin-bottom: 18px;
}

.contact-form .form-goal .row {
  margin-bottom: 0;
}

.contact-form .checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form .checkbox-group label {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 14px;
  color: #8a8f9c;
  cursor: pointer;
  margin-bottom: 0;
}

.contact-form .checkbox-group input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: none;
  background: #e3e6ec;
  border-radius: 3px;
  margin-right: 12px;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.contact-form .checkbox-group input[type=checkbox]:checked {
  background: #6dd6bd;
}

.contact-form .checkbox-group input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.contact-form .btn-rounded {
  background: #34d1b6;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 18px 30px;
  border-radius: 50px;
  border: none;
  font-size: 13px;
  cursor: pointer;
}

.contact-form .btn-rounded:hover {
  background: #5cc4ab;
}

.contact-form label {
  font-size: 14px;
  color: #8a8f9c;
  font-weight: 400;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  background: #34d1b6;
  color: #fff !important;
  border: 0;
  border-radius: 34px;
  font: 500 14px/1 'Rubik', Helvetica, Arial, sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s, transform .15s;
}

.btn:hover {
  background: #28a892;
  transform: translateY(-2px);
}

.form-message {
  padding: 12px;
  border-radius: 4px;
  margin-top: 12px;
  display: none;
}

.form-message.success {
  display: block;
  background: #e6f9f3;
  color: #1a8266;
}

.form-message.error {
  display: block;
  background: #fdeaea;
  color: #b53a3a;
}

/* ========== Service blocks (about-us "What can we do") ========== */
.services-list h5 {
  color: #2c2f3e;
  margin-top: 24px;
}

.services-list h5:first-child {
  margin-top: 0;
}

/* ========== Footer ========== */
.site-footer {
  background: #1c1f2a;
  padding: 36px 0;
  color: #898b92;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  align-items: center;
}

@media (max-width: 700px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }
}

.footer-grid img {
  max-width: 130px;
  opacity: .85;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  justify-content: center;
}

.footer-links a {
  color: #34d1b6;
  font-size: 14px;
}

.footer-links a:hover {
  color: #fff;
}

.copyright {
  text-align: right;
  color: #898b92;
  font-size: 13px;
}

@media (max-width: 700px) {
  .copyright {
    text-align: center;
  }
}

/* ========== Scroll-to-top ========== */
.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  cursor: pointer;

  display: flex;
  justify-content: center;
  align-items: center;
  border: none;

  background: #080808;
  color: #fff;
  font-size: xx-large;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .25s, transform .25s, background .25s;
  z-index: 999;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: #28a892;
}

/* ========== Home hero (full-screen with overlay) ========== */
.home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 100px 20px;
  background-color: #1b121c;
  perspective: 1400px;
  isolation: isolate;
}

.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroBgIn 2s ease-out .3s forwards;
  z-index: 0;
}

.home-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgb(27 18 28 / 55%);
  z-index: 0;
}

.home-hero > * {
  position: relative;
  z-index: 2;
}


@keyframes heroBgIn {
  from { opacity: 0; transform: scale(1.06); }
  to   { opacity: 1; transform: scale(1); }
}

.home-hero .small,
.home-hero h1,
.home-hero .btn-outline {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp .9s cubic-bezier(.2, .8, .2, 1) forwards;
}

.home-hero .small      { animation-delay: 1.1s; }
.home-hero h1          { animation-delay: 1.4s; }
.home-hero .btn-outline { animation-delay: 1.75s; }

@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.home-hero__tilt {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  padding: 60px 20px;
  transform-style: preserve-3d;
  transition: transform .6s cubic-bezier(.2, .8, .2, 1);
  will-change: transform;
}

.home-hero__tilt .home-hero__tilt>* {
  position: relative;
}

.home-hero .small {
  position: relative;
  display: block;
  color: #34d1b6;
  font-size: clamp(13px, 1.5vw, 16px);
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;

  &::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -90px;
    bottom: 0;
    width: 2px;
    height: 55px;
    background: #34d1b6;
    transform: translateX(-50%);
    opacity: .9;
  }
}

.home-hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 7vw, 5.6rem);
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0 0 50px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, .4);
}

.btn-outline {
  display: inline-block;
  padding: 14px 44px;
  border: 0.5px solid #34d1b6;
  border-radius: 30px;
  color: #34d1b6 !important;
  font: 600 13px/1 'Rubik', Helvetica, Arial, sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: transparent;
  cursor: pointer;
  transition: all .25s;
}

.btn-outline:hover {
  background: #34d1b6;
  color: #fff !important;
}

/* Why Choose US – feature 3x2 grid */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 40px;
  margin-top: 50px;
}

@media (max-width: 800px) {
  .features {
    grid-template-columns: 1fr;
  }
}

.feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.feature .f-icon {
  flex-shrink: 0;
  width: 74px;
  height: 74px;
  border: .5px solid #d8dde691;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #34d1b6;
  transition: background-color .25s, color .25s;

  &:hover {
    background-color: #34d1b6;
    color: #fff;

    i {
      color: #fff;
    }
  }
}

.feature .f-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.feature .f-icon i {
  font-size: 32px;
  line-height: 1;
  color: #34d1b6;
  transition: color .25s;
}

.feature h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #2c2f3e;
}

.feature p {
  font-size: 12px;
  line-height: 1.7;
  color: #898b92;
  margin: 0;
}

/* Some Facts – dark section with stars background */
.facts-section {
  position: relative;
  padding: 80px 0;
  background: #1c1f2a;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.facts-section--full {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0;
}

.facts-section .container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.facts-section .stat .icon i {
  font-size: 42px;
  color: #34d1b6;
  line-height: 1;
}

.facts-section .center-heading h2 {
  color: #fff;
}

.facts-section .stat .num {
  color: #fff;
}

.facts-section .stat h5 {
  color: rgba(255, 255, 255, .8);
  margin-top: 18px;
}

.facts-section .stat::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: #f4f8f7;
  margin: 14px auto 0;
}

/* Centered testimonial slider (no card border) */
.testimonial-centered .testimonial-wrap {
  padding: 0;
  max-width: 760px;
  margin: 0 auto;
}

.testimonial-centered .nav-btn {
  border-color: #34d1b6;
  color: #34d1b6;
}

.testimonial-centered .nav-btn:hover {
  background: #34d1b6;
  border-color: #34d1b6;
  color: #fff;
}

.testimonial-centered .nav-prev {
  left: -25px;
  top: 50%;
}

.testimonial-centered .nav-next {
  left: auto;
  right: -25px;
  top: 50%;
}

@media (max-width: 700px) {
  .testimonial-centered .nav-btn {
    display: none;
  }
}

/* GET IN TOUCH section – grey full-width with centered form */
.contact-section {
  background: #f4f6f8;
  padding: 100px 0 120px;
}

.contact-section .center-heading {
  margin-bottom: 70px;
}

.contact-section .center-heading h2 {
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -1px;
  color: #1a1d2b;
  text-transform: uppercase;
}

.contact-section .center-heading h2 .accent {
  color: #6dd6bd;
}

.contact-section .form-centered {
  max-width: 660px;
  margin: 0 auto;
}

.contact-section .contact-form .row {
  gap: 40px;
}

.contact-section .contact-form .form-field {
  margin-bottom: 24px;
}

.contact-section .contact-form label {
  font-size: 15px;
  font-weight: 400;
  color: #8a8f9c;
  margin-bottom: 10px;
}

.contact-section .contact-form input:focus,
.contact-section .contact-form textarea:focus {
  border: none;
  outline: 1px solid #6dd6bd;
}

.form-goal {
  margin: 30px 0 40px;
}

.form-goal .goal-title {
  display: block;
  font-size: 15px;
  color: #8a8f9c;
  margin-bottom: 20px;
}

.form-goal .row {
  margin-bottom: 0;
}

.contact-section .checkbox-group {
  gap: 14px;
}

.contact-section .checkbox-group label {
  font-size: 15px;
  color: #8a8f9c;
  font-weight: 400;
}

.contact-section .checkbox-group input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: none;
  background: #e3e6ec;
  border-radius: 3px;
  margin-right: 12px;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.contact-section .checkbox-group input[type=checkbox]:checked {
  background: #6dd6bd;
}

.contact-section .checkbox-group input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.contact-section .btn-send {
  background: #6dd6bd;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 18px 50px;
  border-radius: 50px;
  border: none;
  font-size: 14px;
  margin-top: 10px;
  box-shadow: 0 6px 18px rgba(109, 214, 189, 0.3);
  cursor: pointer;
}

.contact-section .btn-send:hover {
  background: #5cc4ab;
}

@media (max-width: 600px) {
  .contact-section .center-heading h2 {
    font-size: 38px;
  }

  .contact-section {
    padding: 60px 0 80px;
  }
}
/* ========== Legal pages (Privacy, Terms, Cookies) ========== */
.legal-hero {
  background: #f4f6f8;
  padding: 70px 0;
  text-align: center;
}

.legal-hero h1 {
  color: #2c2f3e;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
}

.legal-page {
  padding: 70px 0 90px;
}

.legal-content {
  color: #5a6275;
  font-size: 15px;
  line-height: 1.85;
}

.legal-content p {
  margin: 0 0 18px;
}

.legal-content ul,
.legal-content ol {
  margin: 0 0 22px;
  padding-left: 22px;
}

.legal-content li {
  margin-bottom: 8px;
}

.legal-content p strong {
  display: inline-block;
  color: #2c2f3e;
  font-weight: 600;
}

.legal-content p > strong:only-child {
  display: block;
  margin-top: 28px;
  font-size: 1.05rem;
  letter-spacing: .3px;
  color: #2c2f3e;
}

.legal-content a {
  color: #34d1b6;
  text-decoration: underline;
}

/* ========== Home page section heading (big mixed-case with green accent) ========== */
.home-heading {
  text-align: center;
  margin-bottom: 50px;
}

.home-heading h2 {
  font-size: clamp(3.438rem, 1.161vw + 3.205rem, 4.25rem);
  font-weight: 100;
  color: #2c2f3e;
  letter-spacing: -.5px;
  margin: 0;
  line-height: 1.15;
}

.home-heading h2 .accent {
  color: #34d1b6;
  font-weight: 700;
}

.home-heading p {
  max-width: 760px;
  margin: 20px auto 0;
  font-size: 15px;
  color: #6e7689;
  line-height: 1.8;
}
