:root {
  --green: #0f172a;
  --green-dark: #0f172a;
  --green-soft: #e2e8f0;
  --blue: #06b6d4;
  --blue-dark: #0e7490;
  --blue-soft: #cffafe;
  --orange: #db2777;
  --orange-soft: #fdf2f8;
  --ink: #0f172a;
  --muted: #607086;
  --line: #dbe6ef;
  --white: #ffffff;
  --panel: #f8fbff;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.11);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 98px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Poppins", Arial, sans-serif;
  background:
    radial-gradient(circle at 4% 9%, rgba(6, 182, 212, 0.13), transparent 30rem),
    radial-gradient(circle at 96% 18%, rgba(219, 39, 119, 0.1), transparent 34rem),
    #f8fbff;
  font-size: 16px;
  line-height: 1.58;
}

body.has-lightbox {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(100% - 32px, 1200px);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 52px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(219, 230, 239, 0.88);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  gap: 24px;
}

.logo {
  position: relative;
  display: inline-flex;
  width: 180px;
  height: 60px;
  flex: 0 0 180px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 15px 0 18px;
  overflow: hidden;
  border: 1px solid rgba(6, 182, 212, 0.22);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(236, 254, 255, 0.92)),
    #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  color: #0f172a;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-align: center;
  text-decoration: none;
}

.logo::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, #06b6d4, #db2777);
}

.logo::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 6px;
  background: linear-gradient(180deg, #db2777, #06b6d4);
}

.logo-icon,
.logo-text {
  position: relative;
  z-index: 1;
}

.logo-icon {
  display: inline-grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, #06b6d4, #db2777);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(6, 182, 212, 0.2);
}

.logo-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.logo-text {
  display: grid;
  gap: 2px;
  line-height: 1.15;
}

.logo-text span {
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 600;
}

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

.site-nav a:hover {
  color: var(--green-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.phone-link {
  color: #db2777;
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.2;
  padding: 14px 22px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, #16a34a, #08723a);
  box-shadow: 0 12px 24px rgba(22, 163, 74, 0.24);
  color: var(--white);
}

.btn-secondary {
  border: 1px solid rgba(219, 39, 119, 0.18);
  background: var(--orange-soft);
  box-shadow: 0 10px 22px rgba(219, 39, 119, 0.12);
  color: var(--orange);
}

.whatsapp-icon {
  display: inline-grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  place-items: center;
}

.whatsapp-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.phone-icon {
  display: inline-grid;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  place-items: center;
  border-radius: 999px;
  background: rgba(219, 39, 119, 0.1);
  color: currentColor;
  font-size: 0.82rem;
  line-height: 1;
}

.btn-catalog {
  background: #ecfeff;
  color: var(--blue-dark);
  box-shadow: 0 10px 22px rgba(6, 182, 212, 0.13);
}

.gallery-actions .btn-catalog {
  min-width: min(100%, 360px);
}

.menu-toggle {
  display: none;
}

.hero {
  overflow: hidden;
  padding-top: 56px;
  padding-bottom: 42px;
}

.gallery-section {
  padding-top: 44px;
}

.hero-grid {
  display: grid;
  align-items: center;
  column-gap: 48px;
  row-gap: 0;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 560px);
}

.hero-copy {
  grid-column: 1;
}

.hero-media {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  grid-column: 1;
}

.eyebrow,
.subheading {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  max-width: 700px;
  margin: 0;
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.1;
}

h2 {
  margin: 0;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.18;
}

h3 {
  margin: 0 0 12px;
  font-size: 1.06rem;
  line-height: 1.38;
}

.hero-subhead {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-buttons .btn {
  width: 252px;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.trust-badges li {
  border: 1px solid rgba(6, 182, 212, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(14, 42, 71, 0.06);
  color: #234159;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 12px 14px;
}

.shape {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.75;
}

.shape-green {
  width: 340px;
  height: 340px;
  right: 50%;
  bottom: 0;
  background: rgba(6, 182, 212, 0.12);
}

.shape-blue {
  width: 420px;
  height: 420px;
  top: 120px;
  right: -130px;
  background: rgba(219, 39, 119, 0.1);
}

.image-placeholder {
  position: relative;
  display: grid;
  width: 100%;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(6, 182, 212, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(6, 182, 212, 0.14), rgba(219, 39, 119, 0.09)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.44) 0 14px, rgba(255, 255, 255, 0.16) 14px 28px);
  box-shadow: var(--shadow);
  color: var(--blue-dark);
  font-weight: 700;
  text-align: center;
}

.image-placeholder span,
.image-placeholder small {
  position: relative;
  z-index: 1;
  display: block;
}

.image-placeholder small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.hero-placeholder {
  aspect-ratio: 4 / 3;
  max-width: 560px;
  margin-left: auto;
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 560px;
  aspect-ratio: 4 / 3;
  margin-left: auto;
  border: 1px solid rgba(6, 182, 212, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 760px;
  margin: 0 auto;
}

.gallery-item {
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.gallery-placeholder {
  aspect-ratio: 4 / 3;
  transition: transform 0.28s ease;
}

.gallery-image {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(6, 182, 212, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.gallery-item:hover .gallery-placeholder {
  transform: scale(1.025);
}

.gallery-actions,
.center-action {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

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

.material-section .material-grid {
  margin-bottom: 0;
}

.usp-section,
.steps-section {
  background: linear-gradient(180deg, rgba(207, 250, 254, 0.42), rgba(253, 242, 248, 0.46));
}

.usp-section {
  padding-top: 34px;
  padding-bottom: 26px;
}

.material-section {
  padding-top: 26px;
  padding-bottom: 18px;
}

.shirt-types {
  padding-top: 18px;
  padding-bottom: 18px;
}

.steps-section {
  padding-top: 18px;
  padding-bottom: 18px;
}

.faq-section {
  padding-top: 18px;
}

.card-grid,
.steps-grid,
.material-grid {
  display: grid;
  gap: 20px;
}

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

.feature-card,
.step-card,
.material-card,
.wide-showcase,
.faq-list details {
  border: 1px solid rgba(219, 230, 239, 0.92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.feature-card,
.step-card {
  padding: 26px;
}

.feature-card p,
.step-card p,
.material-copy p,
.showcase-copy p,
.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.card-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green-soft), var(--blue-soft));
  color: var(--green-dark);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 0;
}

.material-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 980px;
  margin: 0 auto;
}

.material-card {
  overflow: hidden;
}

.square-placeholder {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: none;
}

.material-placeholder {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: none;
}

.material-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
}

.material-copy {
  padding: 22px;
}

.wide-showcase {
  overflow: hidden;
  max-width: 760px;
  margin: 0 auto;
}

.wide-placeholder {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: none;
}

.showcase-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
}

.showcase-copy {
  padding: 18px 20px;
  text-align: center;
}

.type-list {
  margin-top: 10px;
  color: var(--blue-dark) !important;
}

.type-list span {
  display: block;
}

.type-list span + span {
  margin-top: 4px;
}

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

.step-card {
  position: relative;
  padding-top: 68px;
}

.step-number {
  position: absolute;
  top: 22px;
  left: 24px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-weight: 800;
}

.faq-container {
  max-width: 920px;
}

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

.faq-list details {
  padding: 0;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 58px 22px 24px;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 800;
  position: relative;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  color: var(--green);
  font-size: 1.6rem;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.site-footer {
  padding: 64px 0 58px;
  background: #082844;
  color: #eaf4ff;
}

.footer-panel {
  max-width: 1080px;
}

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

.footer-info-card {
  min-height: 224px;
  padding: 38px 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  font-style: normal;
}

.footer-info-card strong {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #ffb86b;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.footer-info-card strong span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #ff7a1a;
}

.footer-info-card p {
  margin: 0;
  color: #eaf4ff;
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.55;
}

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

.footer-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 40px;
}

.footer-btn {
  display: inline-flex;
  min-width: 292px;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 999px;
  color: var(--white);
  font-size: 0.98rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.footer-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.footer-btn span {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.78rem;
}

.footer-btn-whatsapp {
  background: linear-gradient(135deg, #16a34a, #15803d);
  box-shadow: 0 18px 36px rgba(22, 163, 74, 0.28);
}

.footer-btn-call {
  border: 1px solid rgba(219, 39, 119, 0.28);
  background: #fff1f6;
  box-shadow: 0 14px 30px rgba(219, 39, 119, 0.14);
  color: #db2777;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.24);
  color: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-whatsapp:hover {
  box-shadow: 0 16px 32px rgba(37, 211, 102, 0.3);
  transform: translateY(-2px);
}

.floating-whatsapp svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

.mobile-cta {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 26px;
  background: rgba(9, 34, 53, 0.72);
}

.lightbox[aria-hidden="false"] {
  display: flex;
}

.lightbox-frame {
  position: relative;
  width: min(84vw, 520px);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.36);
}

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

.lightbox-image[hidden],
.lightbox-fallback[hidden] {
  display: none;
}

.lightbox-fallback {
  height: 100%;
  border-radius: 0;
  box-shadow: none;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 22px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.8rem;
}

html.js .reveal {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

html.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

@media (max-width: 1100px) {
  .header-inner {
    gap: 14px;
  }

  .site-nav {
    gap: 16px;
  }

  .header-actions .btn {
    display: none;
  }

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

  .hero-grid {
    grid-template-columns: 1fr;
    row-gap: 22px;
    max-width: 760px;
    margin-inline: auto;
  }

  .hero-copy,
  .hero-media,
  .hero-actions {
    grid-column: 1;
  }

  .hero-copy {
    order: 1;
    text-align: center;
  }

  .hero-media {
    order: 2;
    grid-row: auto;
  }

  .hero-actions {
    order: 3;
    align-items: center;
  }

  .hero-actions .trust-badges {
    order: 1;
  }

  .hero-actions .hero-buttons {
    order: 2;
  }

  .hero-image,
  .hero-placeholder {
    margin-inline: auto;
  }

  .hero-subhead {
    margin-inline: auto;
  }

  h1 {
    margin-inline: auto;
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2.15rem;
  }
}

@media (max-width: 820px) {
  body {
    padding-bottom: 82px;
  }

  .container {
    width: min(100% - 24px, 1200px);
  }

  .section {
    padding: 30px 0;
  }

  .header-inner {
    min-height: 74px;
  }

  .logo {
    width: 150px;
    height: 50px;
    flex-basis: 150px;
    gap: 8px;
    padding: 0 12px 0 14px;
    font-size: 0.72rem;
  }

  .logo-icon {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
  }

  .logo-icon svg {
    width: 16px;
    height: 16px;
  }

  .menu-toggle {
    display: inline-grid;
    width: 48px;
    height: 48px;
    place-items: center;
    margin-left: auto;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    color: transparent;
    cursor: pointer;
    font-size: 0;
  }

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

  .site-nav {
    position: absolute;
    top: 74px;
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
    overflow: hidden;
  }

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

  .site-nav a {
    padding: 15px 18px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .header-actions {
    display: none;
  }

  .hero {
    padding-top: 24px;
    padding-bottom: 30px;
  }

  .gallery-section {
    padding-top: 28px;
  }

  .usp-section {
    padding-top: 28px;
    padding-bottom: 16px;
  }

  .material-section {
    padding-top: 16px;
    padding-bottom: 12px;
  }

  .shirt-types {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .steps-section {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .faq-section {
    padding-top: 12px;
  }

  .section-heading {
    margin-bottom: 18px;
  }

  .hero-grid {
    row-gap: 18px;
  }

  .hero-copy,
  .hero-media,
  .hero-actions {
    grid-column: 1;
  }

  .hero-actions .trust-badges {
    order: 1;
  }

  .hero-actions .hero-buttons {
    order: 2;
  }

  h1 {
    font-size: 2rem;
    line-height: 1.1;
  }

  h2 {
    font-size: 1.78rem;
    line-height: 1.2;
  }

  h3 {
    font-size: 1.02rem;
  }

  .hero-subhead {
    font-size: 0.92rem;
    line-height: 1.6;
    margin-top: 14px;
  }

  .hero-buttons {
    margin-top: 22px;
  }

  .trust-badges {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 0;
  }

  .trust-badges li {
    padding: 10px 12px;
  }

  .gallery-grid {
    gap: 12px;
  }

  .material-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-info-card {
    min-height: auto;
    padding: 28px 24px;
  }

  .footer-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 26px;
  }

  .footer-btn {
    min-width: 0;
    width: 100%;
  }

  .floating-whatsapp {
    display: none;
  }

  .mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 70;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -12px 26px rgba(14, 42, 71, 0.12);
  }

  .mobile-cta .btn {
    min-height: 52px;
    padding: 9px 8px;
    gap: 6px;
    font-size: 0.78rem;
    line-height: 1.2;
    text-align: center;
  }

  .mobile-cta .btn-primary {
    justify-content: center;
  }

  .mobile-cta-label {
    display: grid;
    gap: 2px;
  }

  .mobile-cta .phone-icon {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
    font-size: 0.68rem;
  }

  .mobile-cta .whatsapp-icon {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 1.86rem;
    line-height: 1.08;
  }

  .hero-buttons,
  .gallery-actions,
  .center-action {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .card-grid.four,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .step-card,
  .material-copy,
  .showcase-copy {
    padding: 20px;
  }

  .step-card {
    display: grid;
    gap: 10px;
    padding: 20px;
  }

  .step-number {
    position: static;
    width: 30px;
    height: 30px;
    font-size: 0.86rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .trust-badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .trust-badges li {
    font-size: 0.76rem;
    line-height: 1.35;
    padding: 9px 10px;
  }

  .gallery-placeholder {
    border-radius: 8px;
    font-size: 0.86rem;
  }

  .gallery-placeholder small {
    font-size: 0.68rem;
  }

  .faq-list summary {
    padding: 18px 50px 18px 18px;
  }

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