:root {
  --bg: #f7f4ef;
  --surface: rgba(255, 255, 255, 0.82);
  --text: #243142;
  --muted: #576473;
  --line: rgba(36, 49, 66, 0.12);
  --teal: #0f7c87;
  --mint: #57cfa0;
  --lime: #b5d94c;
  --gold: #f4b13d;
  --coral: #f36b57;
  --pink: #d63c8c;
  --navy: #2c3850;
  --shadow: 0 24px 60px rgba(43, 56, 80, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Trebuchet MS", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(87, 207, 160, 0.22), transparent 28%),
    radial-gradient(circle at top right, rgba(244, 177, 61, 0.18), transparent 24%),
    linear-gradient(180deg, #fffdf9 0%, var(--bg) 100%);
}

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

.site-shell {
  min-height: 100vh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 5vw;
  backdrop-filter: blur(18px);
  background: rgba(255, 253, 249, 0.74);
  border-bottom: 1px solid rgba(36, 49, 66, 0.08);
}

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

.header-logo {
  display: block;
  width: 180px;
  height: 60px;
  object-fit: contain;
}

.footer-logo {
  display: block;
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px 16px 18px 18px;
  background:
    linear-gradient(160deg, var(--lime), var(--mint) 33%, var(--gold) 52%, var(--coral) 72%, var(--pink));
  clip-path: path("M24 2 C34 11 44 23 44 35 C44 51 34 61 24 61 C14 61 4 51 4 35 C4 23 14 11 24 2 Z");
  box-shadow: inset 0 -8px 12px rgba(28, 34, 52, 0.2);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong,
.hero h1,
.section-heading h2,
.split-panel h2,
.contact-card h2,
.service-card h3,
.process-grid h3,
.stats-card strong {
  font-family: "Barlow", "Segoe UI", sans-serif;
}

.brand-copy strong {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-copy em {
  margin-top: 4px;
  font-style: normal;
  font-size: 0.95rem;
  color: var(--mint);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.96rem;
}

.nav a {
  color: var(--muted);
}

.hero,
.section,
.trusted-strip {
  padding-left: 5vw;
  padding-right: 5vw;
}

.section {
  scroll-margin-top: 104px;
}

#home {
  scroll-margin-top: 96px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 40px;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 72px;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.83rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
}

.hero h1 {
  margin: 0;
  max-width: 12ch;
  font-weight: 700;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.94;
}

.lead {
  max-width: 58ch;
  margin: 20px 0 0;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--muted);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  box-shadow: 0 18px 40px rgba(15, 124, 135, 0.22);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(36, 49, 66, 0.1);
}

.shop-link {
  display: block;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.shop-link:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 124, 135, 0.32);
  box-shadow: 0 28px 50px rgba(43, 56, 80, 0.16);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li,
.service-card,
.stats-card,
.process-grid article,
.contact-card,
.art-card {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-points li {
  min-height: 110px;
  padding: 18px;
  border-radius: 18px;
  line-height: 1.5;
}

.hero-art {
  display: flex;
  justify-content: center;
}

.hero-banner-image {
  display: block;
  width: min(100%, 540px);
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero-art.has-live-banner .art-card {
  display: none;
}

.art-card {
  width: min(100%, 460px);
  border-radius: 28px;
  padding: 28px;
}

.art-drop {
  position: relative;
  width: min(260px, 70vw);
  aspect-ratio: 1 / 1.2;
  margin: 0 auto 28px;
  filter: drop-shadow(0 24px 36px rgba(44, 56, 80, 0.22));
}

.drop-segment {
  position: absolute;
  inset: 0;
  clip-path: path("M130 8 C174 42 232 104 232 171 C232 246 185 300 130 300 C75 300 28 246 28 171 C28 104 86 42 130 8 Z");
  border-radius: 50%;
}

.segment-a {
  background: linear-gradient(180deg, rgba(181, 217, 76, 0.95), rgba(74, 193, 125, 0.95));
  transform: translateX(-24px) rotate(-10deg);
}

.segment-b {
  background: linear-gradient(180deg, rgba(249, 224, 99, 0.95), rgba(255, 154, 73, 0.95));
  transform: scale(0.92);
}

.segment-c {
  background: linear-gradient(180deg, rgba(250, 148, 61, 0.95), rgba(226, 58, 100, 0.95));
  transform: translateX(20px) rotate(9deg) scale(0.88);
}

.segment-d {
  background: linear-gradient(180deg, rgba(255, 103, 165, 0.82), rgba(56, 45, 138, 0.92));
  transform: translateX(38px) rotate(15deg) scale(0.78);
}

.art-grid {
  display: grid;
  gap: 14px;
}

.art-grid div {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
}

.art-grid span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
}

.art-grid strong {
  font-size: 1rem;
  line-height: 1.45;
}

.trusted-strip {
  padding-top: 18px;
  padding-bottom: 18px;
  background: linear-gradient(90deg, rgba(87, 207, 160, 0.12), rgba(244, 177, 61, 0.1), rgba(214, 60, 140, 0.12));
  border-top: 1px solid rgba(36, 49, 66, 0.06);
  border-bottom: 1px solid rgba(36, 49, 66, 0.06);
}

.trusted-strip p {
  margin: 0;
  text-align: center;
  font-weight: 600;
  color: var(--navy);
}

.section {
  padding-top: 88px;
  padding-bottom: 88px;
}

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

.section-heading h2,
.split-panel h2,
.contact-card h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.35rem);
  line-height: 1;
}

.service-grid,
.shop-grid,
.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.shop-card,
.service-card,
.stats-card,
.contact-card {
  border-radius: 24px;
}

.shop-card,
.service-card {
  padding: 24px;
}

.shop-card,
.service-card,
.stats-card,
.process-grid article,
.contact-card,
.art-card {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.shop-card h3,
.service-card h3,
.process-grid h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
}

.shop-card p,
.service-card p,
.split-panel p,
.process-grid p,
.stats-card p,
.contact-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.web-apps-section {
  background: #f7fbf9;
}

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

.web-apps-heading > p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

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

.web-app-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.web-app-preview {
  display: grid;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  place-items: center;
  background: #e9f5f0;
}

.web-app-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.web-app-preview-placeholder span,
.web-app-preview-placeholder {
  color: var(--teal);
  font-size: 2rem;
  font-weight: 800;
}

.web-app-content {
  display: flex;
  min-height: 250px;
  align-items: flex-start;
  flex-direction: column;
  padding: 22px;
}

.web-app-meta {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.web-app-category,
.web-app-status {
  font-size: 0.75rem;
  font-weight: 700;
}

.web-app-category {
  color: var(--teal);
}

.web-app-status {
  padding: 5px 8px;
  border-radius: 999px;
}

.web-app-status.is-active {
  color: #087044;
  background: #dff7eb;
}

.web-app-status.is-coming-soon {
  color: #8a5b08;
  background: #fff1cc;
}

.web-app-card h3 {
  margin: 20px 0 10px;
  font-size: 1.35rem;
}

.web-app-card p {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.65;
}

.web-app-open {
  width: 100%;
  margin-top: auto;
  text-align: center;
}

.web-app-open:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.dynamic-shop-item {
  position: relative;
}

.shop-item-preview {
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-bottom: 18px;
  border-radius: 18px;
  object-fit: cover;
  background: rgba(87, 207, 160, 0.1);
}

.shop-offer-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--coral);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.shop-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 18px;
}

.shop-price-row span {
  color: var(--muted);
  text-decoration: line-through;
}

.shop-price-row strong {
  color: var(--teal);
  font-family: "Barlow", "Segoe UI", sans-serif;
  font-size: 1.25rem;
}

.design-store-prices {
  align-items: flex-start;
}

.design-store-prices strong {
  line-height: 1.45;
}

.design-store-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.design-store-actions .button {
  width: 100%;
  min-height: 42px;
  justify-content: center;
  font-size: 0.92rem;
}

.design-store-actions button {
  border: 0;
}

.design-purchase-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 18px;
}

.design-purchase-modal[hidden] {
  display: none;
}

.design-purchase-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23, 36, 44, 0.62);
  backdrop-filter: blur(8px);
}

.design-purchase-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
  width: min(980px, 100%);
  max-height: min(92vh, 820px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 90px rgba(23, 36, 44, 0.32);
}

.design-purchase-preview {
  display: grid;
  min-height: 420px;
  place-items: center;
  padding: 22px;
  color: var(--muted);
  background: linear-gradient(135deg, rgba(87, 207, 160, 0.16), rgba(244, 177, 61, 0.16));
  font-weight: 800;
}

.design-purchase-preview img {
  width: 100%;
  max-height: 560px;
  border-radius: 8px;
  object-fit: contain;
  background: #fff;
}

.design-purchase-form {
  display: grid;
  gap: 14px;
  padding: 28px;
}

.design-purchase-form h3,
.design-purchase-form p {
  margin: 0;
}

.design-purchase-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 700;
}

.design-purchase-form input,
.design-purchase-form select {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  border: 1px solid rgba(44, 56, 80, 0.18);
  border-radius: 8px;
  outline: none;
}

.selected-price,
.upi-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(15, 124, 135, 0.16);
  border-radius: 8px;
  background: rgba(87, 207, 160, 0.08);
}

.selected-price span,
.upi-box small,
.upi-box span {
  color: var(--muted);
}

.selected-price strong {
  color: var(--teal);
  font-family: "Barlow", "Segoe UI", sans-serif;
  font-size: 1.4rem;
}

.upi-box {
  justify-content: flex-start;
}

.upi-box img {
  width: 86px;
  height: 86px;
  border-radius: 8px;
  object-fit: contain;
  background: #fff;
}

.upi-box div {
  display: grid;
  gap: 4px;
}

.trending-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
}

.trending-head h3,
.trending-copy strong {
  margin: 0;
  font-family: "Barlow", "Segoe UI", sans-serif;
}

.trending-head h3 {
  font-size: 1.7rem;
}

.trending-note {
  max-width: 34ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.trending-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.trending-preview {
  display: grid;
  place-items: center;
  min-height: 180px;
  border-radius: 20px;
  font-weight: 700;
  color: var(--muted);
  background:
    linear-gradient(135deg, rgba(87, 207, 160, 0.14), rgba(244, 177, 61, 0.16)),
    rgba(255, 255, 255, 0.72);
}

.trending-preview img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  border-radius: inherit;
  object-fit: cover;
}

.trending-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 14px;
}

.trending-copy span {
  font-size: 0.92rem;
  color: var(--teal);
  white-space: nowrap;
}

.shop-tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(87, 207, 160, 0.12);
}

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

.split-panel {
  min-height: 420px;
  padding: 36px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
}

.split-panel::after {
  content: "";
  position: absolute;
  inset: auto -10% -28% auto;
  width: 280px;
  aspect-ratio: 1;
  border-radius: 32px;
  transform: rotate(18deg);
  opacity: 0.35;
}

.print-panel {
  background: linear-gradient(180deg, rgba(255, 209, 126, 0.34), rgba(255, 255, 255, 0.72));
  border: 1px solid rgba(243, 107, 87, 0.2);
}

.print-panel::after {
  background: linear-gradient(135deg, rgba(243, 107, 87, 0.58), rgba(244, 177, 61, 0.24));
}

.digital-panel {
  background: linear-gradient(180deg, rgba(97, 211, 175, 0.26), rgba(255, 255, 255, 0.72));
  border: 1px solid rgba(15, 124, 135, 0.2);
}

.digital-panel::after {
  background: linear-gradient(135deg, rgba(15, 124, 135, 0.55), rgba(214, 60, 140, 0.24));
}

.split-panel ul {
  margin: 24px 0 0;
  padding-left: 18px;
  line-height: 1.9;
}

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

.process-grid article {
  padding: 24px;
  border-radius: 22px;
}

.process-grid span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 16px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--pink));
}

.stats-card {
  padding: 24px;
}

.stats-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.contact {
  padding-bottom: 110px;
}

.contact-card {
  padding: 40px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 251, 244, 0.92)),
    linear-gradient(120deg, rgba(87, 207, 160, 0.14), rgba(214, 60, 140, 0.1));
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 56px;
  align-items: center;
}

.about-copy h2 {
  max-width: 680px;
  margin: 0 0 22px;
  font-family: "Barlow", "Segoe UI", sans-serif;
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1.02;
}

.about-copy p:not(.eyebrow) {
  max-width: 760px;
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.8;
}

.about-promises {
  display: grid;
  gap: 12px;
}

.about-promises article {
  display: flex;
  min-height: 64px;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 24px rgba(36, 49, 66, 0.06);
}

.about-promises span {
  position: relative;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(87, 207, 160, 0.2);
}

.about-promises span::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 6px;
  width: 7px;
  height: 11px;
  border: solid var(--teal);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 22px;
  align-items: stretch;
}

.contact-info-card,
.contact-form {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.contact-detail-list {
  display: grid;
  gap: 2px;
}

.contact-detail-list div {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.contact-detail-list span,
.map-placeholder span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-detail-list strong,
.contact-detail-list a {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-actions {
  margin-top: 22px;
}

.map-placeholder {
  min-height: 180px;
  margin-top: 26px;
  padding: 28px;
  display: grid;
  align-content: center;
  border: 1px dashed rgba(15, 124, 135, 0.4);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(87, 207, 160, 0.12), rgba(244, 177, 61, 0.12)),
    #f8faf9;
}

.map-placeholder strong {
  font-size: 1.25rem;
}

.map-placeholder p {
  margin: 6px 0 0;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form-heading h3 {
  margin: 0;
  font-family: "Barlow", "Segoe UI", sans-serif;
  font-size: 2rem;
}

.contact-form .field input,
.contact-form .field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(36, 49, 66, 0.16);
  border-radius: 8px;
  color: var(--text);
  background: #fff;
  font: inherit;
}

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

.contact-form .field input:focus,
.contact-form .field textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(15, 124, 135, 0.12);
}

.contact-form button {
  width: fit-content;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.contact-form-status {
  min-height: 24px;
  margin: 0;
  color: var(--teal);
  font-weight: 600;
}

.enquiry-popup {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 18px;
}

.enquiry-popup[hidden] {
  display: none;
}

.enquiry-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 50, 56, 0.46);
  backdrop-filter: blur(8px);
}

.enquiry-popup-card {
  position: relative;
  width: min(580px, 100%);
  max-height: min(760px, calc(100vh - 36px));
  overflow: auto;
  padding: 30px;
  border: 1px solid rgba(36, 49, 66, 0.12);
  border-radius: 18px;
  background:
    radial-gradient(circle at top left, rgba(87, 207, 160, 0.18), transparent 32%),
    #fff;
  box-shadow: 0 28px 70px rgba(43, 56, 80, 0.24);
  animation: popup-rise 220ms ease both;
}

.enquiry-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.78);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.enquiry-popup-form {
  margin-top: 20px;
}

.enquiry-popup-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  background: #fff;
  color: var(--text);
  font: inherit;
}

.enquiry-popup-form select:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(15, 124, 135, 0.12);
}

.popup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@keyframes popup-rise {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.site-footer {
  padding: 58px clamp(22px, 5vw, 72px) 24px;
  color: #eef6f5;
  background: #183238;
}

.footer-grid {
  display: grid;
  grid-template-columns:
    minmax(220px, 1.25fr)
    minmax(120px, 0.7fr)
    minmax(170px, 1fr)
    minmax(220px, 1.25fr)
    minmax(150px, 0.85fr);
  gap: 28px;
}

.footer-brand .brand {
  width: fit-content;
  padding: 8px;
  border-radius: 8px;
  color: #fff;
  background: #fff;
}

.footer-brand p {
  max-width: 340px;
  margin: 20px 0 0;
  color: rgba(238, 246, 245, 0.7);
  line-height: 1.7;
}

.footer-column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 11px;
}

.footer-column h3 {
  margin: 0 0 7px;
  color: #fff;
  font-size: 1rem;
}

.footer-column a,
.footer-legal a {
  color: rgba(238, 246, 245, 0.72);
  line-height: 1.45;
}

.footer-contact a {
  overflow-wrap: anywhere;
}

.footer-column a:hover,
.footer-legal a:hover {
  color: #fff;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 14px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom p {
  margin: 0;
  color: rgba(238, 246, 245, 0.72);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 22px;
}

.upload-page h1,
.upload-card h2,
.preview-top strong,
.rate-total {
  font-family: "Barlow", "Segoe UI", sans-serif;
}

.upload-hero {
  padding-bottom: 28px;
}

.product-hero .section-heading {
  max-width: 860px;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 20px;
  align-items: start;
}

.product-order-card {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.product-order-card h2,
.delivery-card h3,
.order-summary h3 {
  margin: 0;
  font-family: "Barlow", "Segoe UI", sans-serif;
}

.product-order-card h2 {
  font-size: clamp(2.1rem, 4vw, 3rem);
}

.product-intro {
  max-width: 58ch;
  margin: 18px 0 26px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.upload-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.upload-card h2,
.preview-top h2 {
  margin: 0 0 20px;
  font-size: 1.55rem;
}

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

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

.size-helper-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
}

.size-helper-label {
  display: block;
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field {
  display: grid;
  gap: 8px;
}

.field span,
.summary-strip span,
.preview-meta span,
.preview-top strong,
.rate-breakdown,
.rate-note {
  color: var(--muted);
}

.field span {
  font-size: 0.92rem;
  font-weight: 600;
}

.field input,
.field select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(36, 49, 66, 0.14);
  border-radius: 14px;
  font: inherit;
  color: var(--text);
  background: rgba(255, 255, 255, 0.92);
}

.summary-strip,
.preview-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.summary-strip div,
.preview-meta div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
}

.summary-strip strong,
.preview-meta strong {
  display: block;
  margin-top: 6px;
  font-size: 1.1rem;
}

.preview-details {
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
}

.preview-details-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.preview-details strong {
  display: block;
  font-family: "Barlow", "Segoe UI", sans-serif;
  font-size: 1.05rem;
  line-height: 1.55;
}

.preview-card,
.rate-card {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 251, 244, 0.92)),
    linear-gradient(120deg, rgba(87, 207, 160, 0.14), rgba(214, 60, 140, 0.1));
}

.product-preview-card {
  padding: 34px;
  border-radius: 32px;
}

.preview-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.preview-top strong {
  font-size: 1.05rem;
}

.preview-stage {
  display: grid;
  place-items: center;
  min-height: 360px;
  margin-top: 24px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(87, 207, 160, 0.12), rgba(244, 177, 61, 0.12)),
    rgba(255, 255, 255, 0.62);
}

.product-preview-stage {
  min-height: 420px;
}

.preview-box {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-width: 120px;
  min-height: 90px;
  max-width: 100%;
  border: 2px dashed rgba(15, 124, 135, 0.38);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
}

.preview-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-preview-meta {
  margin-top: 22px;
}

.preview-placeholder {
  padding: 24px;
  text-align: center;
  color: var(--muted);
  font-weight: 600;
}

.rate-total {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
}

.rate-price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.rate-old {
  color: #d92d20;
  font-size: 1.5rem;
  text-decoration: line-through;
}

.rate-breakdown {
  margin-top: 10px;
  font-size: 1rem;
}

.rate-note {
  margin: 18px 0 0;
  max-width: 58ch;
  line-height: 1.7;
}

.product-price-block {
  margin-top: 28px;
}

.delivery-card,
.order-summary {
  margin-top: 24px;
  padding: 22px 22px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
}

.delivery-card h3,
.order-summary h3 {
  font-size: 1.24rem;
}

.delivery-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.delivery-list li,
.summary-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.delivery-list span,
.summary-row span {
  color: var(--text);
  font-weight: 600;
}

.delivery-list strong,
.summary-row strong {
  color: var(--teal);
}

.action-button {
  width: 100%;
  margin-top: 26px;
  min-height: 60px;
  font-size: 1.3rem;
}

.reveal {
  animation: rise-in 700ms ease both;
}

.flex-page .section {
  position: relative;
}

.flex-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: center;
}

.flex-hero-copy h1,
.contact-design-card h2,
.form-head h2,
.gallery-card strong {
  font-family: "Barlow", "Segoe UI", sans-serif;
}

.flex-hero-copy h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 0.95;
}

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

.flex-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.hero-stat-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.hero-stat-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-stat-card strong {
  font-size: 1rem;
  line-height: 1.5;
}

.flex-hero-visual {
  display: flex;
  justify-content: center;
}

.flex-visual-frame {
  position: relative;
  width: min(100%, 520px);
  min-height: 460px;
  padding: 28px;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(36, 49, 66, 0.1);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.86), rgba(255, 252, 245, 0.92)),
    linear-gradient(120deg, rgba(87, 207, 160, 0.18), rgba(244, 177, 61, 0.14));
  box-shadow: var(--shadow);
}

.flex-visual-layer {
  position: absolute;
  border-radius: 28px;
  transform: rotate(-8deg);
}

.layer-one {
  inset: 14% 16% auto 10%;
  height: 160px;
  background: linear-gradient(135deg, rgba(15, 124, 135, 0.18), rgba(87, 207, 160, 0.32));
}

.layer-two {
  inset: auto 10% 14% 18%;
  height: 180px;
  transform: rotate(8deg);
  background: linear-gradient(135deg, rgba(244, 177, 61, 0.18), rgba(243, 107, 87, 0.24));
}

.flex-visual-card {
  position: absolute;
  inset: auto 32px 32px 32px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(12px);
}

.flex-visual-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.flex-visual-card strong {
  display: block;
  font-family: "Barlow", "Segoe UI", sans-serif;
  font-size: 1.45rem;
  line-height: 1.3;
}

.flex-visual-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.gallery-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 54px rgba(43, 56, 80, 0.16);
}

.gallery-preview {
  display: grid;
  place-items: center;
  min-height: 220px;
  border-radius: 20px;
  font-family: "Barlow", "Segoe UI", sans-serif;
  font-size: 1.28rem;
  font-weight: 700;
  color: #fff;
}

.gradient-one {
  background: linear-gradient(135deg, #0f7c87, #57cfa0);
}

.gradient-two {
  background: linear-gradient(135deg, #243142, #d63c8c);
}

.gradient-three {
  background: linear-gradient(135deg, #f4b13d, #f36b57);
}

.gallery-card strong {
  display: block;
  margin-top: 16px;
  font-size: 1.28rem;
}

.gallery-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-design-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 32px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 252, 246, 0.92)),
    linear-gradient(120deg, rgba(87, 207, 160, 0.14), rgba(214, 60, 140, 0.08));
  box-shadow: var(--shadow);
}

.contact-design-card h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.contact-design-card p:last-child,
.contact-design-card p {
  color: var(--muted);
  line-height: 1.75;
}

.whatsapp-button {
  min-width: 200px;
}

.flex-order-layout {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
}

.flex-form-card,
.flex-summary-card {
  border-radius: 30px;
}

.form-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.save-badge {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(87, 207, 160, 0.16);
  color: var(--teal);
  font-size: 0.9rem;
  font-weight: 700;
}

.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(36, 49, 66, 0.14);
  border-radius: 14px;
  font: inherit;
  color: var(--text);
  background: rgba(255, 255, 255, 0.92);
  resize: vertical;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.form-actions .button {
  flex: 1 1 220px;
}

.contact-colourmint-card {
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
}

.inline-whatsapp {
  margin-top: 16px;
  min-width: 100%;
}

.total-row {
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(36, 49, 66, 0.1);
}

.total-row strong {
  font-size: 1.35rem;
}

.starter-page .section {
  position: relative;
}

.starter-hero {
  display: grid;
  min-height: 520px;
  align-items: center;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.88), rgba(255, 252, 246, 0.66)),
    linear-gradient(135deg, rgba(87, 207, 160, 0.22), rgba(244, 177, 61, 0.16), rgba(214, 60, 140, 0.1));
  border-bottom: 1px solid rgba(36, 49, 66, 0.08);
}

.starter-hero-copy {
  max-width: 860px;
}

.starter-hero-copy h1,
.starter-package-card h3,
.starter-summary-card h2 {
  font-family: "Barlow", "Segoe UI", sans-serif;
}

.starter-hero-copy h1 {
  margin: 0;
  max-width: 13ch;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.96;
}

.starter-package-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  max-width: 920px;
}

.starter-package-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 252, 246, 0.92)),
    linear-gradient(120deg, rgba(87, 207, 160, 0.14), rgba(244, 177, 61, 0.1));
  box-shadow: var(--shadow);
  animation: rise-in 700ms ease both;
}

.identity-card {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 252, 246, 0.92)),
    linear-gradient(120deg, rgba(15, 124, 135, 0.12), rgba(214, 60, 140, 0.1));
}

.starter-package-card h3 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding: 12px 14px;
  border-radius: 16px;
  color: var(--text);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.74);
}

.starter-package-card p {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.7;
}

.starter-order-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
  gap: 20px;
  align-items: start;
}

.starter-form-card,
.starter-summary-card {
  border-radius: 30px;
}

.starter-reference-preview {
  display: grid;
  min-height: 240px;
  place-items: center;
  margin-top: 18px;
  border: 2px dashed rgba(15, 124, 135, 0.28);
  border-radius: 22px;
  color: var(--muted);
  font-weight: 700;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(87, 207, 160, 0.12), rgba(244, 177, 61, 0.12)),
    rgba(255, 255, 255, 0.72);
  background-position: center;
  background-size: cover;
}

.print-upload-zone {
  position: relative;
  display: grid;
  min-height: 150px;
  place-items: center;
  padding: 22px;
  border: 2px dashed rgba(15, 124, 135, 0.34);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(87, 207, 160, 0.1), rgba(244, 177, 61, 0.1)),
    rgba(255, 255, 255, 0.72);
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.print-upload-zone.is-dragging {
  transform: translateY(-2px);
  border-color: var(--teal);
  background: rgba(87, 207, 160, 0.16);
}

.print-upload-zone input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.upload-zone-copy {
  display: grid;
  gap: 8px;
  text-align: center;
}

.upload-zone-copy strong {
  font-family: "Barlow", "Segoe UI", sans-serif;
  font-size: 1.12rem;
}

.upload-zone-copy span,
.file-info-card span {
  color: var(--muted);
}

.file-info-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
}

.file-info-card strong {
  display: block;
  font-family: "Barlow", "Segoe UI", sans-serif;
}

.file-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.file-actions .button {
  min-height: 42px;
  padding: 9px 14px;
}

.service-actions {
  margin-top: 0;
}

.starter-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.monthly-page .section {
  position: relative;
}

.monthly-hero {
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.88), rgba(255, 252, 246, 0.66)),
    linear-gradient(135deg, rgba(15, 124, 135, 0.18), rgba(87, 207, 160, 0.16), rgba(244, 177, 61, 0.12));
}

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

.monthly-package-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.monthly-package-card h3 {
  margin: 0 0 12px;
  font-family: "Barlow", "Segoe UI", sans-serif;
  font-size: 1.5rem;
}

.monthly-package-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.landing-page .section {
  position: relative;
}

.landing-hero {
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.88), rgba(255, 252, 246, 0.66)),
    linear-gradient(135deg, rgba(87, 207, 160, 0.2), rgba(244, 177, 61, 0.14), rgba(15, 124, 135, 0.12));
}

.landing-package-grid,
.comparison-grid,
.landing-timeline,
.landing-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.landing-package-card,
.comparison-card,
.landing-timeline article,
.landing-preview-card,
.faq-list details {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.landing-package-card,
.comparison-card,
.landing-timeline article,
.landing-preview-card {
  padding: 24px;
  border-radius: 24px;
}

.landing-package-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.featured-package {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 252, 246, 0.92)),
    linear-gradient(120deg, rgba(87, 207, 160, 0.18), rgba(244, 177, 61, 0.16));
  border-color: rgba(15, 124, 135, 0.22);
}

.landing-package-card h3,
.comparison-card h3,
.landing-timeline h3,
.landing-preview-card strong,
.faq-list summary {
  font-family: "Barlow", "Segoe UI", sans-serif;
}

.landing-package-card h3,
.comparison-card h3,
.landing-timeline h3 {
  margin: 0 0 12px;
  font-size: 1.45rem;
}

.landing-package-card p,
.comparison-card p,
.landing-timeline p,
.faq-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.landing-feature-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 24px;
  padding: 0;
  list-style: none;
}

.landing-feature-list li {
  padding: 11px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  line-height: 1.45;
}

.landing-package-card .button {
  width: 100%;
  margin-top: auto;
}

.landing-timeline article span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--teal), var(--pink));
}

.landing-preview-window {
  display: grid;
  min-height: 210px;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 20px;
  color: #fff;
  font-family: "Barlow", "Segoe UI", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(135deg, var(--teal), var(--mint));
}

.dynamic-preview {
  background-position: center;
  background-size: cover;
}

.preview-warm {
  background: linear-gradient(135deg, var(--gold), var(--coral));
}

.preview-bright {
  background: linear-gradient(135deg, var(--navy), var(--pink));
}

.landing-preview-card strong {
  display: block;
  font-size: 1.2rem;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 920px;
}

.faq-list details {
  border-radius: 20px;
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  font-size: 1.1rem;
  font-weight: 700;
}

.faq-list p {
  padding: 0 20px 20px;
}

.landing-conversion-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  gap: 28px;
  align-items: center;
  min-height: 640px;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.9), rgba(255, 252, 246, 0.68)),
    linear-gradient(135deg, rgba(87, 207, 160, 0.22), rgba(244, 177, 61, 0.16), rgba(214, 60, 140, 0.1));
  border-bottom: 1px solid rgba(36, 49, 66, 0.08);
}

.landing-hero-copy h1,
.hero-offer-slider h2,
.offer-slide h3,
.featured-service-grid h3,
.special-offer-card h3,
.review-grid strong,
.why-grid h3 {
  font-family: "Barlow", "Segoe UI", sans-serif;
}

.landing-hero-copy h1 {
  margin: 0;
  max-width: 13ch;
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.95;
}

.conversion-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.conversion-metrics span {
  padding: 10px 14px;
  border: 1px solid rgba(15, 124, 135, 0.16);
  border-radius: 999px;
  color: var(--teal);
  background: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.hero-offer-slider {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 252, 246, 0.94)),
    linear-gradient(120deg, rgba(87, 207, 160, 0.16), rgba(214, 60, 140, 0.09));
  box-shadow: var(--shadow);
}

.offer-slider-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.hero-offer-slider h2 {
  margin: 0;
  font-size: 1.65rem;
}

.offer-slider-controls {
  display: flex;
  gap: 8px;
}

.offer-slider-controls button,
.offer-dots button {
  border: 1px solid rgba(36, 49, 66, 0.1);
  cursor: pointer;
  color: var(--text);
  background: rgba(255, 255, 255, 0.82);
}

.offer-slider-controls button {
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
}

.offer-slider-track {
  position: relative;
  min-height: 330px;
}

.offer-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  border-radius: 24px;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 260ms ease, transform 260ms ease;
  background:
    linear-gradient(135deg, rgba(15, 124, 135, 0.9), rgba(44, 56, 80, 0.94)),
    linear-gradient(120deg, rgba(244, 177, 61, 0.26), rgba(214, 60, 140, 0.18));
  color: #fff;
}

.offer-slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.offer-slide span {
  width: fit-content;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-slide h3 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}

.offer-slide p {
  margin: 16px 0 24px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.offer-slide .button {
  width: fit-content;
  background: #fff;
  color: var(--navy);
  box-shadow: none;
}

.offer-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.offer-dots button {
  width: 11px;
  height: 11px;
  padding: 0;
  border-radius: 999px;
}

.offer-dots button.is-active {
  width: 28px;
  background: var(--teal);
}

.featured-service-grid,
.special-offer-grid,
.review-grid,
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.featured-service-grid article,
.special-offer-card,
.review-grid article,
.why-grid article {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.featured-service-grid article,
.special-offer-card,
.review-grid article,
.why-grid article {
  padding: 24px;
  border-radius: 24px;
}

.featured-service-grid h3,
.special-offer-card h3,
.why-grid h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.featured-service-grid p,
.special-offer-card p,
.review-grid p,
.why-grid p,
.landing-preview-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.special-offer-card {
  display: flex;
  flex-direction: column;
}

.special-offer-card .button {
  width: fit-content;
  margin-top: 20px;
}

.review-grid article {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 252, 246, 0.92)),
    linear-gradient(120deg, rgba(87, 207, 160, 0.12), rgba(244, 177, 61, 0.1));
}

.review-grid p {
  font-size: 1.04rem;
}

.review-grid strong {
  display: block;
  margin-top: 18px;
  color: var(--teal);
}

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

.why-grid span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--teal), var(--pink));
}

.landing-whatsapp-cta {
  background:
    linear-gradient(135deg, rgba(15, 124, 135, 0.94), rgba(44, 56, 80, 0.94)),
    linear-gradient(120deg, rgba(87, 207, 160, 0.22), rgba(244, 177, 61, 0.18));
}

.landing-whatsapp-cta h2,
.landing-whatsapp-cta .eyebrow,
.landing-whatsapp-cta p {
  color: #fff;
}

.landing-whatsapp-cta .button-primary {
  background: #fff;
  color: var(--navy);
  box-shadow: none;
}

.sticky-order-button {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--pink));
  box-shadow: 0 20px 44px rgba(15, 124, 135, 0.28);
  font-weight: 800;
}

.sales-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.sales-section-heading p:last-child {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

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

.ad-service-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.ad-service-image {
  position: relative;
  aspect-ratio: 8 / 5;
  overflow: hidden;
  background: #eef4f2;
}

.ad-service-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ad-price-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  max-width: calc(100% - 24px);
  padding: 7px 10px;
  border-radius: 6px;
  color: #fff;
  background: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
}

.ad-service-copy {
  padding: 20px;
}

.ad-service-copy h3 {
  margin: 13px 0 8px;
  font-family: "Barlow", "Segoe UI", sans-serif;
  font-size: 1.35rem;
}

.ad-service-copy p {
  min-height: 76px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.ad-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 14px;
}

.ad-price-row span {
  color: var(--muted);
  text-decoration: line-through;
}

.ad-price-row strong {
  color: var(--teal);
  font-size: 1.15rem;
}

.ad-service-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 18px;
}

.ad-service-actions .button {
  min-width: 0;
  min-height: 42px;
  padding: 9px 10px;
  border-radius: 7px;
  font-size: 0.86rem;
  text-align: center;
}

.ad-service-actions .button-whatsapp {
  grid-column: 1 / -1;
}

.button-whatsapp {
  color: #fff;
  background: #168b55;
}

.service-loading {
  grid-column: 1 / -1;
  margin: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
}

.sales-enquiry-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 32px;
  align-items: start;
}

.sales-enquiry-copy {
  position: sticky;
  top: 118px;
}

.sales-enquiry-copy h2 {
  margin: 0 0 18px;
  font-family: "Barlow", "Segoe UI", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.04;
}

.sales-enquiry-copy > p:last-of-type {
  color: var(--muted);
  line-height: 1.75;
}

.sales-enquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.sales-enquiry-form .field:nth-child(3),
.sales-enquiry-form .field:nth-child(4),
.sales-file-field,
.sales-enquiry-form .contact-form-status {
  grid-column: 1 / -1;
}

.sales-enquiry-form input,
.sales-enquiry-form select,
.sales-enquiry-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(36, 49, 66, 0.16);
  border-radius: 8px;
  color: var(--text);
  background: #fff;
  font: inherit;
}

.sales-enquiry-form textarea {
  resize: vertical;
}

.sales-file-field small {
  color: var(--muted);
}

.sales-enquiry-form button {
  width: fit-content;
}

.sales-enquiry-form button:disabled {
  cursor: wait;
  opacity: 0.65;
}

@media (max-width: 1080px) {
  .starter-order-layout {
    grid-template-columns: 1fr;
  }

  .landing-conversion-hero {
    grid-template-columns: 1fr;
  }

  .landing-package-grid,
  .comparison-grid,
  .landing-timeline,
  .landing-preview-grid,
  .featured-service-grid,
  .special-offer-grid,
  .review-grid,
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ad-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sales-enquiry-layout {
    grid-template-columns: 1fr;
  }

  .sales-enquiry-copy {
    position: static;
  }

  .design-purchase-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .starter-package-grid,
  .monthly-package-grid,
  .feature-list,
  .landing-package-grid,
  .comparison-grid,
  .landing-timeline,
  .landing-preview-grid,
  .featured-service-grid,
  .special-offer-grid,
  .review-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

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

  .ad-service-grid,
  .sales-enquiry-form {
    grid-template-columns: 1fr;
  }

  .sales-enquiry-form .field,
  .sales-enquiry-form button,
  .sales-enquiry-form .contact-form-status {
    grid-column: 1;
  }

  .ad-service-copy p {
    min-height: 0;
  }

  .sales-enquiry-form {
    padding: 24px;
  }

  .offer-slider-head {
    flex-direction: column;
  }

  .offer-slide {
    padding: 22px;
  }

  .sticky-order-button {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .starter-contact-actions {
    width: 100%;
  }

  .starter-contact-actions .button {
    width: 100%;
  }

  .file-info-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .design-purchase-preview {
    min-height: 260px;
  }

  .design-store-actions {
    grid-template-columns: 1fr;
  }

  .selected-price,
  .upi-box {
    align-items: flex-start;
    flex-direction: column;
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .hero,
  .split-showcase,
  .process-grid,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .web-app-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .flex-hero,
  .flex-order-layout,
  .product-layout {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 100%;
  }

  .hero-points,
  .flex-gallery-grid,
  .flex-hero-stats,
  .shop-grid,
  .trending-grid,
  .service-grid,
  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .header-logo {
    width: 165px;
    height: 55px;
  }

  .nav {
    gap: 12px 16px;
  }

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

  .web-app-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-points,
  .shop-grid,
  .trending-grid,
  .service-grid,
  .stats,
  .process-grid,
  .field-grid,
  .summary-strip,
  .preview-meta {
    grid-template-columns: 1fr;
  }

  .contact-design-card,
  .form-head,
  .trending-head,
  .trending-copy,
  .delivery-list li,
  .summary-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .split-panel,
  .contact-card,
  .upload-card,
  .product-order-card {
    padding: 28px;
  }

  .contact-info-card,
  .contact-form {
    padding: 24px;
  }

  .contact-actions,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-actions .button,
  .contact-form button {
    width: 100%;
  }

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

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

  .section {
    scroll-margin-top: 148px;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  #home {
    scroll-margin-top: 132px;
  }
}

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

  .footer-brand {
    grid-column: auto;
  }
}
