/* Base theme */
:root {
  --bg: #06111c;
  --panel: rgba(9, 21, 36, 0.84);
  --panel-strong: rgba(11, 26, 46, 0.96);
  --line: rgba(118, 167, 221, 0.22);
  --text: #f4f8fc;
  --muted: #9cb3cb;
  --accent: #1e90ff;
  --accent-strong: #59b4ff;
  --success: #67d58c;
  --danger: #ff7f7f;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
  --radius: 8px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(72, 174, 255, 0.18), transparent 28%),
    radial-gradient(circle at bottom left, rgba(0, 130, 255, 0.1), transparent 25%),
    linear-gradient(180deg, #040a12 0%, #07111f 24%, #091526 52%, #050d17 100%);
  min-height: 100vh;
  padding-bottom: 92px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(125deg, rgba(80, 163, 235, 0.04), transparent 32%);
  background-size: 36px 36px, 36px 36px, auto;
  opacity: 0.65;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.container {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.section {
  padding: 28px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid rgba(107, 173, 255, 0.26);
  background: rgba(7, 22, 40, 0.74);
  color: #d0e5ff;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, #9fe6ff 0%, #2c8bff 100%);
  box-shadow: 0 0 12px rgba(89, 180, 255, 0.65);
}

/* Hero section */
.hero {
  position: relative;
  padding: 22px 0 18px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.05), transparent 34%),
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.28));
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(124, 198, 255, 0.08), transparent);
  transform: translateX(-100%);
  animation: heroSweep 9s ease-in-out infinite;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 20px;
  align-items: stretch;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.brand-lockup img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(170, 209, 255, 0.24);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.3);
  background: #fff;
}

.brand-copy {
  min-width: 0;
}

.brand-name {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #f6fbff;
}

.brand-meta {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-copy {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(16, 31, 54, 0.78), rgba(8, 18, 31, 0.94));
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: auto -14% 14% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(73, 180, 255, 0.26) 0%, transparent 62%);
  pointer-events: none;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: auto 22px 0 auto;
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 198, 255, 0.55));
  opacity: 0.85;
}

.hero-kicker {
  margin: 0 0 10px;
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  font-weight: 600;
  color: #c8e2ff;
  letter-spacing: 0.02em;
}

.eyebrow--compact {
  margin-bottom: 10px;
  font-size: 0.72rem;
}

.hero h1 {
  margin: 12px 0 14px;
  font-size: clamp(1.45rem, 4.2vw, 2.35rem);
  line-height: 1.12;
  max-width: 22ch;
  letter-spacing: -0.02em;
}

.hero .lead {
  margin: 0 0 18px;
  max-width: none;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

.lead--tight {
  max-width: none;
  font-size: 0.92rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 32px rgba(18, 140, 126, 0.35);
  transition: transform 160ms ease, filter 160ms ease, box-shadow 160ms ease;
}

.hero-cta:hover,
.hero-cta:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.06);
  outline: none;
  box-shadow: 0 18px 36px rgba(18, 140, 126, 0.45);
}

.proof-points {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.proof-points li {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(122, 169, 217, 0.15);
  color: #d8e6f3;
  line-height: 1.45;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.proof-points li strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
}

.proof-points li span {
  display: block;
}

.proof-points li:hover {
  transform: translateY(-2px);
  border-color: rgba(124, 198, 255, 0.26);
  background: rgba(255, 255, 255, 0.06);
}

/* Hero photo: 1792×1024 — box matches this ratio at any width */
.hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1792 / 1024;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(8, 18, 31, 0.12), rgba(8, 18, 31, 0.88)),
    url("images/abc.png") center/cover no-repeat;
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 21, 36, 0.15), rgba(4, 10, 18, 0.92)),
    linear-gradient(130deg, rgba(83, 165, 255, 0.18), transparent 55%);
}
.hero-visual--extrusion img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Shorter width than hero, centered, low profile */
.hero-visual-card {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  box-sizing: border-box;
  width: min(86%, 38rem);
  max-width: calc(100% - clamp(20px, 5vw, 40px));
  margin: 0 clamp(12px, 3vw, 20px) clamp(10px, 2.5vw, 16px);
  padding: clamp(6px, 1.4vw, 10px) clamp(12px, 2.5vw, 18px);
  border-radius: var(--radius);
  background: rgba(9, 18, 31, 0.88);
  border: 1px solid rgba(140, 185, 236, 0.2);
  border-top: 3px solid var(--accent-strong);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(10px, 2.5vw, 18px);
  animation: cardFloat 5.8s ease-in-out infinite;
}

.hero-visual-card {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  box-sizing: border-box;
  width: min(92%, 38rem);
  margin: 0 16px 16px;
  padding: 12px 18px;
  border-radius: var(--radius);
  
  /* UPDATED: Glassmorphism effect */
  background: rgba(9, 21, 36, 0.7); /* Slightly more transparent */
  backdrop-filter: blur(14px);      /* Stronger blur to separate from machine photo */
  -webkit-backdrop-filter: blur(14px);
  
  border: 1px solid rgba(140, 185, 236, 0.2);
  border-top: 3px solid var(--accent-strong);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  animation: cardFloat 5.8s ease-in-out infinite;
}
/* Trust strip */
.trust-strip {
  padding: 14px 0;
  border-bottom: 1px solid rgba(118, 167, 221, 0.12);
}

.trust-strip__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(122, 169, 217, 0.12);
  font-size: 0.82rem;
  color: #d8e6f3;
  line-height: 1.3;
}

.trust-strip__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(30, 144, 255, 0.12);
  font-size: 0.95rem;
}

.trust-strip__text {
  font-weight: 600;
  color: #eef6ff;
}

@media (min-width: 720px) {
  .trust-strip__list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
  }
}

/* Product range (exhibition scan) */
.product-range {
  padding-top: 20px;
  padding-bottom: 28px;
}

.product-range .section-heading {
  margin-bottom: 18px;
}

.product-range .section-heading h2 {
  font-size: clamp(1.35rem, 3.8vw, 1.85rem);
  line-height: 1.15;
}

.product-range .section-heading__sub {
  font-size: 0.92rem;
  max-width: none;
}

.product-range__grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
  max-width: 640px;
  margin: 0 auto;
}

.product-range__card {
  border-radius: 10px;
  border: 1px solid rgba(122, 169, 217, 0.16);
  background: rgba(9, 21, 36, 0.72);
  padding: 17px 18px 15px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .product-range__card:hover {
    transform: translateY(-2px);
    border-color: rgba(124, 198, 255, 0.28);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  }
}

.product-range__cat {
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(124, 198, 255, 0.22);
  font-size: 0.93rem;
  font-weight: 700;
  color: #f0f6fc;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.product-range__list {
  margin: 0;
  padding: 0 0 0 1.15rem;
  color: #b8cce0;
  font-size: 0.87rem;
  line-height: 1.5;
}

.product-range__list li {
  margin-bottom: 7px;
}

.product-range__list li:last-child {
  margin-bottom: 0;
}

.product-range__tagline {
  margin: 20px 0 0;
  max-width: none;
  padding: 12px 14px;
  border-radius: 10px;
  text-align: center;
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--muted);
  border: 1px solid rgba(118, 167, 221, 0.12);
  background: rgba(255, 255, 255, 0.035);
}

@media (min-width: 700px) {
  .product-range__grid {
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 16px;
  }

  .product-range__card:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 520px;
    justify-self: center;
    width: 100%;
  }
}

/* Action section */
.action-section {
  padding-top: 18px;
}

.action-start-sub {
  margin: 0;
  max-width: none;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--muted);
  font-weight: 400;
}

.section-heading--actions {
  margin-bottom: 14px;
}

.section-heading--actions > div {
  gap: 8px;
}

.section-heading--actions h2 {
  margin: 0;
}

.section-heading__sub {
  margin: 0;
  max-width: none;
  width: 100%;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.section-heading > div {
  display: grid;
  gap: 10px;
  align-content: start;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.45rem, 4vw, 2.2rem);
  line-height: 1.02;
}

.section-heading p {
  margin: 0;
  max-width: none;
  width: 100%;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

.section-heading p:empty {
  display: none;
}

.actions-grid {
  display: grid;
  gap: 12px;
}

.actions-grid--conversion {
  gap: 14px;
}

.actions-secondary {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px dashed rgba(118, 167, 221, 0.2);
}

@media (min-width: 520px) {
  .actions-secondary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.action-button--whatsapp {
  min-height: 58px;
  padding: 18px 20px;
  border-color: rgba(37, 211, 102, 0.45);
  background: linear-gradient(140deg, rgba(16, 94, 52, 0.55), rgba(8, 42, 28, 0.95));
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(37, 211, 102, 0.15);
}

.action-button--whatsapp .icon-wrap {
  width: 50px;
  height: 50px;
  font-size: 1.35rem;
  background: linear-gradient(180deg, rgba(37, 211, 102, 0.25), rgba(18, 100, 60, 0.15));
  border-color: rgba(37, 211, 102, 0.35);
}

.action-button--whatsapp .action-text strong {
  font-size: 1.05rem;
}

.action-button--catalogue {
  border-color: rgba(124, 198, 255, 0.38);
}

.action-button--video {
  border-color: rgba(124, 198, 255, 0.28);
}

.action-button--enquiry {
  border-color: rgba(124, 198, 255, 0.25);
}

.action-button--muted {
  opacity: 0.82;
  padding: 14px 16px;
  min-height: 48px;
  background: linear-gradient(140deg, rgba(16, 30, 50, 0.65), rgba(10, 19, 33, 0.88));
}

.action-button--muted .icon-wrap {
  width: 40px;
  height: 40px;
  font-size: 1.05rem;
}

.action-button--muted .action-text strong {
  font-size: 0.95rem;
}

.action-button--muted .action-text small {
  font-size: 0.78rem;
}

.support-links--compact {
  position: relative;
  z-index: 2;
  margin-top: 12px;
}

.support-link[href^="mailto:"] {
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(89, 180, 255, 0.25);
}

.support-link > span:last-child {
  min-width: 0;
  word-break: break-word;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

.action-button {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(109, 157, 211, 0.18);
  background: linear-gradient(140deg, rgba(16, 30, 50, 0.88), rgba(10, 19, 33, 0.98));
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
  overflow: hidden;
  text-align: left;
  cursor: pointer;
}

.action-button::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-110%);
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.14), transparent);
  transition: transform 260ms ease;
}

.action-button:hover,
.action-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(127, 191, 255, 0.4);
  outline: none;
  background: linear-gradient(140deg, rgba(18, 36, 62, 0.94), rgba(10, 21, 39, 0.98));
}

.action-button:hover::after,
.action-button:focus-visible::after {
  transform: translateX(110%);
}

.action-button.primary {
  border-color: rgba(124, 198, 255, 0.35);
  background: linear-gradient(140deg, rgba(11, 50, 94, 0.94), rgba(8, 26, 48, 0.98));
}

.action-button .icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(101, 191, 255, 0.18), rgba(38, 92, 145, 0.08));
  border: 1px solid rgba(116, 181, 241, 0.18);
  color: #eaf5ff;
  flex-shrink: 0;
  font-size: 1.2rem;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.action-text strong {
  display: block;
  color: #fff;
  font-size: 1rem;
  line-height: 1.2;
}

.action-text small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.45;
  font-size: 0.84rem;
}

.action-arrow {
  color: #9bbde0;
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 180ms ease, color 180ms ease;
}

.action-button:hover .icon-wrap,
.action-button:focus-visible .icon-wrap {
  transform: scale(1.06) translateY(-1px);
}

.action-button:hover .action-arrow,
.action-button:focus-visible .action-arrow {
  transform: translateX(3px);
  color: #d9ebff;
}

.support-links {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.support-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: var(--radius);
  color: #dff0ff;
  border: 1px solid rgba(109, 157, 211, 0.18);
  background: rgba(8, 17, 29, 0.68);
  transition: border-color 180ms ease, transform 180ms ease;
}

.support-link:hover,
.support-link:focus-visible {
  border-color: rgba(127, 191, 255, 0.4);
  transform: translateY(-2px);
  outline: none;
}

/* Gallery and videos */
.feature-grid {
  display: grid;
  gap: 16px;
}

.gallery-grid {
  display: grid;
  gap: 14px;
}

.gallery-item,
.video-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(120, 171, 228, 0.18);
  background: rgba(9, 20, 34, 0.72);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.18);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.media-visual {
  position: relative;
  overflow: hidden;
}

.gallery-item img,
.video-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 300ms ease, filter 300ms ease;
}

.gallery-item {
  cursor: pointer;
  outline: none;
}

.media-overlay {
  position: absolute;
  inset: auto 14px 14px 14px;
  display: grid;
  gap: 6px;
  padding: 12px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(7, 17, 29, 0.08), rgba(7, 17, 29, 0.82));
  border: 1px solid rgba(124, 198, 255, 0.18);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.media-overlay-video {
  inset: auto 14px 14px 14px;
}

.media-overlay-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(18, 36, 62, 0.9);
  color: #eaf5ff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.media-overlay-label {
  color: #dbe8f6;
  font-size: 0.84rem;
  line-height: 1.35;
}

.gallery-item:hover,
.gallery-item:focus-visible,
.video-card:hover,
.video-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(124, 198, 255, 0.34);
  box-shadow: 0 22px 34px rgba(0, 0, 0, 0.24);
}

.gallery-item:hover img,
.gallery-item:focus-visible img,
.video-card:hover img,
.video-card:focus-visible img {
  transform: scale(1.06);
  filter: saturate(1.08);
}

.gallery-item:hover .media-overlay,
.gallery-item:focus-visible .media-overlay,
.video-card:hover .media-overlay,
.video-card:focus-visible .media-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-copy,
.video-copy {
  padding: 14px 14px 16px;
}

.gallery-copy strong,
.video-copy strong {
  display: block;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 6px;
}

.gallery-copy p,
.video-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.88rem;
}

.video-demo-pill {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(6, 17, 28, 0.88);
  border: 1px solid rgba(124, 198, 255, 0.35);
  pointer-events: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.video-card .play-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(6, 17, 28, 0.75);
  border: 1px solid rgba(136, 183, 236, 0.18);
  color: #fff;
  font-size: 0.77rem;
  font-weight: 600;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.video-card:hover .play-badge,
.video-card:focus-visible .play-badge {
  transform: translateY(-2px) scale(1.03);
  background: rgba(16, 34, 58, 0.92);
  border-color: rgba(124, 198, 255, 0.32);
}

.section-rail {
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(120, 171, 228, 0.18);
  background: linear-gradient(140deg, rgba(12, 24, 39, 0.9), rgba(10, 20, 34, 0.98));
  display: grid;
  gap: 14px;
  align-items: center;
}

.section-rail-copy strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
  color: #fff;
}

.section-rail-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.9rem;
}

.section-rail-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(124, 198, 255, 0.22);
  background: rgba(15, 31, 53, 0.94);
  color: #fff;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.section-rail-link:hover,
.section-rail-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(124, 198, 255, 0.42);
  background: rgba(18, 36, 62, 0.98);
  outline: none;
}

.hover-preview {
  display: none;
}

.hover-preview-frame {
  width: min(26vw, 360px);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(8, 18, 31, 0.96);
  border: 1px solid rgba(124, 198, 255, 0.2);
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.36);
  transform: translateY(12px) scale(0.98);
  opacity: 0;
  transition: opacity 220ms ease, transform 220ms ease;
}

.hover-preview.is-visible .hover-preview-frame {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.hover-preview-frame img {
  width: 100%;
  max-height: min(48vh, 420px);
  object-fit: contain;
  background: #08121f;
}

.hover-preview-copy {
  padding: 14px;
}

.hover-preview-copy span,
.media-lightbox-copy span {
  display: block;
  margin-bottom: 6px;
  color: var(--accent-strong);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hover-preview-copy strong,
.media-lightbox-copy strong {
  display: block;
  color: #fff;
  font-size: 1rem;
}

.media-lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.media-lightbox.is-open {
  display: flex;
}

.media-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 7, 14, 0.82);
  backdrop-filter: blur(8px);
}

.media-lightbox-card {
  position: relative;
  z-index: 1;
  width: min(92vw, 980px);
  max-height: 90vh;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(8, 18, 31, 0.98);
  border: 1px solid rgba(124, 198, 255, 0.2);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.48);
}

.media-lightbox-card img {
  width: 100%;
  max-height: calc(90vh - 88px);
  object-fit: contain;
  background: #08121f;
}

.media-lightbox-copy {
  padding: 16px 18px 18px;
}

.media-lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 8px;
  background: rgba(7, 17, 29, 0.84);
  color: #fff;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

/* Contact strip */
.contact-strip {
  display: grid;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(118, 167, 221, 0.2);
  background: linear-gradient(140deg, rgba(12, 24, 39, 0.92), rgba(7, 17, 29, 0.98));
  box-shadow: var(--shadow);
}

.contact-card {
  display: grid;
  gap: 6px;
}

.contact-card span {
  color: var(--muted);
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-card strong {
  font-size: 1.05rem;
  color: #fff;
}

.contact-card p,
.contact-card a {
  margin: 0;
  color: #dce9f7;
  line-height: 1.55;
}

.contact-card__map-wrap {
  margin-top: 4px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(118, 167, 221, 0.22);
  background: rgba(4, 12, 22, 0.5);
  line-height: 0;
}

.contact-card__map {
  display: block;
  width: 100%;
  height: 220px;
  border: 0;
}

.contact-card__map-external {
  font-size: 0.85rem;
  color: #9ec8f5 !important;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-card__map-external:hover,
.contact-card__map-external:focus-visible {
  color: #c8e2ff !important;
}

.contact-card--address {
  gap: 10px;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(2, 7, 14, 0.78);
  backdrop-filter: blur(10px);
  z-index: 50;
}

.modal.is-open {
  display: flex;
}

.modal-card {
  width: min(100%, 540px);
  max-height: min(90vh, 780px);
  overflow: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(124, 175, 232, 0.2);
  background: linear-gradient(145deg, rgba(14, 28, 47, 0.97), rgba(8, 16, 28, 1));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 22px 10px;
}

.modal-head h3 {
  margin: 0 0 8px;
  font-size: 1.4rem;
}

.modal-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.92rem;
}

.close-button {
  border: 0;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  transition: background 160ms ease;
}

.close-button:hover,
.close-button:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  outline: none;
}

.enquiry-form {
  padding: 12px 22px 22px;
  display: grid;
  gap: 14px;
}

.field-group {
  display: grid;
  gap: 8px;
}

.field-group label {
  color: #dceaf8;
  font-size: 0.9rem;
  font-weight: 600;
}

.field-group input,
.field-group textarea,
.field-group select {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(122, 169, 217, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  padding: 14px 14px;
  min-height: 50px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field-group select {
  cursor: pointer;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #9cb3cb 50%), linear-gradient(135deg, #9cb3cb 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 13px) calc(50% - 3px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 36px;
}

.field-group textarea {
  min-height: 120px;
  resize: vertical;
}

.field-group input:focus,
.field-group textarea:focus,
.field-group select:focus {
  outline: none;
  border-color: rgba(98, 181, 255, 0.48);
  box-shadow: 0 0 0 3px rgba(43, 127, 209, 0.18);
}

.field-error {
  display: none;
  color: var(--danger);
  font-size: 0.82rem;
}

.field-group.invalid .field-error {
  display: block;
}

.field-group.invalid input,
.field-group.invalid textarea,
.field-group.invalid select {
  border-color: rgba(255, 127, 127, 0.55);
}

.submit-row {
  display: grid;
  gap: 10px;
  margin-top: 6px;
}

.submit-button {
  border: 0;
  border-radius: 8px;
  min-height: 54px;
  padding: 16px 18px;
  color: #fff;
  background: linear-gradient(135deg, #1f8eff, #0d5eb7);
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 160ms ease, filter 160ms ease;
}

.submit-button:hover,
.submit-button:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.05);
  outline: none;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.85;
}

.submit-note,
.form-status {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
  margin: 0;
}

.form-status {
  min-height: 1.25rem;
}

.form-status.success {
  color: var(--success);
}

.form-status.error {
  color: var(--danger);
}

/* Footer and sticky CTA */
.footer {
  padding: 4px 0 22px;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer strong {
  color: #fff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
  outline: none;
}

.sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, rgba(5, 11, 19, 0), rgba(5, 11, 19, 0.92) 26%, rgba(5, 11, 19, 0.98) 100%);
}

.sticky-inner {
  width: min(calc(100% - 8px), 640px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.sticky-button {
  min-height: 56px;
  border-radius: 10px;
  border: 1px solid rgba(120, 171, 228, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 0 12px;
  background: rgba(10, 22, 38, 0.94);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  transition: transform 160ms ease, filter 160ms ease;
}

.sticky-button--whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 14px 32px rgba(18, 140, 126, 0.4);
  font-size: 0.95rem;
}

.sticky-button--whatsapp:hover,
.sticky-button--whatsapp:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.05);
  outline: none;
}

.sticky-button--secondary {
  background: linear-gradient(135deg, #1f8eff, #0d5eb7);
  border-color: rgba(141, 205, 255, 0.2);
  color: #fff;
}

/* Motion */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 400ms ease, transform 400ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.js-enhanced .reveal {
  opacity: 0;
  transform: translateY(16px);
}

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

@media (min-width: 720px) {
  body {
    padding-bottom: 98px;
  }

  .hero {
    padding: 34px 0 26px;
  }

  .actions-grid--conversion .actions-secondary {
    grid-column: 1 / -1;
  }

  .actions-grid,
  .support-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid,
  .feature-grid,
  .contact-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-rail {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .submit-row {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 980px) {
  /* Stack title + subheading full width — avoids narrow “sidebar” column for body copy */
  .section-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 14px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .contact-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-card--address {
    grid-column: 1 / -1;
  }

  .section {
    padding: 34px 0;
  }
}

/* Hero: side-by-side only on large desktops (Opera/tablet widths often stay stacked). */
@media (min-width: 1200px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(420px, 1fr);
    align-items: stretch;
    gap: 20px;
  }

  .hero-copy {
    padding: 28px;
    height: 100%;
  }

  .hero h1 {
    max-width: 28ch;
    line-height: 1.08;
    font-size: clamp(1.85rem, 2.6vw, 2.6rem);
  }

}

@media (hover: hover) and (pointer: fine) and (min-width: 1100px) {
  .hover-preview {
    position: fixed;
    right: 24px;
    bottom: 108px;
    z-index: 45;
    display: block;
    pointer-events: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@keyframes heroSweep {
  0%, 72%, 100% {
    transform: translateX(-100%);
  }
  18%, 34% {
    transform: translateX(100%);
  }
}

@keyframes cardFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}
