:root {
  --green: #40bd24;
  --green2: #1f8e16;
  --green-light: rgba(64, 189, 36, 0.1);
  --ink: #050809;
  --panel: #0c1010;
  --panel-light: #111515;
  --muted: #aeb7b1;
  --line: rgba(185, 206, 188, 0.21);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.5);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--ink);
  color: #f4f7f4;
  font-family: Manrope, Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
}
.site-header {
  min-height: 100px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 8px clamp(22px, 4vw, 68px);
  background: linear-gradient(180deg, rgba(3, 5, 6, 0.95), rgba(3, 5, 6, 0.8));
  border-bottom: 1px solid rgba(21, 32, 25, 0.5);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.35);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}
.brand-mark {
  width: 44px;
  height: 44px;
  border: 2px solid var(--green);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 23px;
  color: var(--green);
  box-shadow: 0 0 25px rgba(64, 189, 36, 0.4);
  transition: all 0.3s ease;
  background: rgba(64, 189, 36, 0.05);
}
.brand-mark:hover {
  box-shadow: 0 0 40px rgba(64, 189, 36, 0.6);
  transform: scale(1.05);
}
.brand b {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -1.5px;
}
.brand b span,
em {
  color: var(--green);
  font-style: normal;
}
.brand small {
  display: block;
  font-size: 9px;
  letter-spacing: 2px;
  margin-top: 5px;
}


.brand-text {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  margin: -1px;
}

/* =========================================================
   Mobile tweaks applied: reduce hero height, improve tap targets
   and adjust quick-solutions for small screens.
   (Safe overrides placed at end to avoid altering upstream rules.)
========================================================= */

@media (max-width: 520px) {
  .hero {
    min-height: 520px;
    padding: 60px 18px 140px;
  }

  .hero-copy {
    max-width: 100%;
    padding-right: 0;
  }

  .hero h1 {
    font-size: 36px;
    line-height: 1.08;
  }

  .menu-toggle {
    font-size: 28px;
    padding: 10px 12px;
    border-radius: 8px;
  }

  #main-nav a {
    padding: 14px 12px;
    font-size: 15px;
  }

  .quick-solutions {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    position: relative;
    width: 100%;
    margin-top: 18px;
  }

  .quick-solutions a {
    height: 90px;
  }

  .btn,
  .btn-primary,
  .btn-outline {
    min-height: 48px;
    padding: 12px 14px;
  }

  .site-header nav.open {
    padding-bottom: 12px;
  }

  /* Reduce logo size and header padding on small screens */
  .visiontek-lockup {
    width: 220px;
  }

  .brand-text {
    display: none; /* keep header compact on small screens */
  }

  .site-header {
    min-height: 80px;
    padding: 6px 16px;
  }

}

/* Ensure mobile hamburger is visible across page-specific overrides */
@media (max-width: 720px) {
  .site-header .menu-toggle {
    display: block !important;
    z-index: 9999 !important;
    position: absolute !important;
    right: 16px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    margin: 0 !important;
    color: #fff !important;
    background: rgba(0,0,0,0.28) !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
    padding: 8px 12px !important;
    border-radius: 8px !important;
    font-size: 28px !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.35) !important;
  }

  /* Render hamburger bars when markup uses spans */
  .menu-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 48px !important;
    height: 48px !important;
    padding: 6px !important;
    background: rgba(0,0,0,0.28) !important;
    border-radius: 8px !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
    color: #fff !important;
  }

  .menu-toggle span {
    display: block !important;
    width: 20px !important;
    height: 2px !important;
    background: currentColor !important;
    margin: 3px 0 !important;
    border-radius: 2px !important;
    transition: transform 0.25s ease, opacity 0.25s ease !important;
  }

  .menu-toggle span:nth-child(2) {
    width: 16px !important;
  }

  /* Make logo slightly larger on small phones for visibility */
  .visiontek-lockup {
    width: 200px !important;
  }

  /* Keep brand text hidden to preserve space */
  .brand-text {
    display: none !important;
  }
}
.site-header nav {
  display: flex;
  gap: 22px;
  align-items: center;
  margin: auto;
  font-size: 13px;
  font-weight: 700;
  color: #c4c9c5;
}
.site-header nav a {
  padding: 30px 0;
  border-bottom: 2px solid transparent;
}
.site-header nav a:hover,
.site-header nav a.active {
  color: var(--green);
  border-color: var(--green);
}
.header-phone {
  font-weight: 800;
  white-space: nowrap;
}
.btn {
  border: none;
  border-radius: 7px;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 800;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}
.btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.15);
  box-shadow: var(--shadow-lg);
}
.btn:hover::before {
  width: 300px;
  height: 300px;
}
.btn:active {
  transform: translateY(-1px);
  filter: brightness(1.1);
}
.btn-primary {
  color: #fff;
  background: linear-gradient(120deg, var(--green2), #45c928);
  box-shadow: 0 8px 24px rgba(64, 189, 36, 0.25);
  font-weight: 700;
  letter-spacing: 0.5px;
}
.btn-primary:hover {
  background: linear-gradient(120deg, #228e11, #52d42f);
  box-shadow: 0 12px 32px rgba(64, 189, 36, 0.4);
}
.btn-outline {
  color: #e8eee9;
  background: rgba(7, 16, 12, 0.6);
  border: 1.5px solid #6c7970;
  backdrop-filter: blur(4px);
}
.btn-outline:hover {
  border-color: var(--green);
  background: rgba(64, 189, 36, 0.08);
  color: var(--green);
}
.menu-toggle {
  display: none;
  color: white;
  background: transparent;
  border: 0;
  font-size: 24px;
}
.btn,
.btn-primary,
.btn-outline,
.header-whatsapp {
  min-height: 46px;
  line-height: 1.2;
  white-space: normal;
  text-align: center;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding-inline: 18px;
}
.btn {
  width: auto;
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.actions .btn,
.actions a {
  min-width: 220px;
}
.header-whatsapp {
  display: inline-flex;
  border-radius: 999px;
  padding: 0 16px;
  background: linear-gradient(120deg, #25d366, #128c7e);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  box-shadow: 0 8px 22px rgba(18, 140, 126, 0.24);
}
.header-whatsapp:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}
.info-modal {
  padding: 0;
  border: 0;
  background: transparent;
  max-width: 560px;
  width: min(92vw, 560px);
}
.info-modal::backdrop {
  background: rgba(2, 6, 5, 0.82);
}
.info-modal .modal-content {
  background: linear-gradient(145deg, #071008, #0d1a10);
  color: #f2f6f1;
  border: 1px solid #3d6d3b;
  border-radius: 16px;
  padding: 24px 24px 22px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
}
.info-modal .modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}
.info-modal .eyebrow {
  margin: 0 0 6px;
  color: #52c640;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.info-modal h2 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.2;
}
.info-modal p {
  margin: 0 0 16px;
  color: #dce7db;
  font-size: 14px;
  line-height: 1.7;
}
.info-modal .btn {
  margin-top: 4px;
}
@media (max-width: 720px) {
  .btn,
  .btn-primary,
  .btn-outline,
  .header-whatsapp {
    width: 100%;
    min-height: 48px;
    padding-block: 13px;
  }
  .actions {
    flex-direction: column;
    align-items: stretch;
  }
  .actions .btn,
  .actions a {
    min-width: 0;
  }
  .site-header .header-whatsapp {
    display: none;
  }
  .header-phone {
    font-size: 12px;
  }
  .info-modal .modal-content {
    padding: 20px;
  }
}
.hero {
  min-height: 740px;
  position: relative;
  overflow: hidden;
  padding: 104px clamp(22px, 5.3vw, 68px) 128px;
}
.hero-image,
.smart-home {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #040708 5%, #040708a6 35%, #02040622 67%, #020406aa),
    url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1800&q=85")
      center/cover;
}
.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  right: -120px;
  bottom: -270px;
  background: #249a1855;
  filter: blur(110px);
}
.hero-copy {
  max-width: 580px;
  position: relative;
  z-index: 1;
}
.eyebrow,
.section-number {
  color: var(--green);
  font-size: 12px;
  letter-spacing: 1.1px;
  font-weight: 800;
}
.hero h1,
h2 {
  font-family: Syne, Manrope, sans-serif;
  letter-spacing: -2.4px;
  line-height: 1.08;
  margin: 14px 0 24px;
}
.hero h1 {
  font-size: clamp(44px, 5.4vw, 72px);
}
.hero-copy > p:not(.eyebrow) {
  max-width: 510px;
  color: #d1d8d2;
  font-size: 15px;
}
.actions {
  display: flex;
  gap: 15px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.quick-solutions {
  position: absolute;
  right: 6%;
  top: 105px;
  width: 288px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  z-index: 1;
}
.quick-solutions a {
  height: 104px;
  border: 1px solid #68766b77;
  border-radius: 15px;
  background: #071009b8;
  backdrop-filter: blur(7px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #dce6de;
  font-size: 28px;
}
.quick-solutions span {
  font-size: 11px;
  font-weight: 700;
}
.stat-bar {
  background: #090d0de8;
  border: 1px solid var(--line);
  border-radius: 13px;
  display: flex;
}
.stat-bar > div {
  padding: 14px 20px;
  flex: 1;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.stat-bar > div:last-child {
  border: 0;
}
.stat-bar b {
  color: var(--green);
  font-size: 20px;
}
.stat-bar span {
  font-size: 10px;
  color: #d5ddd6;
}
.hero-stats {
  position: absolute;
  z-index: 2;
  left: 5.3%;
  right: 5.3%;
  bottom: 28px;
}
.section {
  padding: 75px clamp(24px, 4vw, 64px);
}
.light-section {
  background: #fafbfa;
  color: #111;
}
.section-number {
  font-size: 25px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
.section-number span {
  font-size: 14px;
  color: inherit;
  vertical-align: 3px;
  margin-left: 12px;
}
.center-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 30px;
}
.center-intro h2 {
  font: 800 23px Manrope;
  margin: 0;
}
.center-intro p {
  font-size: 14px;
  color: #424942;
  margin: 5px auto;
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.benefit {
  min-height: 210px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  padding: 24px 25px 24px 44%;
  background: #fff;
  border: 1px solid #e4e7e4;
  box-shadow: 0 6px 20px #0b190d10;
  position: relative;
  overflow: hidden;
}
.benefit:before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 37%;
  background: #152319;
}
.benefit h3 {
  font: 800 21px Syne;
  margin: 0 0 10px;
  line-height: 1.05;
}
.benefit p {
  font-size: 13px;
  margin: 0;
  color: #3f4740;
}
.benefit i {
  position: absolute;
  left: calc(37% - 24px);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--green);
  font-style: normal;
  font-size: 23px;
  font-weight: 800;
}
.photo-a:before,
.photo-c:before,
.photo-d:before {
  background: center/cover;
}
.photo-a:before {
  background-image: url("https://images.unsplash.com/photo-1581092795360-fd1ca04f0952?auto=format&fit=crop&w=500&q=70");
}
.photo-b:before {
  background-image: url("https://images.unsplash.com/photo-1558002038-1055907df827?auto=format&fit=crop&w=500&q=75");
}
.photo-c:before {
  background-image: url("https://images.unsplash.com/photo-1549317661-bd32c8ce0db2?auto=format&fit=crop&w=500&q=70");
}
.photo-d:before {
  background-image: url("https://images.unsplash.com/photo-1600585152915-d208bec867a1?auto=format&fit=crop&w=500&q=70");
}
.light-stats {
  margin-top: 26px;
  background: #060908;
  color: #fff;
}
.solutions {
  background: #050808;
  background-image:
    linear-gradient(#06100aab, #050808f5),
    url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=1600&q=70");
  background-size: cover;
  background-position: top center;
}
.solution-heading,
.project-top,
.packages-heading,
.payment-top {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: start;
}
.solution-heading h2,
.project-top h2,
.packages-heading h2,
.payment-top h2,
.brands h2,
.process h2,
.benefit-feature h2 {
  font-size: clamp(35px, 4vw, 55px);
}
.solution-heading p,
.project-top p,
.packages-heading p,
.payment-top p,
.brands > div > p,
.benefit-feature > div > p {
  color: #c4cdc6;
  max-width: 550px;
  font-size: 14px;
}
.help-box {
  border-left: 1px solid #45724c;
  padding: 10px 0 10px 30px;
  min-width: 280px;
  color: var(--green);
  display: flex;
  gap: 14px;
  align-items: start;
  font-size: 26px;
}
.help-box span {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  color: #e6ece7;
}
.help-box small {
  font-size: 10px;
  color: #a7b1a9;
}
.help-box strong {
  position: absolute;
  margin: 90px 0 0 39px;
  font-size: 12px;
  border: 1px solid var(--green);
  padding: 10px 16px;
  border-radius: 7px;
}
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 55px;
}
.solutions-grid article {
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(12, 16, 16, 0.8), rgba(16, 20, 19, 0.6));
  border-radius: 12px;
  overflow: hidden;
  padding: 0 16px 15px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(2px);
  position: relative;
}
.solutions-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(64, 189, 36, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.solutions-grid article:hover::before {
  opacity: 1;
}
.solutions-grid article:hover {
  border-color: var(--green);
  background: linear-gradient(135deg, rgba(12, 16, 16, 0.95), rgba(16, 20, 19, 0.8));
  box-shadow: 0 12px 36px rgba(64, 189, 36, 0.15);
  transform: translateY(-6px);
}
.card-slider {
  height: 170px;
  width: calc(100% + 32px);
  margin: 0 -16px 13px;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  position: relative;
  background-color: #0d140e;
}
.card-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.card-slide.active {
  opacity: 1;
}
.solutions-grid h3 {
  margin: 0 0 6px;
  font-size: 16px;
}
.solutions-grid p {
  color: #aab4ac;
  font-size: 11px;
  margin: 0 0 5px;
}
.solutions-grid a,
.text-link {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}
.projects {
  background: #040606;
}
.mini-stats {
  width: 62%;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}
.project {
  height: 245px;
  border: 1px solid var(--line);
  border-radius: 9px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: center/cover;
  position: relative;
  cursor: pointer;
  transition: transform 0.2s;
}
.project:hover {
  transform: translateY(-3px);
}
.project-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: zoom-in;
}
.carousel-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}
.carousel-image.active {
  opacity: 1;
}
.project > div {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  position: relative;
  z-index: 2;
}
.project span,
.project b {
  font-size: 9px;
  background: #0b1110e8;
  border-radius: 4px;
  padding: 4px 8px;
}
.project b {
  background: var(--green);
  color: #fff;
}
.project footer {
  background: linear-gradient(transparent, #050807 25%);
  padding: 37px 13px 12px;
  margin-bottom: -2px;
  position: relative;
  z-index: 2;
}
.project h3 {
  font-size: 15px;
  margin: 0;
}
.project p {
  font-size: 10px;
  color: #c4cdc7;
  margin: 4px 0;
}
.project footer a {
  font-size: 10px;
  color: var(--green);
  font-weight: 800;
}
.image-modal {
  padding: 0;
  border: 0;
  background: transparent;
  max-width: min(94vw, 960px);
  width: min(94vw, 960px);
}
.image-modal::backdrop {
  background: rgba(2, 6, 5, 0.86);
}
.image-modal .modal-content {
  background: #030706;
  border: 1px solid #3b533d;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}
.image-modal .modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}
.image-modal .modal-image {
  width: 100%;
  max-height: min(78vh, 720px);
  object-fit: contain;
  border-radius: 12px;
  display: block;
}
.image-modal .modal-caption {
  margin: 12px 0 0;
  color: #dfe8df;
  font-size: 13px;
}
/* Project background images removed - using carousel images instead */
.cta-strip {
  border: 1px solid var(--line);
  margin-top: 18px;
  padding: 16px;
  display: flex;
  gap: 24px;
  align-items: center;
  border-radius: 9px;
}
.cta-strip > div {
  margin-right: auto;
  display: flex;
  flex-direction: column;
}
.cta-strip b {
  font-size: 16px;
}
.cta-strip span {
  font-size: 11px;
  color: #aeb8af;
}
.benefits-dark {
  background: #020606;
}
.benefit-feature {
  min-height: 590px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  align-items: center;
  gap: 20px;
}
.smart-home {
  position: relative;
  inset: auto;
  height: 500px;
  border-radius: 50%;
  background:
    radial-gradient(transparent 48%, #35a82a55 49%, transparent 51%),
    url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1000&q=75")
      center/cover;
}
.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.benefit-list div {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  gap: 15px;
  color: var(--green);
  font-size: 25px;
}
.benefit-list span {
  display: flex;
  flex-direction: column;
  color: white;
  font-size: 13px;
}
.benefit-list small {
  font-size: 10px;
  color: #adb8ae;
}
.comfort-bar,
.quality-row {
  border: 1px solid #3f9633aa;
  border-radius: 12px;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.comfort-bar b {
  font-size: 19px;
}
.comfort-bar span {
  font-size: 12px;
  color: #c2ccc3;
}
.comfort-bar small {
  font-size: 11px;
  color: var(--green);
  margin-left: auto;
}
.brands {
  background: linear-gradient(100deg, #030606 30%, #07110b);
}
.brands > div:first-child {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 355px;
}
.products-montage {
  background: url("https://images.unsplash.com/photo-1558002038-1055907df827?auto=format&fit=crop&w=1000&q=80")
    center/cover;
  border: 1px solid #45c937;
  border-radius: 22px;
}
.brand-logos {
  padding: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-around;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 13px;
  font-size: 22px;
  color: #dfe7e0;
}
.brand-logos b:nth-child(2),
.brand-logos b:nth-child(7) {
  color: #ec3b27;
}
.brand-logos b:nth-child(3) {
  color: #e2e2e2;
}
.quality-row {
  margin-top: 20px;
  justify-content: space-between;
}
.quality-row div {
  display: flex;
  flex-direction: column;
}
.quality-row div:first-child {
  flex-direction: row;
  gap: 20px;
  max-width: 420px;
}
.quality-row strong {
  font-size: 55px;
  color: var(--green);
}
.quality-row b {
  color: var(--green);
  font-size: 27px;
}
.quality-row span {
  font-size: 10px;
  color: #c5cfc6;
}
.quality-row small {
  display: block;
  font-size: 12px;
  color: #adb8af;
}
.process {
  background: linear-gradient(180deg, #07130b, #030706);
}
.process-intro {
  display: flex;
  justify-content: space-between;
}
.process blockquote {
  width: 230px;
  margin: 0;
  border: 1px solid #499c3d;
  border-radius: 14px;
  padding: 16px;
  color: var(--green);
  font-size: 32px;
}
.process blockquote span {
  display: block;
  font-size: 13px;
  color: #e9eeea;
}
.process blockquote b {
  font-size: 22px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 22px;
}
.process-grid article {
  min-height: 240px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(#09100b88, #090d0c);
  position: relative;
}
.process-grid article > b {
  background: var(--green);
  padding: 5px 8px;
  border-radius: 4px;
}
.process-grid h3 {
  margin: 110px 0 3px;
  font-size: 16px;
}
.process-grid p {
  font-size: 11px;
  color: #bbc5bd;
  margin: 0;
}
.packages {
  background: #050706;
}
.package-promise {
  padding: 18px;
  border: 1px solid #4a993e;
  border-radius: 14px;
  color: #cdd7ce;
  font-size: 14px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 25px;
  align-items: stretch;
}
.pricing-grid article {
  background: #0a0e0d;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 10px;
  display: flex;
  flex-direction: column;
}
.pricing-grid article.featured {
  border: 1px solid #d9aa29;
  box-shadow: 0 0 25px #d7a92034;
}
.pricing-grid label {
  font-weight: 800;
  font-size: 11px;
  background: #2d841f;
  width: max-content;
  border-radius: 5px;
  padding: 4px 10px;
  position: absolute;
  z-index: 1;
}
.price-img {
  height: 170px;
  margin: -10px -10px 13px;
  background: center/cover;
  border-radius: 8px;
}
.package-basic,
.package-silver,
.package-gold {
  background-image: url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=500&q=70");
}
.package-platinum {
  background-image: url("https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?auto=format&fit=crop&w=500&q=70");
}
.package-cinema {
  background-image: url("https://images.unsplash.com/photo-1593784991095-a205069470b6?auto=format&fit=crop&w=500&q=70");
}
.pricing-grid h3 {
  font-size: 16px;
  color: var(--green);
  margin: 0;
}
.pricing-grid strong {
  font-size: 20px;
  margin: 5px 0;
}
.pricing-grid p,
.pricing-grid li {
  font-size: 10px;
  color: #b8c3ba;
}
.pricing-grid ul {
  padding: 0;
  margin: auto 0 13px;
  list-style: none;
  line-height: 1.9;
}
.pricing-grid li:before {
  content: "✓";
  color: var(--green);
  margin-right: 5px;
}
.pricing-grid .btn {
  padding: 10px;
  font-size: 11px;
}
.payment {
  background: linear-gradient(110deg, #040806, #0b170d);
}
.payment-assurance {
  display: flex;
  gap: 30px;
}
.payment-assurance span {
  display: flex;
  flex-direction: column;
  color: var(--green);
  font-size: 20px;
}
.payment-assurance b {
  font-size: 12px;
  color: #e2eae3;
}
.payment-assurance small {
  font-size: 9px;
  color: #abb6ad;
}
.payment-layout {
  display: grid;
  grid-template-columns: 4fr 1.25fr;
  gap: 16px;
  margin-top: 25px;
}
.payment-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.payment-cards article {
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 13px;
  min-height: 240px;
}
.payment-cards b {
  background: var(--green);
  padding: 4px 7px;
  border-radius: 3px;
}
.payment-cards i {
  display: block;
  color: var(--green);
  font-size: 47px;
  font-style: normal;
  text-align: center;
  margin: 22px;
}
.payment-cards h3 {
  font-size: 14px;
  text-transform: uppercase;
}
.payment-cards p,
.payment-cards small {
  font-size: 10px;
  color: #aeb9b0;
}
.bank-details {
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 15px;
  display: flex;
  gap: 40px;
  align-items: center;
  color: var(--green);
  font-size: 11px;
}
.bank-details span {
  color: #d8e0d9;
}
.bank-details strong,
.bank-details small {
  display: block;
  color: var(--green);
  font-size: 15px;
}
.bank-details small {
  font-size: 8px;
  color: #aeb9b0;
}
.payment aside {
  border: 1px solid #4c9e3d;
  border-radius: 12px;
  padding: 22px;
  background: #0a110b;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.payment aside h3 {
  color: var(--green);
  font-size: 14px;
  margin: 0;
}
.payment aside p,
.payment aside span {
  font-size: 11px;
  color: #b8c3ba;
}
.payment aside > b {
  font-size: 12px;
  margin-top: 10px;
}
.payment aside .btn {
  margin-top: auto;
}
footer {
  background: #090d0c;
  padding: 42px clamp(24px, 4vw, 64px);
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
}
footer b {
  color: var(--green);
}
footer p,
footer a {
  font-size: 12px;
  color: #c2cbc3;
}
.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #27b842;
  z-index: 10;
  display: grid;
  place-items: center;
  color: white;
  font-size: 0;
  box-shadow: 0 4px 20px #1cb23f88;
}
.header-whatsapp img,
.whatsapp img {
  width: 24px;
  height: 24px;
  display: block;
}
.header-whatsapp {
  gap: 10px;
}
dialog {
  border: 1px solid rgba(64, 189, 36, 0.3);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(11, 17, 13, 0.95), rgba(12, 16, 15, 0.9));
  color: #fff;
  max-width: 480px;
  padding: 32px;
  width: calc(100% - 34px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  animation: scaleIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
dialog::backdrop {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}
.modal-close {
  position: absolute;
  right: 14px;
  top: 10px;
  background: rgba(64, 189, 36, 0.1);
  border: 1px solid rgba(64, 189, 36, 0.3);
  color: #fff;
  font-size: 28px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.modal-close:hover {
  background: rgba(64, 189, 36, 0.2);
  border-color: var(--green);
  transform: scale(1.1) rotate(90deg);
  color: var(--green);
}
dialog h2 {
  font-size: 30px;
  margin: 5px 0;
  background: linear-gradient(120deg, var(--green), #60d946);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
dialog > p:not(.eyebrow) {
  color: #bcc7bd;
  font-size: 13px;
}
form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}
input,
textarea,
select {
  background: linear-gradient(135deg, rgba(19, 26, 20, 0.8), rgba(19, 26, 20, 0.6));
  border: 1px solid rgba(55, 70, 58, 0.6);
  border-radius: 8px;
  padding: 13px 15px;
  color: #fff;
  font: inherit;
  font-size: 13px;
  transition: all 0.3s ease;
  backdrop-filter: blur(2px);
}
input::placeholder,
textarea::placeholder {
  color: rgba(185, 206, 188, 0.5);
}
input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--green);
  background: linear-gradient(135deg, rgba(19, 26, 20, 0.95), rgba(19, 26, 20, 0.8));
  box-shadow: 0 0 20px rgba(64, 189, 36, 0.2), inset 0 0 10px rgba(64, 189, 36, 0.05);
}
textarea {
  height: 86px;
  resize: vertical;
}
.form-success {
  display: none;
  color: #a9f49e;
  border: 1px solid var(--green);
  padding: 14px;
  border-radius: 8px;
  margin-top: 15px;
  font-size: 13px;
}
.form-success.show {
  display: block;
}
@media (max-width: 1050px) {
  .site-header nav {
    gap: 12px;
  }
  .header-phone {
    display: none;
  }
  .quick-solutions {
    opacity: 0.75;
    right: 3%;
  }
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .solutions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .payment-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 720px) {
  .site-header {
    height: 66px;
    padding: 0 18px;
  }
  .site-header .btn {
    display: none;
  }
  .site-header nav {
    display: none;
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    background: #050807;
    flex-direction: column;
    gap: 0;
    padding: 10px 20px;
  }
  .site-header nav.open {
    display: flex;
  }
  .site-header nav a {
    padding: 12px;
    border: 0;
  }
  .menu-toggle {
    display: block;
    margin-left: auto;
  }
  .brand b {
    font-size: 21px;
  }
  .brand-mark {
    width: 36px;
    height: 36px;
  }
  .hero {
    min-height: 720px;
    padding: 75px 25px 180px;
  }
  .hero h1 {
    font-size: 46px;
  }
  .quick-solutions {
    position: relative;
    right: auto;
    top: auto;
    margin: 35px 0 0;
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
  }
  .quick-solutions a {
    height: 78px;
  }
  .hero-stats {
    left: 18px;
    right: 18px;
    bottom: 18px;
    overflow: auto;
  }
  .stat-bar > div {
    min-width: 120px;
  }
  .section {
    padding: 54px 20px;
  }
  .benefit-grid,
  .solutions-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .solution-heading,
  .project-top,
  .packages-heading,
  .payment-top,
  .process-intro {
    display: block;
  }
  .help-box {
    margin-top: 25px;
  }
  .mini-stats {
    width: 100%;
    margin-top: 20px;
    overflow: auto;
  }
  .cta-strip {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .benefit-feature {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .smart-home {
    height: 310px;
  }
  .comfort-bar {
    display: block;
  }
  .comfort-bar > * {
    display: block;
    margin: 5px 0;
  }
  .brands > div:first-child {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .products-montage {
    height: 260px;
  }
  .quality-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .quality-row div:first-child {
    grid-column: span 2;
  }
  .process blockquote {
    display: none;
  }
  .process-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid article {
    min-height: unset;
  }
  .price-img {
    height: 150px;
  }
  .payment-layout {
    grid-template-columns: 1fr;
  }
  .payment-cards {
    grid-template-columns: 1fr 1fr;
  }
  .payment-cards article {
    min-height: 190px;
  }
  .payment-assurance {
    gap: 12px;
    flex-wrap: wrap;
  }
  .bank-details {
    gap: 12px;
    flex-wrap: wrap;
  }
  footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .hero-image {
    background-position: 57% center;
  }
  .section-number {
    font-size: 21px;
  }
}

//* =========================================================
   VISIONTEK PACKAGES
   PREMIUM DARK TECHNOLOGY DESIGN
========================================================= */

:root {

  --green: #63d51f;
  --green-bright: #78e52b;
  --green-dark: #163d0b;

  --black: #030504;
  --black-soft: #070a08;
  --panel: #0b100c;

  --white: #f5f7f4;
  --muted: #8e9990;
  --line: rgba(255,255,255,.09);

  --radius: 22px;

  --font-main: "Manrope", sans-serif;
  --font-display: "Syne", sans-serif;
}


/* =========================================================
   RESET
========================================================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-main);
  overflow-x: hidden;
}

body::selection {
  background: var(--green);
  color: #000;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

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


/* =========================================================
   HEADER
========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  height: 82px;

  display: flex;
  align-items: center;

  padding: 0 3.5vw;

  background: rgba(3,5,4,.88);

  border-bottom: 1px solid rgba(255,255,255,.07);

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.visiontek-lockup {
  width: 190px;
  height: auto;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  will-change: transform;
}

.visiontek-lockup:hover {
  transform: scale(1.03);
}

.brand-text {
  font-size: 15px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.3px;
}

/* Tablet breakpoint: slightly smaller than desktop, larger than mobile */
@media (min-width: 521px) and (max-width: 1050px) {
  .visiontek-lockup {
    width: 160px;
  }

  .site-header {
    min-height: 92px;
  }

  #main-nav a {
    font-size: 14px;
    padding: 28px 0;
  }
}

#main-nav {
  display: flex;
  align-items: center;
  gap: 28px;

  margin-left: auto;
  margin-right: 30px;
}

#main-nav a {
  position: relative;

  color: #b8beb9;

  font-size: 15px;
  font-weight: 700;

  padding: 34px 0;

  transition: color .25s ease, transform .25s ease;
}

/* IMPORTANT:
   ONLY ONE UNDERLINE FOR ACTIVE PAGE
*/

#main-nav a::after {
  content: "";

  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  height: 2px;

  background: var(--green);

  transform: scaleX(0);
  transform-origin: center;

  transition: transform .3s ease;
}

#main-nav a:hover {
  color: white;
}

#main-nav a:hover::after,
#main-nav a.active::after {
  transform: scaleX(1);
}

#main-nav a.active {
  color: var(--green);
}

.header-phone {
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  margin-right: 22px;
}

.header-whatsapp {
  display: flex;
  align-items: center;
  gap: 8px;

  padding: 12px 18px;

  background: #17a84b;

  border-radius: 30px;

  font-size: 12px;
  font-weight: 800;

  margin-right: 16px;

  transition: .3s ease;
}

.header-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(23,168,75,.3);
}

.btn {
  border: 0;
  cursor: pointer;

  display: inline-flex;
  justify-content: center;
  align-items: center;

  padding: 14px 22px;

  border-radius: 8px;

  font-size: 12px;
  font-weight: 800;

  transition:
    transform .3s ease,
    box-shadow .3s ease,
    background .3s ease;
}

.btn-primary {
  color: #061004;
  background: var(--green);
}

.btn-primary:hover {
  transform: translateY(-3px);
  background: var(--green-bright);
  box-shadow:
    0 15px 35px rgba(99,213,31,.25);
}

.btn-outline {
  color: white;

  background: rgba(255,255,255,.02);

  border: 1px solid rgba(255,255,255,.22);
}

.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-3px);
}

.menu-toggle {
  display: none;
}


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

.packages-hero {
  position: relative;

  min-height: 780px;

  display: grid;
  grid-template-columns: 1fr 1fr;

  align-items: center;

  padding: 90px 8vw;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 80% 50%,
      rgba(61,132,24,.16),
      transparent 35%
    ),
    #030504;
}

.hero-grid {
  position: absolute;
  inset: 0;

  opacity: .2;

  background-image:
    linear-gradient(
      rgba(99,213,31,.08) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(99,213,31,.08) 1px,
      transparent 1px
    );

  background-size: 90px 90px;

  mask-image: linear-gradient(
    to right,
    transparent,
    black 60%,
    transparent
  );
}

.hero-orb {
  position: absolute;

  border-radius: 50%;

  border: 1px solid rgba(99,213,31,.14);

  pointer-events: none;
}

.orb-one {
  width: 650px;
  height: 650px;

  right: -180px;
  top: 80px;
}

.orb-two {
  width: 420px;
  height: 420px;

  right: -70px;
  top: 195px;
}

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

  max-width: 650px;
}

.section-label,
.mini-label {
  display: flex;
  align-items: center;
  gap: 12px;

  color: var(--green);

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-label span {
  width: 28px;
  height: 1px;

  background: var(--green);
}

.packages-hero h1 {
  margin-top: 28px;

  font-family: var(--font-display);

  font-size: clamp(60px, 7vw, 105px);

  line-height: .91;

  letter-spacing: -5px;
}

.packages-hero h1 em {
  color: var(--green);
  font-style: normal;
}

.packages-hero-content > p {
  max-width: 600px;

  margin-top: 34px;

  color: #a2aaa4;

  font-size: 15px;

  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 12px;

  margin-top: 32px;
}

.hero-image-panel {
  position: relative;

  width: 480px;
  height: 560px;

  justify-self: end;

  border-radius: 30px;

  overflow: hidden;

  background:
    linear-gradient(
      145deg,
      rgba(81,143,37,.22),
      rgba(5,8,5,.95)
    );

  border: 1px solid rgba(99,213,31,.18);

  box-shadow:
    0 50px 100px rgba(0,0,0,.5);
}

.hero-image-panel img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  opacity: .78;

  transition: transform 1s ease;
}

.hero-image-panel:hover img {
  transform: scale(1.05);
}

.hero-image-fallback {
  position: absolute;
  inset: 0;

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

  background:
    radial-gradient(
      circle at 50% 40%,
      rgba(102,210,43,.22),
      transparent 35%
    ),
    linear-gradient(
      145deg,
      #14250f,
      #040604
    );
}

.hero-fallback-content {
  display: flex;
  flex-direction: column;

  text-align: center;
}

.hero-fallback-content small {
  color: var(--green);

  letter-spacing: 4px;
  font-size: 10px;

  margin-bottom: 20px;
}

.hero-fallback-content strong {
  font-family: var(--font-display);

  font-size: 70px;

  line-height: .8;
}

.green-text {
  color: var(--green);
}

.hero-fallback-content span {
  margin-top: 30px;

  color: #929a94;

  font-size: 12px;
}

.floating-tag {
  position: absolute;

  z-index: 5;

  top: 25px;
  left: 25px;

  display: flex;
  align-items: center;
  gap: 8px;

  padding: 10px 14px;

  background: rgba(4,8,4,.75);

  border: 1px solid rgba(99,213,31,.25);

  border-radius: 30px;

  font-size: 9px;
  font-weight: 800;

  letter-spacing: 1.5px;
}

.floating-tag span {
  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: var(--green);

  box-shadow: 0 0 12px var(--green);
}

.image-glow {
  position: absolute;

  width: 250px;
  height: 250px;

  border-radius: 50%;

  background: rgba(99,213,31,.14);

  filter: blur(80px);

  right: -100px;
  bottom: -100px;
}


/* =========================================================
   INTRO
========================================================= */

.package-intro {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 80px;

  padding: 120px 8vw 60px;
}

.mini-label {
  margin-bottom: 18px;
}

.package-intro h2 {
  max-width: 600px;

  font-family: var(--font-display);

  font-size: clamp(42px, 5vw, 70px);

  line-height: 1;

  letter-spacing: -3px;
}

.package-intro h2 em {
  color: var(--green);
  font-style: normal;
}

.package-intro > p {
  align-self: end;

  color: #858f87;

  line-height: 1.9;

  max-width: 550px;
}


/* =========================================================
   FILTER
========================================================= */

.package-navigation {
  display: flex;
  justify-content: center;
  gap: 8px;

  padding: 25px 8vw 60px;

  border-bottom: 1px solid var(--line);
}

.package-filter {
  padding: 11px 18px;

  border-radius: 30px;

  border: 1px solid rgba(255,255,255,.1);

  background: transparent;

  color: #879087;

  cursor: pointer;

  font-size: 11px;
  font-weight: 800;

  transition: .3s ease;
}

.package-filter:hover,
.package-filter.active {
  color: #071004;

  background: var(--green);

  border-color: var(--green);
}


/* =========================================================
   PACKAGE GRID
========================================================= */

.packages-section {
  padding: 80px 7vw 130px;
}

.package-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0,1fr));

  gap: 30px;
}

.package-card {
  position: relative;

  overflow: hidden;

  min-height: 700px;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,.035),
      rgba(255,255,255,.01)
    );

  border: 1px solid rgba(255,255,255,.08);

  border-radius: var(--radius);

  transition:
    transform .5s ease,
    border-color .5s ease,
    box-shadow .5s ease;
}

.package-card:hover {
  transform: translateY(-10px);

  border-color:
    rgba(99,213,31,.35);

  box-shadow:
    0 35px 70px rgba(0,0,0,.35);
}

.package-card.gold-card {
  border-color:
    rgba(99,213,31,.25);
}

.package-card.cinema-card {
  grid-column: span 2;

  display: grid;

  grid-template-columns: 1fr 1fr;
}


/* =========================================================
   PACKAGE IMAGE
========================================================= */

.package-image {
  position: relative;

  height: 300px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(99,213,31,.16),
      transparent 50%
    ),
    #080d09;
}

.package-card.cinema-card .package-image {
  height: 100%;
  min-height: 480px;
}

.package-image img {
  position: relative;
  z-index: 2;

  width: 100%;
  height: 100%;

  object-fit: cover;

  opacity: .72;

  transition:
    transform .8s ease,
    opacity .5s ease;
}

.package-card:hover .package-image img {
  transform: scale(1.07);

  opacity: .85;
}

.package-image::after {
  content: "";

  position: absolute;
  inset: 0;

  z-index: 3;

  background:
    linear-gradient(
      to bottom,
      transparent 35%,
      rgba(3,5,4,.9)
    );
}

.image-placeholder {
  position: absolute;
  inset: 0;

  z-index: 1;

  display: flex;
  flex-direction: column;

  align-items: center;
  justify-content: center;

  background:
    radial-gradient(
      circle at center,
      rgba(99,213,31,.18),
      transparent 55%
    ),
    #081008;
}

.image-placeholder span {
  color: rgba(255,255,255,.15);

  font-family: var(--font-display);

  font-size: 100px;

  line-height: .8;
}

.image-placeholder strong {
  position: relative;

  z-index: 2;

  margin-top: -10px;

  font-family: var(--font-display);

  font-size: 40px;
}

.image-placeholder small {
  color: var(--green);

  margin-top: 8px;

  font-size: 9px;

  letter-spacing: 3px;
}

.basic-placeholder {
  background:
    linear-gradient(
      135deg,
      #091009,
      #10250b
    );
}

.silver-placeholder {
  background:
    linear-gradient(
      135deg,
      #111513,
      #18231a
    );
}

.gold-placeholder {
  background:
    linear-gradient(
      135deg,
      #10230b,
      #1e380d
    );
}

.platinum-placeholder {
  background:
    linear-gradient(
      135deg,
      #081208,
      #1e3d0c
    );
}

.cinema-placeholder {
  background:
    linear-gradient(
      135deg,
      #050505,
      #190a08
    );
}

.package-level {
  position: absolute;

  z-index: 5;

  top: 20px;
  right: 20px;

  padding: 8px 12px;

  border-radius: 20px;

  color: #071004;

  background: var(--green);

  font-size: 9px;

  font-weight: 900;

  letter-spacing: 1px;
}


/* =========================================================
   PACKAGE CONTENT
========================================================= */

.package-content {
  padding: 30px;
}

.package-top {
  display: flex;

  justify-content: space-between;

  gap: 20px;
}

.package-number {
  display: block;

  margin-bottom: 7px;

  color: var(--green);

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 2px;
}

.package-content h3 {
  font-family: var(--font-display);

  font-size: 30px;

  letter-spacing: -1px;
}

.package-price {
  text-align: right;
}

.package-price small {
  display: block;

  color: #667068;

  font-size: 8px;

  letter-spacing: 1px;
}

.package-price strong {
  display: block;

  margin-top: 4px;

  color: var(--green);

  font-size: 17px;
}

.package-description {
  margin-top: 18px;

  color: #89938b;

  font-size: 13px;

  line-height: 1.7;
}

.package-meta {
  display: flex;

  flex-wrap: wrap;

  gap: 7px;

  margin-top: 20px;
}

.package-meta span {
  padding: 7px 10px;

  color: #9aa39c;

  background: rgba(255,255,255,.04);

  border: 1px solid rgba(255,255,255,.06);

  border-radius: 20px;

  font-size: 9px;

  font-weight: 700;
}

.package-preview {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 8px;

  margin-top: 25px;

  padding-top: 20px;

  border-top: 1px solid var(--line);
}

.package-preview span {
  color: #a8b0aa;

  font-size: 10px;
}

.package-preview span::before {
  content: "✓";

  margin-right: 7px;

  color: var(--green);
}

.view-package {
  width: 100%;

  display: flex;

  justify-content: space-between;
  align-items: center;

  margin-top: 25px;

  padding: 15px 0;

  border: 0;
  border-top: 1px solid var(--line);

  background: transparent;

  color: white;

  cursor: pointer;

  font-size: 11px;

  font-weight: 800;

  text-align: left;

  transition: color .3s ease;
}

.view-package span {
  width: 28px;
  height: 28px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(255,255,255,.15);

  border-radius: 50%;

  transition: .3s ease;
}

.view-package:hover {
  color: var(--green);
}

.view-package:hover span {
  background: var(--green);
  color: #000;
  border-color: var(--green);
}


/* =========================================================
   PACKAGE DETAILS OVERLAY
========================================================= */

.package-details {
  position: absolute;

  inset: 0;

  z-index: 20;

  padding: 35px;

  overflow-y: auto;

  background:
    linear-gradient(
      145deg,
      #0b130b,
      #040604
    );

  opacity: 0;

  visibility: hidden;

  transform: translateY(20px);

  transition:
    opacity .4s ease,
    transform .4s ease,
    visibility .4s ease;
}

.package-card.details-open .package-details {
  opacity: 1;

  visibility: visible;

  transform: translateY(0);
}

.close-details {
  position: absolute;

  top: 20px;
  right: 20px;

  width: 38px;
  height: 38px;

  border-radius: 50%;

  border: 1px solid rgba(255,255,255,.15);

  background: rgba(255,255,255,.04);

  color: white;

  font-size: 22px;

  cursor: pointer;
}

.details-label {
  color: var(--green);

  font-size: 9px;

  letter-spacing: 2px;

  font-weight: 900;
}

.package-details h3 {
  margin-top: 15px;

  font-family: var(--font-display);

  font-size: 38px;
}

.package-details > p {
  margin-top: 8px;

  color: #7e897f;

  font-size: 12px;
}

.details-columns {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 35px;

  margin-top: 30px;
}

.details-columns h4 {
  margin: 22px 0 12px;

  color: var(--green);

  font-size: 11px;

  text-transform: uppercase;

  letter-spacing: 1px;
}

.details-columns ul {
  list-style: none;
}

.details-columns li {
  position: relative;

  padding: 7px 0 7px 17px;

  color: #a8b1aa;

  font-size: 10px;

  line-height: 1.5;

  border-bottom: 1px solid rgba(255,255,255,.05);
}

.details-columns li::before {
  content: "•";

  position: absolute;

  left: 0;

  color: var(--green);
}

.package-details .btn {
  margin-top: 25px;
}

.cinema-details-list {
  display: grid;

  grid-template-columns: 1fr 1fr;

  margin-top: 30px;

  border-top: 1px solid var(--line);
}

.cinema-details-list div {
  padding: 12px;

  color: #aeb5b0;

  font-size: 11px;

  border-bottom: 1px solid var(--line);
}

.cinema-details-list div::before {
  content: "✓";

  color: var(--green);

  margin-right: 8px;
}


/* =========================================================
   CUSTOM PACKAGE
========================================================= */

.custom-package {
  display: grid;

  grid-template-columns: 1fr 1fr;

  min-height: 520px;

  margin: 0 7vw 120px;

  overflow: hidden;

  border-radius: 30px;

  background: #0a0f0b;

  border: 1px solid var(--line);
}

.custom-image {
  position: relative;

  min-height: 500px;

  overflow: hidden;
}

.custom-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  opacity: .7;
}

.custom-image-fallback {
  position: absolute;

  inset: 0;

  background:
    radial-gradient(
      circle at 50% 40%,
      rgba(99,213,31,.25),
      transparent 40%
    ),
    linear-gradient(
      135deg,
      #10220c,
      #030504
    );
}

.custom-content {
  display: flex;

  flex-direction: column;

  justify-content: center;

  padding: 70px;
}

.custom-content h2 {
  max-width: 550px;

  font-family: var(--font-display);

  font-size: clamp(40px, 4vw, 65px);

  line-height: 1;

  letter-spacing: -3px;
}

.custom-content h2 em {
  color: var(--green);

  font-style: normal;
}

.custom-content p {
  max-width: 520px;

  margin-top: 25px;

  color: #89948c;

  line-height: 1.8;

  font-size: 13px;
}

.custom-features {
  display: flex;

  flex-wrap: wrap;

  gap: 10px;

  margin: 28px 0;
}

.custom-features span {
  padding: 9px 12px;

  border-radius: 20px;

  background: rgba(99,213,31,.06);

  color: #aeb9af;

  border: 1px solid rgba(99,213,31,.12);

  font-size: 9px;
}


/* =========================================================
   FINAL CTA
========================================================= */

.packages-final-cta {
  position: relative;

  text-align: center;

  padding: 150px 20px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at center,
      rgba(66,143,23,.18),
      transparent 45%
    );
}

.packages-final-cta .section-label {
  justify-content: center;
}

.packages-final-cta h2 {
  margin-top: 25px;

  font-family: var(--font-display);

  font-size: clamp(50px, 7vw, 95px);

  line-height: .95;

  letter-spacing: -5px;
}

.packages-final-cta h2 em {
  color: var(--green);
  font-style: normal;
}

.packages-final-cta > p {
  max-width: 550px;

  margin: 30px auto 0;

  color: #8b958e;

  line-height: 1.8;

  font-size: 13px;
}

.packages-final-cta .hero-actions {
  justify-content: center;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  display: grid;

  grid-template-columns:
    2fr 1fr 1fr 1fr;

  gap: 40px;

  padding: 70px 7vw;

  background: #020302;

  border-top: 1px solid var(--line);
}

.footer-brand img {
  width: 150px;
}

.site-footer p {
  margin-top: 15px;

  color: #6f7972;

  font-size: 11px;

  line-height: 1.8;
}

.site-footer strong {
  color: white;

  font-size: 11px;
}

.site-footer p a {
  display: inline-block;

  margin-right: 12px;

  color: #7d887f;

  transition: color .3s ease;
}

.site-footer p a:hover {
  color: var(--green);
}


/* =========================================================
   FLOATING WHATSAPP
========================================================= */

.floating-whatsapp {
  position: fixed;

  right: 25px;
  bottom: 25px;

  z-index: 900;

  width: 55px;
  height: 55px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: #19ad50;

  color: white;

  box-shadow:
    0 15px 35px rgba(0,0,0,.4);

  transition: transform .3s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
}


/* =========================================================
   MODAL
========================================================= */

dialog {
  width: min(550px, 92vw);

  padding: 45px;

  border: 1px solid rgba(99,213,31,.2);

  border-radius: 25px;

  background: #080d09;

  color: white;

  box-shadow:
    0 40px 100px rgba(0,0,0,.7);
}

dialog::backdrop {
  background: rgba(0,0,0,.75);

  backdrop-filter: blur(8px);
}

.modal-close {
  position: absolute;

  right: 20px;
  top: 18px;

  width: 35px;
  height: 35px;

  border-radius: 50%;

  border: 1px solid rgba(255,255,255,.1);

  background: transparent;

  color: white;

  cursor: pointer;

  font-size: 20px;
}

dialog h2 {
  margin-top: 15px;

  font-family: var(--font-display);

  font-size: 38px;

  line-height: 1;
}

dialog h2 em {
  color: var(--green);

  font-style: normal;
}

dialog > p {
  margin-top: 15px;

  color: #859087;

  line-height: 1.7;

  font-size: 12px;
}

#survey-form {
  display: grid;

  gap: 12px;

  margin-top: 25px;
}

#survey-form input,
#survey-form select,
#survey-form textarea {
  width: 100%;

  padding: 15px;

  border: 1px solid rgba(255,255,255,.1);

  border-radius: 8px;

  background: rgba(255,255,255,.04);

  color: white;

  outline: none;

  font-family: inherit;
}

#survey-form input:focus,
#survey-form select:focus,
#survey-form textarea:focus {
  border-color: var(--green);
}

#survey-form textarea {
  min-height: 110px;

  resize: vertical;
}


/* =========================================================
   REVEAL ANIMATION
========================================================= */

.reveal {
  opacity: 0;

  transform: translateY(35px);

  transition:
    opacity .8s ease,
    transform .8s ease;
}

.reveal.visible {
  opacity: 1;

  transform: translateY(0);
}


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

@media (max-width: 1200px) {

  #main-nav {
    gap: 17px;
  }

  .header-phone {
    display: none;
  }

  .hero-image-panel {
    width: 420px;
    height: 500px;
  }

}


@media (max-width: 950px) {

  .site-header {
    height: 70px;
  }

  .brand {
    min-width: auto;
  }

  .visiontek-lockup {
    width: 125px;
  }

  .menu-toggle {
    display: block;

    margin-left: auto;

    border: 0;

    background: transparent;

    color: white;

    font-size: 25px;

    cursor: pointer;
  }

  #main-nav {

    position: absolute;

    left: 0;
    right: 0;
    top: 70px;

    display: none;

    flex-direction: column;

    gap: 0;

    margin: 0;

    padding: 15px 25px;

    background: rgba(3,5,4,.97);

    border-bottom: 1px solid var(--line);
  }

  #main-nav.open {
    display: flex;
  }

  #main-nav a {
    width: 100%;

    padding: 15px 0;
  }

  #main-nav a::after {
    display: none;
  }

  .header-whatsapp {
    display: none;
  }

  .site-header > .btn {
    display: none;
  }

  .packages-hero {

    grid-template-columns: 1fr;

    padding: 80px 7vw;

  }

  .hero-image-panel {

    width: 100%;

    max-width: 600px;

    height: 450px;

    margin: 60px auto 0;

  }

  .package-intro {

    grid-template-columns: 1fr;

    gap: 30px;

  }

  .package-card.cinema-card {

    grid-column: span 1;

    display: block;

  }

  .package-card.cinema-card .package-image {

    height: 300px;

    min-height: 300px;

  }

  .custom-package {

    grid-template-columns: 1fr;
  }

}


@media (max-width: 700px) {

  .packages-hero {
    min-height: auto;

    padding: 70px 22px;
  }

  .packages-hero h1 {
    font-size: 57px;

    letter-spacing: -3px;
  }

  .hero-actions {
    flex-direction: column;

    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-image-panel {
    height: 400px;
  }

  .package-intro {
    padding: 80px 22px 40px;
  }

  .package-intro h2 {
    font-size: 44px;
  }

  .package-navigation {
    justify-content: flex-start;

    overflow-x: auto;

    padding: 20px 22px 45px;
  }

  .package-filter {
    flex-shrink: 0;
  }

  .packages-section {
    padding: 50px 20px 80px;
  }

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

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

  .package-image {
    height: 260px;
  }

  .package-content {
    padding: 25px;
  }

  .package-top {
    flex-direction: column;
  }

  .package-price {
    text-align: left;
  }

  .package-preview {
    grid-template-columns: 1fr;
  }

  .package-details {
    padding: 25px;

    position: fixed;

    inset: 20px;

    border-radius: 20px;
  }

  .details-columns {
    grid-template-columns: 1fr;

    gap: 0;
  }

  .cinema-details-list {
    grid-template-columns: 1fr;
  }

  .custom-package {
    margin: 0 20px 80px;

    border-radius: 20px;
  }

  .custom-image {
    min-height: 300px;
  }

  .custom-content {
    padding: 40px 25px;
  }

  .custom-content h2 {
    font-size: 44px;
  }

  .packages-final-cta {
    padding: 100px 25px;
  }

  .packages-final-cta h2 {
    font-size: 55px;
  }

  .site-footer {
    grid-template-columns: 1fr;

    padding: 55px 25px;
  }

}


/* =========================================================
   VISIONTEK — ELEGANT HERO SOLUTION PANEL
   ========================================================= */

.hero {
  position: relative;
  overflow: hidden;
}

/* Right-side floating panel */
.quick-solutions {
  position: absolute;
  z-index: 20;

  top: 50%;
  right: 5%;
  transform: translateY(-50%);

  width: min(360px, 30vw);

  display: flex;
  flex-direction: column;
  gap: 9px;

  padding: 14px;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;

  background:
    linear-gradient(
      145deg,
      rgba(20, 25, 25, 0.86),
      rgba(5, 9, 9, 0.72)
    );

  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);

  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* Small glowing accent above panel */
.quick-solutions::before {
  content: "";
  position: absolute;

  top: -1px;
  left: 35px;

  width: 70px;
  height: 2px;

  background: #7cca22;

  box-shadow:
    0 0 12px rgba(124, 202, 34, 0.8),
    0 0 30px rgba(124, 202, 34, 0.35);
}

/* Individual buttons */
.quick-solution {
  position: relative;

  width: 100%;
  min-height: 62px;

  display: grid;
  grid-template-columns: 44px 1fr 28px;
  align-items: center;
  gap: 12px;

  padding: 9px 12px;

  border: 1px solid transparent;
  border-radius: 16px;

  color: #fff;
  background: transparent;

  text-align: left;
  cursor: pointer;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

/* Hover */
.quick-solution:hover {
  transform: translateX(-5px);

  background:
    linear-gradient(
      90deg,
      rgba(124, 202, 34, 0.14),
      rgba(255, 255, 255, 0.045)
    );

  border-color: rgba(124, 202, 34, 0.25);
}

/* Active button */
.quick-solution.active {
  background:
    linear-gradient(
      90deg,
      rgba(124, 202, 34, 0.20),
      rgba(255, 255, 255, 0.055)
    );

  border-color: rgba(124, 202, 34, 0.42);

  box-shadow:
    inset 3px 0 0 #7cca22,
    0 8px 25px rgba(0, 0, 0, 0.18);
}

/* Icon */
.solution-icon {
  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  border-radius: 13px;

  color: #7cca22;
  font-size: 20px;

  background:
    linear-gradient(
      145deg,
      rgba(124, 202, 34, 0.16),
      rgba(124, 202, 34, 0.04)
    );

  border: 1px solid rgba(124, 202, 34, 0.20);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* Text */
.solution-info {
  min-width: 0;

  display: flex;
  flex-direction: column;
  gap: 3px;
}

.solution-info strong {
  font-family: "Manrope", sans-serif;

  font-size: 13px;
  font-weight: 800;

  letter-spacing: 0.01em;

  color: #fff;
}

.solution-info small {
  color: rgba(255, 255, 255, 0.48);

  font-size: 10px;
  line-height: 1.35;
}

/* Arrow */
.solution-arrow {
  display: grid;
  place-items: center;

  width: 26px;
  height: 26px;

  border-radius: 50%;

  color: rgba(255, 255, 255, 0.45);

  font-size: 13px;

  transition:
    transform 0.3s ease,
    color 0.3s ease,
    background 0.3s ease;
}

.quick-solution:hover .solution-arrow,
.quick-solution.active .solution-arrow {
  transform: translateX(3px);

  color: #7cca22;

  background: rgba(124, 202, 34, 0.10);
}

/* =========================================================
   SOLUTION CARD ACTIVE STATE
   ========================================================= */

.solutions-grid article {
  position: relative;

  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.solutions-grid article.solution-highlight {
  transform: translateY(-8px);

  border-color: rgba(124, 202, 34, 0.65);

  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.35),
    0 0 35px rgba(124, 202, 34, 0.10);
}

.solutions-grid article.solution-highlight::after {
  content: "";

  position: absolute;

  inset: 0;

  border-radius: inherit;

  pointer-events: none;

  box-shadow:
    inset 0 0 0 1px rgba(124, 202, 34, 0.18);
}

/* =========================================================
   HERO COPY
   ========================================================= */

.hero-copy {
  position: relative;
  z-index: 10;

  max-width: 720px;
}

.hero-copy h1 {
  letter-spacing: -0.04em;
  background: linear-gradient(120deg, #f4f7f4, rgba(124, 202, 34, 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-copy h1 em {
  color: #7cca22;
  font-style: normal;
  background: linear-gradient(120deg, #7cca22, #60d946);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

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

@media (max-width: 1100px) {
  .quick-solutions {
    right: 3%;
    width: 310px;
  }
}

@media (max-width: 900px) {
  .quick-solutions {
    position: relative;

    top: auto;
    right: auto;

    transform: none;

    width: calc(100% - 32px);

    max-width: 520px;

    margin: 35px auto 20px;

    display: grid;
    grid-template-columns: repeat(2, 1fr);

    padding: 12px;
  }

  .quick-solution {
    min-height: 58px;
  }
}

@media (max-width: 560px) {
  .quick-solutions {
    grid-template-columns: 1fr;

    border-radius: 20px;
  }

  .quick-solution {
    min-height: 60px;
  }

  .solution-info strong {
    font-size: 12px;
  }

  .solution-info small {
    font-size: 9px;
  }
}
.solutions-grid article h3 {
  color: #ffffff;
}
.solution-heading h2 {
  color: #ffffff;
}

.solution-heading h2 em {
  /* Keeps Smarter Living. using its existing style/color */
}
/* =========================================
   INDEX PAGE — HERO HEADING
   ========================================= */

.page-home .hero h1 .hero-heading-white,
.page-process .hero h1 .hero-heading-white {
  color: #ffffff;
}


/* =========================================
   HEADER PHONE NUMBER
   ========================================= */

.header-phone,
.header-phone span {
  color: #ffffff !important;
}

.header-phone {
  text-decoration: none;
}

.header-phone:hover,
.header-phone:hover span {
  color: #ffffff !important;
}

/* =========================================
   HEADER FONT
   ========================================= */

.site-header {
  font-family: "Times New Roman", Times, serif;
  font-size: 13px;
}

.site-header nav a,
.site-header .header-phone,
.site-header .header-phone span,
.site-header .header-whatsapp,
.site-header .btn,
.site-header .brand-text {
  font-family: "Times New Roman", Times, serif;
  font-size: 13px;
}

/* =========================================
   QUICK SOLUTION LINKS
   ========================================= */
/* =========================================
   HERO QUICK SOLUTIONS
   ========================================= */

.quick-solutions {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);

  width: min(540px, 38vw);

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;

  padding: 16px;

  background: rgba(5, 14, 10, 0.82);
  border: 1px solid rgba(124, 202, 34, 0.28);
  border-radius: 28px;

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);

  z-index: 5;
}


/* =========================================
   SOLUTION CARD
   ========================================= */

.solution-card {
  position: relative;

  min-height: 145px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  padding: 24px 22px 20px;

  text-decoration: none;
  color: #ffffff;

  background:
    linear-gradient(
      145deg,
      rgba(18, 31, 23, 0.95),
      rgba(7, 15, 11, 0.92)
    );

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 19px;

  overflow: hidden;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}


/* subtle green glow */

.solution-card::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at 15% 0%,
      rgba(124, 202, 34, 0.14),
      transparent 42%
    );

  opacity: 0;

  transition: opacity 0.3s ease;

  pointer-events: none;
}


/* =========================================
   HOVER
   ========================================= */

.solution-card:hover {
  transform: translateY(-5px);

  border-color: rgba(124, 202, 34, 0.8);

  background:
    linear-gradient(
      145deg,
      rgba(25, 43, 29, 0.98),
      rgba(8, 17, 12, 0.98)
    );

  box-shadow:
    0 14px 35px rgba(0, 0, 0, 0.35),
    0 0 25px rgba(124, 202, 34, 0.08);
}

.solution-card:hover::before {
  opacity: 1;
}


/* =========================================
   ICON
   ========================================= */

.solution-icon {
  position: absolute;

  top: 17px;
  left: 20px;

  width: 42px;
  height: 42px;

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

  border-radius: 12px;

  color: #7cca22;

  font-size: 20px;
  font-weight: 700;

  background: rgba(124, 202, 34, 0.09);

  border: 1px solid rgba(124, 202, 34, 0.25);

  box-shadow:
    inset 0 0 15px rgba(124, 202, 34, 0.04);

  transition:
    background 0.3s ease,
    transform 0.3s ease,
    border-color 0.3s ease;
}

.solution-card:hover .solution-icon {
  background: rgba(124, 202, 34, 0.16);
  border-color: rgba(124, 202, 34, 0.65);
  transform: scale(1.05);
}


/* =========================================
   TEXT
   ========================================= */

.solution-content {
  position: relative;
  z-index: 2;

  padding-right: 25px;
}

.solution-content h3 {
  margin: 0 0 6px;

  color: #ffffff;

  font-family: "Manrope", sans-serif;

  font-size: 16px;
  font-weight: 700;

  line-height: 1.25;
}

.solution-content p {
  margin: 0;

  color: rgba(255, 255, 255, 0.58);

  font-family: "Manrope", sans-serif;

  font-size: 12px;
  font-weight: 500;

  line-height: 1.4;
}


/* =========================================
   ARROW
   ========================================= */

.solution-arrow {
  position: absolute;

  right: 18px;
  bottom: 19px;

  color: rgba(255, 255, 255, 0.55);

  font-size: 17px;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.solution-card:hover .solution-arrow {
  color: #7cca22;
  transform: translateX(4px);
}

/* =========================================
   TABLET
   ========================================= */

@media (max-width: 1100px) {

  .quick-solutions {
    width: min(480px, 42vw);
    right: 3%;
    gap: 10px;
    padding: 12px;
  }

  .solution-card {
    min-height: 135px;
    padding: 22px 18px 18px;
  }

  .solution-icon {
    left: 16px;
    top: 15px;
    width: 38px;
    height: 38px;
  }

  .solution-content h3 {
    font-size: 14px;
  }

  .solution-content p {
    font-size: 11px;
  }
}


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

@media (max-width: 768px) {

  .quick-solutions {
    position: relative;

    top: auto;
    right: auto;

    transform: none;

    width: calc(100% - 32px);

    margin: 35px auto 0;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 10px;

    padding: 10px;

    border-radius: 22px;
  }

  .solution-card {
    min-height: 125px;

    padding: 20px 15px 16px;

    border-radius: 15px;
  }

  .solution-icon {
    width: 36px;
    height: 36px;

    top: 13px;
    left: 13px;

    border-radius: 10px;

    font-size: 17px;
  }

  .solution-content h3 {
    font-size: 13px;
  }

  .solution-content p {
    font-size: 10px;
  }

  .solution-arrow {
    right: 13px;
    bottom: 14px;
    font-size: 14px;
  }
}


/* =========================================
   SMALL PHONES
   ========================================= */

@media (max-width: 480px) {

  .quick-solutions {
    grid-template-columns: 1fr;
  }

  .solution-card {
    min-height: 105px;
  }

  .solution-content h3 {
    font-size: 14px;
  }

  .solution-content p {
    font-size: 11px;
  }
}

/* =========================================================
   VISIONTEK — PROCESS PAGE
   Uses styles.css only
   ========================================================= */

.page-process {
  background: #030705;
  color: #ffffff;
  overflow-x: hidden;
}

.page-process main {
  background: #030705;
}


/* =========================================================
   PROCESS HERO
   ========================================================= */

.process-hero {
  position: relative;
  min-height: 470px;
  margin-top: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 70px 5% 55px;
  border-bottom: 1px solid rgba(124, 202, 34, 0.25);
}

.process-hero-background {
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(
      90deg,
      rgba(2, 7, 5, 0.98) 0%,
      rgba(2, 7, 5, 0.92) 28%,
      rgba(2, 7, 5, 0.48) 58%,
      rgba(2, 7, 5, 0.55) 100%
    ),
    url("assets/process-hero.jpg");

  background-size: cover;
  background-position: center;
  z-index: 0;
}

.process-hero-overlay {
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at 75% 45%,
      rgba(124, 202, 34, 0.08),
      transparent 35%
    );

  z-index: 1;
}

.process-hero-content {
  position: relative;
  z-index: 3;
  max-width: 720px;
}

.process-title-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.process-number {
  font-size: 30px;
  line-height: 1;
  font-weight: 800;
  color: #7cca22;
}

.process-label {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.process-line {
  width: 70px;
  height: 2px;
  background: #7cca22;
  box-shadow: 0 0 12px rgba(124, 202, 34, 0.6);
}

.process-hero h1 {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(48px, 5vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.process-hero h1 em {
  display: block;
  color: #7cca22;
  font-style: normal;
  text-shadow: 0 0 25px rgba(124, 202, 34, 0.18);
}

.process-hero-content > p {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.7;
}


/* =========================================================
   QUOTE
   ========================================================= */

.process-quote {
  position: absolute;
  z-index: 5;

  right: 5%;
  top: 50%;
  transform: translateY(-50%);

  width: 200px;
  min-height: 245px;

  padding: 25px;

  border: 1px solid rgba(124, 202, 34, 0.65);
  border-radius: 16px;

  background: rgba(2, 7, 5, 0.72);

  box-shadow:
    0 0 25px rgba(124, 202, 34, 0.08),
    inset 0 0 25px rgba(124, 202, 34, 0.03);

  backdrop-filter: blur(8px);
}

.quote-mark {
  color: #7cca22;
  font-size: 45px;
  line-height: 0.7;
  font-weight: 800;
}

.process-quote p {
  margin: 18px 0;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
  font-size: 14px;
}

.quote-line {
  width: 55px;
  height: 2px;
  background: #7cca22;
  margin: 15px 0;
}

.process-quote strong {
  display: block;
  color: #7cca22;
  font-size: 20px;
}

.process-quote span {
  font-size: 12px;
  color: #ffffff;
}


/* =========================================================
   FEATURES
   ========================================================= */

.process-features {
  position: relative;
  z-index: 5;

  display: grid;
  grid-template-columns: repeat(4, 1fr);

  max-width: 1180px;
  margin: -1px auto 0;

  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.process-feature {
  display: flex;
  gap: 14px;
  align-items: center;

  min-height: 85px;
  padding: 16px 22px;

  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.process-feature:last-child {
  border-right: none;
}

.process-feature-icon {
  flex: 0 0 auto;

  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  border: 1px solid #7cca22;
  border-radius: 50%;

  color: #7cca22;
  font-size: 23px;

  box-shadow: 0 0 15px rgba(124, 202, 34, 0.12);
}

.process-feature strong {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
}

.process-feature p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  line-height: 1.4;
}


/* =========================================================
   PROCESS CARDS
   ========================================================= */

.process-steps {
  max-width: 1180px;
  margin: 22px auto 14px;

  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));

  gap: 12px;

  padding: 0 0;
}

.process-card {
  position: relative;

  min-width: 0;

  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 13px;

  overflow: hidden;

  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.015)
    );

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.process-card:hover {
  transform: translateY(-6px);

  border-color: rgba(124, 202, 34, 0.7);

  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.35),
    0 0 20px rgba(124, 202, 34, 0.08);
}

.process-card-image {
  position: relative;
  height: 175px;
  overflow: hidden;
}

.process-card-image::after {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.05),
      rgba(0, 0, 0, 0.72)
    );
}

.process-card-image img {
  width: 100%;
  height: 100%;
  display: block;

  object-fit: cover;

  transition: transform 0.5s ease;
}

.process-card:hover .process-card-image img {
  transform: scale(1.07);
}

.process-card-number {
  position: absolute;

  left: 12px;
  top: 12px;

  z-index: 3;

  display: grid;
  place-items: center;

  min-width: 42px;
  height: 32px;

  padding: 0 8px;

  border-radius: 8px;

  background: #57ad18;

  color: #ffffff;

  font-size: 15px;
  font-weight: 800;

  box-shadow: 0 0 12px rgba(124, 202, 34, 0.25);
}

.process-card-icon {
  position: relative;
  z-index: 5;

  width: 48px;
  height: 48px;

  margin: -24px auto 0;

  display: grid;
  place-items: center;

  border-radius: 50%;

  border: 1px solid #7cca22;

  background: #030705;

  color: #7cca22;

  font-size: 20px;

  box-shadow:
    0 0 15px rgba(124, 202, 34, 0.15);
}

.process-card-body {
  padding: 10px 15px 20px;
}

.process-card-body h3 {
  margin: 4px 0 8px;

  font-family: "Syne", sans-serif;

  font-size: 16px;
  line-height: 1.2;
}

.process-card-body p {
  margin: 0;

  color: rgba(255, 255, 255, 0.7);

  font-size: 11px;
  line-height: 1.55;
}

.process-card-line {
  display: block;

  width: 55px;
  height: 2px;

  margin: 0 auto 12px;

  background: #7cca22;

  box-shadow: 0 0 10px rgba(124, 202, 34, 0.4);
}


/* =========================================================
   TRUST SECTION
   ========================================================= */

.process-trust {
  max-width: 1180px;
  margin: 0 auto 12px;

  min-height: 105px;

  display: grid;
  grid-template-columns: 2.7fr repeat(4, 1fr);

  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 13px;

  overflow: hidden;

  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.015)
    );
}

.process-trust-main {
  display: flex;
  align-items: center;
  gap: 20px;

  padding: 16px 25px;

  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.trust-badge {
  width: 82px;
  height: 82px;

  flex: 0 0 auto;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  border: 1px solid #7cca22;

  border-radius: 50%;

  color: #ffffff;

  box-shadow:
    0 0 20px rgba(124, 202, 34, 0.14);
}

.trust-badge span {
  font-size: 8px;
  font-weight: 700;
  color: #7cca22;
}

.trust-badge strong {
  font-size: 10px;
  text-align: center;
  line-height: 1.1;
}

.trust-badge b {
  color: #7cca22;
  font-size: 17px;
}

.trust-copy h2 {
  margin: 0 0 6px;

  font-family: "Syne", sans-serif;

  font-size: 20px;
}

.trust-copy p {
  margin: 0;

  max-width: 420px;

  color: rgba(255, 255, 255, 0.62);

  font-size: 11px;
  line-height: 1.5;
}

.process-stat {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 15px;

  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.process-stat:last-child {
  border-right: none;
}

.process-stat strong {
  color: #ffffff;

  font-size: 19px;
  line-height: 1.2;
}

.process-stat span {
  margin-top: 7px;

  color: rgba(255, 255, 255, 0.58);

  font-size: 9px;
}


/* =========================================================
   CTA
   ========================================================= */

.process-cta {
  max-width: 1180px;

  margin: 0 auto 35px;

  min-height: 74px;

  padding: 10px 15px;

  display: grid;

  grid-template-columns: 2fr 1fr 1fr 1fr;

  gap: 14px;

  align-items: center;

  border: 1px solid rgba(124, 202, 34, 0.6);
  border-radius: 12px;

  background:
    linear-gradient(
      90deg,
      rgba(124, 202, 34, 0.08),
      rgba(124, 202, 34, 0.025)
    );

  box-shadow:
    inset 0 0 20px rgba(124, 202, 34, 0.02);
}

.process-cta-text {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cta-icon {
  width: 38px;
  height: 38px;

  flex: 0 0 auto;

  display: grid;
  place-items: center;

  border: 1px solid #7cca22;
  border-radius: 8px;

  color: #7cca22;
}

.process-cta h2 {
  margin: 0 0 4px;

  font-family: "Syne", sans-serif;

  font-size: 17px;
}

.process-cta p {
  margin: 0;

  color: rgba(255, 255, 255, 0.62);

  font-size: 10px;
}

.process-cta .btn {
  min-height: 43px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 0 15px;

  text-decoration: none;

  font-size: 11px;
}


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

@media (max-width: 1100px) {

  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    padding: 0 20px;
  }

  .process-features {
    margin-left: 20px;
    margin-right: 20px;
  }

  .process-trust,
  .process-cta {
    margin-left: 20px;
    margin-right: 20px;
  }

}


@media (max-width: 850px) {

  .process-hero {
    min-height: 560px;
    padding: 80px 25px 40px;
    align-items: flex-start;
  }

  .process-hero-background {
    background-position: center;
  }

  .process-hero-content {
    max-width: 100%;
  }

  .process-hero h1 {
    font-size: 48px;
  }

  .process-quote {
    position: absolute;

    left: 25px;
    right: auto;
    bottom: 25px;
    top: auto;

    transform: none;

    width: 230px;
    min-height: auto;

    padding: 16px;
  }

  .process-quote p {
    margin: 8px 0;
  }

  .process-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-feature:nth-child(2) {
    border-right: none;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-trust {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-trust-main {
    grid-column: 1 / -1;
  }

  .process-stat:nth-last-child(2) {
    border-right: 1px solid rgba(255, 255, 255, 0.13);
  }

  .process-cta {
    grid-template-columns: 1fr 1fr;
  }

  .process-cta-text {
    grid-column: 1 / -1;
  }

}


@media (max-width: 600px) {

  .process-hero {
    min-height: 620px;
    padding: 65px 18px 30px;
  }

  .process-hero h1 {
    font-size: 41px;
  }

  .process-hero-content > p {
    font-size: 14px;
  }

  .process-title-row {
    gap: 9px;
  }

  .process-number {
    font-size: 25px;
  }

  .process-label {
    font-size: 12px;
  }

  .process-line {
    width: 40px;
  }

  .process-quote {
    left: 18px;
    right: 18px;

    width: auto;

    display: grid;
    grid-template-columns: auto 1fr;

    column-gap: 12px;
  }

  .quote-mark {
    grid-row: span 3;
  }

  .process-quote p {
    margin: 0;
  }

  .quote-line {
    margin: 10px 0;
  }

  .process-features {
    grid-template-columns: 1fr;
    margin-left: 15px;
    margin-right: 15px;
  }

  .process-feature {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .process-feature:last-child {
    border-bottom: none;
  }

  .process-steps {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }

  .process-card-image {
    height: 220px;
  }

  .process-trust {
    grid-template-columns: 1fr;
    margin-left: 15px;
    margin-right: 15px;
  }

  .process-trust-main {
    grid-column: auto;
  }

  .process-stat {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .process-stat:last-child {
    border-bottom: none;
  }

  .process-cta {
    grid-template-columns: 1fr;
    margin-left: 15px;
    margin-right: 15px;
    padding: 15px;
  }

  .process-cta-text {
    grid-column: auto;
  }

}

/* =========================================================
   VISIONTEK — MOBILE RESPONSIVE FIX
   Keeps the existing desktop design and header
========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

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

/* =========================================================
   TABLET / MOBILE
========================================================= */

@media (max-width: 900px) {

  /* ---------- HEADER ---------- */

  .site-header {
    width: 100%;
    min-height: 72px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    position: relative;
    z-index: 1000;
  }

  .brand {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
  }

  .visiontek-lockup {
    width: 42px;
    max-width: 42px;
  }

  .brand-text {
    font-size: 12px;
    line-height: 1.1;
    white-space: nowrap;
  }

  /* Hide desktop header actions */
  .header-phone,
  .header-whatsapp,
  .site-header > .btn {
    display: none !important;
  }

  /* Mobile menu button */
  .menu-toggle {
    display: flex !important;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(124, 202, 34, 0.35);
    border-radius: 10px;
    background: rgba(10, 20, 13, 0.9);
    color: #7cca22;
    font-size: 24px;
    cursor: pointer;
  }

  /* Mobile navigation */
  #main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 12px;
    right: 12px;
    width: auto;
    padding: 12px;
    flex-direction: column;
    gap: 4px;
    background: rgba(5, 12, 8, 0.98);
    border: 1px solid rgba(124, 202, 34, 0.3);
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  }

  #main-nav.open {
    display: flex !important;
  }

  #main-nav a {
    width: 100%;
    padding: 13px 14px;
    border-radius: 8px;
    font-size: 14px;
  }

  /* ---------- GENERAL SECTIONS ---------- */

  .section {
    width: 100%;
    max-width: 100%;
    padding-left: 18px;
    padding-right: 18px;
    overflow: hidden;
  }

  .section-number {
    margin-bottom: 25px;
    font-size: 12px;
  }

  .section-number span {
    font-size: 10px;
  }

  /* ---------- HERO ---------- */

  .hero {
    min-height: auto;
    height: auto;
    width: 100%;
    padding: 100px 18px 30px;
    position: relative;
  }

  .hero-image {
    position: absolute;
    inset: 0;
    background-position: center;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    position: relative;
    z-index: 2;
  }

  .eyebrow {
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(38px, 10vw, 62px);
    line-height: 0.98;
    word-break: normal;
  }

  .hero-copy h1 em {
    display: block;
  }

  .hero-copy > p:not(.eyebrow) {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.7;
  }

  /* Hero buttons */
  .hero .actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .hero .actions .btn {
    width: 100%;
    min-height: 52px;
    justify-content: center;
  }

  /* ---------- QUICK SOLUTIONS ---------- */

  .quick-solutions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 35px;
  }

  .solution-card {
    width: 100%;
    min-width: 0;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .solution-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .solution-content {
    min-width: 0;
    flex: 1;
  }

  .solution-content h3 {
    font-size: 13px;
    line-height: 1.3;
  }

  .solution-content p {
    font-size: 11px;
    line-height: 1.4;
  }

  .solution-arrow {
    flex: 0 0 auto;
  }

  /* ---------- INTRO HEADINGS ---------- */

  .center-intro,
  .solution-heading,
  .project-top,
  .packages-heading,
  .payment-top {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .center-intro h2,
  .solution-heading h2,
  .project-top h2,
  .packages-heading h2,
  .payment-top h2 {
    font-size: clamp(32px, 9vw, 48px);
    line-height: 1.05;
  }

  .center-intro p,
  .solution-heading p,
  .project-top p,
  .packages-heading p,
  .payment-top p {
    font-size: 14px;
    line-height: 1.7;
  }

  /* ---------- BENEFITS ---------- */

  .benefit-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    width: 100%;
  }

  .benefit {
    width: 100%;
    min-height: 300px;
  }

  .benefit h3 {
    font-size: 22px;
  }

  .benefit p {
    font-size: 13px;
    line-height: 1.6;
  }

  /* ---------- STATS ---------- */

  .stat-bar,
  .mini-stats {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
  }

  .stat-bar > div {
    min-width: 0;
    padding: 18px 10px;
    text-align: center;
  }

  .stat-bar b {
    font-size: 22px;
  }

  .stat-bar span {
    font-size: 10px;
    line-height: 1.4;
  }

  /* ---------- SOLUTIONS ---------- */

  .solutions-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .solutions-grid article {
    width: 100%;
    min-width: 0;
  }

  .solutions-grid .card-img {
    width: 100%;
    height: 230px;
  }

  .solutions-grid h3 {
    font-size: 20px;
  }

  .solutions-grid p {
    font-size: 13px;
    line-height: 1.65;
  }

  .help-box {
    width: 100%;
    padding: 18px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .help-box strong {
    width: 100%;
  }

  /* ---------- PROJECTS ---------- */

  .projects-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .project {
    width: 100%;
    min-height: 390px;
  }

  .project footer h3 {
    font-size: 22px;
  }

  .project footer p {
    font-size: 12px;
  }

  .cta-strip {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px;
  }

  .cta-strip > div {
    width: 100%;
  }

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

  /* ---------- SMART HOME BENEFITS ---------- */

  .benefit-feature {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .benefit-feature > div {
    width: 100%;
  }

  .benefit-feature h2 {
    font-size: clamp(34px, 9vw, 50px);
    line-height: 1;
  }

  .smart-home {
    width: 100%;
    min-height: 280px;
    order: 2;
  }

  .benefit-list {
    width: 100%;
    order: 3;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .benefit-list > div {
    width: 100%;
  }

  .comfort-bar {
    width: 100%;
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  /* ---------- BRANDS ---------- */

  .brands > div:first-child {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .products-montage {
    width: 100%;
    min-height: 260px;
  }

  .brand-logos {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .brand-logos b {
    min-width: 0;
    padding: 15px 8px;
    font-size: 12px;
    text-align: center;
  }

  .quality-row {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .quality-row > div {
    width: 100%;
  }

  /* ---------- PROCESS ---------- */

  .process-intro {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .process-intro h2 {
    font-size: clamp(36px, 9vw, 54px);
    line-height: 1;
  }

  .process-intro blockquote {
    width: 100%;
    margin: 0;
  }

  .process-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .process-grid article {
    width: 100%;
    min-height: 230px;
  }

  /* ---------- PACKAGES ---------- */

  .pricing-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .pricing-grid article {
    width: 100%;
    min-width: 0;
  }

  .pricing-grid article strong {
    font-size: 28px;
  }

  .pricing-grid ul {
    padding-left: 20px;
  }

  .pricing-grid li {
    font-size: 13px;
    line-height: 1.6;
  }

  .pricing-grid .btn {
    width: 100%;
    justify-content: center;
  }

  .package-promise {
    width: 100%;
    text-align: center;
  }

  /* ---------- PAYMENT ---------- */

  .payment-layout {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .payment-cards {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .payment-cards article {
    width: 100%;
  }

  .bank-details {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .bank-details span {
    width: 100%;
  }

  .payment-layout aside {
    width: 100%;
  }

  .payment-layout aside .btn {
    width: 100%;
  }

  /* ---------- FOOTER ---------- */

  footer {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 35px 18px;
  }

  footer > div {
    width: 100%;
  }

  /* ---------- FLOATING WHATSAPP ---------- */

  .whatsapp {
    width: 52px !important;
    height: 52px !important;
    right: 16px !important;
    bottom: 16px !important;
    z-index: 999;
  }

  .whatsapp img {
    width: 100%;
    height: 100%;
  }

  /* ---------- MODAL ---------- */

  #survey-modal {
    width: calc(100% - 28px);
    max-width: 520px;
    max-height: 90vh;
    margin: auto;
    padding: 24px 18px;
    overflow-y: auto;
  }

  #survey-modal form {
    width: 100%;
  }

  #survey-modal input,
  #survey-modal select,
  #survey-modal textarea,
  #survey-modal button {
    width: 100%;
  }
}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 600px) {

  .site-header {
    min-height: 64px;
    padding: 10px 14px;
  }

  .brand-text {
    font-size: 10px;
  }

  .visiontek-lockup {
    width: 38px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .hero {
    padding: 85px 15px 25px;
  }

  .hero-copy h1 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 13px;
  }

  .section {
    padding-left: 15px;
    padding-right: 15px;
  }

  .section-number {
    font-size: 11px;
  }

  .center-intro h2,
  .solution-heading h2,
  .project-top h2,
  .packages-heading h2,
  .payment-top h2,
  .benefit-feature h2,
  .process-intro h2 {
    font-size: 34px;
  }

  .stat-bar,
  .mini-stats {
    grid-template-columns: 1fr 1fr;
  }

  .stat-bar > div {
    padding: 15px 6px;
  }

  .stat-bar b {
    font-size: 19px;
  }

  .stat-bar span {
    font-size: 9px;
  }

  .brand-logos {
    grid-template-columns: 1fr 1fr;
  }

  .benefit {
    min-height: 270px;
  }

  .solutions-grid .card-img {
    height: 210px;
  }

  .project {
    min-height: 350px;
  }

  .process-grid article {
    min-height: 210px;
  }

  footer {
    padding: 30px 15px;
  }
}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 380px) {

  .brand-text {
    display: none;
  }

  .hero {
    padding-top: 75px;
  }

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

  .stat-bar,
  .mini-stats {
    grid-template-columns: 1fr;
  }

  .brand-logos {
    grid-template-columns: 1fr;
  }
}
/* =========================================================
   HERO — STABLE RESPONSIVE LAYOUT
   Prevents text/cards from overlapping when browser is zoomed
========================================================= */

.hero {
  position: relative;
  min-height: 850px;
  padding: 110px 5vw 60px;
  overflow: hidden;

  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(480px, 0.95fr);
  align-items: center;
  gap: 45px;
}

/* Keep the background behind everything */
.hero-image,
.hero-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Hero text */
.hero-copy {
  position: relative;
  z-index: 5;

  width: 100%;
  max-width: 780px;

  min-width: 0;
}

/* Eyebrow */
.hero-copy .eyebrow {
  margin-bottom: 22px;
  font-size: clamp(13px, 1.1vw, 18px);
  line-height: 1.3;
  letter-spacing: 1.5px;
}

/* Main heading */
.hero-copy h1 {
  margin: 0;
  max-width: 760px;

  font-size: clamp(48px, 5.2vw, 88px);
  line-height: 0.98;
  letter-spacing: -2.5px;

  overflow-wrap: normal;
  word-break: normal;
}

/* White heading */
.hero-copy .hero-heading-white {
  display: block;
  white-space: normal;
}

/* Green heading */
.hero-copy h1 em {
  display: block;
  margin-top: 8px;
  font-style: normal;
}

/* Description */
.hero-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 28px 0 32px;

  font-size: clamp(16px, 1.25vw, 21px);
  line-height: 1.7;
}

/* Hero buttons */
.hero-copy .actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.hero-copy .actions .btn {
  white-space: nowrap;
}


/* =========================================================
   QUICK SOLUTIONS
========================================================= */

.quick-solutions {
  position: relative;
  z-index: 5;

  width: 100%;
  max-width: 760px;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;

  min-width: 0;
}

/* Individual cards */
.solution-card {
  position: relative;

  min-width: 0;
  min-height: 170px;

  padding: 25px 24px;

  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 25px;
  align-items: center;
  gap: 14px;

  border: 1px solid rgba(124, 202, 34, 0.35);
  border-radius: 24px;

  background: rgba(8, 20, 14, 0.62);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  text-decoration: none;

  overflow: hidden;

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.solution-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 202, 34, 0.75);
  background: rgba(8, 25, 14, 0.78);
}

/* Icon */
.solution-icon {
  width: 54px;
  height: 54px;

  display: grid;
  place-items: center;

  border-radius: 17px;

  font-size: 27px;
  color: #7cca22;

  border: 1px solid rgba(124, 202, 34, 0.5);
  background: rgba(124, 202, 34, 0.08);

  flex-shrink: 0;
}

/* Content */
.solution-content {
  min-width: 0;
}

.solution-content h3 {
  margin: 0 0 7px;

  font-size: clamp(16px, 1.25vw, 22px);
  line-height: 1.15;

  color: #fff;

  overflow-wrap: break-word;
}

.solution-content p {
  margin: 0;

  font-size: clamp(12px, 0.9vw, 15px);
  line-height: 1.45;

  color: rgba(255, 255, 255, 0.7);

  overflow-wrap: break-word;
}

/* Arrow */
.solution-arrow {
  font-size: 22px;
  color: #7cca22;

  justify-self: end;
}


/* =========================================================
   LARGE SCREEN / BROWSER ZOOM PROTECTION
========================================================= */

@media (max-width: 1250px) {

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(400px, 0.85fr);
    gap: 30px;
    padding-left: 4vw;
    padding-right: 4vw;
  }

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

  .quick-solutions {
    gap: 14px;
  }

  .solution-card {
    min-height: 155px;
    padding: 20px;
  }

}


/* =========================================================
   WHEN ZOOM MAKES THE VIEWPORT EFFECTIVELY SMALLER
========================================================= */

@media (max-width: 1050px) {

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;

    padding-top: 100px;
    padding-bottom: 50px;
  }

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

  .quick-solutions {
    max-width: 850px;
    width: 100%;
    margin: 20px auto 0;
  }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 760px) {

  .hero {
    padding: 90px 20px 40px;
  }

  .hero-copy h1 {
    font-size: clamp(40px, 10vw, 62px);
    line-height: 1;
    letter-spacing: -1.5px;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.6;
  }

  .quick-solutions {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .solution-card {
    min-height: 120px;
  }

}


/* =========================================================
   PHONE
========================================================= */

@media (max-width: 520px) {

  .hero {
    padding: 85px 16px 30px;
  }

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

  .hero-copy .actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-copy .actions .btn {
    width: 100%;
    justify-content: center;
  }

  .solution-card {
    grid-template-columns: 48px minmax(0, 1fr) 20px;
    min-height: 105px;
    padding: 16px;
    border-radius: 18px;
  }

  .solution-icon {
    width: 46px;
    height: 46px;
    font-size: 22px;
    border-radius: 14px;
  }

  .solution-content h3 {
    font-size: 16px;
  }

  .solution-content p {
    font-size: 12px;
  }

  .solution-arrow {
    font-size: 18px;
  }

}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 380px) {

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

  .solution-card {
    grid-template-columns: 42px minmax(0, 1fr) 18px;
    padding: 13px;
  }

  .solution-icon {
    width: 40px;
    height: 40px;
  }

}
/* =====================================================
   QUICK SOLUTIONS — ICON + TEXT FIX
   ===================================================== */

.quick-solutions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.solution-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 28px 22px 24px;
  min-height: 175px;
  box-sizing: border-box;
}

/* Center the icon */
.solution-icon {
  position: static !important;
  width: 58px;
  height: 58px;

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

  flex: 0 0 58px;
  margin: 0 auto 16px;

  border-radius: 18px;

  box-sizing: border-box;
}

/* Text stays BELOW the icon */
.solution-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
  margin: 0;
}

.solution-content h3 {
  margin: 0;
  width: 100%;

  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.2;

  text-align: center;
  position: static;
}

.solution-content p {
  margin: 0;
  width: 100%;

  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.45;

  text-align: center;
  position: static;
}

/* Arrow stays at the bottom-right */
.solution-arrow {
  position: absolute;
  right: 20px;
  bottom: 18px;
}

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

@media (max-width: 768px) {

  .quick-solutions {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .solution-card {
    min-height: 165px;
    padding: 22px 14px 30px;
  }

  .solution-icon {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
    margin-bottom: 13px;
  }

  .solution-content h3 {
    font-size: 15px;
    line-height: 1.2;
  }

  .solution-content p {
    font-size: 12px;
    line-height: 1.35;
  }

  .solution-arrow {
    right: 12px;
    bottom: 12px;
    font-size: 14px;
  }
}

/* Smaller phones */
@media (max-width: 480px) {

  .quick-solutions {
    gap: 10px;
  }

  .solution-card {
    min-height: 155px;
    padding: 18px 10px 28px;
  }

  .solution-icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
    margin-bottom: 11px;
  }

  .solution-content h3 {
    font-size: 14px;
  }

  .solution-content p {
    font-size: 11px;
  }
}

/* =========================================================
   PROCESS PAGE — MOBILE RESPONSIVE FIX
   ========================================================= */

@media (max-width: 768px) {

  /* ---------------------------------------------------------
     GLOBAL MOBILE FIX
     --------------------------------------------------------- */

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

  .page-process {
    overflow-x: hidden;
  }


  /* ---------------------------------------------------------
     HEADER
     --------------------------------------------------------- */

  .page-process .site-header {
    height: auto;
    min-height: 72px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    position: relative;
    z-index: 1000;
  }

  .page-process .brand {
    min-width: 0;
    max-width: 190px;
    display: flex;
    align-items: center;
  }

  .page-process .visiontek-lockup {
    width: 170px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }

  /* Hide desktop-only header items */
  .page-process .site-header nav,
  .page-process .header-phone,
  .page-process .header-whatsapp,
  .page-process .site-header > .survey-trigger {
    display: none;
  }

  /* Mobile menu button */
  .page-process .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;

    flex-shrink: 0;

    border: 1px solid rgba(124, 202, 34, 0.45);
    border-radius: 10px;

    background: rgba(10, 20, 12, 0.9);
    color: #7cca22;

    font-size: 24px;
    line-height: 1;

    cursor: pointer;
  }


  /* ---------------------------------------------------------
     HERO
     --------------------------------------------------------- */

  .page-process .process-hero {
    min-height: auto;
    height: auto;

    padding: 90px 20px 55px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    position: relative;
  }

  .page-process .process-hero-background {
    position: absolute;
    inset: 0;
    background-position: center center;
    background-size: cover;
  }

  .page-process .process-hero-overlay {
    position: absolute;
    inset: 0;
  }

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

    width: 100%;
    max-width: 100%;

    margin: 0;
  }


  /* Hero number / label */

  .page-process .process-title-row {
    width: 100%;

    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 18px;
  }

  .page-process .process-number {
    font-size: 12px;
    flex-shrink: 0;
  }

  .page-process .process-label {
    font-size: 11px;
    letter-spacing: 1.5px;
    white-space: nowrap;
  }

  .page-process .process-line {
    flex: 1;
    min-width: 20px;
  }


  /* Hero heading */

  .page-process .process-hero h1 {
    width: 100%;
    max-width: 100%;

    margin: 0 0 20px;

    font-size: clamp(42px, 11vw, 68px);
    line-height: 0.98;
    letter-spacing: -2px;

    overflow-wrap: normal;
  }

  .page-process .process-hero h1 em {
    display: block;
    margin-top: 5px;
  }

  .page-process .process-hero-content > p {
    width: 100%;
    max-width: 100%;

    margin: 0;

    font-size: 15px;
    line-height: 1.7;
  }


  /* ---------------------------------------------------------
     QUOTE
     --------------------------------------------------------- */

  .page-process .process-quote {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 100%;

    margin: 45px 0 0;
    padding: 25px 0 0;

    border-top: 1px solid rgba(255, 255, 255, 0.2);

    text-align: left;
  }

  .page-process .quote-mark {
    font-size: 38px;
    line-height: 1;
    margin-bottom: 5px;
  }

  .page-process .process-quote p {
    margin: 0;

    font-size: 18px;
    line-height: 1.45;
  }

  .page-process .quote-line {
    width: 55px;
    height: 2px;
    margin: 18px 0;
  }

  .page-process .process-quote strong {
    display: block;
    font-size: 15px;
  }

  .page-process .process-quote span {
    font-size: 12px;
  }


  /* ---------------------------------------------------------
     TRUST FEATURES
     --------------------------------------------------------- */

  .page-process .process-features {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 1px;

    padding: 0;

    margin: 0;
  }

  .page-process .process-feature {
    min-width: 0;

    padding: 25px 15px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 12px;
  }

  .page-process .process-feature-icon {
    width: 42px;
    height: 42px;

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

    flex-shrink: 0;

    border-radius: 50%;
  }

  .page-process .process-feature strong {
    display: block;

    font-size: 14px;
    line-height: 1.25;

    margin-bottom: 6px;
  }

  .page-process .process-feature p {
    margin: 0;

    font-size: 12px;
    line-height: 1.5;
  }

  .page-process .process-feature br {
    display: none;
  }


  /* ---------------------------------------------------------
     PROCESS STEPS
     --------------------------------------------------------- */

  .page-process .process-steps {
    width: 100%;

    display: grid;
    grid-template-columns: 1fr;

    gap: 22px;

    padding: 45px 18px;
  }


  /* Each card becomes a clean vertical block */

  .page-process .process-card {
    width: 100%;
    min-width: 0;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    border-radius: 18px;
  }


  /* Card image */

  .page-process .process-card-image {
    width: 100%;
    height: 230px;

    position: relative;

    overflow: hidden;
  }

  .page-process .process-card-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;
  }


  /* Number stays inside image */

  .page-process .process-card-number {
    position: absolute;

    top: 14px;
    right: 14px;

    width: 42px;
    height: 42px;

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

    border-radius: 50%;

    font-size: 13px;
    font-weight: 800;
  }


  /* ---------------------------------------------------------
     CARD ICON
     --------------------------------------------------------- */

  .page-process .process-card-icon {
    width: 50px;
    height: 50px;

    margin: -25px auto 0;

    position: relative;
    z-index: 5;

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

    border-radius: 50%;

    font-size: 21px;

    flex-shrink: 0;
  }


  /* ---------------------------------------------------------
     CARD BODY
     --------------------------------------------------------- */

  .page-process .process-card-body {
    width: 100%;

    padding: 18px 20px 20px;

    text-align: center;
  }

  .page-process .process-card-body h3 {
    margin: 0 0 10px;

    font-size: 20px;
    line-height: 1.2;
  }

  .page-process .process-card-body p {
    margin: 0;

    font-size: 14px;
    line-height: 1.65;
  }

  .page-process .process-card-line {
    width: 45px;

    margin: 0 auto 20px;

    display: block;
  }


  /* ---------------------------------------------------------
     TRUST / STATISTICS
     --------------------------------------------------------- */

  .page-process .process-trust {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 12px;

    padding: 45px 18px;
  }

  .page-process .process-trust-main {
    grid-column: 1 / -1;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

    gap: 25px;

    margin-bottom: 15px;
  }

  .page-process .trust-badge {
    width: 125px;
    height: 125px;

    flex-shrink: 0;
  }

  .page-process .trust-copy {
    width: 100%;
  }

  .page-process .trust-copy h2 {
    margin: 0 0 12px;

    font-size: 28px;
    line-height: 1.1;
  }

  .page-process .trust-copy p {
    margin: 0;

    font-size: 14px;
    line-height: 1.7;
  }


  /* Statistics */

  .page-process .process-stat {
    min-width: 0;

    padding: 22px 12px;

    text-align: center;

    border-radius: 14px;
  }

  .page-process .process-stat strong {
    display: block;

    font-size: 23px;
    line-height: 1.15;

    overflow-wrap: anywhere;
  }

  .page-process .process-stat span {
    display: block;

    margin-top: 7px;

    font-size: 11px;
    line-height: 1.4;
  }


  /* ---------------------------------------------------------
     CTA
     --------------------------------------------------------- */

  .page-process .process-cta {
    width: 100%;

    padding: 40px 18px;

    display: flex;
    flex-direction: column;
    align-items: stretch;

    gap: 12px;

    text-align: center;
  }

  .page-process .process-cta-text {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 15px;

    margin-bottom: 10px;
  }

  .page-process .cta-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;
  }

  .page-process .process-cta h2 {
    margin: 0 0 8px;

    font-size: 28px;
    line-height: 1.15;
  }

  .page-process .process-cta p {
    margin: 0;

    font-size: 14px;
    line-height: 1.5;
  }

  .page-process .process-cta .btn {
    width: 100%;
    min-height: 52px;

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

    box-sizing: border-box;
  }


  /* ---------------------------------------------------------
     FOOTER
     --------------------------------------------------------- */

  .page-process footer {
    width: 100%;

    display: grid;
    grid-template-columns: 1fr;

    gap: 30px;

    padding: 45px 20px;
  }

  .page-process footer > div {
    width: 100%;
    min-width: 0;
  }

  .page-process footer .brand {
    display: inline-flex;
    max-width: 220px;
  }

  .page-process footer .visiontek-lockup {
    width: 190px;
  }

  .page-process footer p {
    font-size: 13px;
    line-height: 1.6;
  }


  /* ---------------------------------------------------------
     FLOATING WHATSAPP
     --------------------------------------------------------- */

  .page-process .whatsapp {
    width: 54px;
    height: 54px;

    right: 16px;
    bottom: 16px;

    z-index: 999;
  }

  .page-process .whatsapp img {
    width: 28px;
    height: 28px;
  }


  /* ---------------------------------------------------------
     SURVEY MODAL
     --------------------------------------------------------- */

  .page-process #survey-modal {
    width: calc(100% - 28px);
    max-width: 430px;

    max-height: calc(100vh - 30px);

    padding: 25px 20px;

    border-radius: 18px;

    overflow-y: auto;
  }

  .page-process #survey-modal h2 {
    font-size: 25px;
    line-height: 1.15;
  }

  .page-process #survey-modal input,
  .page-process #survey-modal select,
  .page-process #survey-modal textarea {
    width: 100%;
    box-sizing: border-box;
  }

}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 420px) {

  .page-process .site-header {
    padding: 10px 14px;
  }

  .page-process .visiontek-lockup {
    width: 150px;
  }

  .page-process .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .page-process .process-hero {
    padding: 75px 16px 45px;
  }

  .page-process .process-hero h1 {
    font-size: 40px;
    letter-spacing: -1.5px;
  }

  .page-process .process-hero-content > p {
    font-size: 14px;
  }

  .page-process .process-features {
    grid-template-columns: 1fr;
  }

  .page-process .process-feature {
    padding: 22px 18px;
    flex-direction: row;
    align-items: center;
  }

  .page-process .process-steps {
    padding: 35px 14px;
  }

  .page-process .process-card-image {
    height: 210px;
  }

  .page-process .process-card-body h3 {
    font-size: 18px;
  }

  .page-process .process-card-body p {
    font-size: 13px;
  }

  .page-process .process-trust {
    grid-template-columns: 1fr;
    padding: 35px 14px;
  }

  .page-process .process-trust-main {
    grid-column: auto;
  }

  .page-process .process-stat strong {
    font-size: 22px;
  }

  .page-process .process-cta {
    padding: 35px 16px;
  }

  .page-process .process-cta h2 {
    font-size: 25px;
  }

}

/* =========================================================
   MODERN ANIMATIONS & INTERACTIVE ENHANCEMENTS
   Scroll triggers, hover effects, and smooth transitions
========================================================= */

/* Fade-in animation for elements as they appear */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Slide up animation for cards and sections */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scale-in animation for hover elements */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Glow pulse animation */
@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(64, 189, 36, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(64, 189, 36, 0.6);
  }
}

/* Smooth transitions on all interactive elements */
button,
a,
input,
textarea,
select {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Enhanced button hover effects with ripple */
.btn {
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn:hover {
  letter-spacing: 0.5px;
  box-shadow: 0 8px 20px rgba(64, 189, 36, 0.3);
}

/* Smooth card animations */
article,
.project,
.benefit,
.pricing-grid article {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

article:hover,
.project:hover,
.benefit:hover,
.pricing-grid article:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
}

/* Navigation link hover effects with underline animation */
#main-nav a {
  position: relative;
  transition: all 0.3s ease;
}

#main-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 0.3s ease;
}

#main-nav a:hover::after {
  width: 100%;
}

/* Smooth hero section entrance */
.hero {
  animation: fadeIn 0.8s ease-out;
}

.hero-copy {
  animation: slideUp 0.9s ease-out 0.2s both;
}

.hero-copy h1 {
  animation: slideUp 0.9s ease-out 0.3s both;
}

.hero-copy p {
  animation: slideUp 0.9s ease-out 0.4s both;
}

.actions {
  animation: slideUp 0.9s ease-out 0.5s both;
}

/* Quick solutions hover animations */
.quick-solutions a {
  transition: all 0.3s ease;
  animation: scaleIn 0.5s ease-out both;
}

.quick-solutions a:nth-child(1) { animation-delay: 0.1s; }
.quick-solutions a:nth-child(2) { animation-delay: 0.2s; }
.quick-solutions a:nth-child(3) { animation-delay: 0.3s; }
.quick-solutions a:nth-child(4) { animation-delay: 0.4s; }
.quick-solutions a:nth-child(5) { animation-delay: 0.5s; }
.quick-solutions a:nth-child(6) { animation-delay: 0.6s; }

.quick-solutions a:hover {
  transform: translateY(-12px) scale(1.05);
  background: rgba(64, 189, 36, 0.15) !important;
  border-color: var(--green) !important;
  box-shadow: 0 15px 35px rgba(64, 189, 36, 0.2) !important;
}

/* Smooth section transitions */
.section {
  animation: fadeIn 0.8s ease-out;
}

.benefit-grid article,
.solutions-grid article,
.projects-grid .project {
  animation: slideUp 0.6s ease-out both;
}

.benefit-grid article:nth-child(1) { animation-delay: 0.1s; }
.benefit-grid article:nth-child(2) { animation-delay: 0.2s; }
.benefit-grid article:nth-child(3) { animation-delay: 0.3s; }
.benefit-grid article:nth-child(4) { animation-delay: 0.4s; }
.benefit-grid article:nth-child(5) { animation-delay: 0.5s; }
.benefit-grid article:nth-child(6) { animation-delay: 0.6s; }

.solutions-grid article:nth-child(1) { animation-delay: 0.05s; }
.solutions-grid article:nth-child(2) { animation-delay: 0.15s; }
.solutions-grid article:nth-child(3) { animation-delay: 0.25s; }
.solutions-grid article:nth-child(4) { animation-delay: 0.35s; }
.solutions-grid article:nth-child(5) { animation-delay: 0.45s; }
.solutions-grid article:nth-child(6) { animation-delay: 0.55s; }
.solutions-grid article:nth-child(7) { animation-delay: 0.65s; }
.solutions-grid article:nth-child(8) { animation-delay: 0.75s; }
.solutions-grid article:nth-child(9) { animation-delay: 0.85s; }
.solutions-grid article:nth-child(10) { animation-delay: 0.95s; }

/* Project card animations */
.project {
  animation: slideUp 0.7s ease-out both;
}

.projects-grid .project:nth-child(1) { animation-delay: 0.1s; }
.projects-grid .project:nth-child(2) { animation-delay: 0.2s; }
.projects-grid .project:nth-child(3) { animation-delay: 0.3s; }
.projects-grid .project:nth-child(4) { animation-delay: 0.4s; }
.projects-grid .project:nth-child(5) { animation-delay: 0.5s; }
.projects-grid .project:nth-child(6) { animation-delay: 0.6s; }

/* Project card enhanced hover */
.project:hover footer {
  background: linear-gradient(transparent, #050807 15%);
}

/* Stat bar smooth animation */
.stat-bar {
  animation: slideUp 0.8s ease-out 0.6s both;
}

.stat-bar > div {
  transition: all 0.3s ease;
}

.stat-bar > div:hover {
  transform: scale(1.08);
  color: var(--green);
}

/* Pricing grid item animations */
.pricing-grid article {
  animation: slideUp 0.6s ease-out both;
}

.pricing-grid article:nth-child(1) { animation-delay: 0.1s; }
.pricing-grid article:nth-child(2) { animation-delay: 0.2s; }
.pricing-grid article:nth-child(3) { animation-delay: 0.3s; }
.pricing-grid article:nth-child(4) { animation-delay: 0.4s; }
.pricing-grid article:nth-child(5) { animation-delay: 0.5s; }

.pricing-grid article.featured {
  animation: glowPulse 3s ease-in-out infinite;
}

/* Smooth modal animations */
dialog {
  animation: scaleIn 0.4s ease-out;
}

/* Link hover effects with glow */
a:not(.btn):hover {
  color: var(--green);
  text-shadow: 0 0 10px rgba(64, 189, 36, 0.3);
}

/* Input focus animations with glow */
input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--green) !important;
  box-shadow: 0 0 15px rgba(64, 189, 36, 0.2) !important;
  transform: scale(1.01);
}

/* Section headings smooth animation */
h1, h2, h3 {
  animation: slideUp 0.7s ease-out both;
}

/* CTA strip smooth hover */
.cta-strip {
  transition: all 0.4s ease;
}

.cta-strip:hover {
  border-color: var(--green);
  background: rgba(64, 189, 36, 0.05);
  transform: translateX(4px);
}

/* Help box smooth animations */
.help-box {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.help-box:hover {
  transform: translateX(10px);
  border-color: var(--green);
  box-shadow: 0 10px 30px rgba(64, 189, 36, 0.15);
}

/* Smooth footer link transitions */
footer a:hover {
  color: var(--green);
  transform: translateX(4px);
}

/* WhatsApp floating button pulsing animation */
.whatsapp {
  transition: all 0.3s ease;
  animation: glowPulse 2.5s ease-in-out infinite;
}

.whatsapp:hover {
  transform: scale(1.15);
  box-shadow: 0 8px 25px rgba(39, 184, 66, 0.4) !important;
}

/* Smooth page transitions */
body {
  animation: fadeIn 0.5s ease-out;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: prefer-reduced-motion) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}