/* ================================================================
   Combined Multimedia Vending
   Plain CSS shared by every page in this website.
   ================================================================ */

:root {
  --navy: #132a3a;
  --slate: #203746;
  --teal: #18a6a6;
  --blue: #2878b5;
  --orange: #f28c28;
  --light: #f5f7f8;
  --white: #ffffff;
  --text: #263238;
  --muted: #60717b;
  --line: #dfe7ea;
  --shadow: 0 18px 50px rgba(19, 42, 58, 0.09);
  --radius: 22px;
}

/* Base styles */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: Inter, Manrope, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.14;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.75rem, 5.5vw, 5.25rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 3.7vw, 3.35rem);
  font-weight: 780;
}

h3 {
  font-size: 1.2rem;
}

p {
  color: var(--muted);
}

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

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

.section {
  padding: 110px 0;
}

.section-tint {
  background: var(--light);
}

.eyebrow,
.breadcrumb {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-heading h2 {
  margin-bottom: 16px;
}

.section-heading > p {
  font-size: 1.1rem;
}

.centered {
  margin-inline: auto;
  text-align: center;
}

.split-heading {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.split-heading > div {
  max-width: 700px;
}

.light h2,
.light p {
  color: var(--white);
}

/* Buttons and links */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px 21px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.2;
  transition: 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--orange);
  box-shadow: 0 9px 24px rgba(242, 140, 40, 0.25);
  color: #172d39;
}

.button-primary:hover {
  background: #ff9b38;
}

.button-secondary {
  border: 1px solid #cbd9de;
  background: var(--white);
  color: var(--navy);
}

.button-light {
  background: var(--white);
  color: var(--navy);
}

.text-link {
  color: var(--teal);
  font-weight: 800;
}

.button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(24, 166, 166, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: -80px;
  left: 20px;
  padding: 12px;
  background: var(--white);
}

.skip-link:focus {
  top: 12px;
}

/* Header and navigation */

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  transition: 0.2s;
}

.site-header.compact {
  border-color: var(--line);
  box-shadow: 0 8px 24px rgba(19, 42, 58, 0.05);
}

.nav-wrap {
  display: flex;
  height: 90px;
  align-items: center;
  justify-content: space-between;
  transition: 0.2s;
}

.compact .nav-wrap {
  height: 72px;
}

.brand-image {
  display: block;
  width: 254px;
  line-height: 0;
}

.compact .brand-image {
  width: 220px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.primary-nav > a {
  color: #40535d;
  font-size: 0.83rem;
  font-weight: 700;
}

.primary-nav > a:hover,
.primary-nav > a[aria-current="page"] {
  color: var(--teal);
}

.primary-nav .nav-cta {
  margin-left: 2px;
  color: #172d39;
}

.menu-button {
  display: none;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px;
  background: var(--navy);
}

/* Home hero */

.hero {
  overflow: hidden;
  padding: 88px 0 110px;
  background: linear-gradient(130deg, #ffffff 56%, #eef7f7);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 70px;
}

.hero h1 {
  margin-bottom: 26px;
}

.hero h1 span {
  color: var(--teal);
}

.hero-copy > p {
  max-width: 650px;
  font-size: 1.17rem;
}

.button-row {
  display: flex;
  gap: 12px;
  margin: 34px 0 24px;
}

.hero-copy .trust-line {
  color: #56717a;
  font-size: 0.85rem;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 570px;
  place-items: center;
}

.visual-glow {
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c9eeee, #e4f0f7);
}

.machine {
  position: relative;
  width: 300px;
  height: 500px;
  padding: 21px;
  transform: rotate(2deg);
  border: 10px solid var(--slate);
  border-radius: 23px;
  background: #263e4d;
  box-shadow: 0 35px 80px rgba(19, 42, 58, 0.28);
}

.machine-brand {
  position: absolute;
  top: -44px;
  left: 12px;
  color: var(--navy);
  font-weight: 900;
}

.machine-brand span {
  color: var(--orange);
}

.machine-window {
  display: grid;
  width: 210px;
  height: 405px;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  padding: 16px;
  border-radius: 8px;
  background: #081821;
}

.machine-window span {
  display: block;
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(150deg, #f5c148 0 30%, #ef6b45 31% 55%, #e8edf0 56%);
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.18);
}

.machine-panel {
  position: absolute;
  top: 85px;
  right: 17px;
  width: 44px;
}

.machine-panel span {
  display: block;
  height: 45px;
  margin-bottom: 12px;
  border-radius: 6px;
  background: #0a1b24;
}

.machine-panel span:first-child {
  background: #38c6c1;
}

.machine-panel small {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  font-size: 0.62rem;
  font-weight: 800;
}

.cashless-card,
.service-tag {
  position: absolute;
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.cashless-card {
  top: 60px;
  right: -18px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 16px 19px;
}

.cashless-card > b {
  color: var(--teal);
  font-size: 1.8rem;
}

.cashless-card strong,
.cashless-card small {
  display: block;
}

.cashless-card small {
  color: var(--muted);
}

.service-tag {
  bottom: 28px;
  left: 0;
  padding: 12px 16px;
  color: var(--navy);
  font-size: 0.83rem;
  font-weight: 800;
}

/* Cards and reusable grids */

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

.benefit-card,
.service-card,
.location-card,
.testimonial-grid article {
  border: 1px solid #e3eaed;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 35px rgba(19, 42, 58, 0.045);
  transition: 0.25s;
}

.benefit-card:hover,
.service-card:hover,
.location-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.benefit-card,
.service-card,
.location-card {
  padding: 27px;
}

.benefit-card {
  border-color: #dce5e8;
  background: #f3f6f7;
}

.benefit-card p,
.service-card p,
.location-card p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.icon-box {
  display: grid;
  width: 47px;
  height: 47px;
  margin-bottom: 25px;
  place-items: center;
  border-radius: 12px;
  background: #e7f7f6;
  color: var(--teal);
  font-size: 1.25rem;
  font-weight: 800;
}

.status-pill {
  display: inline-block;
  margin-top: 15px;
  padding: 5px 9px;
  border-radius: 30px;
  background: #edf5f9;
  color: var(--blue);
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
}

.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 90px;
}

.feature-split .lead {
  color: #344d59;
  font-size: 1.12rem;
}

.breakroom-visual {
  position: relative;
  height: 570px;
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(#e8f3f5 0 64%, #c6d4d7 65%);
  box-shadow: var(--shadow);
}

.breakroom-visual::before {
  position: absolute;
  inset: 40px 35px 210px;
  border: 12px solid var(--white);
  background: linear-gradient(90deg, #d1eaef 48%, #ffffff 49% 51%, #d1eaef 52%);
  content: "";
}

.mini-machine {
  position: absolute;
  z-index: 2;
  bottom: 70px;
  left: 70px;
  display: grid;
  width: 190px;
  height: 360px;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 52px 18px 20px;
  border: 10px solid var(--slate);
  border-radius: 14px;
  background: #0b1a22;
}

.mini-machine b {
  position: absolute;
  top: 15px;
  left: 18px;
  color: var(--white);
}

.mini-machine span {
  border-radius: 4px;
  background: linear-gradient(145deg, #eac65c 45%, #ef7b55 46%);
}

.plant {
  position: absolute;
  right: 58px;
  bottom: 70px;
  transform: rotate(-20deg);
  color: var(--teal);
  font-size: 10rem;
}

.table-shape {
  position: absolute;
  right: -20px;
  bottom: 30px;
  width: 270px;
  height: 25px;
  border-radius: 50%;
  background: #b2764c;
}

.table-shape::after {
  position: absolute;
  top: 10px;
  left: 120px;
  width: 20px;
  height: 100px;
  background: #845236;
  content: "";
}

.check-list {
  margin: 28px 0;
  padding: 0;
  columns: 2;
  list-style: none;
}

.check-list li {
  margin: 12px 0;
  break-inside: avoid;
  color: var(--teal);
  font-weight: 900;
}

.check-list span {
  margin-left: 6px;
  color: #425862;
  font-weight: 650;
}

.navy-section {
  background: var(--navy);
}

.navy-section .location-card {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
}

.navy-section .location-card h3 {
  color: var(--white);
}

.navy-section .location-card p {
  color: #bed0d9;
}

.location-card > .card-icon {
  display: block;
  margin-bottom: 18px;
  color: var(--teal);
  font-size: 1.4rem;
}

.process-grid {
  padding: 0;
  list-style: none;
}

.process-grid li {
  position: relative;
  padding: 10px 40px 10px 0;
}

.process-grid li:not(:last-child)::after {
  position: absolute;
  top: 26px;
  right: 16px;
  color: #bdd0d6;
  content: "→";
}

.process-grid span {
  display: block;
  margin-bottom: 26px;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.testimonial-section {
  background: #edf7f7;
}

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

.testimonial-grid article {
  padding: 32px;
}

.stars {
  color: var(--orange);
  font-size: 1.3rem;
}

.testimonial-grid blockquote {
  margin: 22px 0;
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 750;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 100px;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  color: var(--navy);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-list summary span {
  color: var(--teal);
  font-size: 1.5rem;
}

.faq-list details p {
  padding-right: 50px;
}

/* Interior pages */

.page-hero {
  padding: 95px 0 80px;
  background: linear-gradient(130deg, #f5f9fa, #e7f5f4);
}

.page-hero .container {
  max-width: 900px;
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
}

.page-hero p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.18rem;
}

.breadcrumb {
  display: block;
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
}

.solution-detail {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 30px;
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 100px;
}

.solution-detail > .icon-box {
  width: 70px;
  height: 70px;
}

.solution-detail h2 {
  font-size: 2rem;
}

.solution-detail ul {
  padding-left: 20px;
  color: var(--muted);
}

.branding-feature {
  padding: 60px;
  border-radius: 30px;
  background: var(--navy);
  color: var(--white);
}

.branding-feature h2 {
  color: var(--white);
}

.branding-feature p,
.branding-feature li {
  color: #c3d3da;
}

.branding-feature ul {
  columns: 2;
}

.good-location {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 70px;
}

.criteria-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.criterion {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: #3c535e;
  font-weight: 700;
}

.criterion span {
  margin-right: 8px;
  color: var(--teal);
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.about-intro {
  max-width: 800px;
}

.about-intro .lead {
  color: #344d59;
  font-size: 1.12rem;
}

.about-value {
  padding: 28px;
  border-radius: 18px;
  background: var(--light);
}

.placeholder-box {
  padding: 36px;
  border: 2px dashed #c9d8dd;
  border-radius: 18px;
  background: #fbfcfc;
}

.placeholder-box b {
  color: var(--orange);
}

.privacy-content {
  max-width: 800px;
}

.privacy-content h2 {
  margin-top: 45px;
  font-size: 1.7rem;
}

/* Request form */

.form-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: start;
  gap: 70px;
}

.form-card {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field {
  display: flex;
  flex-direction: column;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  margin-bottom: 7px;
  color: #344b56;
  font-size: 0.85rem;
  font-weight: 750;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #bdccd1;
  border-radius: 10px;
  background: var(--white);
  color: var(--text);
}

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

.error {
  margin: 5px 0 0;
  color: #b83d2b;
  font-size: 0.78rem;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 25px 0;
  color: #51656e;
  font-size: 0.84rem;
}

.consent input {
  margin-top: 5px;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
}

.form-status {
  padding: 15px;
  border-radius: 10px;
  background: #e6f7f3;
  color: #176d65;
}

.form-note {
  margin-top: 18px;
  font-size: 0.76rem;
}

.contact-aside {
  position: sticky;
  top: 110px;
}

.info-card {
  margin-top: 30px;
  padding: 28px;
  border-radius: 18px;
  background: var(--navy);
}

.info-card p,
.info-card b {
  color: var(--white);
}

/* Call to action and footer */

.cta-section {
  padding: 0 0 110px;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 65px;
  border-radius: 28px;
  background: linear-gradient(120deg, var(--navy), #21495b);
  box-shadow: var(--shadow);
}

.cta-box h2 {
  max-width: 740px;
  margin-bottom: 16px;
  color: var(--white);
}

.cta-box p {
  max-width: 720px;
  margin-bottom: 0;
  color: #bed0d9;
}

.cta-box .button {
  flex: none;
}

.site-footer {
  padding: 80px 0 25px;
  background: #0c202c;
  color: #b8c8d0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.35fr;
  gap: 50px;
}

.brand-footer {
  display: block;
  width: 254px;
  padding: 9px 13px;
  border-radius: 12px;
  background: var(--white);
}

.footer-brand p {
  max-width: 420px;
  margin: 25px 0;
  color: #9db0b9;
  font-size: 0.9rem;
}

.socials {
  display: flex;
  gap: 9px;
}

.socials a {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 8px;
  background: #193644;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

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

.footer-grid a,
.footer-grid p {
  color: #a9bbc4;
  font-size: 0.83rem;
}

.footer-grid p b {
  color: var(--white);
}

.footer-grid .footer-request {
  color: #49c5c0;
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
}

/* Tablet layout */

@media (max-width: 960px) {
  .hero-grid,
  .feature-split,
  .faq-layout,
  .form-layout,
  .good-location {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy > p {
    margin-inline: auto;
  }

  .button-row {
    justify-content: center;
  }

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

  .benefit-grid,
  .service-grid,
  .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-split {
    gap: 50px;
  }

  .breakroom-visual {
    order: 2;
  }

  .faq-layout {
    gap: 20px;
  }

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

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .contact-aside {
    position: static;
  }

  .cta-box {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .primary-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 15px 20px 25px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .primary-nav.open {
    display: flex;
  }

  .primary-nav > a {
    padding: 11px;
  }

  .primary-nav .nav-cta {
    margin-top: 10px;
  }

  .menu-button {
    display: block;
  }
}

/* Mobile layout */

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), 1160px);
  }

  .section {
    padding: 78px 0;
  }

  .nav-wrap {
    height: 72px;
  }

  .brand-image,
  .compact .brand-image {
    width: 190px;
  }

  .brand-footer {
    width: 230px;
  }

  .hero {
    padding: 62px 0 75px;
  }

  .hero-grid {
    gap: 20px;
  }

  .hero h1 {
    font-size: 2.65rem;
  }

  .button-row {
    flex-direction: column;
  }

  .hero-visual {
    min-height: 430px;
    margin: -30px;
    transform: scale(0.83);
  }

  .machine {
    height: 470px;
  }

  .cashless-card {
    right: -40px;
  }

  .benefit-grid,
  .service-grid,
  .location-grid,
  .testimonial-grid,
  .process-grid,
  .about-values,
  .field-grid,
  .criteria-grid {
    grid-template-columns: 1fr;
  }

  .split-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .feature-split {
    gap: 35px;
  }

  .breakroom-visual {
    height: 460px;
  }

  .mini-machine {
    bottom: 45px;
    left: 30px;
    transform: scale(0.85);
    transform-origin: bottom left;
  }

  .check-list,
  .branding-feature ul {
    columns: 1;
  }

  .process-grid li:not(:last-child)::after {
    display: none;
  }

  .branding-feature {
    padding: 30px;
  }

  .solution-detail {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .page-hero {
    padding: 65px 0;
  }

  .page-hero h1 {
    font-size: 2.55rem;
  }

  .form-card {
    padding: 24px;
  }

  .cta-section {
    padding-bottom: 78px;
  }

  .cta-box {
    padding: 38px 27px;
  }

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

  .footer-brand,
  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .hero-copy .eyebrow {
    font-size: 0.68rem;
  }
}

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

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