
/* ===== SHARED / BASE ===== */

/* --- Buttons --- */
.btn-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  background: #1b0c25;
  background-size: 200% 200%;
  background-position: 0% 50%;
  color: var(--color-text-on-dark);
  border: none;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: background-position 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease, color 0.35s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;

  &::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(160% 200% at 50% -60%, var(--color-secondary) 0%, rgba(245, 158, 11, 0) 20%, rgba(255, 61, 122, 0.6) 38%, var(--color-black) 72%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.35s ease;
  }

  &:hover {
    background-position: 100% 50%;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.32);
    color: var(--color-white);
    transform: translateY(-1px);

    &::before {
      opacity: 1;
    }

    .btn-hero-icon i {
      rotate: 0deg;
    }
  }

	&.white {
		background: var(--color-white);
		color: var(--color-main);
		padding: 12px 12px 12px 24px;
		gap: 14px;
		border: none;
		&:hover {
			color: var(--color-white);
			background: var(--color-gray-600);
		}
		&::before {
			display: none;
		}
	}

  .btn-hero-icon {
    width: 30px;
    height: 30px;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-main);
    color: var(--color-text-on-dark);

    i {
      font-size: 18px;
      rotate: -45deg;
      transition: all 0.3s ease;
    }
  }

  @media (max-width: 576px) {
    font-size: 14px;
    padding: 12px 16px;
    gap: 12px;

    .btn-hero-icon {
      width: 26px;
      height: 26px;
      font-size: 16px;
    }
  }
}

.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px 10px 10px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--color-primary-dark);
  color: var(--color-text-on-dark);
  background: var(--color-primary-dark);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;

  i {
    font-size: 14px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background: var(--color-white);
    color: var(--color-primary-dark);
  }

  &:hover {
    color: var(--color-white);
    background: var(--color-gray-600);
    border: 1.5px solid var(--color-gray-600);

    i {
      background: var(--color-white);
      color: var(--color-main);
    }
  }

  @media (max-width: 576px) {
    font-size: 14px;
    padding: 8px 16px 8px 8px;
    gap: 12px;

    i {
      width: 26px;
      height: 26px;
      font-size: 16px;
    }
  }
}

.btn-main.btn-main--phone {
  padding: 10px 22px 10px 10px;
}

.btn-main.btn-main--phone > i {
  font-size: 14px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  background: var(--color-white);
  color: var(--color-primary-dark);
  flex-shrink: 0;
}

.btn-main:not(.white):not(.btn-main--phone) > i.bxf:first-child {
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
  color: var(--color-white);
}

.btn-main.white > i.bxf:first-child {
  font-size: 14px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  background: var(--color-primary-dark);
  color: var(--color-white);
  flex-shrink: 0;
}

.btn-main.white:has(> i.bxf:first-child) {
  padding: 10px 22px 10px 10px;
  gap: 10px;
}

/* --- Badges --- */
/* .badge {
  font-size: 16px;
  font-weight: 500;
  display: inline-flex;
  margin-bottom: 20px;
  padding: 0;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-text-main);

  &.light {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    letter-spacing: 2px;
    border: 1px solid rgba(255, 255, 255, 0.3);
  }
} */


.btn-phone-lg {
  padding: 0;
  font-size: 48px;
  display: flex;
  align-items: center;
  line-height: normal;
  letter-spacing: -2px;

  span {
    font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 300;
    color: var(--color-secondary);
    background: var(--color-primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  }

  i {
    font-size: 30px;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-gradient);
    color: var(--color-text-on-dark);
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  }

  &:hover {
    span {
      transform: translateX(6px);
    }
    i {
      animation: phone-ring 1s ease-in-out infinite;
    }
  }

  @media (max-width: 768px) {
    font-size: 32px;

    i {
      width: 36px;
      height: 36px;
      font-size: 22px;
    }
    span {
      letter-spacing: -1px;
    }
  }

  @media (max-width: 576px) {
    font-size: 26px;

    i {
      width: 32px;
      height: 32px;
      font-size: 18px;
    }
  }

  @media (hover: none) {
    &:hover {
      i {
        animation: none;
      }
      span {
        transform: none;
      }
    }
  }
}

.btn-float {
  position: absolute;
  bottom: 50px;
  z-index: 3;

  @media (max-width: 992px) {
    position: relative;
    bottom: auto;
    margin-top: 20px;
  }
}

.btn-submit {
  background-color: var(--color-white);
  color: var(--color-black);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 30px;
  border: none;
  transition: all 0.3s ease;

  &:hover {
    background-color: var(--color-black);
    color: var(--color-white);
    transform: translateY(-2px);
  }
}

.btn-submit-black {
  background-color: var(--color-main);
  color: var(--color-white);
  font-weight: 600;
  padding: 12px 35px;
  border-radius: 30px;
  border: none;
  transition: all 0.3s ease;
  font-size: 16px;
  display: inline-block;

  &:hover {
    background-color: var(--color-black);
    transform: translateY(-2px);
    color: var(--color-white);
  }
}

/* --- Common UI Elements --- */
.point {
  background: var(--color-gray-200);
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 15px;

  i {
    color: var(--color-primary-dark);
  }
}

.service-trust-strip {
  padding: 18px 0;
  background: var(--color-offwhite);
  border-bottom: 1px solid rgba(28, 33, 41, 0.08);
}

.service-trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.service-trust-strip-inner span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--primary-12);
  color: var(--color-text-main);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.service-trust-strip-inner i {
  color: var(--color-primary-dark);
  font-size: 18px;
}

.check-list {
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
	gap: 5px;
	display: grid;

  li {
    display: flex;
    align-items: flex-start;
    gap: 8px;

    i {
      color: var(--color-primary);
      font-size: 18px;
      line-height: 1.4;
      margin-top: 2px;
    }
  }
}

ol.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
	color: #949494;

  li + li {
    padding-left: 10px;

    &::before {
      display: inline-block;
      padding-right: 10px;
      color: var(--color-gray-500);
      content: "/";
    }
  }

  @media (max-width: 768px) {
    margin-top: 10px;
    padding: 16px 0;

    li {
      display: inline-block;
    }
    
    h1 {
      font-size: 28px;
    }
  }
}

.page {
  padding: 60px 0;

  h2 {
    font-size: 24px !important;
    font-weight: 500;
  }
  h3 {
    font-size: 20px !important;
    font-weight: 500;
  }
  p {
    font-size: 16px;
  }

  @media (max-width: 768px) {
    padding: 40px 0;
  }
}

.section-dark-bg {
  background-color: var(--color-main);
  padding: 80px 0;
  
  .section-title {
    h2, p {
      color: var(--color-white);
    }
  }
}

/* ===== HERO SECTIONS ===== */

/* --- Home Hero --- */
#hero {
  width: 100%;
  height: 100vh;
  min-height: 900px;
  position: relative;
  color: var(--color-text-on-dark);

  .hero-content {
    position: relative;
    z-index: 2;
  }

  h2 {
    color: #e0e4ef;
    margin: 0 0 15px;
    font-size: 20px;
  }

  h1 {
    margin: 0 0 15px;
    font-size: 50px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1px;
    color: var(--color-main);
    text-wrap-style: pretty;
  }

  p,
  .hero-description {
    font-size: 17px;
    letter-spacing: 0.2px;
    text-wrap-style: pretty;
    width: 75%;
    color: var(--color-gray-600);
    margin: 0 0 22px;
  }

  .badge {
    font-size: 16px;
    font-weight: 500;
    display: inline-flex;
    margin-bottom: 20px;
    padding: 0;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-text-main);
  }

  .hero-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 50vw;
    max-width: 1300px;
    height: 100vh;
    min-height: 700px;
    padding: 20px;
    z-index: 0;
    animation: revealRightToLeft 1.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;

    .image {
      position: relative;
      height: 100%;
      border-radius: 18px;
      overflow: hidden;

      &::before {
        content: "";
        background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, transparent 100%);
        opacity: 0.8;
        position: absolute;
        inset: 0;
        height: 16%;
        min-height: 150px;
        z-index: 1;
      }

      &::after {
        content: "";
        background: linear-gradient(0deg, rgba(255, 255, 255, 1) 50%, transparent 90%);
        opacity: 0.8;
        position: absolute;
        inset: auto auto 0 0;
        height: 24%;
        min-height: 150px;
        width: 100%;
        z-index: 1;
      }

      img {
        object-fit: cover;
        height: 100%;
        width: 100%;
      }
    }
  }

  @media (max-width: 992px) {
    height: auto;
    min-height: 0;
    padding-top: calc(var(--header-height) + 12px);
    padding-bottom: 24px;

    .hero-description,
    p {
      width: 100%;
    }

    .hero-img {
      position: relative;
      top: auto;
      right: auto;
      width: 100%;
      height: auto;
      min-height: 0;
      margin-top: 28px;
      padding: 0 12px;
      animation: none;

      .image {
        padding-top: 0;
        height: clamp(240px, 52vw, 320px);

        &::before {
          height: 16%;
          min-height: 80px;
        }

        &::after {
          min-height: 80px;
        }

        img {
          position: absolute;
          inset: 0;
          height: 100%;
          width: 100%;
        }
      }
    }
  }

  @media (max-width: 768px) {
    h1 {
      font-size: 32px;
      line-height: 40px;
    }
    h2 {
      font-size: 18px;
      line-height: 24px;
    }
    p {
      width: 100%;
      font-size: 16px;
    }
    .get-quote {
      display: none;
    }
  }

  @media (max-width: 576px) {
    padding-top: calc(var(--header-height) + 20px);

    .hero-content {
      text-align: left;
    }
    .hero-status {
      font-size: 12px;
    }
  }
}

.hero-slider .swiper-slide {
  height: 100%;
  width: 100%;
}

@media (max-width: 992px) {
  #hero.hero-slider,
  #hero.hero-static,
  #hero .swiper-wrapper,
  #hero .swiper-slide {
    height: auto !important;
  }
}

#hero.hero-static {
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 12px);
}

@keyframes revealRightToLeft {
  0% {
    clip-path: inset(0 0 0 100%);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes phone-ring {
  0% { transform: rotate(0deg); }
  15% { transform: rotate(12deg); }
  30% { transform: rotate(-10deg); }
  45% { transform: rotate(8deg); }
  60% { transform: rotate(-6deg); }
  75% { transform: rotate(4deg); }
  100% { transform: rotate(0deg); }
}

/* --- Hero Inner (Pages) --- */
.hero-inner {
  position: relative;
  padding: 150px 0 60px;
  min-height: 500px;
  align-content: end;
  overflow: clip;

  .image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;

    img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    &::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(228deg, #1113184a 0%, #181e29 100%);
      z-index: 1;
    }
  }

  .badge {
    font-size: 16px;
    font-weight: 500;
    display: inline-flex;
    margin-bottom: 20px;
    padding: 0;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-text-on-dark);
  }

  h1 {
    margin: 0;
    font-size: 48px;
    line-height: 1.1;
    font-weight: 500;
    color: var(--color-text-on-dark);
    text-wrap-style: balance;

    &.wide {
      font-size: 48px;
      font-weight: 700;
    }

    span {
      font-weight: 600;
      color: var(--color-primary-dark);
    }
  }

  &.h-auto {
    min-height: auto;
  }

  &.dark::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-hero-overlay);
    z-index: -1;
  }

  .text-white-80 {
    color: rgba(255, 255, 255, 0.88);
  }

  .hero-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;

    li {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 10px;
      color: var(--color-text-on-dark);
      font-size: 18px;

      i {
        color: var(--color-primary);
        font-size: 22px;
        flex-shrink: 0;
      }
    }
  }

  .hero-tagline {
    font-size: 15px;
    letter-spacing: 0.3px;
  }

  .btn-phone-lg {
    padding: 12px 20px;
    font-size: 18px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: var(--color-white);

    span {
      background: none;
      -webkit-text-fill-color: inherit;
      color: inherit;
    }

    &:hover {
      background: var(--color-white);
      border-color: var(--color-white);
      color: var(--color-main);

      span {
        color: var(--color-main);
      }
    }
  }

  @media (max-width: 992px) {
    padding: 120px 0 30px;
  }

  @media (max-width: 768px) {
    padding: 110px 0 40px;
    min-height: auto;

    .row.justify-content-between.align-items-end {
      flex-direction: column;
      align-items: flex-start !important;
      gap: 12px;
    }

    .d-flex {
      display: block !important;
    }

    h1 {
      font-size: 28px;
      line-height: 1.2;
    }
  }
}

.inner-hero {
  padding: 120px 0 60px;
  background: var(--color-white);

  .inner-hero-img {
    height: 100%;
    border-radius: 20px;
    width: 100%;
    height: 440px;
    object-fit: cover;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);

    .main-img {
      border-radius: 20px;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .rated {
      position: absolute;
      right: 15px;
      bottom: 15px;
      max-width: 160px;
    }
  }

  @media (max-width: 768px) {
    padding-top: 140px;

    .inner-hero-img {
      height: 260px;
    }
  }
}

/* --- Hero Rotating Text --- */
.hero-rotating-text {
  min-height: 32px;
  height: auto;
  width: fit-content;
  max-width: 100%;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 50px;
  background: #ffffff;
  color: #0b0e14;
  box-shadow: rgba(108, 113, 128, 0.08) 0px 2px 4px 0px, rgba(108, 113, 128, 0.07) 0px 7px 7px 0px, rgba(108, 113, 128, 0.04) 0px 17px 10px 0px, rgba(108, 113, 128, 0.01) 0px 29px 12px 0px, rgba(108, 113, 128, 0) 0px 46px 13px 0px;
  border: 4px solid #fafafa;

  .static-text {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #0b0e14;
    white-space: nowrap;
  }
}

.dynamic-text-list {
  display: inline-grid;
  align-items: center;
  justify-items: center;
  width: max-content;
  max-width: 100%;
  min-height: 12px;
  height: 100%;
  margin: 0;
  padding: 0;

  li {
    grid-area: 1 / 1;
    position: relative;
    width: max-content;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s ease;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #0b0e14;

    &.active {
      opacity: 1;
      transform: translateY(0);
      z-index: 2;
    }

    &.exit {
      opacity: 0;
      transform: translateY(-100%);
      z-index: 1;
    }
  }
}

.hero-rotating-text .static-text,
.hero-rotating-text .dynamic-text-list li {
  color: #0b0e14 !important;
}

.hero-features-panel {
  width: fit-content;
  max-width: 100%;
  /* border-radius: 18px;
  background: #ffffff;
  padding: 18px 20px;
  border-left: 4px solid var(--color-primary);
  box-shadow:
    rgba(108, 113, 128, 0.08) 0px 2px 4px 0px,
    rgba(108, 113, 128, 0.07) 0px 8px 10px 0px,
    rgba(108, 113, 128, 0.05) 0px 18px 14px 0px; */
}

.hero-features-kicker {
  display: block;
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--color-primary-dark);
}

.hero-features-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;

  li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -0.2px;
    color: var(--color-main);

    i {
      flex-shrink: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      font-size: 17px;
      color: var(--color-primary-dark);
      background: var(--primary-12);
      transform-origin: center;
      will-change: transform;
    }
  }
}

@media (max-width: 768px) {
  .hero-features-panel {
    width: 100%;
    padding: 16px 18px;
  }

  .hero-features-list li {
    font-size: 17px;
    gap: 12px;

    i {
      width: 28px;
      height: 28px;
      font-size: 15px;
    }
  }
}

/* ===== SECTIONS ===== */

/* --- Trust --- */
.trust {
  .trust-panel {
    border-radius: 34px;
    padding: 14px;
    background: linear-gradient(135deg, #0b0e14 0%, #131824 50%, #0b0e14 100%);
    border: 8px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 26px 70px rgba(15, 23, 42, 0.18);
    overflow: hidden;
  }

  .trust-media {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    padding: 34px;
    min-height: 520px;
		height: 100%;
    background: radial-gradient(120% 110% at 20% 10%, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 55%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);

    &::before {
      content: "";
      position: absolute;
      inset: -40px;
      background: radial-gradient(40% 40% at 30% 65%, rgba(255, 201, 94, 0.38) 0%, rgba(255, 201, 94, 0) 70%),
        radial-gradient(42% 42% at 72% 78%, rgba(255, 78, 145, 0.28) 0%, rgba(255, 78, 145, 0) 72%);
      filter: blur(16px);
      opacity: 0.7;
      pointer-events: none;
    }

    .trust-list li::before {
      content: "+";
      width: 22px;
      height: 22px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 14px;
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.16);
      color: rgba(255, 255, 255, 0.88);
      flex: 0 0 auto;
    }
  }

  .trust-media-inner {
    position: relative;
    z-index: 1;
    max-width: 520px;
  }

  .trust-badge {
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    margin-bottom: 20px;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 6px 14px;
    border: 1px solid #ffffff;
    color: var(--color-white);
    box-shadow: rgba(0, 0, 0, 0.07) 0px 2px 5px 0px, rgba(0, 0, 0, 0.06) 0px 8px 8px 0px, rgba(0, 0, 0, 0.04) 0px 19px 11px 0px, rgba(0, 0, 0, 0.01) 0px 33px 13px 0px, rgba(0, 0, 0, 0) 0px 52px 15px 0px;
  }

  .trust-title {
    margin: 16px 0 10px;
    color: rgba(255, 255, 255, 0.98);
    font-size: 40px;
    font-weight: 650;
    line-height: 1.2;
  }

  .trust-lead {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 16px;
    line-height: 1.8;
  }

  .trust-need {
    margin-top: 18px;
  }

  .trust-kicker {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 16px;
    font-weight: 700;
  }

  .trust-media-frame {
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 24px;
    height: 240px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(8, 10, 15, 0.82) 55%, rgba(0, 0, 0, 0.66) 100%);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.14);
  }

  .trust-card {
    border-radius: 16px;
    padding: 34px;
    background: linear-gradient(180deg, rgba(26, 30, 39, 0.98) 0%, rgba(12, 14, 19, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
    color: rgba(255, 255, 255, 0.92);
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
  }

  .trust-card-title {
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.96);
  }

  .trust-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: grid;
    gap: 12px;
    color: var(--color-white);

    li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 14px;
      line-height: 1.6;
    }
  }

  .trust-list-on-card li {
    &::before {
      content: none;
    }

    i {
      font-size: 24px;
      line-height: 1.2;
      margin-top: -4px;
      color: var(--color-primary);
      flex: 0 0 auto;
    }
  }

  .trust-button {
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    border-radius: 999px;
    background: var(--color-white);
    color: var(--color-main);
    font-weight: 650;
    letter-spacing: 0.2px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);

    &:hover {
      transform: translateY(-1px);
      box-shadow: 0 18px 50px rgba(0, 0, 0, 0.42);
    }
  }

  .trust-note {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    line-height: 1.7;
    text-wrap-style: balance;
  }

  @media (max-width: 992px) {
    .trust-media {
      min-height: 460px;
    }
    .trust-title {
      font-size: 34px;
    }
  }

  @media (max-width: 576px) {
    .trust-panel {
      padding: 10px;
      border-width: 6px;
      border-radius: 26px;
    }
    .trust-media,
    .trust-card {
      padding: 22px;
      border-radius: 20px;
    }
    .trust-media-frame {
      left: 18px;
      right: 18px;
      height: 210px;
      border-radius: 18px;
    }
  }
}

/* --- Features --- */
.feature-frame {
  padding: 30px;
  border-radius: 34px;
  background: var(--color-white);
  border: 8px solid rgb(237 237 237 / 90%);
  overflow: hidden;

  .image {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    border: 8px solid rgb(247 247 247);
    box-shadow: 0 26px 70px rgba(15, 23, 42, 0.18);
    overflow: hidden;

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }

  .price-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 8px 12px;
    border-radius: 8px;
    background: var(--color-white);
    box-shadow: var(--shadow-soft);

    span {
      font-size: 14px;
      font-weight: 600;
      color: var(--color-text-muted);
    }

    .price {
      font-size: 50px;
      letter-spacing: -1px;
      line-height: normal;
      font-weight: 600;
      color: var(--color-text-main);
      margin: 0;
    }
  }
}

.feature-center {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.feature-center-panel-wrap {
  width: 100%;
  min-height: 100%;
}

.feature-center-panel {
  position: relative;
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 40px 32px;
  border-radius: 24px;
  border: 8px solid rgb(247 247 247);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.14);
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(120% 90% at 15% 10%, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 55%),
    var(--color-primary-gradient);
}

.feature-center-panel::before {
  content: "";
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(40% 40% at 78% 82%, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 70%),
    radial-gradient(36% 36% at 18% 88%, rgba(0, 0, 0, 0.14) 0%, rgba(0, 0, 0, 0) 72%);
  pointer-events: none;
}

.feature-center-panel > * {
  position: relative;
  z-index: 1;
}

.feature-center-panel-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.feature-center-panel p {
  max-width: 360px;
  margin: 0;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.94);
}

.feature-center-panel-actions {
	display: grid;
	justify-content: center;
	justify-items: center;
	gap: 12px;
}

.feature-center-panel-actions .btn-main {
  flex: 1 1 160px;
  justify-content: center;
  font-size: 16px;
  padding: 12px 18px;
	width: fit-content;
}

.hosting-split-cta-actions .btn-main,
.feature-center-panel-actions .btn-main {
  min-width: 160px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.hosting-split-cta-actions .btn-main.white,
.feature-center-panel-actions .btn-main.white {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

.hosting-split-panel {
  position: relative;
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 34px 28px;
  border-radius: 24px;
  border: 8px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.hosting-split-panel::before {
  content: "";
  position: absolute;
  inset: -25%;
  pointer-events: none;
}

.hosting-split-panel > * {
  position: relative;
  z-index: 1;
}

.hosting-split-panel--problem {
  background: linear-gradient(160deg, #1c2129 0%, #2a3140 48%, #1c2129 100%);
  color: var(--color-white);
}

.hosting-split-panel--problem::before {
  background:
    radial-gradient(42% 42% at 18% 18%, rgba(255, 61, 122, 0.16) 0%, rgba(255, 61, 122, 0) 72%),
    radial-gradient(38% 38% at 82% 82%, rgba(245, 158, 11, 0.14) 0%, rgba(245, 158, 11, 0) 70%);
}

.hosting-split-panel--solution {
  background:
    radial-gradient(120% 90% at 15% 10%, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 55%),
    var(--color-primary-gradient);
  color: var(--color-white);
}

.hosting-split-panel--solution::before {
  background:
    radial-gradient(40% 40% at 78% 82%, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 70%),
    radial-gradient(36% 36% at 18% 88%, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0) 72%);
}

.hosting-split-panel-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.hosting-split-panel h3 {
  margin: 0;
  font-size: clamp(24px, 2.4vw, 30px);
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.4px;
  color: var(--color-white);
}

.hosting-split-panel p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
}

.hosting-split-note {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

.hosting-split-list {
  display: grid;
  gap: 10px;
}

.hosting-split-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.hosting-split-list--problem li {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.94);
}

.hosting-split-list--problem li i {
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 17px;
  color: #ff8fa3;
}

.hosting-split-list--solution li {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.96);
}

.hosting-split-list--solution li i {
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 17px;
  color: var(--color-white);
}

.hosting-split-grid {
  margin-top: 4px;
}

.hosting-split-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
  padding-top: 8px;
}

.hosting-split-actions .btn-main {
  flex: 1 1 180px;
  justify-content: center;
  font-size: 15px;
}

.hosting-split-cta {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 28px 32px;
  border-radius: 24px;
  border: 8px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 15% 10%, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 55%),
    var(--color-primary-gradient);
  color: var(--color-white);
}

.hosting-split-cta::before {
  content: "";
  position: absolute;
  inset: -25%;
  pointer-events: none;
  background:
    radial-gradient(40% 40% at 78% 82%, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 70%),
    radial-gradient(36% 36% at 18% 88%, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0) 72%);
}

.hosting-split-cta > * {
  position: relative;
  z-index: 1;
}

.hosting-split-cta-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex: 1 1 280px;
  max-width: 560px;
}

.hosting-split-cta-copy p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
	text-wrap-style: pretty;
}

.hosting-split-cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex: 1 1 320px;
}

.hosting-split-cta-actions .btn-main {
  justify-content: center;
  font-size: 16px;
  padding: 12px 20px 12px 12px;
}

.hosting-why-card {
  padding: 36px 32px;
  border-radius: 24px;
  background: var(--color-white);
  border: 8px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
}

.hosting-why-note {
  padding-left: 16px;
  border-left: 4px solid var(--color-primary);
  font-weight: 500;
  color: var(--color-text-body);
}

.hosting-why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hosting-why-grid li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  background: #f7f8fb;
  border: 1px solid rgba(15, 23, 42, 0.06);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--color-black);
}

.hosting-why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  flex-shrink: 0;
}

.hosting-why-icon i {
  font-size: 20px;
  line-height: 1;
}

@media (min-width: 992px) {
  .hosting-why-grid-span {
    grid-column: 1 / -1;
  }
}

.feature-center-visual {
  transform-origin: center center;
  transition: box-shadow 0.35s ease;
}

.feature-center-visual::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: skewX(-18deg);
  pointer-events: none;
  z-index: 2;
}

.feature-center-visual:hover {
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.18), 0 0 40px rgba(245, 158, 11, 0.28);
}

.feature-center-visual:hover::after {
  animation: feature-center-shine 1.4s ease-in-out;
}

.feature-center-img {
  transition: transform 0.35s ease;
}

.feature-center-visual:hover .feature-center-img {
  transform: scale(1.02);
}

.feature-center-price .price {
  transition: transform 0.25s ease, color 0.25s ease;
}

.feature-center-visual:hover .feature-center-price .price {
  transform: scale(1.06);
}

.feature-center-actions .btn-main {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-center-actions .btn-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
}

@keyframes feature-center-shine {
  0% {
    left: -100%;
  }

  100% {
    left: 150%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .feature-center-visual,
  .feature-center-img,
  .feature-center-price,
  .feature-center-actions {
    transition: none !important;
  }

  .feature-center-visual::after {
    display: none;
  }
}

.feature-grid-icon {
  width: 40px;
  height: 40px;
  background: var(--color-primary-light);
  color: var(--color-main);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.feature-grid-item {
  h3 {
		font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
  }

  p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 0;
  }
}

.features {
  .feature-card {
    position: relative;
    height: 100%;
    padding: 28px;
    border-radius: 16px;
    background-color: var(--color-white);
    -webkit-box-shadow: 0 6px 24px -2px rgb(119 139 165 / 30%);
    box-shadow: 0 6px 24px -2px rgb(119 139 165 / 30%);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
    background-image: url('../img/cubes.webp');

    &:hover {
      transform: translateY(-3px);
      box-shadow: 0 14px 36px rgba(15, 23, 42, 0.1);
      background: var(--color-primary-gradient);
      background-image: url('../img/cubes.webp'), var(--color-primary-gradient);

      h3 {
        color: var(--color-white);
      }
      p, ul li {
        color: rgba(255, 255, 255, 0.9);
      }
      .feature-icon {
        background: rgba(255, 255, 255, 0.18);
        border: 1px solid rgba(255, 255, 255, 0.35);
      }
    }

    h3 {
      font-size: 24px;
      font-weight: 500;
      margin-bottom: 10px;
    }

    p, ul li {
      font-size: 18px;
      line-height: 1.4;
      margin-bottom: 0;
      color: var(--color-text-body);
      text-wrap-style: pretty;
    }
  }

  .feature-icon {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: var(--color-primary-gradient);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 36px;
    margin-bottom: 28px;
  }
}

/* --- Services --- */
.services {
  .box {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    display: block;
    height: 340px;

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    }

    h3 {
      position: absolute;
      bottom: 0;
      left: 0;
      background: var(--color-white);
      font-weight: 600;
      height: 46px;
      width: fit-content;
      padding: 4px 12px;
      border-radius: 10px;
      margin: 10px;
      font-size: 18px;
      display: flex;
      align-items: center;
      transition: all 0.5s ease-in-out;

      i {
        font-size: 12px;
        margin-right: 10px;
        color: var(--color-primary-dark);
      }
    }

    &:hover {
      img {
        transform: scale(1.05);
      }
      h3 {
        transform: translateY(-6px);
      }
    }
  }

  .bg p {
    text-align: left;
    padding: 16px;
    font-size: 16px;
    line-height: 23px;
    margin-bottom: 0;
  }

  @media (max-width: 992px) {
    .box {
      height: 280px;
    }
  }

  @media (max-width: 768px) {
    .box {
      height: 240px;
    }
    .bg p {
      font-size: 14px;
    }
  }
}

.service-details {
  .section-title p {
    max-width: 720px;
  }

  img {
    border-radius: 12px;
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .content {
    h3 {
      font-size: 28px;
			line-height: 1.4;
      font-weight: 500;
      margin-bottom: 16px;
      color: var(--color-main);
			text-wrap-style: balance;
    }

    p {
      font-size: 18px;
      line-height: 1.8;
      margin-bottom: 8px;
    }

    ul {
      padding-left: 18px;
      margin-bottom: 0;
    }

    li + li {
      margin-top: 4px;
    }
  }

  @media (max-width: 992px) {
    padding-top: 40px;
  }

  @media (max-width: 768px) {
    .section-title p {
      max-width: 100%;
      font-size: 16px;
    }
    .content p {
        font-size: 16px;
        line-height: 1.4;
        margin-bottom: 8px;
    }
  }
}

/* --- Why Choose Us --- */
.why .box {
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  padding: 20px;
  border-radius: 14px;
  height: 100%;
  transition: all 0.4s ease;

  i {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 30px;
    line-height: 0;
    background-color: var(--color-primary-light);
    color: var(--color-primary-dark);
  }

  h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
  }

  p {
    margin-bottom: 0;
  }

  &:hover {
    transform: translateY(-6px);

    i {
      background-color: var(--color-primary-dark);
      color: var(--color-white);
    }
  }
}

/* --- Testimonials --- */
.testimonials {
  .testimonials-slider.swiper {
    padding: 10px 6px 70px;
  }

  .testimonials-slider .swiper-slide {
    height: auto;
    display: flex;
  }

  .testimonial-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    min-height: 230px;
    padding: 20px 22px 18px;
    background: var(--color-white);
    border: 8px solid rgb(237 237 237 / 90%);
    box-shadow: 0 26px 70px rgba(15, 23, 42, 0.18);
    box-shadow: var(--shadow-soft);
    border-radius: 18px;
    text-align: left;
    opacity: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    .star {
      display: flex;
      justify-content: flex-start;
      margin-bottom: 12px;
      color: var(--color-secondary);
      background: var(--color-primary-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;

      i {
        font-size: 24px;
        margin: 0 2px;
      }
    }

    p {
      font-size: 15px;
      line-height: 1.6;
      margin-bottom: 16px;
    }

    h3 {
      font-size: 15px;
      font-weight: bold;
      margin: 0 0 2px;
      color: #111318;
    }

    h4 {
      font-size: 12px;
      color: #4b5058;
      margin: 0;
    }

    &:hover {
      transform: translateY(-4px);
      box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
    }
  }

  .testimonial-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
  }

  .testimonial-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: var(--color-white);
    background: var(--color-primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 600;
  }

  .testimonial-author {
    display: flex;
    flex-direction: column;
  }

  @media (max-width: 768px) {
    .testimonial-item {
      max-width: 100%;
      padding: 20px;

      p {
        font-size: 14px;
      }
    }
  }
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 8px !important;
  background: var(--color-gray-300);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--color-primary);
}

/* --- CTA --- */
.cta {
  background: linear-gradient(135deg, var(--color-main) 0%, #1a1d26 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;

  &::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 100%, var(--primary-12) 0%, transparent 60%);
    pointer-events: none;
  }
}

/* --- Clients --- */
.clients-section {
  .client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    height: 120px;
    transition: all 0.3s ease-in-out;

    img {
      max-width: 100%;
      max-height: 60px;
      filter: grayscale(100%);
      transition: all 0.3s ease-in-out;
      object-fit: contain;
    }

    &:hover img {
      filter: grayscale(0%);
      transform: scale(1.1);
    }
  }
}

@media (max-width: 768px) {
  .clients-section {
    padding: 60px 0;

    h2 {
      font-size: 32px;
    }
    .client-logo {
      padding: 10px;
      height: 100px;

      img {
        max-height: 50px;
      }
    }
  }
}

/* ===== PAGES ===== */

/* --- About Home & Page --- */
.about-home .list-box {
  padding: 30px 24px;
  border-radius: 24px;
  background-color: #ffffff;
  background-image:
    radial-gradient(at 20% 20%, rgba(209, 166, 255, 0.4) 0%, transparent 60%),
    radial-gradient(at 50% 40%, rgba(255, 140, 214, 0.3) 0%, transparent 70%),
    radial-gradient(at 80% 60%, rgba(255, 179, 71, 0.25) 0%, transparent 60%),
    radial-gradient(at 90% 90%, rgba(255, 77, 166, 0.2) 0%, transparent 50%);
  filter: saturate(1.2) contrast(0.9);
  border: 8px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.18);
  overflow: hidden;

  ul {
    list-style: none;
    margin-bottom: 0;

    li {
      margin-bottom: 12px;
      color: var(--color-main);
      text-indent: -12px;
      font-weight: 500;
      font-size: 18px;

      &:last-child {
        margin-bottom: 0;
      }

      i {
        font-size: 18px;
        margin-right: 4px;
        top: 3px;
        position: relative;
      }
    }
  }
}

.about-page .image {
  height: 100%;

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* --- Digital Marketing --- */
.dm-package-card {
  background: var(--color-white);
  border: 1px solid var(--primary-22);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
  border-radius: 10px;
  padding: 26px 24px;

  h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 16px;
    color: var(--color-text-main);
    min-height: 52px;
  }
}

.dm-package-price {
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 70px;
  font-weight: 700;
  letter-spacing: -4px;
  line-height: 1;
  margin-bottom: 18px;
  color: var(--color-text-main);

  @media (max-width: 768px) {
    font-size: 46px;
  }
}

.dm-package-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;

  li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--color-text-body);
    font-size: 16px;
    line-height: 1.6;

    i {
      color: var(--color-primary);
      font-size: 18px;
      line-height: 1.4;
      margin-top: 1px;
    }
  }
}

.dm-packages-cta {
  border-radius: var(--radius-pill);
  padding: 12px 24px;
  font-size: 14px;
}

.dm-tabs {
  .dm-pills {
    gap: 12px;

    .nav-link {
      border-radius: var(--radius-pill);
      padding: 12px 24px;
      font-size: 16px;
      font-weight: 500;
      letter-spacing: 0.3px;
      color: var(--color-white);
      background: var(--white-08);

      &:hover {
        color: var(--color-white);
        background: var(--white-12);
      }

      &.active {
        background: var(--color-primary-gradient);
        color: var(--color-white);
      }
    }

    @media (max-width: 768px) {
      flex-wrap: wrap;
    }
  }
}

.dm-tab-content {
  margin-top: 34px;
}

.dm-tab-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);

  img {
    width: 100%;
    height: 100%;
    max-height: 380px;
    object-fit: cover;
  }
}

.dm-tab-title {
  color: var(--color-white);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 14px;

  @media (max-width: 768px) {
    font-size: 22px;
  }
}

.dm-tab-text {
  color: var(--color-text-on-dark);
  font-size: 14px;
  line-height: 1.9;
  margin: 0 0 20px;
}

.dm-tab-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 600;

  i {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--white-18);
    background: var(--white-06);
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  }

  &:hover {
    color: var(--color-white);

    i {
      transform: translateX(3px);
      background: var(--white-12);
      border-color: var(--white-28);
    }
  }
}

.dm-tab-panel {
  @media (max-width: 768px) {
    padding: 18px;
  }
}

/* --- Portfolio / Projects --- */
.projects .box {
  position: relative;
  display: block;
  text-align: center;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.5s ease-in-out;

  .image {
    position: relative;
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    overflow: hidden;

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
      display: block;
    }

    @media (max-width: 768px) {
      height: auto;
    }
  }

  .project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black-70);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }

  .project-card-title {
    color: var(--color-white);
    font-size: 18px;
    font-weight: 600;
    transform: translateY(20px);
    transition: transform 0.3s ease-in-out;
  }

  &:hover {
    img {
      transform: scale(1.05);
    }
    .project-overlay {
      opacity: 1;
    }
    .project-card-title {
      transform: translateY(0);
    }
  }
}

.portfolio-page {
  .project-item {
    margin-bottom: 100px;

    &:last-child {
      margin-bottom: 0;
    }

    &:hover .project-image img {
      transform: scale(1.03);
    }

    @media (max-width: 991px) {
      margin-bottom: 60px;
    }
  }

  .project-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);

    img {
      width: 100%;
      height: auto;
      transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    }
  }

  .project-content {
    padding: 20px;
  }

  .project-category {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gray-400);
    margin-bottom: 15px;
  }

  .project-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 20px;
  }

  .project-description {
    color: var(--color-gray-400);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
  }

  .project-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-white);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;

    i {
      font-size: 18px;
      transition: 0.3s;
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      padding: 8px;
    }

    &:hover {
      color: var(--color-primary);

      i {
        border-color: var(--color-primary);
        transform: translateX(5px);
        color: var(--color-primary);
      }
    }
  }
}

/* --- Contact Page / Section --- */
.contact {
  .info {
    width: 100%;
    height: 100%;
    background: var(--color-white);
    padding: 15px;
    border-radius: 15px;

    .address, .email, .phone, .map {
      margin-bottom: 8px;
      background: var(--color-gray-200);
      padding: 6px;
      border-radius: 10px;

      &:hover {
        i {
          background: var(--color-primary);
          color: var(--color-white);
        }
        h3 {
          color: var(--color-primary);
        }
      }
    }

    i {
      font-size: 23px;
      color: var(--color-primary-dark);
      float: left;
      width: 50px;
      height: 52px;
      background: var(--color-white);
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 5px;
      transition: all 0.3s ease-in-out;
    }

    h3 {
      padding: 0 0 0 60px;
      font-size: 22px;
      font-weight: 600;
      margin-bottom: 5px;
      color: var(--color-text-main);
    }

    p {
      padding: 0 0 0 60px;
      margin-bottom: 0;
      font-size: 14px;
      color: var(--color-text-body);
    }

    @media (max-width: 768px) {
      h4 { font-size: 18px; }
      p { font-size: 13px; }
    }
  }

 

  .php-email-form {
    width: 100%;
    height: 100%;
    background: var(--color-white);
    padding: 15px;
    border-radius: 15px;

    .form-group {
      padding-bottom: 8px;
    }

    .error-message {
      display: none;
      color: var(--color-white);
      background: var(--color-primary);
      border-radius: 5px;
      text-align: left;
      padding: 15px;
      font-weight: 600;
      margin-bottom: 10px;

      ul {
        list-style: none;
        padding: 0;
      }
    }

    .sent-message {
      display: none;
      color: var(--color-white);
      background: var(--color-success);
      border-radius: 5px;
      text-align: center;
      padding: 15px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .loading {
      display: none;
      background: var(--color-white);
      text-align: center;
      padding: 15px;

      &::before {
        content: "";
        display: inline-block;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        margin: 0 10px -6px 0;
        border: 3px solid var(--color-success);
        border-top-color: var(--color-gray-300);
        animation: animate-loading 1s linear infinite;
      }
    }

    input, textarea {
      border-radius: 4px;
      box-shadow: none;
      font-size: 14px;
      background: var(--color-gray-200);
      border: 1px solid transparent;

      &:focus {
        border-color: var(--color-primary-dark);
      }
    }

    input {
      height: 44px;
    }

    textarea {
      padding: 10px 12px;
    }

    .btn-submit {
      font-weight: 500;
      font-size: 14px;
      letter-spacing: 0.5px;
      display: inline-flex;
      align-items: center;
      padding: 6px 20px 6px 24px;
      height: 50px;
      border-radius: 50px;
      border: 1.5px solid var(--color-primary-dark);
      color: var(--color-white);
      background: var(--color-primary-dark);
      transition: 0.3s;

      i {
        transform: rotate(45deg);
        font-size: 26px;
        margin-left: 6px;
        color: var(--color-white);
      }

      &:hover {
        background: var(--color-text-main);
        border-color: var(--color-text-main);
      }

      @media (max-width: 576px) {
        font-size: 13px;
        padding: 6px 16px;
        height: 46px;
      }
    }
  }
}

@keyframes animate-loading {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.contact-section {
  position: relative;
  overflow: hidden;
  background-color: var(--color-white);
  background: linear-gradient(90deg, var(--color-white) 50%, var(--color-primary) 50%);

  .contact-info-col {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    min-height: 600px;
  }

  .contact-form-col {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  @media (max-width: 991px) {
    background: var(--color-white);

    .contact-info-col,
    .contact-form-col {
      padding: 48px 24px;
      min-height: auto;
    }

    .contact-form-col {
      background: var(--color-primary);
    }

    .form-heading {
      font-size: 32px;
    }

    .cityscape-bg {
      width: 100%;
    }
  }
}

.contact-email a {
  font-size: 24px;
  font-weight: 600;
  color: var(--color-black);
  text-decoration: none;
}

.contact-address {
  font-size: 18px;
  color: var(--color-text-body);
  line-height: 1.6;

  .icon-wrapper {
    width: 40px;
    height: 40px;
    background: var(--color-accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 18px;
    flex-shrink: 0;
  }
}

.social-links-wrapper h5 {
  font-weight: 700;
  margin-bottom: 16px;
}

.social-links {
  a {
    font-size: 24px;
    color: var(--color-text-main);
    transition: color 0.3s ease;

    &:hover {
      color: var(--color-secondary);
    }
  }
}

.cityscape-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 100px;
  background-image: url('../img/city2.svg');
  background-repeat: repeat-x;
  background-position: bottom;
  background-size: contain;
  opacity: 1;
  pointer-events: none;
}

.form-heading {
  font-size: 40px;
  font-weight: 700;
  color: var(--color-black);
  line-height: 1.2;
  margin-bottom: 32px;
}

.contact-form-content {
  label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text-main);
  }

  .form-control {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--color-black);
    border-radius: 0;
    padding: 10px 0;
    font-size: 16px;

    &:focus {
      box-shadow: none;
      border-color: var(--color-black);
    }

    &::placeholder {
      color: var(--color-gray-600);
    }
  }
}

.contact-hero {
  padding: 80px 0 40px;
  background-color: var(--color-white);

  h1 {
    font-size: 56px;
    font-weight: 700;
    color: var(--color-black);
    line-height: 1.2;
    margin-bottom: 40px;
  }

  @media (max-width: 991px) {
    h1 { font-size: 40px; }
  }
}

.hire-us-badge {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-text-body);
  display: block;
  margin-bottom: 20px;
}

.contact-page .contact-card {
  background: var(--color-white);
	filter: none;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  padding: 60px;
  margin-top: 20px;
  position: relative;
}

.contact-card {
  background: var(--color-white);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  padding: 60px;
  margin-top: 20px;
  position: relative;
  padding: 30px 24px;
  border-radius: 24px;
  background-color: #ffffff;
  background-image: radial-gradient(at 20% 20%, rgba(209, 166, 255, 0.4) 0%, transparent 60%),
  radial-gradient(at 50% 40%, rgba(255, 140, 214, 0.3) 0%, transparent 70%),
  radial-gradient(at 80% 60%, rgba(255, 179, 71, 0.25) 0%, transparent 60%),
  radial-gradient(at 90% 90%, rgba(255, 77, 166, 0.2) 0%, transparent 50%);
  filter: saturate(1.2) contrast(0.9);
  border: 8px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  position: relative;

  h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 14px;
  }

  .subtitle {
    color: var(--color-text-body);
    font-size: 16px;
    max-width: 100%;

    a {
      color: var(--color-black);
      font-weight: 700;
      text-decoration: none;

      &:hover {
        text-decoration: underline;
      }
    }
  }

  .form-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 8px;
  }

  .form-control {
    border: none;
    border-bottom: 1px solid var(--color-gray-300);
    border-radius: 0;
    padding: 10px 0;
    font-size: 20px;
    color: var(--color-text-body);
    background-color: transparent;
    transition: border-color 0.3s ease;

    &:focus {
      box-shadow: none;
      border-color: var(--color-black);
    }

    &::placeholder {
      color: var(--color-gray-400);
      font-weight: 400;
    }
  }

  textarea.form-control {
    resize: none;
  }

  @media (max-width: 991px) {
    padding: 24px 20px;
  }

  @media (max-width: 576px) {
    h2 {
      font-size: 26px;
      line-height: 1.2;
    }
  }
}

/* --- Blog --- */
.blog {
  .blog-card {
    background: transparent;
    border: none;
    transition: all 0.3s ease;
    padding: 0;
    overflow: hidden;

    .blog-img {
      position: relative;
      overflow: hidden;
      margin-bottom: 20px;
      border-radius: 16px;

      img {
        transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
        width: 100%;
        height: 320px;
        object-fit: cover;
      }
    }

    .blog-title {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 15px;
      line-height: 1.4;

      a {
        color: var(--color-white);
        transition: 0.3s;
        text-decoration: none;

        &:hover {
          color: var(--color-primary);
        }
      }
    }

    .blog-excerpt {
      color: var(--color-gray-400);
      margin-bottom: 20px;
      font-size: 15px;
      line-height: 1.6;
    }

    .read-more {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--color-white);
      font-weight: 500;
      font-size: 15px;
      transition: 0.3s;
      text-decoration: none;

      i {
        font-size: 16px;
        transition: 0.3s;
      }

      &:hover {
        color: var(--color-primary);

        i {
          transform: translateX(5px);
        }
      }
    }

    &:hover .blog-img img {
      transform: scale(1.1);
    }
  }

  .blog-content {
    margin-bottom: 24px;
  }

  .blog-category {
    color: var(--color-white);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
  }

  .blog-date {
    font-size: 12px;
    margin-bottom: 10px;
    color: var(--color-gray-400);
  }

  @media (max-width: 768px) {
    .blog-card {
      .blog-img img { height: 220px; }
      .blog-title { font-size: 20px; }
      .blog-excerpt { font-size: 14px; }
    }
  }

  @media (max-width: 576px) {
    .blog-card .blog-img img { height: 180px; }
  }

  /* Single Entry */
  .entry {
    margin-bottom: 60px;

    .entry-title {
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 24px;
    }

    .entry-meta {
      margin-bottom: 20px;
      color: var(--color-text-muted);

      ul {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        align-items: center;
        padding: 0;
        margin: 0;

        li {
          padding-left: 20px;

          &:first-child {
            padding-left: 0;
          }
        }
      }

      i {
        font-size: 16px;
        margin-right: 8px;
        line-height: 0;
      }

      a {
        color: var(--color-gray-500);
        font-size: 14px;
        display: inline-block;
        line-height: 1;
      }
    }

    .entry-content {
      h3 {
        font-size: 24px;
        font-weight: 600;
        margin-top: 40px;
        margin-bottom: 20px;
      }

      p {
        font-size: 18px;
        line-height: 1.6;
      }

      img {
        margin: 40px 0 20px;
        border-radius: 10px;
      }

      .read-more {
        text-align: right;

        a {
          display: inline-block;
          background: var(--color-primary);
          color: var(--color-white);
          padding: 6px 20px;
          transition: 0.3s;
          font-size: 14px;
          border-radius: 4px;

          &:hover {
            background: var(--color-primary-dark);
          }
        }
      }
    }
  }

  .sidebar {
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    background: var(--color-white);
    border-radius: 10px;
    margin-top: 0;

    .sidebar-title {
      font-size: 20px;
      font-weight: 700;
      padding: 0 0 0 0;
      margin: 0 0 15px 0;
      color: var(--color-default);
      position: relative;
    }

    .recent-posts {
      .post-item {

        margin-top: 15px;
        display: flex;
        gap: 16px;
      }

      .image {
        min-width: 80px;
        max-width: 80px;
        border-radius: 5px;
        overflow: hidden;

        img {
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
      }

      h4 {
        font-size: 15px;
        font-weight: bold;

        a {
          color: var(--color-default);
          transition: 0.3s;

          &:hover {
            color: var(--color-primary);
          }
        }
      }

      time {
        display: block;
        font-style: italic;
        font-size: 14px;
        margin-bottom: 6px;
        color: var(--color-gray-400);
      }
    }

    @media (max-width: 768px) {
      margin-top: 24px;
      padding: 16px;

      .recent-posts .post-item {
        gap: 12px;
      }
    }
  }
}

.feature-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.feature-list li i {
  font-size: 20px;
}

/* ===== LANDING PAGE SPECIFIC ===== */
.landing-local {
  .list-box {
    background: var(--color-accent-gradient);
    padding: 30px 24px;
    border-radius: 24px;

    ul {
      list-style: none;
      margin-bottom: 0;
      padding-left: 0;

      li {
        margin-bottom: 12px;
        color: var(--color-text-on-dark);
        font-weight: 500;
        font-size: 18px;
        display: flex;
        align-items: center;
        gap: 8px;

        i {
          font-size: 18px;
          color: var(--color-white);
          flex-shrink: 0;
        }
      }
    }
  }

  .check-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;

    li {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-bottom: 10px;
      font-size: 17px;

      i {
        color: var(--color-primary);
        font-size: 20px;
      }
    }
  }
}

.landing-includes {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;

  li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 18px;

    i {
      color: var(--color-primary);
      font-size: 22px;
      flex-shrink: 0;
    }
  }
}

.landing-price {
  font-size: 28px;
  font-weight: 600;
  color: var(--color-primary-dark);
}

.landing-difference {
  .content p {
    font-size: 18px;
    line-height: 1.7;
  }
}

.landing-combo-card {
  padding: 30px 24px;
  border-radius: 24px;
  background-color: #ffffff;
  background-image:
    radial-gradient(at 20% 20%, rgba(209, 166, 255, 0.4) 0%, transparent 60%),
    radial-gradient(at 50% 40%, rgba(255, 140, 214, 0.3) 0%, transparent 70%),
    radial-gradient(at 80% 60%, rgba(255, 179, 71, 0.25) 0%, transparent 60%),
    radial-gradient(at 90% 90%, rgba(255, 77, 166, 0.2) 0%, transparent 50%);
  filter: saturate(1.2) contrast(0.9);
  border: 8px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  position: relative;

  &::before {
    content: "";
    position: absolute;
    inset: -40px;
    background: radial-gradient(42% 42% at 20% 30%, rgba(245, 158, 11, 0.18) 0%, rgba(245, 158, 11, 0) 70%),
      radial-gradient(46% 46% at 78% 70%, rgba(255, 61, 122, 0.12) 0%, rgba(255, 61, 122, 0) 72%);
    pointer-events: none;
  }

  > * {
    position: relative;
    z-index: 1;
  }

  h3 {
    font-size: 24px;
    line-height: 1.7;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: var(--color-black);
  }

  p {
    font-size: 18px;
    line-height: 1.4;
    color: var(--color-black);
  }
}

.landing-combo-steps {
  padding: 34px 30px;
  border-radius: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  border: 8px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
  position: relative;
  overflow: hidden;
}

.landing-combo-kicker {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--color-offwhite);
  color: var(--color-black);
  font-weight: 700;
  letter-spacing: 0.3px;
}

.landing-combo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;

  span {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    border-radius: 999px;
    background: var(--color-white);
    color: var(--color-black);
    font-weight: 700;
    letter-spacing: 0.3px;
  }
}

.landing-combo-steps-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.landing-combo-routes {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;

  li {
    position: relative;
    padding-left: 14px;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.5;
    color: var(--color-text-body);

    &::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.55em;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--color-primary);
    }

    &:last-child {
      margin-bottom: 0;
    }

    a {
      font-weight: 600;
      text-decoration: underline;
      text-underline-offset: 2px;
    }
  }
}

.process-step {
  padding: 24px 20px;
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: 0 6px 24px -2px rgb(119 139 165 / 0.2);
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;

  &:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.1);
  }

  .process-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-primary-gradient);
    color: var(--color-white);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
  }

  h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
  }
}

.landing-footer-line p {
  font-size: 14px;
  letter-spacing: 0.2px;
}

/* ===== MOBILE RESPONSIVE ===== */

@media (max-width: 991px) {
  .about-home .sticky-top {
    position: static !important;
    top: auto !important;
  }

  .section-dark-bg {
    padding: 60px 0;
  }

  .about-home .list-box {
    padding: 22px 18px;
    border-width: 6px;
  }
}

@media (max-width: 768px) {
  .feature-frame {
    padding: 16px;
    border-width: 4px;
    border-radius: 20px;

    .image {
      border-width: 4px;
      border-radius: 16px;
    }

    .price-tag .price {
      font-size: 36px;
    }
  }

  .feature-center-panel {
    padding: 28px 20px;
    border-width: 4px;
    border-radius: 18px;
    min-height: 320px;
  }

  .feature-center-panel p {
    font-size: 16px;
  }

  .feature-center-panel-actions .btn-main {
    flex: 1 1 100%;
    font-size: 15px;
  }

  .hosting-split-panel {
    padding: 24px 20px;
    border-width: 4px;
    border-radius: 18px;
  }

  .hosting-split-panel h3 {
    font-size: 22px;
  }

  .hosting-split-actions .btn-main {
    flex: 1 1 100%;
  }

  .hosting-split-cta {
    padding: 22px 20px;
    border-width: 4px;
    border-radius: 18px;
    justify-content: center;
    text-align: center;
  }

  .hosting-split-cta-copy {
    align-items: center;
    max-width: none;
  }

  .hosting-split-cta-actions {
    width: 100%;
  }

  .hosting-split-cta-actions .btn-main {
    flex: 1 1 100%;
  }

  .hosting-why-card {
    padding: 24px 20px;
    border-width: 4px;
    border-radius: 18px;
  }

  .hosting-why-grid {
    grid-template-columns: 1fr;
  }

  .landing-combo-card,
  .landing-combo-steps {
    padding: 22px 18px;
    border-width: 6px;
  }

  .landing-combo-card h3 {
    font-size: 20px;
    line-height: 1.5;
  }

  .landing-combo-card p {
    font-size: 16px;
  }

  .landing-combo-steps-title {
    font-size: 20px;
  }

  .landing-combo-steps .d-flex.justify-content-between {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 8px;
  }

  .cta .btn-main {
    width: 100%;
    justify-content: center;
  }

  .hero-buttons {
    flex-wrap: wrap;
  }

  .btn-phone-lg {
    font-size: 26px;
    padding: 10px 16px;
    white-space: normal;
    text-align: center;
  }

  .dm-package-card h3 {
    min-height: auto;
  }
}
