:root {
  --blue: #0057ff;
  --red: #ff1b2d;
  --white: #ffffff;
  --ink: #05070d;
  --dark: #0a1020;
  --gray: #667085;
  --line: rgba(255, 255, 255, 0.14);
  --soft: #f4f7fb;
  --panel: rgba(255, 255, 255, 0.08);
  --shadow: 0 28px 90px rgba(0, 24, 86, 0.18);
  --radius: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.is-loaded .ft-loader {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
}

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

img,
iframe {
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.section-pad {
  padding: 104px 0;
}

.section-watermark {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.section-watermark::after {
  content: attr(data-watermark);
  position: absolute;
  inset: auto -2vw 6%;
  z-index: -1;
  color: rgba(0, 87, 255, 0.045);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(4.2rem, 14vw, 13rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}

.ft-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  gap: 16px;
  color: var(--white);
  background: radial-gradient(circle at 30% 20%, rgba(0, 87, 255, 0.4), transparent 32%), var(--ink);
  transition: opacity 0.45s ease, visibility 0.45s ease, transform 0.45s ease;
}

.ft-loader span {
  width: 58px;
  height: 58px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.ft-loader strong {
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  color: var(--white);
}

.top-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 7, 13, 0.7);
  backdrop-filter: blur(18px);
  font-size: 0.84rem;
}

.top-header__grid {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-header__grid a,
.top-header__grid span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.top-header__grid > span {
  margin-left: auto;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  font-size: 0.7rem;
}

.top-header svg,
.footer-actions svg,
.floating-whatsapp svg,
.floating-call svg,
.floating-chat svg,
.branch-card svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.social-links svg {
  width: 14px;
  height: 14px;
}

.main-nav {
  transition: background 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
}

.main-nav.is-scrolled {
  background: rgba(5, 7, 13, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.nav-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--red));
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
}

.brand-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  line-height: 1.1;
}

.brand-text small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 600;
}

.primary-menu {
  margin-left: auto;
}

.menu {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu a {
  position: relative;
  display: inline-flex;
  padding: 8px 0;
  font-size: 0.94rem;
  font-weight: 600;
}

.menu a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: linear-gradient(90deg, var(--blue), var(--red));
  transition: transform 0.25s ease;
}

.menu a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta,
.ft-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 14px 40px rgba(0, 87, 255, 0.28);
  font-weight: 700;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-cta:hover,
.ft-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 54px rgba(0, 87, 255, 0.36);
}

.ft-btn--small {
  min-height: 32px;
  padding: 0 14px;
  font-size: 0.82rem;
}

.ft-btn--red {
  background: var(--red);
  box-shadow: 0 14px 40px rgba(255, 27, 45, 0.28);
}

.ft-btn--glass,
.ft-btn--outline {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.ft-btn--outline {
  background: transparent;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  min-height: 100vh;
  padding: 170px 0 86px;
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(5, 7, 13, 0.92), rgba(5, 7, 13, 0.76)),
    radial-gradient(circle at 72% 22%, rgba(0, 87, 255, 0.45), transparent 30%),
    radial-gradient(circle at 20% 90%, rgba(255, 27, 45, 0.26), transparent 34%),
    #05070d;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000, transparent 92%);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-orbit,
.hero-chip {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.hero-orbit {
  width: 520px;
  height: 520px;
  right: -120px;
  top: 120px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  animation: float 7s ease-in-out infinite;
}

.hero-chip {
  width: 260px;
  height: 260px;
  left: 8%;
  bottom: 7%;
  background: radial-gradient(circle, rgba(255, 27, 45, 0.28), transparent 68%);
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  50% { transform: translate3d(0, -18px, 0); }
}

.hero-grid,
.split,
.why-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0;
  line-height: 1.04;
}

h1 {
  max-width: 920px;
  font-size: clamp(3rem, 7vw, 6.6rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
}

h3 {
  font-size: 1.18rem;
}

.hero-subtitle,
.section-heading p,
.page-hero p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.1rem;
}

.section-heading p,
.content-wrap,
.service-card p,
.post-card p,
.contact-card p,
.metric-stack span {
  color: var(--gray);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-counters,
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.hero-counters div,
.stats-grid div,
.status-card,
.portal-panel,
.contact-card,
.metric-stack div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.hero-counters div {
  padding: 18px;
}

.hero-counters strong,
.stats-grid strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
}

.hero-counters span,
.stats-grid span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
}

.hero-visual {
  position: relative;
  min-height: 540px;
}

.tech-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.06));
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(22px);
}

.tech-card--main {
  position: absolute;
  inset: 38px 0 auto auto;
  width: min(440px, 100%);
  padding: 28px;
}

.status-pill {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #b9ffcf;
  background: rgba(51, 204, 112, 0.14);
  font-size: 0.78rem;
  font-weight: 700;
}

.device-scan {
  height: 170px;
  margin: 26px 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent, rgba(0, 87, 255, 0.26), transparent),
    repeating-linear-gradient(0deg, rgba(255,255,255,.05), rgba(255,255,255,.05) 1px, transparent 1px, transparent 12px);
  overflow: hidden;
}

.device-scan span {
  display: block;
  height: 3px;
  background: var(--red);
  box-shadow: 0 0 22px var(--red);
  animation: scan 2.4s ease-in-out infinite;
}

@keyframes scan {
  50% { transform: translateY(166px); }
}

.tech-card ul {
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.78);
}

.floating-panel {
  position: absolute;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
  font-weight: 800;
  animation: float 6s ease-in-out infinite;
}

.panel-a { left: 0; top: 80px; }
.panel-b { right: 22px; bottom: 90px; animation-delay: .6s; }
.panel-c { left: 50px; bottom: 190px; animation-delay: 1s; }

.section-heading {
  max-width: 820px;
  margin-bottom: 42px;
}

.section-heading h2 {
  color: var(--ink);
}

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

.service-card,
.post-card {
  position: relative;
  min-height: 252px;
  padding: 24px;
  border: 1px solid rgba(0, 87, 255, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 70px rgba(15, 23, 42, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card:hover,
.post-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 87, 255, 0.34);
  box-shadow: var(--shadow);
}

.icon-badge {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--red));
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
}

.service-card a,
.post-card a {
  color: var(--blue);
  font-weight: 800;
}

.why-section,
.shop-preview {
  background: var(--soft);
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border-left: 3px solid var(--blue);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 50px rgba(15, 23, 42, 0.06);
}

.timeline-item span,
.process-step span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  font-weight: 800;
}

.stats-band {
  padding: 70px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 0, rgba(0,87,255,.32), transparent 34%),
    radial-gradient(circle at 90% 70%, rgba(255,27,45,.22), transparent 28%),
    #05070d;
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 0;
}

.stats-grid div {
  padding: 24px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.process-step {
  min-height: 170px;
  padding: 18px;
  border: 1px solid rgba(0, 87, 255, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--white), #f8fbff);
}

.process-step h3 {
  margin-top: 24px;
}

.category-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.category-cloud span {
  padding: 14px 16px;
  border: 1px solid rgba(0, 87, 255, 0.14);
  border-radius: 999px;
  background: var(--white);
  font-weight: 800;
}

.branches-section {
  background: var(--white);
}

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

.branch-card {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(0, 87, 255, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: var(--shadow);
}

.branch-card > span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--red));
}

.branch-card > span svg {
  width: 24px;
  height: 24px;
}

.branch-card p {
  color: var(--gray);
}

.branch-card a {
  color: var(--blue);
  font-weight: 800;
}

.cta-panel {
  padding: clamp(28px, 5vw, 60px);
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(5,7,13,.94), rgba(5,7,13,.78)),
    radial-gradient(circle at 80% 20%, rgba(0,87,255,.4), transparent 28%),
    #05070d;
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  max-width: 860px;
}

.cta-panel p {
  color: rgba(255,255,255,.74);
}

.page-hero {
  padding: 188px 0 90px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(5, 7, 13, 0.94), rgba(5, 7, 13, 0.78)),
    radial-gradient(circle at 78% 30%, rgba(0,87,255,.42), transparent 30%),
    #05070d;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 5.8vw, 5.2rem);
}

.content-wrap {
  max-width: 820px;
}

.content-wrap h2 {
  margin-top: 34px;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.metric-stack {
  display: grid;
  gap: 14px;
}

.metric-stack div {
  padding: 22px;
  background: var(--white);
}

.metric-stack strong,
.metric-stack span {
  display: block;
}

.ft-form,
.tracking-search,
.quote-panel {
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(0, 87, 255, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.ft-form label,
.tracking-search label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--ink);
  font-weight: 800;
}

.ft-form input,
.ft-form select,
.ft-form textarea,
.tracking-search input,
.woocommerce input,
.woocommerce select,
.woocommerce textarea {
  width: 100%;
  border: 1px solid #d8e0ef;
  border-radius: 8px;
  padding: 14px 14px;
  color: var(--ink);
  background: #fbfdff;
}

.checkbox-label {
  align-content: center;
  grid-template-columns: 22px 1fr;
}

.checkbox-label input {
  width: auto;
}

.notice-success,
.notice-error {
  margin-bottom: 20px;
  padding: 18px;
  border-radius: 8px;
  font-weight: 700;
}

.notice-success {
  color: #075e2f;
  background: #e8fff1;
}

.notice-success span {
  color: var(--blue);
}

.notice-error {
  color: #871621;
  background: #fff0f2;
}

.tracking-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: end;
  margin-bottom: 24px;
}

.tracking-dashboard,
.portal-grid,
.post-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

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

.status-card,
.portal-panel {
  padding: 22px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 18px 70px rgba(15, 23, 42, 0.07);
}

.status-card--wide {
  grid-column: span 2;
}

.status-card span {
  display: block;
  color: var(--gray);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.status-card strong {
  display: block;
  margin-top: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
}

.progress-timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0;
}

.progress-timeline div {
  padding: 16px;
  border: 1px solid #dbe5f5;
  border-radius: var(--radius);
  background: #f8fbff;
}

.progress-timeline .is-active {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--red));
}

.progress-timeline span {
  display: block;
  font-weight: 800;
}

.portal-dashboard {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
  padding: 24px;
  border-radius: var(--radius);
  color: var(--white);
  background: #05070d;
}

.feature-list {
  padding-left: 20px;
}

.contact-grid {
  align-items: start;
}

.contact-card a {
  display: block;
  margin-top: 10px;
  color: var(--blue);
  font-weight: 800;
}

.map-frame {
  margin-top: 28px;
}

.map-frame iframe {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.faq-list {
  max-width: 860px;
}

.faq-item {
  padding: 20px 0;
  border-bottom: 1px solid #dce4f2;
}

.faq-item summary {
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
}

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 28px;
  padding: 16px;
  border-radius: 8px;
  background: var(--soft);
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  border: 1px solid rgba(0, 87, 255, 0.1);
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 18px 70px rgba(15, 23, 42, 0.06);
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  border-radius: 999px;
  color: var(--white);
  background: var(--blue);
  font-weight: 800;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: #05070d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 34px;
  padding: 70px 0 40px;
}

.footer-grid h2 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 1rem;
}

.footer-grid a {
  display: block;
  margin-bottom: 9px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.footer-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.footer-actions a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 0.9rem;
}

.footer-bottom nav {
  display: flex;
  gap: 18px;
}

.floating-whatsapp,
.floating-call,
.floating-chat {
  position: fixed;
  z-index: 999;
  right: 20px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 18px 54px rgba(0,0,0,.28);
}

.floating-chat {
  bottom: 144px;
  width: 58px;
  height: 58px;
  background: var(--blue);
}

.floating-chat span {
  position: absolute;
  right: 4px;
  bottom: 3px;
  font-size: 0.62rem;
}

.floating-whatsapp {
  bottom: 82px;
  width: 58px;
  height: 58px;
  background: #25d366;
}

.floating-call {
  bottom: 24px;
  min-width: 58px;
  height: 42px;
  grid-auto-flow: column;
  gap: 6px;
  padding: 0 14px;
  background: var(--red);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid,
  .progress-timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tracking-dashboard,
  .footer-grid,
  .post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .top-header {
    display: none;
  }

  .site-header {
    background: rgba(5, 7, 13, 0.92);
  }

  .nav-shell {
    min-height: 70px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .primary-menu {
    position: fixed;
    top: 70px;
    right: 0;
    left: 0;
    display: none;
    padding: 20px;
    background: rgba(5, 7, 13, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .primary-menu.is-open {
    display: block;
  }

  .menu {
    display: grid;
    gap: 12px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 72px;
  }

  .hero-grid,
  .split,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 420px;
  }

  .tech-card--main {
    inset: 20px auto auto 0;
  }

  .stats-grid,
  .hero-counters,
  .portal-grid,
  .branch-grid {
    grid-template-columns: 1fr;
  }

  .form-grid,
  .tracking-search {
    grid-template-columns: 1fr;
  }

  .status-card--wide {
    grid-column: span 1;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(100% - 28px, 1180px);
  }

  .section-pad {
    padding: 72px 0;
  }

  h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-actions,
  .footer-bottom,
  .portal-dashboard,
  .shop-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .ft-btn,
  .nav-cta {
    width: 100%;
  }

  .service-grid,
  .process-grid,
  .progress-timeline,
  .tracking-dashboard,
  .footer-grid,
  .post-grid {
    grid-template-columns: 1fr;
  }

  .floating-whatsapp {
    width: 52px;
    height: 52px;
  }
}
