:root {
  --bg: #eef1f5;
  --ink: #191919;
  --muted: #62656c;
  --line: #d8dde5;
  --white: #ffffff;
  --yellow: #f4ea00;
  --green: #00856f;
  --black: #050505;
  --soft: #f7f8fa;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
}

body.menu-open {
  overflow: hidden;
}

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

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

.grid-bg {
  background-image:
    linear-gradient(to right, rgba(25, 25, 25, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(25, 25, 25, 0.05) 1px, transparent 1px);
  background-size: 25vw 100%, 100% 132px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  pointer-events: none;
}

.brand {
  position: absolute;
  top: 36px;
  left: clamp(22px, 3vw, 54px);
  display: flex;
  width: 100px;
  align-items: center;
  pointer-events: auto;
}

.menu-dot {
  position: absolute;
  top: 30px;
  left: 50%;
  z-index: 90;
  width: 76px;
  height: 58px;
  display: grid;
  place-items: center;
  transform: translateX(-50%);
  border: 0;
  border-radius: 22px;
  background: transparent;
  cursor: pointer;
  pointer-events: auto;
  transition: background 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.site-header.is-scrolled .menu-dot {
  border: 1px solid rgba(216, 221, 229, 0.95);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 32px rgba(24, 30, 40, 0.12);
  backdrop-filter: blur(18px);
}

.site-header.menu-open .menu-dot {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.menu-dot span {
  position: relative;
  width: 30px;
  height: 2px;
  display: block;
  background: var(--ink);
  transition: background 0.2s ease;
}

.menu-dot span::before,
.menu-dot span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  display: block;
  background: var(--ink);
  transition: transform 0.28s ease, top 0.28s ease;
}

.menu-dot span::before {
  top: -9px;
}

.menu-dot span::after {
  top: 9px;
}

.site-header.menu-open .menu-dot span,
.menu-dot.is-open span {
  background: transparent;
}

.site-header.menu-open .menu-dot span::before,
.menu-dot.is-open span::before {
  top: 0;
  transform: rotate(45deg);
}

.site-header.menu-open .menu-dot span::after,
.menu-dot.is-open span::after {
  top: 0;
  transform: rotate(-45deg);
}

.menu-panel {
  position: fixed;
  inset: 0;
  z-index: -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 164px clamp(32px, 10vw, 164px) 88px;
  background: var(--yellow);
  color: var(--ink);
  opacity: 0;
  pointer-events: auto;
  visibility: hidden;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.58s cubic-bezier(0.77, 0, 0.18, 1), opacity 0.24s ease, visibility 0s linear 0.58s;
}

.menu-panel.open {
  z-index: 40;
  display: grid;
  opacity: 1;
  visibility: visible;
  clip-path: inset(0 0 0 0);
  transition: clip-path 0.58s cubic-bezier(0.77, 0, 0.18, 1), opacity 0.24s ease;
}

.menu-primary {
  display: grid;
  align-content: center;
  gap: 18px;
  padding-right: clamp(30px, 8vw, 110px);
}

.menu-primary a {
  width: fit-content;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 4.8vw, 5.15rem);
  font-weight: 800;
  line-height: 0.95;
  transform: translateY(26px);
  opacity: 0;
  transition: transform 0.42s ease, opacity 0.42s ease;
}

.menu-panel.open .menu-primary a,
.menu-panel.open .menu-services,
.menu-panel.open .menu-contact {
  transform: translateY(0);
  opacity: 1;
}

.menu-primary a:nth-child(1) {
  transition-delay: 0.12s;
}

.menu-primary a:nth-child(2) {
  transition-delay: 0.17s;
}

.menu-primary a:nth-child(3) {
  transition-delay: 0.22s;
}

.menu-primary a:nth-child(4) {
  transition-delay: 0.27s;
}

.menu-primary a:nth-child(5) {
  transition-delay: 0.32s;
}

.menu-primary a:nth-child(6) {
  transition-delay: 0.37s;
}

.menu-detail {
  display: grid;
  align-content: center;
  padding-left: clamp(30px, 8vw, 110px);
  border-left: 1px solid var(--ink);
}

.menu-services,
.menu-contact {
  transform: translateY(26px);
  opacity: 0;
  transition: transform 0.42s ease, opacity 0.42s ease;
}

.menu-services {
  transition-delay: 0.24s;
}

.menu-contact {
  transition-delay: 0.34s;
}

.menu-detail h2 {
  margin: 0 0 46px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.55rem, 4.4vw, 4.8rem);
  line-height: 1;
}

.menu-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 44px;
  max-width: 560px;
  margin-bottom: 46px;
}

.menu-services-grid a {
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.2;
}

.menu-contact {
  display: grid;
  max-width: 560px;
  border-top: 1px solid var(--ink);
}

.menu-contact a {
  padding: 20px 0;
  border-bottom: 1px solid var(--ink);
  font-weight: 900;
}

.hello {
  position: absolute;
  top: 0;
  right: 0;
  width: 116px;
  height: 104px;
  display: grid;
  place-items: center;
  padding: 16px;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.85rem;
  font-weight: 900;
  line-height: 1;
  pointer-events: auto;
}

.side-note {
  position: fixed;
  left: clamp(24px, 7.4vw, 126px);
  top: 63vh;
  z-index: 20;
  width: 120px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  pointer-events: none;
}

.side-scroll {
  position: fixed;
  left: clamp(24px, 7.4vw, 126px);
  bottom: 70px;
  z-index: 20;
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  font-size: 1.8rem;
  pointer-events: none;
}

.page-hero {
  min-height: 88vh;
  padding: 170px clamp(22px, 5.8vw, 112px) 0;
}

.page-hero.compact {
  min-height: 66vh;
  padding-bottom: 74px;
}

.hero-title,
.page-title {
  max-width: 1240px;
  margin: 0 auto;
  font-size: clamp(3.15rem, 6.8vw, 7.15rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.96;
}

.page-title {
  max-width: 1120px;
}

.mark {
  display: inline;
  background: linear-gradient(transparent 52%, var(--yellow) 52%);
}

.hero-media {
  width: min(1180px, 78vw);
  margin: 54px 0 0 auto;
  overflow: hidden;
  background: #dcc5b6;
}

.hero-media img {
  width: 100%;
  height: min(42vw, 540px);
  object-fit: cover;
  object-position: center;
  opacity: 0.96;
}

.hero-copy {
  max-width: 620px;
  margin: 38px auto 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 800;
}

.float-whatsapp,
.chat-float {
  position: fixed;
  bottom: 34px;
  z-index: 60;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 900;
}

.float-whatsapp {
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  box-shadow: 0 16px 42px rgba(0, 133, 111, 0.35);
}

.float-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.chat-float {
  right: 28px;
  background: var(--black);
  color: var(--white);
}

.chat-float svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.25;
}

.section {
  padding: 108px clamp(22px, 5.8vw, 112px);
}

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

.section.yellow {
  background: #1432f4;
  color: white;
}

.section.black {
  color: var(--white);
  background: var(--ink);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
  gap: 60px;
  margin-bottom: 62px;
}

.kicker {
  color: white;
  font-size: 0.92rem;
  font-weight: 900;
}

.section.black .kicker,
.section.black .muted,
.section.black p {
  color: rgba(255, 255, 255, 0.68);
}

.section-head h2 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(2rem, 4.1vw, 4.85rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.98;
}

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

.projects {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: clamp(22px, 5vw, 90px);
  align-items: start;
}

.project {
  display: grid;
  gap: 18px;
}

.project.offset {
  margin-top: 120px;
}

.project img {
  width: 100%;
  aspect-ratio: 1.12;
  object-fit: contain;
  padding: 32px;
  background: var(--soft);
}

.project.wide img {
  aspect-ratio: 1.72;
}

.project h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 2.45vw, 2.9rem);
  font-weight: 700;
  line-height: 1;
}

.project p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.services-board {
  display: grid;
  grid-template-columns: 0.38fr 1fr;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.services-intro,
.service-cell {
  min-height: 220px;
  padding: 34px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.services-intro {
  display: grid;
  align-content: space-between;
  background: var(--bg);
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.service-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.service-cell {
  background: var(--white);
}

.service-cell h3 {
  display: flex;
  align-items: start;
  gap: 12px;
  margin: 0 0 18px;
  font-size: clamp(1.35rem, 2vw, 2.25rem);
  line-height: 1.05;
}

.service-cell h3::before {
  content: "";
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin-top: 8px;
  background: var(--yellow);
}

.service-cell p {
  max-width: 520px;
  margin: 0 0 22px;
  color: var(--muted);
  font-weight: 700;
}

.service-cell ul,
.plain-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 800;
}

.service-cell li,
.plain-list li {
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.marquee {
  overflow: hidden;
  padding: 22px 0;
  background: #1432f4;
  color: white;
  font-size: clamp(1.9rem, 4.2vw, 4.8rem);
  font-weight: 900;
  white-space: nowrap;
}

.marquee span {
  display: inline-block;
  padding-left: 100%;
  animation: slide 20s linear infinite;
}

@keyframes slide {
  to {
    transform: translateX(-100%);
  }
}

.process,
.client-wall,
.feature-grid {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

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

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

.step,
.feature-box,
.client-wall div {
  min-height: 230px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.step span,
.feature-box span {
  color: var(--green);
  font-weight: 900;
}

.step h3,
.feature-box h3 {
  margin: 66px 0 12px;
  font-size: 1.28rem;
}

.step p,
.feature-box p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.platform-box {
  display: grid;
  align-content: start;
}

.platform-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 950;
}

.platform-logo {
  width: 54px;
  height: 54px;
  display: grid;
  flex: 0 0 54px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 14px;
  background: var(--white);
}

.platform-logo svg {
  width: 34px;
  height: 34px;
}

.platform-logo path,
.platform-logo rect {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.shopify-brand .platform-logo {
  color: #166534;
  background: #e8f7df;
}

.woo-brand .platform-logo {
  color: #5c2d91;
  background: #f0e8ff;
}

.code-brand .platform-logo {
  color: var(--ink);
  background: var(--yellow);
}

.platform-box h3 {
  margin-top: 58px;
}

.about {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) 1fr;
  gap: 70px;
}

.about-hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: center;
  padding: 150px clamp(22px, 5.8vw, 112px) 94px;
}

.about-hero h1 {
  max-width: 1120px;
  margin: 0;
  font-size: clamp(3.1rem, 7vw, 7.15rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.05;
}

.about-hero-arrow {
  position: absolute;
  right: clamp(36px, 12vw, 170px);
  bottom: 82px;
  width: 84px;
  height: 118px;
}

.about-hero-arrow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 3px;
  height: 108px;
  background: var(--ink);
  transform: translateX(-50%);
}

.about-hero-arrow::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 54px;
  height: 54px;
  border-right: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  transform: translateX(-50%) rotate(45deg);
  transform-origin: center;
}

.about h2 {
  margin: 0;
  font-size: clamp(2.15rem, 4.6vw, 5.25rem);
  font-weight: 900;
  line-height: 0.96;
}

.about p {
  max-width: 680px;
  margin: 14px 0 0;
  color: white;
  font-size: 1rem;
  font-weight: 700;
}

.client-wall {
  grid-template-columns: repeat(5, 1fr);
}

.client-wall div {
  min-height: 112px;
  display: grid;
  place-items: center;
  color: #4f535b;
  font-weight: 900;
  text-align: center;
}

.cta {
  min-height: 80vh;
  display: grid;
  align-items: center;
  padding: 108px clamp(22px, 5.8vw, 112px);
  background: var(--white);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 0.5fr;
  gap: 50px;
  align-items: end;
}

.cta h2 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(2.65rem, 6.4vw, 6.9rem);
  font-weight: 900;
  line-height: 0.93;
}

.cta-actions {
  display: grid;
  gap: 14px;
}

.btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  padding: 14px 22px;
  font-weight: 900;
  transition: transform 0.2s ease, background 0.2s ease;
}

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

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

.btn.dark {
  color: var(--white);
  background: var(--ink);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
}

.contact-card {
  padding: 34px;
  border: 1px solid var(--ink);
  background: var(--white);
}

.contact-card h3 {
  margin: 0 0 18px;
  font-size: 1.65rem;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--line);
  padding: 12px 14px;
  background: var(--soft);
  color: var(--ink);
  font: inherit;
}

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

.contact-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  background: var(--yellow);
}

.contact-hero-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 92px;
  gap: 48px;
  align-items: end;
  padding: 170px clamp(28px, 7vw, 210px) 132px clamp(28px, 7vw, 210px);
}

.contact-hero-copy h1 {
  max-width: 640px;
  margin: 0 0 58px;
  font-size: clamp(3rem, 5.4vw, 6.2rem);
  font-weight: 950;
  line-height: 1.04;
}

.contact-hero-copy h1 span {
  display: inline;
  background: linear-gradient(transparent 58%, var(--white) 58%);
}

.contact-hero-copy p {
  max-width: 580px;
  margin: 0;
  font-size: 1.05rem;
  font-weight: 750;
  line-height: 1.55;
}

.contact-arrow {
  position: relative;
  width: 92px;
  height: 92px;
  display: block;
  align-self: end;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.contact-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 30px;
  width: 34px;
  height: 2px;
  background: var(--ink);
  transform: translateY(-50%);
}

.contact-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50px;
  width: 15px;
  height: 15px;
  border-top: 2px solid var(--ink);
  border-right: 2px solid var(--ink);
  transform: translateY(-50%) rotate(45deg);
}

.contact-panel-form {
  display: grid;
  align-content: center;
  gap: 34px;
  padding: 160px clamp(28px, 5.5vw, 104px) 104px;
  background: #151515;
  color: var(--white);
}

.contact-type {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 22px;
}

.contact-type label,
.privacy-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 900;
}

.contact-type input {
  width: 22px;
  height: 22px;
  accent-color: var(--white);
}

.contact-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.line-field {
  display: grid;
  gap: 10px;
  color: var(--white);
  font-weight: 900;
}

.line-field input,
.line-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 0;
  padding: 10px 0 14px;
  background: transparent;
  color: var(--white);
  font: inherit;
  outline: none;
}

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

.line-field input:focus,
.line-field textarea:focus {
  border-bottom-color: var(--yellow);
}

.privacy-check {
  align-items: flex-start;
  font-size: 0.95rem;
}

.privacy-check input {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  accent-color: var(--yellow);
}

.contact-submit {
  min-height: 58px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 1.15rem;
  font-weight: 950;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.contact-submit:hover {
  background: var(--white);
  color: var(--ink);
  transform: translateY(-2px);
}

.ecommerce-demo-section {
  background: var(--bg);
}

.shop-demo {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.shop-demo-sidebar {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
}

.shop-category {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  background: var(--soft);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-align: left;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.shop-category:hover,
.shop-category.active {
  border-color: var(--ink);
  background: var(--yellow);
  transform: translateY(-1px);
}

.shop-demo-content {
  min-width: 0;
}

.shop-demo-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  padding: 22px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
}

.shop-demo-toolbar h3 {
  margin: 0 0 4px;
  font-size: clamp(1.45rem, 2.2vw, 2.35rem);
}

.shop-demo-toolbar p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.shop-cart {
  position: relative;
}

.shop-cart-pill {
  display: inline-flex;
  min-width: 128px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 10px 16px;
  background: var(--yellow);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  white-space: nowrap;
}

.shop-cart-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 20;
  width: min(360px, calc(100vw - 40px));
  padding: 18px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(24, 30, 40, 0.14);
  opacity: 0;
  transform: translateY(-8px);
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
}

.shop-cart.open .shop-cart-panel {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.shop-cart-panel strong {
  display: block;
  margin-bottom: 12px;
}

.shop-cart-panel p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.shop-cart-panel ul {
  display: grid;
  gap: 10px;
  max-height: 280px;
  margin: 0;
  padding: 0;
  overflow: auto;
  list-style: none;
}

.shop-cart-panel li {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.shop-cart-panel img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 6px;
  background: var(--soft);
}

.shop-cart-panel b,
.shop-cart-panel span {
  display: block;
}

.shop-cart-panel b {
  font-size: 0.92rem;
}

.shop-cart-panel span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

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

.shop-card {
  position: relative;
  display: flex;
  min-height: 520px;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.shop-card:hover,
.shop-card.added {
  border-color: var(--ink);
  box-shadow: 0 18px 44px rgba(24, 30, 40, 0.13);
  transform: translateY(-4px);
}

.shop-card.is-hidden {
  display: none;
}

.shop-added {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  max-width: calc(100% - 28px);
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 10px 14px;
  background: var(--yellow);
  font-size: 0.82rem;
  font-weight: 900;
  opacity: 0;
  transform: translateY(-10px) scale(0.96);
  transition: opacity 0.22s ease, transform 0.22s ease;
  pointer-events: none;
}

.shop-card.added .shop-added {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.shop-image-wrap {
  position: relative;
  display: grid;
  min-height: 270px;
  place-items: center;
  background: linear-gradient(135deg, #f4f6f9, #ffffff);
}

.shop-image-wrap img {
  width: 100%;
  height: 270px;
  object-fit: contain;
  padding: 4px;
  transition: opacity 0.18s ease, transform 0.22s ease;
}

.shop-card:hover .shop-image-wrap img {
  transform: scale(1.045);
}

.shop-flags {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: calc(100% - 76px);
}

.shop-flags span {
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 8px 11px;
  background: var(--yellow);
  font-size: 0.72rem;
  font-weight: 950;
  line-height: 1;
}

.shop-flags .discount {
  color: var(--white);
  background: var(--green);
}

.shop-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 4;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.shop-wishlist svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.shop-wishlist:hover,
.shop-wishlist.active {
  border-color: var(--ink);
  background: var(--yellow);
  transform: scale(1.06);
}

.shop-wishlist.active svg {
  fill: currentColor;
}

.shop-card-body {
  display: grid;
  flex: 1;
  gap: 16px;
  padding: 20px;
}

.shop-card-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.shop-card-top h3 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.1;
}

.shop-card-top strong {
  font-size: 1.05rem;
  white-space: nowrap;
}

.shop-price {
  display: grid;
  justify-items: end;
  gap: 3px;
  min-width: 86px;
}

.shop-price del {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.shop-price span {
  width: fit-content;
  border-radius: 999px;
  padding: 3px 7px;
  background: var(--yellow);
  font-size: 0.72rem;
  font-weight: 950;
}

.shop-card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

.shop-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.shop-swatch {
  width: 28px;
  height: 28px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--swatch);
  box-shadow: 0 0 0 1px var(--line);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.shop-swatch:hover,
.shop-swatch.active {
  box-shadow: 0 0 0 2px var(--ink);
  transform: scale(1.08);
}

.shop-add {
  min-height: 48px;
  align-self: end;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 12px 16px;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.shop-card:hover .shop-add,
.shop-card:focus-within .shop-add {
  opacity: 1;
  transform: translateY(0);
}

.shop-add:hover {
  background: var(--green);
}

footer {
  padding: 48px clamp(22px, 5.8vw, 112px) 26px;
  background: var(--bg);
}

.footer-logo {
  display: inline-flex;
  width: 164px;
  margin-bottom: 44px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) 1fr minmax(180px, 0.22fr);
  gap: 56px;
  padding: 72px 0 62px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.footer-cta h2 {
  max-width: 560px;
  margin: 0 0 18px;
  font-size: clamp(1.85rem, 3vw, 3.4rem);
  line-height: 1.25;
}

.footer-choice {
  display: grid;
  max-width: 500px;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.footer-choice a {
  display: grid;
  min-height: 110px;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px 28px;
  color: var(--ink);
  font-weight: 900;
}

.footer-choice a + a {
  border-left: 1px solid var(--line);
}

.footer-choice-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
}

.footer-choice-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--yellow);
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.footer-contact h3 {
  margin: 0 0 18px;
  font-size: 1rem;
}

.footer-contact a,
.footer-contact p {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 34px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.footer-social {
  display: flex;
  gap: 28px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--ink);
}

.footer-social svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

@media (max-width: 1020px) {
  .brand {
    width: 60px;
  }

  .side-note,
  .side-scroll {
    display: none;
  }

  .page-hero {
    padding-top: 148px;
  }

  .about-hero {
    min-height: auto;
    padding-top: 142px;
  }

  .about-hero-arrow {
    right: 44px;
    bottom: 52px;
    width: 58px;
    height: 86px;
  }

  .about-hero-arrow::before {
    height: 78px;
  }

  .about-hero-arrow::after {
    width: 38px;
    height: 38px;
  }

  .hero-media {
    width: 100%;
  }

  .section-head,
  .projects,
  .services-board,
  .about,
  .cta-inner,
  .contact-layout,
  .contact-hero,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .contact-hero-copy {
    grid-template-columns: 1fr;
    padding: 138px 32px 70px;
  }

  .contact-panel-form {
    padding: 70px 32px;
  }

  .service-grid,
  .service-grid.three,
  .process,
  .feature-grid,
  .client-wall,
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .shop-demo {
    grid-template-columns: 1fr;
  }

  .shop-demo-sidebar {
    position: static;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .shop-demo-sidebar .kicker {
    grid-column: 1 / -1;
  }

  .project.offset {
    margin-top: 0;
  }

  .menu-panel {
    grid-template-columns: 1fr;
    overflow-y: auto;
    padding: 120px 32px 88px;
  }

  .menu-primary {
    align-content: start;
    padding-right: 0;
    padding-bottom: 46px;
  }

  .menu-detail {
    padding-top: 46px;
    padding-left: 0;
    border-top: 1px solid var(--ink);
    border-left: 0;
  }
}

@media (max-width: 640px) {
  .brand {
    top: 28px;
    width: 60px;
  }

  .hello {
    width: 84px;
    height: 74px;
    padding: 12px;
    font-size: 0.68rem;
  }

  .menu-dot {
    top: 20px;
    width: 66px;
    height: 52px;
    border-radius: 20px;
  }

  .menu-dot span,
  .menu-dot span::before,
  .menu-dot span::after {
    width: 26px;
  }

  .menu-panel {
    padding: 104px 22px 92px;
  }

  .menu-primary a {
    font-size: 2.85rem;
  }

  .menu-detail h2 {
    margin-bottom: 28px;
    font-size: 2.65rem;
  }

  .menu-services-grid {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .page-hero {
    min-height: auto;
    padding: 116px 18px 54px;
  }

  .about-hero {
    padding: 120px 18px 88px;
  }

  .about-hero h1 {
    font-size: 2.75rem;
    line-height: 1.08;
  }

  .about-hero-arrow {
    right: 24px;
    bottom: 28px;
    transform: scale(0.78);
    transform-origin: bottom right;
  }

  .hero-title,
  .page-title {
    font-size: 2.75rem;
  }

  .hero-media img {
    height: 280px;
  }

  .section,
  .cta {
    padding: 68px 18px;
  }

  .contact-hero-copy {
    padding: 116px 18px 56px;
  }

  .contact-hero-copy h1 {
    margin-bottom: 32px;
    font-size: 2.8rem;
  }

  .contact-hero-copy p {
    font-size: 0.98rem;
  }

  .contact-arrow {
    width: 72px;
    height: 72px;
  }

  .contact-arrow::before {
    left: 22px;
    width: 28px;
  }

  .contact-arrow::after {
    left: 40px;
  }

  .contact-panel-form {
    gap: 28px;
    padding: 54px 18px 72px;
  }

  .contact-type,
  .contact-two {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .service-grid.three,
  .process,
  .feature-grid,
  .client-wall,
  .shop-grid {
    grid-template-columns: 1fr;
  }

  .shop-demo-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .shop-demo-sidebar {
    grid-template-columns: 1fr 1fr;
    padding: 16px;
  }

  .shop-card {
    min-height: auto;
  }

  .shop-add {
    opacity: 1;
    transform: none;
  }

  .services-intro,
  .service-cell,
  .step,
  .feature-box {
    padding: 24px;
  }

  .float-whatsapp {
    left: auto;
    right: 86px;
    transform: none;
  }
}

@media (max-width: 460px) {
  .grid-bg {
    background-size: 50vw 100%, 100% 112px;
  }

  .brand {
    left: 16px;
    width: 60px;
  }

  .hello {
    width: 76px;
    height: 68px;
    font-size: 0.62rem;
  }

  .page-hero {
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero-title,
  .page-title {
    font-size: 2.38rem;
    line-height: 1.02;
  }

  .about-hero h1 {
    font-size: 2.25rem;
  }

  .hero-copy {
    margin-top: 24px;
    font-size: 0.95rem;
  }

  .section-head {
    gap: 24px;
    margin-bottom: 38px;
  }

  .section-head h2 {
    font-size: 1.85rem;
    line-height: 1.06;
  }

  .projects {
    gap: 46px;
  }

  .project img {
    padding: 20px;
  }

  .project h3 {
    font-size: 1.65rem;
  }

  .shop-demo-sidebar {
    grid-template-columns: 1fr;
  }

  .shop-demo-toolbar,
  .shop-card-body {
    padding: 18px;
  }

  .shop-image-wrap {
    min-height: 235px;
  }

  .shop-image-wrap img {
    height: 230px;
    padding: 4px;
  }

  .shop-cart-pill {
    width: 100%;
  }

  .shop-cart-panel {
    right: auto;
    left: 0;
    width: 100%;
  }

  .services-intro,
  .service-cell,
  .step,
  .feature-box,
  .contact-card {
    padding: 20px;
  }

  .step,
  .feature-box {
    min-height: auto;
  }

  .step h3,
  .feature-box h3 {
    margin-top: 42px;
  }

  .about {
    gap: 30px;
  }

  .about h2,
  .cta h2 {
    font-size: 2.2rem;
    line-height: 1.02;
  }

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

  .cta-inner {
    gap: 32px;
  }

  .btn {
    width: 100%;
    min-height: 52px;
    text-align: center;
  }

  .footer-main {
    gap: 34px;
    padding: 44px 0;
  }

  .footer-logo {
    width: 132px;
    margin-bottom: 30px;
  }

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

  .footer-choice a + a {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .footer-social {
    gap: 18px;
  }

  .float-whatsapp,
  .chat-float {
    bottom: 18px;
    width: 52px;
    height: 52px;
  }

  .float-whatsapp {
    right: 82px;
  }

  .chat-float {
    right: 18px;
  }
}
