:root {
  --ink: #182230;
  --muted: #607086;
  --line: #dbe3ec;
  --surface: #ffffff;
  --soft: #f4f7fb;
  --navy: #123d68;
  --blue: #1f73b7;
  --teal: #0d9488;
  --gold: #c7932d;
  --shadow: 0 18px 45px rgba(24, 34, 48, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.navbar {
  width: min(1180px, calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--navy), var(--teal));
}

.brand-text {
  display: grid;
  line-height: 1.2;
}

.brand-text strong {
  font-size: 1rem;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
}

.nav-menu a {
  transition: color 0.2s ease;
}

.nav-menu a:hover {
  color: var(--blue);
}

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

.header-social .linkedin-icon,
.hero-social {
  display: flex;
  align-items: center;
}

.hero-social {
  gap: 8px;
  margin-bottom: 18px;
}

.mobile-social {
  display: none;
}

.header-social .linkedin-icon,
.hero-social .linkedin-icon {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0 8px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
  background: #0a66c2;
}

.header-social .linkedin-icon span,
.hero-social .linkedin-icon span {
  color: inherit;
  font-size: inherit;
  text-transform: uppercase;
}

.header-social .linkedin-icon strong,
.hero-social .linkedin-icon strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  border-radius: 4px;
  color: #0a66c2;
  background: #ffffff;
  font-size: 0.64rem;
}

.header-social .linkedin-icon:hover,
.hero-social .linkedin-icon:hover {
  color: #ffffff;
  background: #084b91;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: 46px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0;
}

.hero-content h1 {
  max-width: 760px;
  margin: 12px 0 22px;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
}

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

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 12px 24px rgba(31, 115, 183, 0.26);
}

.btn-primary:hover {
  background: var(--navy);
}

.btn-secondary {
  color: var(--navy);
  border: 1px solid var(--line);
  background: #fff;
}

.hero-panel {
  position: relative;
  min-height: 380px;
  padding: 22px;
  display: grid;
  align-content: end;
  gap: 12px;
  overflow: hidden;
  border: 1px solid rgba(55, 93, 138, 0.35);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(55, 93, 138, 0.92), rgba(55, 93, 138, 0.78)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1100&q=80") center/cover;
  box-shadow: var(--shadow);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
}

.metric-card {
  position: relative;
  display: block;
  padding: 14px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.metric-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.18);
}

.metric-card span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.74rem;
}

.metric-card strong {
  display: block;
  margin-top: 3px;
  font-size: 1rem;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0;
}

.section-heading {
  max-width: 760px;
}

.section-heading.centered {
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading h2,
.contact-content h2 {
  margin: 10px 0 0;
  font-size: clamp(1.75rem, 3.3vw, 2.65rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  margin-top: 34px;
  color: var(--muted);
  font-size: 1.02rem;
}

.solutions-section {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100vw - 1180px) / 2));
  padding-left: max(20px, calc((100vw - 1180px) / 2));
  background: var(--soft);
}

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

.solution-card {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(24, 34, 48, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.clickable-card {
  display: flex;
  flex-direction: column;
  color: inherit;
  cursor: pointer;
}

.clickable-card:focus-visible {
  outline: 3px solid rgba(55, 93, 138, 0.45);
  outline-offset: 4px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding-top: 16px;
  color: #375D8A;
  font-size: 0.9rem;
  font-weight: 800;
  transition: color 0.2s ease;
}

.card-link::after {
  content: ">";
  margin-left: 8px;
  transition: transform 0.2s ease;
}

.clickable-card:hover .card-link::after {
  transform: translateX(4px);
}

.clickable-card:hover .card-link {
  color: #3f4652;
}

.wide-card {
  grid-column: span 3;
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 34px;
  border-radius: 8px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  background: var(--navy);
}

.solution-card h3,
.why-item h3 {
  margin: 20px 0 10px;
  font-size: 1.18rem;
  line-height: 1.25;
}

.solution-card p,
.why-item p {
  margin: 0;
  color: var(--muted);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
  align-items: stretch;
}

.why-section {
  padding-top: 38px;
}

.product-details-section {
  scroll-margin-top: 90px;
}

.product-category {
  margin-top: 28px;
  padding: 26px;
  scroll-margin-top: 96px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(24, 34, 48, 0.06);
}

.product-category-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.product-category-heading span {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 32px;
  border-radius: 8px;
  color: #ffffff;
  background: #375D8A;
  font-size: 0.8rem;
  font-weight: 800;
}

.product-category-heading h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.2;
}

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

.product-card {
  min-height: 150px;
  padding: 20px;
  border: 1px solid rgba(55, 93, 138, 0.22);
  border-radius: 8px;
  background: var(--soft);
  position: relative;
}

.product-image {
  width: 100%;
  aspect-ratio: 3 / 2;
  margin-bottom: 14px;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  cursor: zoom-in;
  transition: filter 0.2s ease;
}

.product-image:hover {
  filter: brightness(0.96);
}

.product-card h4 {
  margin: 0 0 8px;
  font-size: 0.92rem;
  line-height: 1.25;
}

.product-card h4.brand-red-title {
  color: #e33424;
}

.product-card h4.brand-orange-title {
  color: #f28c18;
}

.product-card h4.papercut-title {
  color: #3d3d42;
}

.product-card h4.papercut-title span {
  color: #16872d;
}

.product-card h4.myq-title {
  color: #111827;
}

.product-card h4.myq-title span {
  color: #d61f2c;
}

.product-card h4.goldline-title {
  color: #111827;
}

.product-card h4.goldline-title span {
  color: #c99222;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.product-card p + p {
  margin-top: 8px;
}

.product-card .product-accent {
  color: #e9553f;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.why-item {
  min-height: 100%;
  padding: 22px 18px 0;
  border-top: 3px solid #375D8A;
  text-align: left;
}

.why-item h3 {
  min-height: 0;
  margin-top: 0;
  margin-bottom: 10px;
}

.why-item p {
  text-align: left;
  max-width: none;
  font-size: 0.86rem;
  line-height: 1.5;
}

.update-section {
  padding: 0 0 24px;
  color: #375D8A;
  background: #ffffff;
  margin-bottom: 24px;
}

.update-content {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: 28px;
  align-items: center;
  text-align: left;
}

.update-content .eyebrow {
  color: #375D8A;
}

.update-content h2 {
  margin: 0 0 18px;
  max-width: 620px;
  font-size: clamp(1.75rem, 3.3vw, 2.65rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.update-content p {
  max-width: 660px;
  margin: 0;
  color: #607086;
}

.update-form {
  display: grid;
  gap: 11px;
  padding: 16px;
  border: 1px solid rgba(55, 93, 138, 0.25);
  border-radius: 8px;
  background: #f4f7fb;
  backdrop-filter: blur(10px);
  text-align: left;
}

.form-field {
  display: grid;
  gap: 4px;
}

.form-field label {
  color: #375D8A;
  font-size: 0.82rem;
  font-weight: 500;
}

.form-field input {
  width: 100%;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(55, 93, 138, 0.24);
  border-radius: 8px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
  font-size: 0.86rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input::placeholder {
  color: #8a8f98;
}

.form-field input:focus {
  border-color: #375D8A;
  box-shadow: 0 0 0 4px rgba(55, 93, 138, 0.12);
}

.update-button {
  justify-self: center;
  width: 100%;
  min-height: 40px;
  margin-top: 2px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: #375D8A;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.update-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(24, 34, 48, 0.18);
}

.form-message {
  min-height: 20px;
  margin: 0;
  color: #375D8A;
  text-align: center;
}

.contact-section {
  padding: 34px 0 42px;
  color: #fff;
  background: #375D8A;
}

.contact-content {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: 34px;
  align-items: center;
}

.contact-content p:not(.eyebrow) {
  max-width: 560px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}

.contact-card {
  display: grid;
  gap: 9px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.contact-card a:not(.whatsapp-btn) {
  display: grid;
  gap: 2px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-card span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.contact-card strong {
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

.contact-locations {
  display: grid;
  gap: 6px;
  padding: 8px 0 0;
}

.contact-locations div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contact-card .contact-locations a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.contact-card .contact-locations a:hover {
  border-color: #ffffff;
  color: #375D8A;
  background: #ffffff;
}

.whatsapp-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 42px;
  margin-top: 8px;
  border-radius: 8px;
  color: #062b24;
  font-size: 0.9rem;
  font-weight: 800;
  background: #45e08f;
  transition: background 0.2s ease, color 0.2s ease;
}

.whatsapp-btn:hover {
  color: #375D8A;
  background: #ffffff;
}

.site-footer {
  width: min(1180px, calc(100% - 40px));
  min-height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 0.94rem;
}

.site-footer a {
  color: var(--blue);
  font-weight: 700;
}

.image-preview {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(10, 18, 30, 0.82);
}

.image-preview.is-open {
  display: flex;
}

.image-preview img {
  max-width: min(1100px, 94vw);
  max-height: 86vh;
  object-fit: contain;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.image-preview-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

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

  .mobile-social {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 78px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav-menu a {
    padding: 14px;
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-toggle.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero,
  .contact-content,
  .update-content {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 54px 0;
  }

  .hero-panel {
    min-height: 310px;
  }

  .solutions-grid,
  .why-grid,
  .product-grid,
  .about-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 640px) {
  .navbar {
    gap: 8px;
  }

  .navbar,
  .hero,
  .section,
  .contact-content,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .brand-text small {
    display: none;
  }

  .site-logo {
    width: 126px;
  }

  .since-badge {
    min-height: 22px;
    padding: 0 7px;
    font-size: 0.62rem;
  }

  .hero-social {
    gap: 4px;
    margin-bottom: 14px;
  }

  .hero-social .linkedin-icon {
    min-height: 24px;
    gap: 4px;
    padding: 0 7px;
    font-size: 0.58rem;
  }

  .hero-social .linkedin-icon strong {
    width: 15px;
    height: 15px;
    border-radius: 3px;
    font-size: 0.54rem;
  }

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

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

  .hero-panel {
    min-height: 285px;
    padding: 16px;
  }

  .section,
  .contact-section {
    padding: 34px 0;
  }

  .update-section {
    padding: 0 0 24px;
  }

  .update-content {
    width: min(100% - 28px, 1180px);
  }

  .update-content h2 {
    font-size: 2rem;
  }

  .form-field input,
  .update-button {
    min-height: 40px;
  }

  .update-button {
    width: 100%;
  }

  .solutions-grid,
  .why-grid,
  .product-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .wide-card {
    grid-column: auto;
  }

  .site-footer {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}
.solution-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  margin-bottom: 20px;
}

.solution-card {
  overflow: hidden;
}

.solution-image {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  margin-bottom: 20px;
}

.site-logo {
  width: 180px;
  height: auto;
  display: block;
}

.since-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(199, 147, 45, 0.45);
  border-radius: 999px;
  color: #375D8A;
  background: rgba(199, 147, 45, 0.10);
  font-size: 0.76rem;
  font-weight: 800;
  white-space: nowrap;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

:root {
  --primary: #375D8A;
  --primary-dark: #2d4d73;
  --primary-light: rgba(55, 93, 138, 0.10);
}

.btn,
.button,
.cta-button,
.primary-button,
.nav-cta {
  background: #375D8A !important;
  color: #ffffff !important;
  border-color: #375D8A !important;
}

.btn:hover,
.button:hover,
.cta-button:hover,
.primary-button:hover,
.nav-cta:hover {
  background: #2d4d73 !important;
  border-color: #2d4d73 !important;
}

.card-icon {
  background: #375D8A !important;
  color: #ffffff !important;
}

.section-label,
.badge,
.tag {
  color: #375D8A !important;
}

.solution-card,
.hero-card,
.value-card,
.stat-card {
  border-color: rgba(55, 93, 138, 0.25) !important;
}

.brand-strip {
  padding: 38px 0;
  background: #ffffff;
}

.brand-strip-content {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  text-align: center;
}

.brand-label {
  margin: 0 0 24px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c99222;
}

.brand-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px 28px;
  align-items: center;
}

.brand-logos img {
  max-width: 180px;
  max-height: 75px;
  width: 100%;
  height: 78px;
  object-fit: contain;
  margin: 0 auto;
  filter: none;
  opacity: 1;
  transition: 0.25s ease;
}

.brand-logos img:hover {
  filter: none;
  opacity: 1;
  transform: translateY(-2px);
}

.brand-logos img.speedqueen-logo {
  max-width: 220px;
  max-height: 92px;
}

.brand-logos img.dynabook-logo,
.brand-logos img.eaglesafes-logo,
.brand-logos img.dokmee-logo {
  max-width: 215px;
  max-height: 90px;
}

.brand-logos img.goldline-logo {
  max-width: 225px;
  max-height: 92px;
}

@media (max-width: 992px) {
  .brand-logos {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .brand-strip {
    padding: 30px 0;
  }

  .brand-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .brand-logos img {
    max-width: 120px;
    max-height: 48px;
  }

  .brand-strip {
    padding: 24px 0;
  }

  .brand-logos {
    gap: 8px 18px;
  }

  .brand-logos img {
    width: 100%;
    height: 52px;
    max-width: 132px;
    max-height: 52px;
    object-fit: contain;
  }

  .brand-logos img.speedqueen-logo,
  .brand-logos img.dynabook-logo,
  .brand-logos img.eaglesafes-logo,
  .brand-logos img.dokmee-logo,
  .brand-logos img.goldline-logo {
    max-width: 138px;
    max-height: 54px;
  }
