@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap");


:root {
  /* Colors */
  --ink: #0b0c0e;
  --ink-soft: #17181b;
  --canvas: #ffffff;
  --cream: #f8f6f2;
  --mist: #eef0ee;
  --fog-border: #e6e3dd;
  --steel-border: rgba(255, 255, 255, 0.1);
  --stone: #8c8a85;
  --graphite: #55534e;
  --smoke: #333130;

  --accent: #2b46f2;
  --accent-dim: #1c2c66;
  --accent-soft: rgba(43, 70, 242, 0.08);
  --accent-soft-dark: rgba(94, 118, 255, 0.16);

  /* Radii */
  --r-card: 28px;
  --r-card-inner: 20px;
  --r-pill: 999px;
  --r-input: 14px;
  --r-img: 20px;
  --r-sm: 10px;

  /* Shadows */
  --shadow-soft: 0 1px 1px rgba(11, 12, 14, 0.03), 0 24px 60px -28px rgba(11, 12, 14, 0.22);
  --shadow-lift: 0 40px 90px -30px rgba(11, 12, 14, 0.38);
  --shadow-inset-light: inset 0 1px 1px rgba(255, 255, 255, 0.5);
  --shadow-inset-dark: inset 0 1px 1px rgba(255, 255, 255, 0.08);

  /* Motion */
  --ease-fluid: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-out-soft: cubic-bezier(0.16, 1, 0.3, 1);

  --font: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.4s var(--ease-out-soft);
}

a.purple {
  color: var(--accent);
  font-weight: 600;
}
a.purple:hover {
  opacity: 0.7;
}

ul {
  margin: 0;
}

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

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.wrapper {
  margin: 0 auto;
  width: 92%;
  max-width: 1180px;
}

.section {
  padding: 50px 0;
  position: relative;
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }
  .logo__text {
    font-size:13px;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px 7px 14px;
  border-radius: var(--r-pill);
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex: none;
}
.eyebrow.on-dark {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.eyebrow.on-dark::before {
  background: #6d84ff;
}

.section__kicker {
  text-align: center;
  margin-bottom: 20px;
}
.section__kicker.left {
  text-align: left;
}

.section__title {
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
  text-align: center;
  margin: 0 0 16px;
  position: relative;
  z-index: 2;
}
.section__title.left {
  text-align: left;
}
.section__title strong {
  font-weight: 500;
  color: var(--accent);
}

.section__lede {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
  color: var(--graphite);
  font-size: 18px;
  line-height: 1.6;
}
.section__lede.left {
  margin: 0 0 40px;
  text-align: left;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  --btn-fg: #ffffff;
  --btn-bg: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px 6px 26px;
  border-radius: var(--r-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.005em;
  border: 0;
  cursor: pointer;
  transition: transform 0.5s var(--ease-fluid), background 0.4s var(--ease-out-soft), box-shadow 0.4s var(--ease-out-soft);
  text-align: left;
}
.btn:active {
  transform: scale(0.97);
}
.btn:hover {
  background: var(--accent);
}
.btn__icon {
  flex: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s var(--ease-fluid), background 0.4s var(--ease-out-soft);
}
.btn:hover .btn__icon {
  transform: translate(2px, -2px) scale(1.06);
  background: rgba(255, 255, 255, 0.22);
}
.btn__icon svg {
  width: 15px;
  height: 15px;
}

.btn--accent {
  --btn-bg: var(--accent);
}
.btn--accent:hover {
  background: var(--ink);
}

.btn--light {
  --btn-bg: #ffffff;
  --btn-fg: var(--ink);
}
.btn--light .btn__icon {
  background: rgba(11, 12, 14, 0.06);
}
.btn--light:hover {
  background: var(--cream);
}
.btn--light:hover .btn__icon {
  background: rgba(11, 12, 14, 0.1);
}

.btn--block {
  width: 100%;
  justify-content: space-between;
}

.ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: currentColor;
  padding-bottom: 2px;
  border-bottom: 1px solid currentColor;
  opacity: 0.75;
  transition: opacity 0.4s var(--ease-out-soft);
}
.ghost:hover {
  opacity: 1;
}

/* ==========================================================================
   Header / Floating Nav
   ========================================================================== */

.topline {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  padding: 10px 0;
}
.topline .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.topline__item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.topline a {
  color: #fff;
  font-weight: 500;
}
.topline a:hover {
  color: #9fb0ff;
}
.topline__address {
  color: rgba(255, 255, 255, 0.55);
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 18px 4%;
  pointer-events: none;
}

.nav {
  pointer-events: all;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 10px 10px 20px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 1px 1px rgba(11, 12, 14, 0.03), 0 20px 46px -24px rgba(11, 12, 14, 0.3);
  border: 1px solid rgba(11, 12, 14, 0.05);
  transition: box-shadow 0.5s var(--ease-out-soft), background 0.5s var(--ease-out-soft), padding 0.5s var(--ease-out-soft);
}
header.is-scrolled .nav {
  box-shadow: 0 1px 1px rgba(11, 12, 14, 0.04), 0 26px 60px -22px rgba(11, 12, 14, 0.35);
  background: rgba(255, 255, 255, 0.9);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none;
}
.logo__img {
  background: url(/assets/images/logo-state.png) no-repeat 50% 50% / contain;
  width: 100px;
  height: 60px;
  flex: none;
}
.logo__text {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: var(--ink);
  max-width: 190px;
}

.header__menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.header__menu a {
  color: var(--smoke);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: var(--r-pill);
  transition: background 0.4s var(--ease-out-soft), color 0.4s var(--ease-out-soft);
}
.header__menu a:hover {
  background: rgba(11, 12, 14, 0.05);
  color: var(--ink);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
}
.header__phone-pill {
  display: none;
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  padding: 8px 4px;
}
@media (min-width: 1024px) {
  .header__phone-pill {
    display: inline-flex;
  }
}

.nav__burger {
  display: none;
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  border: 0;
  cursor: pointer;
  position: relative;
}
.nav__burger span {
  position: absolute;
  left: 13px;
  right: 13px;
  height: 1px;
  background: #fff;
  border-radius: 1px;
  transition: transform 0.5s var(--ease-fluid), opacity 0.3s var(--ease-out-soft), top 0.4s var(--ease-fluid);
}
.nav__burger span:nth-child(1) { top: 17px; }
.nav__burger span:nth-child(2) { top: 23px; }
.nav__burger span:nth-child(3) { top: 29px; }
.nav__burger.is-active span:nth-child(1) {
  top: 22px;
  transform: rotate(45deg);
}
.nav__burger.is-active span:nth-child(2) {
  opacity: 0;
}
.nav__burger.is-active span:nth-child(3) {
  top: 22px;
  transform: rotate(-45deg);
}

.nav__overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(10, 10, 12, 0.86);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-out-soft);
}
.nav__overlay.is-open {
  opacity: 1;
  pointer-events: all;
}
.nav__overlay  .overlay__close {
  width: 24px;
  height: 24px;
  position: absolute;
  right: 30px;
  top: 50px;
}
.nav__overlay  .overlay__close::before {
  content:'';
  position: absolute;
  transform: rotate(45deg);
  left: 0;
  top: 0;
  width: 24px;
  height: 4px;
    background: #fff;
}
.nav__overlay  .overlay__close::after {
  content:'';
  position: absolute;
  transform: rotate(-45deg);
  left: 0;
  top: 0;
  width: 24px;
  height: 4px;
  background: #fff;
}
.nav__overlay a {
  color: #fff;
  font-size: 30px;
  font-weight: 300;
  padding: 12px 0;
  opacity: 0;
  transform: translateY(48px);
  transition: transform 0.6s var(--ease-out-soft), opacity 0.6s var(--ease-out-soft);
}
.nav__overlay.is-open a {
  opacity: 1;
  transform: translateY(0);
}
.nav__overlay.is-open a:nth-child(1) { transition-delay: 0.08s; }
.nav__overlay.is-open a:nth-child(2) { transition-delay: 0.14s; }
.nav__overlay.is-open a:nth-child(3) { transition-delay: 0.2s; }
.nav__overlay.is-open a:nth-child(4) { transition-delay: 0.26s; }
.nav__overlay-contact {
  margin-top: 28px;
  opacity: 0;
  transform: translateY(48px);
  transition: transform 0.6s var(--ease-out-soft) 0.32s, opacity 0.6s var(--ease-out-soft) 0.32s;
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
}
.nav__overlay.is-open .nav__overlay-contact {
  opacity: 1;
  transform: translateY(0);
}
.nav__overlay-contact a {
  display: block;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  padding: 4px 0;
}

@media (max-width: 900px) {
  .header__menu {
    display: none;
  }
  .nav__burger {
    display: block;
  }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  padding: 8px 4% 0;
}

.hero__stage {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  border-radius: 36px;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
}

.hero__media {
  position: absolute;
  inset: 0;
  background: url(/assets/images/operban.jpg) no-repeat 50% 28% / cover;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 15% 0%, rgba(43, 70, 242, 0.32) 0%, rgba(11, 12, 14, 0) 45%),
    linear-gradient(180deg, rgba(6, 7, 9, 0.55) 0%, rgba(6, 7, 9, 0.35) 32%, rgba(6, 7, 9, 0.82) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 80px 44px 56px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: end;
}

.hero__copy .eyebrow {
  margin-bottom: 26px;
}

.hero .title {
  font-size: clamp(40px, 5.6vw, 84px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  max-width: 15ch;
}

.hero .subtitle {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  max-width: 46ch;
  margin: 0 0 36px;
}

.hero__stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__stat b {
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.hero__stat span {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Hero form — glass double-bezel card */
.hero__form {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(28px) saturate(1.3);
  -webkit-backdrop-filter: blur(28px) saturate(1.3);
  border-radius: var(--r-card);
  padding: 8px;
  box-shadow: var(--shadow-lift);
}
.hero__form-inner {
  background: rgba(11, 12, 14, 0.35);
  border-radius: var(--r-card-inner);
  padding: 32px 28px;
  box-shadow: var(--shadow-inset-dark);
}
.hero__form .form__title {
  font-size: 22px;
  font-weight: 400;
  text-align: left;
  color: #fff;
  margin-bottom: 4px;
}
.hero__form-note {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 22px;
}

@media (max-width: 1080px) {
  .hero__content {
    grid-template-columns: 1fr;
    padding: 150px 28px 44px;
  }
  .hero__stage {
    border-radius: 26px;
    min-height: unset;
  }
  .hero .title {
    max-width: none;
  }
}
@media (max-width: 600px) {
  .hero {
    padding: 6px 3% 0;
  }
  .hero__content {
    padding: 128px 20px 32px;
  }
  .hero__stats {
    gap: 22px;
  }
  .logo__text {
      font-size:13px;
  }
  .logo__img {
      width:68px;
  }
}

/* ==========================================================================
   Forms (shared)
   ========================================================================== */

.form {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-start;
}
.form .form__item {
  margin: 0;
  flex: 1 1 220px;
}
.form .form__item input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 16px 18px;
  font-size: 15px;
  font-family: var(--font);
  border-radius: var(--r-input);
  box-shadow: none;
  transition: border-color 0.35s var(--ease-out-soft), background 0.35s var(--ease-out-soft);
}
.form .form__item input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.form .form__item input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.1);
}
.form .form__item input.submit {
  background: var(--accent);
  color: #fff;
  border: 0;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.4s var(--ease-out-soft), transform 0.4s var(--ease-fluid);
}
.form .form__item input.submit:hover {
  background: #4a63ff;
}
.form .form__item input.submit:active {
  transform: scale(0.98);
}

.form__checkbox {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  flex-basis: 100%;
}
.form__checkbox a {
  text-decoration: underline;
  color: rgba(255, 255, 255, 0.7);
}

/* Light variant of the form (on cream / white surfaces) */
.form--light .form__item input {
  border: 1px solid var(--fog-border);
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}
.form--light .form__item input::placeholder {
  color: var(--stone);
}
.form--light .form__item input:focus {
  border-color: var(--accent);
}
.form--light .form__item input.submit {
  background: var(--ink);
}
.form--light .form__item input.submit:hover {
  background: var(--accent);
}
.form--light .form__checkbox {
  color: var(--stone);
}
.form--light .form__checkbox a {
  color: var(--graphite);
}

/* Mid-page + final CTA form containers */
.form__container.stage__form {
  max-width: 760px;
  margin: 0 auto;
  background: var(--cream);
  border: 1px solid var(--fog-border);
  border-radius: var(--r-card);
  padding: 44px 40px;
  box-shadow: var(--shadow-soft);
}
.stage__form .form__title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 300;
  text-align: center;
  color: var(--ink);
  margin-bottom: 8px;
}
.stage__form p {
  text-align: center;
  color: var(--graphite);
  margin: 0 0 26px;
}
.stage__form .form {
  justify-content: center;
}
.stage__form .form__checkbox {
  text-align: center;
}
.stage__form__grey .form__item input {
  width: 100%;
  border: 1px solid rgb(106, 106, 106);
  background: rgba(255, 255, 255, 0.5);
  color: #000;
  padding: 16px 18px;
  font-size: 15px;
  font-family: var(--font);
  border-radius: var(--r-input);
  box-shadow: none;
  transition: border-color 0.35s var(--ease-out-soft), background 0.35s var(--ease-out-soft);
}
.stage__form__grey .form__item input::placeholder {
  color: rgb(106, 106, 106);
}
.stage__form__grey .form__checkbox {
  color: rgb(106, 106, 106);
}

#contact.form__container.stage__form {
  background: var(--ink);
  border-color: var(--steel-border);
}
#contact .form__title {
  color: #fff;
}
#contact p {
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 640px) {
  .form__container.stage__form {
    padding: 30px 22px;
  }
  .form .form__item {
    flex: 1 1 100%;
  }
}

/* ==========================================================================
   Trust marquee (equipment / brand strip)
   ========================================================================== */

.trust {
  background: var(--cream);
  border-top: 1px solid var(--fog-border);
  border-bottom: 1px solid var(--fog-border);
  padding: 28px 0;
  overflow: hidden;
}
.trust__label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--stone);
  margin-bottom: 18px;
}
.trust__track {
  display: flex;
  width: max-content;
  gap: 64px;
  animation: marquee 32s linear infinite;
}
.trust__track span {
  font-size: 19px;
  font-weight: 500;
  color: var(--smoke);
  white-space: nowrap;
  letter-spacing: 0.01em;
  opacity: 0.8;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
  transition: opacity 0.9s var(--ease-out-soft), transform 0.9s var(--ease-out-soft), filter 0.9s var(--ease-out-soft);
}
[data-reveal].in-view {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
[data-reveal-group] [data-reveal]:nth-child(2) { transition-delay: 0.08s; }
[data-reveal-group] [data-reveal]:nth-child(3) { transition-delay: 0.16s; }
[data-reveal-group] [data-reveal]:nth-child(4) { transition-delay: 0.24s; }
[data-reveal-group] [data-reveal]:nth-child(5) { transition-delay: 0.32s; }
[data-reveal-group] [data-reveal]:nth-child(6) { transition-delay: 0.4s; }

/* ==========================================================================
   Editorial split (location / about)
   ========================================================================== */

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

.galley__items {
  position: relative;
  display: grid;
  gap: 16px;
}
.galley__items img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--r-img);
  box-shadow: var(--shadow-soft);
}
.galley__items img:first-child {
  transform: translateY(-14px);
}

.gallery .text h2 {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 300;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin-bottom: 18px;
  max-width: 16ch;
}
.gallery .text p {
  color: var(--graphite);
  font-size: 17px;
  margin: 0 0 24px;
  max-width: 46ch;
}

.gallery__list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.gallery__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 0;
  background: none;
  color: var(--smoke);
  font-size: 15.5px;
  line-height: 1.5;
  margin: 0;
}
.gallery__list li::before {
  content: "";
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--accent-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%232b46f2' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 8.5l3 3 7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

@media (max-width: 860px) {
  .gallery__row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .galley__items {
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: column;
  }
  .galley__items img:first-child {
    transform: none;
  }
}
@media (max-width: 560px) {
      .galley__items img:last-child {
          display:none;
      }
  .galley__items {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Audience / feature cards (double-bezel)
   ========================================================================== */

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

.box {
  --shell-pad: 8px;
  display: flex;
  flex-direction: column;
  margin: 0;
  align-items: flex-start;
  background: var(--cream);
  border: 1px solid var(--fog-border);
  padding: var(--shell-pad);
  border-radius: var(--r-card);
  box-shadow: none;
  position: relative;
  transition: transform 0.6s var(--ease-fluid), box-shadow 0.6s var(--ease-out-soft);
}
.box:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.box__inner {
  width: 100%;
  background: #fff;
  border-radius: var(--r-card-inner);
  padding: 22px 24px 26px;
  box-shadow: var(--shadow-inset-light);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.box__img {
  width: 100%;
  height: 168px;
  position: static;
  border-radius: 14px;
  margin-bottom: 18px;
  left: auto;
  top: auto;
}
.box__img1 { background: url(/assets/images/ch1.jpg) no-repeat 50% 20% / cover; }
.box__img2 { background: url(/assets/images/ch2.jpg) no-repeat 50% 25% / cover; }
.box__img3 { background: url(/assets/images/ch3.jpg) no-repeat 50% 30% / cover; }

.box__title {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 10px;
  text-align: left;
}
.box p,
.box .center {
  text-align: left;
  color: var(--graphite);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 900px) {
  .box__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 620px) {
  .box__grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Equipment bento grid
   ========================================================================== */

.equip__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.equip__grid .box {
  grid-column: span 3;
}
.equip__grid .box:nth-child(1),
.equip__grid .box:nth-child(7) {
  grid-column: span 4;
}
.equip__grid .box:nth-child(4) {
    grid-column: span 2;
}
.equip__grid .box:nth-child(2),
.equip__grid .box:nth-child(5) {
  grid-column: span 2;
}
.equip__grid .box:nth-child(3),
.equip__grid .box:nth-child(6) {
  grid-column: span 2;
}

.equip__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex: none;
}
.equip__icon svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.3;
}
.equip__grid .box__title {
  font-size: 17px;
  line-height: 1.4;
  font-weight: 500;
}

@media (max-width: 900px) {
  .equip__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .equip__grid .box,
  .equip__grid .box:nth-child(1),
  .equip__grid .box:nth-child(2),
  .equip__grid .box:nth-child(3),
  .equip__grid .box:nth-child(4),
  .equip__grid .box:nth-child(5),
  .equip__grid .box:nth-child(6),
    .equip__grid .box:nth-child(7){
    grid-column: span 6;
  }
}
@media (max-width: 560px) {
  .equip__grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Pricing
   ========================================================================== */

.pricing__section {
  background: var(--ink);
  color: #fff;
  border-radius: 40px;
  margin: 0 4%;
  padding: 96px 0;
}
@media (max-width: 768px) {
  .pricing__section {
    padding: 64px 0;
    border-radius: 26px;
  }
}
.pricing__section .section__title {
  color: #fff;
}
.pricing__section .section__lede {
  color: rgba(255, 255, 255, 0.6);
}

.pricing__table {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  box-shadow: none;
}

.pricing__plan {
  border: 0;
  text-align: left;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-card);
  padding: 36px 32px;
  position: relative;
  transition: transform 0.6s var(--ease-fluid), border-color 0.5s var(--ease-out-soft);
}
.pricing__plan:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.28);
}
.pricing__plan:nth-child(1) {
  background: linear-gradient(155deg, rgba(43, 70, 242, 0.22), rgba(43, 70, 242, 0.04));
  border-color: rgba(94, 118, 255, 0.35);
}

.pricing__header {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  letter-spacing: 0.01em;
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.pricing__features-item {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  padding: 18px 0 0;
  margin-top: 18px;
}
.pricing__features-item:first-of-type {
  border-top: 0;
  padding-top: 0;
  margin-top: 0;
}

.pricing__sum {
  font-weight: 300;
  font-size: clamp(28px, 3vw, 36px);
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 4px;
}

.pricing__features {
  font-weight: 500;
  letter-spacing: 0;
  margin: 14px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding-left: 0;
}
.pricing__features li {
  padding: 6px 14px;
  margin: 0;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--r-pill);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}

.pricing__contact {
  text-align: center;
  margin-top: 40px;
  font-size: 17px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
}
.pricing__contact a {
  font-weight: 600;
}

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

/* ==========================================================================
   Advantages (split)
   ========================================================================== */

.section--cta {
  color: var(--ink);
  background: var(--canvas);
}
.section--cta .gallery__row {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.section--cta ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
}
.section--cta ul li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16.5px;
  line-height: 1.5;
  margin: 0;
  color: var(--smoke);
}
.section--cta ul li::before {
  content: "";
  flex: none;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--ink);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='white' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 8.5l3 3 7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}
.section--cta .media-frame {
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.section--cta .media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}

@media (max-width: 860px) {
  .section--cta .gallery__row {
    grid-template-columns: 1fr;
  }
  .section--cta .media-frame {
    order: -1;
  }
}

/* ==========================================================================
   Swiper overrides (license + gallery)
   ========================================================================== */

.swiper-block {
  margin-bottom: 24px;
}

.swiper {
  padding: 8px 8px 56px;
}

.swiper-slide {
  border-radius: var(--r-img);
  overflow: hidden;
}

.swiper img {
  width: 400px;
  max-width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--r-img);
  box-shadow: var(--shadow-soft);
}

.swiper .swiper-slide-lic {
  background: var(--cream);
  border: 1px solid var(--fog-border);
  border-radius: var(--r-img);
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper .swiper-slide-lic img {
  object-fit: contain;
  height: 400px;
  width: 300px;
  box-shadow: none;
  border-radius: 8px;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--ink);
  background: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
  top: 42%;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 15px;
  font-weight: 700;
}
.swiper-scrollbar {
  background: var(--fog-border);
}
.swiper-scrollbar-drag {
  background: var(--ink);
}

/* ==========================================================================
   Contact / map
   ========================================================================== */

.map-frame {
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--fog-border);
}
.map-frame iframe {
  display: block;
  width: 100%;
  border: 0;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  color: rgba(255, 255, 255, 0.72);
  text-align: left;
  padding: 72px 0 32px;
  background: var(--ink);
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--steel-border);
  margin-bottom: 28px;
}
.footer__brand {
  max-width: 420px;
}
.footer__brand .logo__text {
  color: #fff;
}
.footer__brand p {
  margin-top: 14px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 15px;
}
.footer__contact a {
  color: #fff;
  font-weight: 500;
}
.footer__contact a:hover {
  color: #9fb0ff;
}
.footer__contact span {
  color: rgba(255, 255, 255, 0.45);
}
.footer > .wrapper > p {
  margin: 0 0 8px;
  font-size: 13px;
  opacity: 1;
  color: rgba(255, 255, 255, 0.4);
}
.footer small {
  font-size: 12.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.4);
}
.footer a {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 640px) {
  .footer {
    padding: 56px 0 28px;
  }
  .footer__top {
    flex-direction: column;
  }
}

/* ==========================================================================
   Legacy safety net (unused now, kept harmless)
   ========================================================================== */

.fix__str { display: none; }
.background { padding: 0; position: relative; width: 100%; }
.background::after { content: none; }
.container { margin: 0 auto; max-width: 960px; width: 100%; }
.panel { background: transparent; }
