:root {
  --ink: #15120f;
  --muted: #6d665f;
  --paper: #fffaf3;
  --panel: #ffffff;
  --orange: #ff5a1f;
  --orange-deep: #da3c12;
  --green: #ff5a1f;
  --cyan: #01a6c8;
  --line: #eadfd2;
  --shadow: 0 28px 70px rgba(58, 33, 18, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(rgba(21, 18, 15, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 18, 15, 0.04) 1px, transparent 1px),
    linear-gradient(135deg, rgba(255, 90, 31, 0.14), transparent 28%),
    linear-gradient(315deg, rgba(1, 166, 200, 0.1), transparent 24%),
    var(--paper);
  background-size: 28px 28px, 28px 28px, auto, auto, auto;
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.site-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1120px, calc(100% - 32px));
  margin: 14px auto 0;
  padding: 8px 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  z-index: 20;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.12rem;
  font-weight: 800;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border: 7px solid var(--orange);
  border-right-color: var(--cyan);
  border-radius: 50%;
  display: inline-block;
}

.header-menu {
  position: relative;
}

.menu-toggle {
  display: grid;
  place-items: center;
  gap: 4px;
  width: 32px;
  height: 30px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 35px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
}

.menu-popover {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: grid;
  min-width: 164px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 14px 34px rgba(58, 33, 18, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.menu-popover.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.menu-popover a {
  padding: 7px 9px;
  border-radius: 7px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.menu-popover a:hover {
  background: rgba(255, 90, 31, 0.1);
  color: var(--ink);
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  font-weight: 800;
  box-shadow: 5px 6px 0 var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.whatsapp-link:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 4px 0 var(--ink);
}

.whatsapp-link.small {
  padding: 0 22px;
  background: var(--panel);
}

.hero {
  gap: 25px;
  width: min(1120px, calc(100% - 32px));
  min-height: calc(100vh - 142px);
  margin: 0 auto;
  padding: 42px 0 96px;
}

.hero-carousel {
  width: 100%;
  height: 210px;
  margin-bottom: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.55);
}

.carousel-track {
  display: flex;
  width: 150%;
  height: 100%;
  animation: banner-slide 12s infinite;
}

.carousel-slide {
  position: relative;
  width: 33.3333%;
  height: 100%;
  flex: 0 0 33.3333%;
  overflow: hidden;
  background: var(--orange);
  border-right: 10px solid var(--paper);
}

.carousel-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-copy {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 24px 34px;
  background: linear-gradient(90deg, rgba(21, 18, 15, 0.72), rgba(21, 18, 15, 0.12) 72%);
  color: white;
}

.banner-copy span {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.banner-copy strong {
  max-width: 620px;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1;
}

@keyframes banner-slide {
  0%,
  42% {
    transform: translateX(0);
  }

  50%,
  92% {
    transform: translateX(-33.3333%);
  }

  100% {
    transform: translateX(0);
  }
}

.hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.72fr);
  gap: 54px;
  align-items: center;
  min-height: 430px;
  padding: 54px;
  background: rgba(255, 255, 255, 0.5);
  border: 3px dashed var(--orange);
  border-radius: 28px;
}

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

.eyebrow {
  margin: 0 0 16px;
  color: var(--orange-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 5.4vw, 4.65rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-text {
  max-width: 610px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.55;
}

.hero-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.hero-flow span {
  padding: 10px 12px;
  background: rgba(255, 90, 31, 0.1);
  border: 1px solid rgba(255, 90, 31, 0.22);
  border-radius: 10px;
  color: var(--orange-deep);
  font-size: 0.88rem;
  font-weight: 800;
}

.whatsapp-link.primary {
  min-height: 58px;
  padding: 0 28px;
  background: var(--green);
  color: white;
}

.delivery-note {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.hero-start {
  display: grid;
  justify-items: center;
  text-align: center;
}

.hero-start h2 {
  max-width: 330px;
  margin: 0 0 12px;
  font-size: clamp(1.55rem, 2.4vw, 2.05rem);
  line-height: 1.08;
}

.hero-start p:not(.eyebrow) {
  max-width: 340px;
  margin: 0 0 18px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.5;
}

.hero-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  min-height: 54px;
  padding: 0 26px;
  background: var(--orange);
  border: 2px solid var(--ink);
  border-radius: 12px;
  color: white;
  font-weight: 800;
  box-shadow: 5px 6px 0 var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.hero-whatsapp:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 4px 0 var(--ink);
}

.hero-secondary {
  margin-top: 18px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hero {
  display: grid;
  justify-items: center;
  width: min(1120px, calc(100% - 32px));
  min-height: auto;
  margin: 0 auto;
  padding: 40px 0 118px;
  text-align: center;
}

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

.hero h1 {
  margin-bottom: 10px;
  font-size: clamp(3.2rem, 6.4vw, 5.3rem);
  line-height: 0.98;
  white-space: nowrap;
}

.hero .hero-text {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
}

.hero-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  width: min(920px, 100%);
  margin: 24px auto 68px;
}

.hero-product-card {
  min-height: 320px;
  padding: 0;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 14px 32px rgba(58, 33, 18, 0.1);
  overflow: hidden;
  text-align: left;
}

.hero-product-card:nth-child(1) {
  transform: rotate(-2deg);
}

.hero-product-card:nth-child(2) {
  transform: rotate(2deg);
}

.hero-product-card:nth-child(3) {
  transform: rotate(-1deg);
}

.hero-product-card:nth-child(4) {
  transform: rotate(2deg);
}

.hero-product-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
}

.product-dots {
  display: flex;
  gap: 7px;
  margin: 10px 0 7px;
}

.product-dots span {
  width: 12px;
  height: 12px;
  background: var(--orange);
  border-radius: 50%;
}

.product-dots span:nth-child(2) {
  background: var(--ink);
}

.product-dots span:nth-child(3) {
  background: #f6b04c;
}

.hero-product-card h2 {
  margin: 0 0 5px;
  font-size: 1rem;
  line-height: 1.1;
}

.hero-product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
}

.hero-cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.45fr);
  align-items: center;
  gap: 42px;
  width: min(920px, 100%);
  min-height: 180px;
  padding: 32px 40px;
  background: rgba(255, 255, 255, 0.58);
  border: 3px dashed var(--orange);
  border-radius: 24px;
  text-align: left;
}

.hero-cta-box span {
  display: block;
  margin-bottom: 5px;
  color: var(--orange-deep);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-cta-box strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1.2;
}

.hero-cta-box p {
  max-width: 520px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
}

.hero-cta-actions {
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.hero-cta-primary {
  display: inline-grid;
  place-items: center;
  min-width: 186px;
  min-height: 54px;
  background: var(--orange);
  border: 2px solid var(--ink);
  border-radius: 10px;
  color: white;
  font-weight: 800;
  box-shadow: 4px 5px 0 var(--ink);
}

.hero-cta-secondary {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hero-media {
  position: relative;
  align-self: stretch;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.speed-badge {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: grid;
  gap: 2px;
  min-width: 148px;
  padding: 16px 18px;
  background: var(--ink);
  color: white;
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(21, 18, 15, 0.24);
}

.speed-badge strong {
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.speed-badge span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.86rem;
  font-weight: 700;
}

.print-menu {
  width: 100%;
  padding: 132px 16px 150px;
  background: #ff6a2a;
}

.print-menu-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.print-heading .eyebrow {
  color: white;
}

.print-heading h2 {
  margin: 0;
  color: white;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 0.98;
}

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

.print-card {
  display: flex;
  min-height: 320px;
  padding: 22px;
  flex-direction: column;
  justify-content: space-between;
  background: #fffaf3;
  border-radius: 12px;
  color: var(--ink);
}

.print-card-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 22px;
}

.print-card-top span {
  color: #37312b;
  font-size: 0.78rem;
  font-weight: 700;
}

.print-card h3 {
  max-width: 260px;
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: 0;
}

.print-card svg {
  align-self: center;
  width: min(180px, 90%);
  height: 120px;
  margin-top: 28px;
  color: #3d3935;
}

.tools-section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 130px 0 150px;
}

.tools-heading {
  margin-bottom: 86px;
}

.tools-heading h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4.8vw, 4rem);
  line-height: 1;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.tool-panel {
  display: flex;
  min-height: 460px;
  padding: 34px;
  flex-direction: column;
  justify-content: flex-start;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: none;
}

.tool-panel-header {
  margin-bottom: 34px;
}

.tool-panel-header span {
  display: block;
  margin-bottom: 12px;
  color: var(--orange-deep);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.tool-panel-header h3 {
  margin: 0;
  font-size: clamp(1.7rem, 2.5vw, 2.35rem);
  line-height: 1;
  letter-spacing: 0;
}

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

.tool-form label,
.pincode-field {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.tool-form input,
.tool-form select,
.pincode-field input {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
}

.tool-form input:focus,
.tool-form select:focus,
.pincode-field input:focus {
  border-color: var(--orange);
  outline: 3px solid rgba(255, 90, 31, 0.16);
}

.estimate-box {
  margin-top: 30px;
  padding: 22px;
  background: rgba(21, 18, 15, 0.05);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
}

.delivery-result {
  margin-top: 14px;
  padding: 12px 14px;
  background: rgba(21, 18, 15, 0.035);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
}

.estimate-box span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.estimate-box strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.estimate-box p,
.delivery-result p,
.tool-note {
  margin: 10px 0 0;
  line-height: 1.5;
}

.estimate-box p,
.delivery-result p {
  color: var(--muted);
  font-weight: 700;
}

.delivery-result a {
  color: var(--orange-deep);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.delivery-panel {
  justify-content: flex-start;
}

.delivery-intro {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  margin-bottom: 26px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.map-icon {
  display: grid;
  place-items: center;
  min-height: 98px;
  color: var(--ink);
}

.map-icon svg {
  width: 112px;
  height: 96px;
}

.delivery-intro h4 {
  margin: 0 0 8px;
  font-size: 1.25rem;
}

.delivery-intro p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}

.pincode-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.check-button {
  min-height: 50px;
  padding: 0 22px;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 8px;
  color: white;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.check-button:hover {
  background: #2a241f;
}

.delivery-result {
  min-height: 0;
}

.delivery-result.is-hidden {
  display: none;
}

.delivery-result strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
}

.delivery-result p {
  margin-top: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
}

.delivery-result.available {
  background: rgba(33, 134, 73, 0.055);
  border-color: rgba(33, 134, 73, 0.18);
  color: #256b41;
}

.delivery-result.available p {
  color: #256b41;
}

.delivery-result.unavailable {
  background: rgba(194, 65, 12, 0.055);
  border-color: rgba(194, 65, 12, 0.18);
  color: #9a4a24;
}

.delivery-result.unavailable p,
.delivery-result.unavailable a {
  color: #9a4a24;
}

.delivery-result.neutral {
  background: rgba(21, 18, 15, 0.05);
}

.tool-note {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.testimonials {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 126px 0 148px;
}

.testimonials-heading {
  margin-bottom: 82px;
}

.testimonials-heading h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4.8vw, 4rem);
  line-height: 1;
}

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

.testimonial-card {
  min-height: 250px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(58, 33, 18, 0.08);
}

.testimonial-card p {
  margin: 0 0 28px;
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.45;
}

.testimonial-card span {
  color: var(--orange-deep);
  font-size: 0.9rem;
  font-weight: 800;
}

.site-footer {
  padding: 28px 16px;
  background: var(--ink);
  color: white;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.footer-brand .brand-mark {
  border-color: var(--orange);
  border-right-color: var(--cyan);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  font-weight: 800;
}

.footer-links a:hover {
  color: white;
}

.process-card p {
  color: var(--muted);
  line-height: 1.55;
}

.how-it-works {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 56px;
  padding: 58px 0 0;
}

.section-heading {
  max-width: 620px;
  margin: 0 auto 30px;
  text-align: center;
}

.section-heading.print-heading {
  margin-bottom: 92px;
}

.section-heading.tools-heading {
  margin-bottom: 86px;
}

.section-heading.testimonials-heading {
  margin-bottom: 82px;
}

.how-it-works h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

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

.hero-steps {
  width: 100%;
  text-align: center;
}

.process-card {
  display: flex;
  min-height: 250px;
  padding: 46px 34px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(58, 33, 18, 0.08);
}

.process-art {
  display: grid;
  place-items: center;
  height: 136px;
  margin-bottom: 18px;
  background: #fff6eb;
  border: 1px solid rgba(234, 223, 210, 0.8);
  border-radius: 8px;
}

.process-art svg {
  width: min(160px, 100%);
  height: 120px;
}

.process-card span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--orange-deep);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.process-card h3 {
  margin: 0;
  font-size: 1.34rem;
  letter-spacing: 0;
}

.process-card p {
  max-width: 270px;
  margin: 14px auto 0;
  font-weight: 600;
}

.card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 22px;
  padding: 0 18px;
  background: var(--orange);
  border: 2px solid var(--ink);
  border-radius: 10px;
  color: white;
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: 4px 5px 0 var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.card-cta.secondary {
  background: white;
  color: var(--ink);
}

.card-cta:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 3px 0 var(--ink);
}

@media (max-width: 860px) {
  .site-header {
    margin-top: 14px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
    padding-bottom: 98px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 8vw, 4.2rem);
  }

  .hero-products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(760px, 100%);
    margin-bottom: 56px;
  }

  .hero-product-card {
    transform: none !important;
  }

  .print-grid,
  .process-grid,
  .tools-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .tool-panel {
    min-height: auto;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .site-header {
    width: min(100% - 20px, 1120px);
    padding: 10px;
  }

  .brand {
    font-size: 1rem;
  }

  .whatsapp-link.small {
    min-height: 40px;
    padding: 0 14px;
    box-shadow: 4px 5px 0 var(--ink);
  }

  .hero,
  .how-it-works,
  .tools-section,
  .testimonials {
    width: min(100% - 20px, 1120px);
  }

  h1 {
    margin-bottom: 16px;
    font-size: 2.34rem;
    line-height: 0.98;
  }

  .hero {
    padding-top: 28px;
    padding-bottom: 82px;
  }

  .hero h1 {
    font-size: clamp(2rem, 9vw, 2.28rem);
  }

  .hero-text {
    margin-bottom: 0;
    max-width: 100%;
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .hero-products {
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 24px auto 52px;
  }

  .hero-product-card {
    min-height: 360px;
  }

  .hero-product-card img {
    min-height: 360px;
  }

  .hero-cta-box {
    grid-template-columns: 1fr;
    gap: 22px;
    width: 100%;
    min-height: 230px;
    padding: 24px;
  }

  .hero-cta-primary {
    width: 100%;
  }

  .process-card {
    min-height: 220px;
    padding: 38px 26px;
  }

  .print-menu {
    padding: 78px 10px 86px;
  }

  .section-heading.print-heading {
    margin-bottom: 54px;
  }

  .print-card {
    min-height: 260px;
    padding: 20px;
  }

  .print-card h3 {
    font-size: 1.6rem;
  }

  .tools-section {
    padding: 78px 0 92px;
  }

  .section-heading.tools-heading {
    margin-bottom: 54px;
  }

  .tool-panel {
    padding: 24px;
  }

  .tool-form {
    grid-template-columns: 1fr;
  }

  .delivery-intro,
  .pincode-row {
    grid-template-columns: 1fr;
  }

  .map-icon {
    justify-content: start;
  }

  .check-button {
    width: 100%;
  }

  .testimonials {
    padding-top: 82px;
    padding-bottom: 96px;
  }

  .section-heading.testimonials-heading {
    margin-bottom: 54px;
  }

  .testimonial-card {
    min-height: auto;
    padding: 26px;
  }

  .testimonial-card p {
    font-size: 1.08rem;
  }

}


.we-print-icon {
    width: 50%;
    margin-top: 50px;
}

.site-logo {
    width: clamp(100px,20%,200px);
}
.footer-logo {
  width: clamp(50px,10%,50px);
}