:root {
  --ink: #0b1b2b;
  --muted: #5c6977;
  --line: #dce3ea;
  --paper: #ffffff;
  --soft: #f3f7f9;
  --accent: #32aec4;
  --accent-dark: #14788a;
  --accent-2: #f2b84b;
  --blue: #1558d6;
  --green: #18a76b;
  --amber: #f5b83d;
  --rose: #ec4f76;
  --steel: #415974;
  --shadow: 0 18px 48px rgba(11, 27, 43, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #f6fafc, #ffffff 42%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.brand-mark img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand small,
.category,
.eyebrow,
.product-card small,
.footer p,
.upload-field small {
  color: var(--muted);
}

.brand strong,
.brand small {
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  color: #27384a;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--blue);
  border-radius: 8px;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--accent-dark));
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(21, 88, 214, 0.24);
  cursor: pointer;
  text-align: center;
}

.button-small {
  min-height: 40px;
  padding: 0 14px;
  font-size: 0.9rem;
}

.button-light {
  color: var(--ink);
  background: white;
  border-color: white;
  box-shadow: none;
}

.button-outline {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
  box-shadow: none;
}

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

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 27, 43, 0.88), rgba(11, 27, 43, 0.5) 48%, rgba(11, 27, 43, 0.12));
}

.hero-content {
  position: relative;
  width: min(780px, calc(100% - 36px));
  margin: 0 0 clamp(42px, 9vh, 90px) clamp(18px, 6vw, 74px);
  color: white;
}

.hero-content .eyebrow,
.hero-content p {
  color: rgba(255, 255, 255, 0.82);
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 6vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.75rem, 3.5vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

p {
  line-height: 1.65;
}

.hero-content p {
  max-width: 620px;
  font-size: 1.18rem;
}

.eyebrow {
  margin-bottom: 12px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.section {
  padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 72px);
}

.section-head {
  max-width: 780px;
  margin-bottom: 28px;
}

.muted {
  background: var(--soft);
}

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

.industry-card,
.product-card,
blockquote,
details,
.gallery div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.industry-card {
  position: relative;
  min-height: 220px;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.industry-card:hover,
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.industry-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.industry-card:hover img {
  transform: scale(1.04);
}

.industry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 27, 43, 0.86), rgba(11, 27, 43, 0.28) 58%, rgba(11, 27, 43, 0.06));
}

.industry-content {
  position: relative;
  z-index: 1;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 12px;
  padding: 24px;
  color: white;
}

.industry-card em {
  color: var(--accent);
  font-weight: 900;
  font-style: normal;
}

.industry-card strong {
  font-size: 1.35rem;
  line-height: 1.22;
}

.industry-card small {
  color: rgba(255, 255, 255, 0.76);
}

.product-card {
  display: grid;
  grid-template-rows: 150px 1fr auto;
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.product-thumb {
  display: grid;
  place-items: center;
  background: #eef4f7;
  overflow: hidden;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-thumb span {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  font-weight: 900;
  font-size: 1.35rem;
}

.product-body,
.card-actions {
  padding: 20px;
}

.product-body p {
  color: var(--muted);
}

dl {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
}

dl div {
  display: flex;
  gap: 8px;
}

dt {
  min-width: 82px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

dd {
  margin: 0;
  font-size: 0.9rem;
}

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

.steps div {
  padding: 22px;
  border-left: 4px solid var(--accent);
  background: var(--soft);
  border-radius: 8px;
}

.steps span {
  display: block;
  color: var(--accent);
  font-size: 1.8rem;
  font-weight: 900;
}

.gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 18px;
}

.gallery img,
.page-hero img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  border-radius: 8px;
}

.gallery div {
  min-height: 260px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  color: white;
  background: var(--ink);
}

.gallery span {
  color: rgba(255, 255, 255, 0.72);
}

blockquote {
  margin: 0;
  padding: 28px;
}

blockquote p {
  font-size: 1.2rem;
}

cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.printing,
.split,
.mini-quote,
.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.printing {
  color: white;
  background: linear-gradient(135deg, var(--ink), var(--steel));
}

.printing p,
.printing .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.printing-list,
.benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.printing-list span,
.benefit-list span {
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 800;
}

.benefit-list span {
  color: var(--ink);
  background: var(--soft);
}

.faq {
  max-width: 1000px;
  margin: 0 auto;
}

details {
  padding: 18px 22px;
  margin-bottom: 12px;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.final-cta {
  color: white;
  text-align: center;
  background: var(--accent);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.82);
}

.page-hero {
  padding: clamp(48px, 8vw, 92px) clamp(18px, 5vw, 72px);
  background: var(--soft);
}

.page-hero.compact h1,
.industry-hero h1 {
  font-size: clamp(2.1rem, 4.5vw, 4.6rem);
}

.filters {
  position: sticky;
  top: 71px;
  z-index: 10;
  display: flex;
  gap: 14px;
  padding: 14px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
}

label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

select,
input {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  font: inherit;
}

.quote-shell {
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 28px;
  padding: clamp(28px, 5vw, 72px);
  background:
    radial-gradient(circle at top left, rgba(50, 174, 196, 0.16), transparent 32%),
    linear-gradient(180deg, #f5f9fc, #eef5f8);
}

.quote-intro {
  position: sticky;
  top: 112px;
  align-self: start;
}

.quote-intro h1 {
  font-size: clamp(2rem, 4vw, 4.4rem);
}

.quote-contact-card {
  display: grid;
  gap: 6px;
  margin-top: 22px;
  padding: 18px;
  border-radius: 8px;
  color: white;
  background: linear-gradient(135deg, var(--ink), var(--accent-dark));
  box-shadow: var(--shadow);
}

.quote-contact-card span {
  font-size: 1.35rem;
  font-weight: 900;
}

.quote-contact-card a {
  color: white;
  font-weight: 800;
}

.quote-contact-card small {
  color: rgba(255, 255, 255, 0.72);
}

.quote-form {
  display: grid;
  gap: 22px;
  padding: clamp(18px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  font-weight: 900;
}

legend > span,
.step-heading > span {
  flex: 0 0 auto;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  color: white;
  background: var(--blue);
  font-size: 1rem;
  box-shadow: 0 10px 22px rgba(21, 88, 214, 0.22);
}

legend strong {
  display: block;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  line-height: 1.1;
}

legend small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
}

.choice-field,
.contact-step {
  padding: 20px;
  border: 1px solid #d9e7ef;
  border-left: 6px solid var(--blue);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #fbfdfe);
}

.choice-field:nth-of-type(2) {
  border-left-color: var(--accent);
}

.choice-field:nth-of-type(3) {
  border-left-color: var(--green);
}

.choice-field:nth-of-type(4) {
  border-left-color: var(--amber);
}

.choice-field:nth-of-type(5) {
  border-left-color: var(--rose);
}

.choice-field > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.choice-field label {
  display: block;
  min-height: 48px;
  cursor: pointer;
}

.choice-field input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-field span {
  display: flex;
  position: relative;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  font-weight: 800;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.choice-field span::after {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid #c7d6df;
  border-radius: 50%;
  flex: 0 0 auto;
}

.choice-field input:checked + span {
  color: white;
  border-color: var(--blue);
  background: linear-gradient(135deg, var(--blue), var(--accent-dark));
  box-shadow: 0 10px 20px rgba(21, 88, 214, 0.18);
  transform: translateY(-1px);
}

.choice-field input:checked + span::after {
  content: "✓";
  display: grid;
  place-items: center;
  color: var(--blue);
  background: white;
  border-color: white;
  font-size: 0.82rem;
  font-weight: 900;
}

.upload-field {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px dashed var(--accent-dark);
  border-radius: 8px;
  background: #edf9fb;
}

.upload-field > span {
  font-size: 1.15rem;
  font-weight: 900;
}

.deadline-note {
  margin: -6px 0 0;
  padding: 12px 14px;
  border-left: 4px solid var(--rose);
  border-radius: 8px;
  color: var(--muted);
  background: #fff7f9;
  font-size: 0.95rem;
}

.contact-step {
  border-left-color: var(--ink);
}

.step-heading {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.step-heading h3 {
  margin-bottom: 4px;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
}

.step-heading p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.quote-result {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--ink), #10385f);
  color: white;
}

.quote-result p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  overflow-wrap: anywhere;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
}

.footer nav {
  display: flex;
  gap: 16px;
  font-weight: 800;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.footer-brand a {
  display: block;
  color: var(--accent-dark);
  font-weight: 800;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 8px;
  color: white;
  background: #1daa61;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(29, 170, 97, 0.36);
}

[hidden] {
  display: none !important;
}

/* Prevent legacy chat/widgets from the previous site from sitting on top of the new CTA. */
body .joinchat,
body .joinchat *,
body #joinchat,
body .ht-ctc,
body .ht-ctc-chat,
body .qlwapp,
body #qlwapp,
body .wa__btn_popup,
body .wa__popup_chat_box,
body .whatsapp-chat,
body .whatsappchat,
body .creame-whatsapp,
body .premium-floating-effects,
body .pa-modal-box,
body .elementor-popup-modal {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .industry-grid,
  .product-grid,
  .testimonial-grid,
  .steps,
  .gallery,
  .printing,
  .split,
  .mini-quote,
  .page-hero,
  .quote-shell {
    grid-template-columns: 1fr;
  }

  .quote-intro {
    position: static;
  }

  .hero {
    min-height: 620px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 10px 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .brand-mark img {
    width: 40px;
    height: 40px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 590px;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(11, 27, 43, 0.92), rgba(11, 27, 43, 0.22));
  }

  .hero-content {
    margin: 0 18px 34px;
  }

  .hero-actions,
  .card-actions,
  .filters,
  .footer,
  .footer nav {
    flex-direction: column;
    align-items: stretch;
  }

  .choice-field > div,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    min-height: 50px;
  }
}

/* Premium landing page refresh */
html {
  scroll-behavior: smooth;
}

.site-header {
  height: 76px;
  padding: 12px clamp(18px, 4vw, 58px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 30px rgba(11, 27, 43, 0.06);
}

.brand-mark {
  width: 50px;
  height: 50px;
}

.brand-mark img {
  width: 44px;
  height: 44px;
}

.nav-links a {
  padding: 9px 10px;
  border-radius: 8px;
  color: #415065;
  font-weight: 800;
}

.nav-links a:hover {
  color: var(--blue);
  background: #eef6ff;
}

.button {
  border-color: transparent;
  background: linear-gradient(135deg, #1558d6, #14788a);
  box-shadow: 0 14px 30px rgba(21, 88, 214, 0.2);
}

.button-light {
  color: var(--ink);
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.7);
}

.hero-v2 {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 0.9fr);
  gap: clamp(30px, 5vw, 74px);
  align-items: center;
  padding: clamp(42px, 7vw, 86px) clamp(18px, 5vw, 74px) clamp(34px, 5vw, 64px);
  background:
    radial-gradient(circle at 15% 10%, rgba(50, 174, 196, 0.16), transparent 30%),
    linear-gradient(180deg, #f8fbfd, #eef6fa);
}

.hero-copy {
  max-width: 760px;
}

.hero-copy h1 {
  margin-bottom: 18px;
  font-size: clamp(2.55rem, 5.4vw, 5.05rem);
  line-height: 0.98;
}

.hero-copy > p {
  max-width: 670px;
  color: #526174;
  font-size: 1.12rem;
}

.promo-card {
  width: min(100%, 560px);
  margin: 26px 0;
  padding: 18px;
  border: 1px solid rgba(21, 88, 214, 0.16);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, #eef7fb);
  box-shadow: 0 18px 50px rgba(11, 27, 43, 0.1);
}

.promo-card span {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 6px 10px;
  border-radius: 8px;
  color: #082f63;
  background: #dff1ff;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.promo-card strong {
  display: block;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  line-height: 1;
}

.promo-card ul,
.quote-strip ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.promo-card li,
.quote-strip li {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #435369;
  font-weight: 800;
}

.promo-card li::before,
.quote-strip li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-media {
  position: relative;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3.2;
  object-fit: cover;
  border: 10px solid white;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(11, 27, 43, 0.18);
}

.hero-stats {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
}

.hero-stats span {
  padding: 10px;
  border-radius: 8px;
  background: #f5f9fc;
  color: #536273;
  font-size: 0.84rem;
  font-weight: 800;
}

.hero-stats strong {
  display: block;
  color: var(--ink);
}

.section {
  padding: clamp(54px, 7vw, 90px) clamp(18px, 5vw, 74px);
}

.centered {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-head p:not(.eyebrow) {
  color: var(--muted);
}

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

.industry-card-v2 {
  overflow: hidden;
  border: 1px solid #dce7ee;
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 44px rgba(11, 27, 43, 0.08);
}

.industry-card-v2 img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.industry-card-v2 div {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.industry-card-v2 span {
  color: var(--blue);
  font-weight: 950;
  text-transform: uppercase;
}

.industry-card-v2 p {
  margin: 0;
  color: #435369;
}

.industry-card-v2 small {
  min-height: 42px;
  color: #6a7788;
  font-weight: 800;
}

.product-band {
  background: #f6fafc;
}

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

.product-card-v2 {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid #dce7ee;
  border-radius: 8px;
  background: white;
  box-shadow: 0 14px 34px rgba(11, 27, 43, 0.07);
}

.product-card-v2 img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: contain;
  background: #edf4f7;
}

.product-card-v2 > div {
  display: grid;
  gap: 10px;
  padding: 20px;
  background: white;
}

.product-card-v2 h3 {
  margin: 0;
  font-size: 1.08rem;
}

.product-card-v2 p,
.product-card-v2 dd {
  margin: 0;
  color: #5f6d7d;
  font-size: 0.93rem;
  line-height: 1.5;
}

.product-card-v2 dl {
  margin: 0;
  padding-top: 8px;
  border-top: 1px solid #e5edf2;
}

.product-card-v2 dt {
  color: var(--blue);
  font-weight: 950;
}

.text-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  padding: 0 14px;
  border-radius: 8px;
  color: white;
  background: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
}

.order-builder {
  background:
    radial-gradient(circle at top left, rgba(50, 174, 196, 0.14), transparent 28%),
    #f6fafc;
}

.order-form {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
  padding: clamp(18px, 4vw, 34px);
  border: 1px solid #dce7ee;
  border-radius: 8px;
  background: white;
  box-shadow: 0 20px 58px rgba(11, 27, 43, 0.1);
}

.form-panel {
  margin: 0;
  padding: 20px;
  border: 1px solid #dce7ee;
  border-radius: 8px;
  background: #fbfdfe;
}

.form-panel legend {
  width: auto;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 1.22rem;
  font-weight: 950;
}

.order-choices,
.logo-grid,
.contact-fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.order-choices label,
.logo-choice {
  cursor: pointer;
}

.order-choices input,
.logo-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.order-choices span,
.logo-choice span {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border: 1px solid #d5e2eb;
  border-radius: 8px;
  background: white;
  color: var(--ink);
  font-weight: 900;
  text-align: center;
}

.order-choices input:checked + span,
.logo-choice input:checked + span {
  color: white;
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--accent-dark));
  box-shadow: 0 12px 24px rgba(21, 88, 214, 0.18);
}

.upload-box {
  display: grid;
  gap: 8px;
  grid-column: span 3;
  padding: 16px;
  border: 1px dashed var(--accent-dark);
  border-radius: 8px;
  background: #edf9fb;
}

.upload-box > span {
  font-size: 1rem;
  font-weight: 950;
}

.upload-box small {
  color: var(--muted);
  font-weight: 800;
}

.contact-fields label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 900;
}

.contact-fields input {
  min-height: 48px;
  border-color: #d5e2eb;
}

.order-submit {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-radius: 8px;
  color: white;
  background: linear-gradient(135deg, var(--ink), #10385f);
}

.order-submit p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  overflow-wrap: anywhere;
}

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

.process-grid article {
  padding: 22px;
  border: 1px solid #dce7ee;
  border-radius: 8px;
  background: white;
  box-shadow: 0 14px 34px rgba(11, 27, 43, 0.06);
}

.process-grid span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 8px;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--accent));
  font-weight: 950;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
}

.quote-strip {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 28px;
  align-items: center;
  margin: 0 clamp(18px, 5vw, 74px);
  padding: clamp(26px, 4vw, 40px);
  border-radius: 8px;
  color: white;
  background: linear-gradient(135deg, var(--ink), #10385f 58%, var(--accent-dark));
}

.quote-strip h2,
.quote-strip p {
  color: white;
}

.quote-strip .eyebrow,
.quote-strip li {
  color: rgba(255, 255, 255, 0.78);
}

.quote-strip li::before {
  background: var(--accent-2);
}

.gallery-v2 {
  background: #ffffff;
}

.gallery-grid-v2 {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 220px;
  gap: 14px;
}

.gallery-grid-v2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(11, 27, 43, 0.08);
}

.gallery-grid-v2 img:first-child {
  grid-row: span 2;
}

.testimonials-v2 {
  background: #f6fafc;
}

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

blockquote {
  box-shadow: 0 14px 34px rgba(11, 27, 43, 0.06);
}

.final-cta-v2 {
  max-width: calc(100% - clamp(36px, 10vw, 148px));
  margin: 0 auto clamp(44px, 6vw, 78px);
  padding: clamp(38px, 6vw, 70px);
  border-radius: 8px;
  color: white;
  text-align: center;
  background: linear-gradient(135deg, #1558d6, #14788a 60%, #32aec4);
  box-shadow: 0 24px 70px rgba(21, 88, 214, 0.22);
}

.final-cta-v2 h2 {
  max-width: 920px;
  margin-right: auto;
  margin-left: auto;
}

.final-cta-v2 p {
  color: rgba(255, 255, 255, 0.82);
}

.floating-whatsapp {
  min-height: 48px;
  padding: 0 16px;
  border-radius: 8px;
  background: #18a76b;
  box-shadow: 0 16px 34px rgba(24, 167, 107, 0.28);
  font-size: 0.92rem;
}

@media (max-width: 1100px) {
  .hero-v2,
  .quote-strip {
    grid-template-columns: 1fr;
  }

  .industry-grid-v2,
  .product-grid-v2,
  .process-grid,
  .testimonial-grid,
  .order-choices,
  .logo-grid,
  .contact-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .upload-box {
    grid-column: span 2;
  }
}

@media (max-width: 720px) {
  .site-header {
    height: 68px;
  }

  .hero-v2 {
    padding-top: 30px;
  }

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

  .hero-stats,
  .industry-grid-v2,
  .product-grid-v2,
  .process-grid,
  .testimonial-grid,
  .gallery-grid-v2,
  .order-choices,
  .logo-grid,
  .contact-fields,
  .order-submit {
    grid-template-columns: 1fr;
  }

  .upload-box {
    grid-column: auto;
  }

  .product-card-v2 > div {
    padding: 18px;
  }

  .hero-stats {
    position: static;
    margin-top: 10px;
  }

  .gallery-grid-v2 img:first-child {
    grid-row: auto;
  }

  .gallery-grid-v2 {
    grid-auto-rows: 210px;
  }

  .quote-strip {
    margin-right: 18px;
    margin-left: 18px;
  }

  .final-cta-v2 {
    max-width: calc(100% - 36px);
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    min-height: 42px;
    padding: 0 12px;
    font-size: 0.82rem;
  }
}
