:root {
  --radius: 1.125rem;
  --color-slate: oklch(0.286 0.034 247);
  --color-blue: oklch(0.534 0.107 248);
  --color-cloud: oklch(0.982 0.005 247);
  --color-ink: oklch(0.245 0.014 250);
  --color-stone: oklch(0.857 0.019 80);
  --color-copper: oklch(0.586 0.114 47);
  --color-green: oklch(0.553 0.107 153);
  --color-blue-tint: oklch(0.962 0.018 245);
  --color-border-dark: oklch(0.343 0.027 247);
  --color-text-muted: oklch(0.532 0.018 250);
  --shadow-soft: 0 12px 30px oklch(0.286 0.034 247 / 0.08);
  --shadow-medium: 0 18px 48px oklch(0.286 0.034 247 / 0.12);
  --shadow-strong: 0 24px 70px oklch(0.286 0.034 247 / 0.18);
  --transition-fast: 180ms ease;
  --transition-base: 280ms ease;
  --transition-slow: 420ms ease;
  --font-sans: "Inter", "Segoe UI", Arial, sans-serif;
  --font-display: "Sora", "Inter", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--color-cloud);
  color: var(--color-ink);
  font-family: var(--font-sans);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea {
  font: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: var(--color-slate);
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}

::selection {
  background: var(--color-blue);
  color: var(--color-cloud);
}

.container-jw {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 32px;
}

.section {
  padding: 96px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-blue);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  background: var(--color-copper);
  content: "";
}

.eyebrow-light {
  color: var(--color-stone);
}

.display {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 600;
  line-height: 1.12;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-base),
    background-color var(--transition-base);
  will-change: transform;
}

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

.btn-primary {
  background: var(--color-blue);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background: oklch(0.48 0.12 248);
  box-shadow: var(--shadow-medium);
}

.btn-secondary {
  border-color: oklch(0.286 0.034 247 / 0.16);
  background: transparent;
  color: var(--color-slate);
}

.btn-secondary:hover {
  background: var(--color-blue-tint);
}

.btn-whatsapp {
  background: var(--color-green);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.btn-whatsapp:hover {
  box-shadow: var(--shadow-medium);
}

.btn-mybuilder {
  background: #39ff14;
  color: #12210c;
  border-color: #39ff14;
  box-shadow: var(--shadow-soft);
}

.btn-mybuilder:hover {
  background: #2fe30e;
  box-shadow: var(--shadow-medium);
}

.btn-facebook {
  background: #1877f2;
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.btn-facebook:hover {
  background: #1669d8;
  box-shadow: var(--shadow-medium);
}

.btn-left {
  justify-content: flex-start;
}

.label-mobile {
  display: none;
}

.contact-brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  overflow: hidden;
}

.contact-brand-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.contact-brand-icon--mybuilder img {
  transform: scale(1.3);
  transform-origin: center;
}

.card-jw {
  border: 1px solid oklch(0.286 0.034 247 / 0.08);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  padding: 32px;
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base);
}

.card-jw:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.roofline {
  width: 100%;
  height: 14px;
  background-image:
    linear-gradient(135deg, transparent 49%, oklch(0.286 0.034 247 / 0.12) 49% 51%, transparent 51%),
    linear-gradient(45deg, transparent 49%, oklch(0.286 0.034 247 / 0.12) 49% 51%, transparent 51%);
  background-size: 28px 14px;
}

.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 60;
  height: 2px;
  pointer-events: none;
}

.scroll-progress__bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--color-blue), var(--color-copper));
  transition: width 120ms linear;
}

.site-header {
  position: fixed;
  top: 14px;
  right: 0;
  left: 0;
  z-index: 50;
  transition: all var(--transition-base);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 14px 10px 18px;
  border: 1px solid oklch(0.286 0.034 247 / 0.08);
  border-radius: 18px;
  background: oklch(0.982 0.005 247 / 0.7);
  box-shadow: 0 6px 20px oklch(0.286 0.034 247 / 0.05);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
}

.site-header.is-scrolled .header-bar {
  background: oklch(0.982 0.005 247 / 0.92);
  box-shadow: 0 12px 30px oklch(0.286 0.034 247 / 0.1);
}

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

.brand-mark {
  border-radius: 10px;
  object-fit: cover;
}

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

.brand-title {
  color: var(--color-slate);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.brand-subtitle {
  color: var(--color-text-muted);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.jw-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.jw-nav a {
  color: var(--color-slate);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.jw-nav a:hover,
.footer-links a:hover {
  color: var(--color-blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.header-quote-btn {
  min-height: 44px;
  padding: 0 20px;
  font-size: 0.88rem;
}

.jw-burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid oklch(0.286 0.034 247 / 0.14);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
}

.jw-burger span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--color-slate);
}

.mobile-menu {
  display: none;
  margin-top: 8px;
  padding: 18px;
  border: 1px solid oklch(0.286 0.034 247 / 0.08);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-medium);
  flex-direction: column;
  gap: 10px;
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu a {
  padding: 10px 6px;
  color: var(--color-slate);
  font-weight: 500;
}

.mobile-menu-cta {
  width: 100%;
  margin-top: 4px;
  color: #fff !important;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 160px;
  padding-bottom: 96px;
}

.jw-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: center;
}

.hero-title {
  margin-top: 18px;
  color: var(--color-slate);
}

.hero-title-accent {
  color: var(--color-blue);
}

.hero-text {
  max-width: 540px;
  margin-top: 22px;
  color: var(--color-text-muted);
  font-size: 1.125rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-actions .btn {
  min-width: 0;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 36px;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-slate);
  font-size: 0.92rem;
  font-weight: 500;
}

.point-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--color-blue-tint);
  color: var(--color-blue);
  font-size: 12px;
  font-weight: 700;
}

.jw-hero-images {
  position: relative;
}

.hero-main-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  box-shadow: var(--shadow-strong);
}

.hero-main-frame img,
.hero-secondary-frame img,
.jw-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-secondary-frame {
  position: absolute;
  bottom: -28px;
  left: -28px;
  overflow: hidden;
  width: 55%;
  aspect-ratio: 4 / 5;
  border: 6px solid var(--color-cloud);
  border-radius: 22px;
  box-shadow: var(--shadow-medium);
}

.hero-badge {
  position: absolute;
  top: 24px;
  right: -16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid oklch(0.286 0.034 247 / 0.08);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-medium);
  padding: 14px 18px;
}

.hero-stars,
.review-stars {
  color: var(--color-copper);
}

.hero-badge-copy {
  color: var(--color-text-muted);
  font-size: 0.78rem;
  line-height: 1.3;
}

.hero-badge-copy strong {
  color: var(--color-slate);
}

.trust-section {
  padding: 0 0 24px;
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid oklch(0.286 0.034 247 / 0.08);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.trust-strip-grid > div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 24px;
  color: var(--color-slate);
  font-size: 0.92rem;
  font-weight: 500;
  border-right: 1px solid oklch(0.286 0.034 247 / 0.06);
}

.trust-strip-grid > div:last-child {
  border-right: 0;
}

.trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--color-copper);
}

.section-intro {
  max-width: 720px;
  margin-bottom: 56px;
}

.section-intro--tight {
  margin-bottom: 0;
}

.section-intro .h2,
.contact-grid .h2 {
  margin-top: 14px;
}

.section-intro p,
.contact-copy {
  margin-top: 18px;
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.services-grid,
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.service-card {
  position: relative;
  overflow: hidden;
}

.service-accent {
  position: absolute;
  top: 0;
  left: 32px;
  width: 36px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: var(--color-blue);
}

.service-number {
  color: var(--color-copper);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.service-card h3 {
  margin-top: 12px;
  color: var(--color-slate);
  font-size: 1.35rem;
  font-weight: 600;
}

.service-card p {
  margin-top: 12px;
  color: var(--color-text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.gallery-section {
  background: #fff;
}

.gallery-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
}

.gallery-heading .section-intro {
  max-width: 620px;
}

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

.jw-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: var(--color-blue-tint);
  box-shadow: var(--shadow-soft);
  min-height: 0;
}

.jw-gallery figure img {
  transition: transform 600ms ease;
}

.jw-gallery figure:hover img {
  transform: scale(1.04);
}

.jw-g1 {
  aspect-ratio: 1 / 1;
}

.jw-g2 {
  aspect-ratio: 1 / 1;
}

.jw-g3 {
  aspect-ratio: 1 / 1;
}

.jw-g4 {
  aspect-ratio: 1 / 1;
}

.jw-g1 img {
  object-position: 42% 46%;
}

.jw-g2 img {
  object-position: center 68%;
}

.jw-g3 img {
  object-position: center 54%;
}

.jw-g4 img {
  object-position: center 62%;
}

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

.review-source {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--color-blue-tint);
  color: var(--color-blue);
  padding: 6px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.review-card {
  display: flex;
  flex-direction: column;
}

.review-card p {
  margin-top: 18px;
  color: var(--color-ink);
  font-size: 1rem;
  line-height: 1.65;
}

.review-name {
  margin-top: 22px;
  border-top: 1px solid oklch(0.286 0.034 247 / 0.08);
  padding-top: 18px;
  color: var(--color-slate);
  font-size: 0.9rem;
  font-weight: 600;
}

.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.why-section {
  position: relative;
  overflow: hidden;
  background: var(--color-slate);
  color: #fff;
}

.roofline-top {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.5;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}

.why-title {
  margin-top: 14px;
  color: #fff;
}

.why-copy {
  margin-top: 18px;
  color: oklch(0.857 0.019 80 / 0.85);
  font-size: 1.05rem;
  line-height: 1.65;
}

.why-cta {
  margin-top: 28px;
}

.why-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.why-point {
  border: 1px solid oklch(1 0 0 / 0.08);
  border-radius: 20px;
  background: oklch(0.343 0.027 247 / 0.45);
  padding: 26px;
  backdrop-filter: blur(6px);
}

.why-point-line {
  width: 28px;
  height: 2px;
  margin-bottom: 14px;
  background: var(--color-copper);
}

.why-point h3 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
}

.why-point p {
  margin-top: 8px;
  color: oklch(0.982 0.005 247 / 0.78);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}

.contact-call-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-platform-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

#contact-form-fields {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-label {
  color: var(--color-slate);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.field-required {
  color: var(--color-copper);
}

.contact-form input,
.contact-form textarea {
  border: 1px solid oklch(0.286 0.034 247 / 0.14);
  border-radius: 14px;
  background: #fff;
  color: var(--color-ink);
  outline: none;
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.contact-form input {
  height: 52px;
  padding: 0 16px;
}

.contact-form textarea {
  padding: 14px;
  resize: vertical;
  min-height: 120px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-blue);
  box-shadow: 0 0 0 4px oklch(0.534 0.107 248 / 0.12);
}

.form-submit {
  align-self: flex-start;
  min-width: 196px;
  margin-top: 6px;
}

.form-note {
  margin-top: -4px;
  color: var(--color-text-muted);
  font-size: 0.82rem;
  text-align: center;
}

.form-success {
  padding: 40px 12px;
  text-align: center;
}

.form-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--color-blue-tint);
  color: var(--color-blue);
  font-size: 28px;
  font-weight: 700;
}

.form-success h3 {
  margin-top: 16px;
  color: var(--color-slate);
  font-size: 1.3rem;
}

.form-success p {
  margin-top: 8px;
  color: var(--color-text-muted);
}

.site-footer {
  padding: 56px 0 0;
  background: var(--color-slate);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}

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

.footer-brand-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
}

.footer-brand-subtitle,
.footer-heading {
  margin-bottom: 16px;
  color: var(--color-stone);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-copy {
  max-width: 380px;
  margin-top: 18px;
  color: oklch(0.857 0.019 80 / 0.8);
  font-size: 0.95rem;
  line-height: 1.65;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: oklch(0.982 0.005 247 / 0.85);
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}

.footer-bottom {
  margin-top: 40px;
  padding: 0 0 32px;
}

.footer-bottom__line {
  width: 100%;
  height: 1px;
  background: oklch(1 0 0 / 0.14);
}

.footer-bottom__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 30px;
  color: oklch(0.982 0.005 247 / 0.82);
  font-size: 0.82rem;
}

.footer-bottom__copyright,
.footer-bottom__madeby {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-bottom__logo {
  display: block;
  width: auto;
  height: 25.2px;
  object-fit: contain;
  filter: none;
}

.footer-bottom__logo-link {
  display: inline-flex;
  align-items: center;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 55;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border: 0;
  border-radius: 999px;
  background: var(--color-green);
  color: #fff;
  box-shadow: var(--shadow-strong);
  transition:
    transform 200ms ease,
    box-shadow var(--transition-base);
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 72px oklch(0.286 0.034 247 / 0.2);
}

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

@media (max-width: 992px) {
  .section {
    padding: 84px 0;
  }

  .header-bar {
    gap: 14px;
  }

  .jw-hero-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .jw-hero-grid {
    gap: 64px;
  }

  .why-grid,
  .contact-grid {
    gap: 40px;
  }

  .jw-hero-images {
    max-width: 520px;
    margin: 0 auto;
  }

  .gallery-heading {
    align-items: flex-start;
  }

  .gallery-heading .btn {
    min-height: 48px;
  }
}

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

  .brand-subtitle {
    letter-spacing: 0.12em;
  }

  .jw-burger {
    display: block;
  }
}

@media (max-width: 768px) {
  .container-jw {
    padding-inline: 18px;
  }

  .section {
    padding: 72px 0;
  }

  .card-jw {
    padding: 26px;
  }

  .header-bar {
    padding: 10px 12px 10px 14px;
  }

  .hero-actions .btn,
  .gallery-heading .btn,
  .review-actions .btn {
    width: 100%;
  }

  .review-actions {
    flex-direction: column;
  }

  .trust-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip-grid > div {
    border-right: 0;
    border-bottom: 1px solid oklch(0.286 0.034 247 / 0.06);
  }

  .trust-strip-grid > div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .jw-gallery {
    grid-template-columns: 1fr;
    max-width: 560px;
    gap: 16px;
  }

  .jw-g1,
  .jw-g2,
  .jw-g3,
  .jw-g4 {
    grid-column: auto;
    aspect-ratio: 4 / 3;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom__content {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 22px;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 96px;
  }

  .display {
    font-size: clamp(2.15rem, 11vw, 3rem);
  }

  .h2 {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
  }

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

  .header-bar {
    gap: 10px;
  }

  .brand-copy {
    min-width: 0;
  }

  .brand-subtitle {
    display: block;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
  }

  .hero-section {
    padding-top: 136px;
    padding-bottom: 72px;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .hero-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 18px;
  }

  .hero-points li {
    font-size: 0.88rem;
  }

  .gallery-heading {
    margin-bottom: 32px;
  }

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

  .contact-call-row,
  .contact-platform-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-platform-row .btn,
  .contact-call-row .btn,
  .contact-actions > .btn {
    width: 100%;
  }

  .contact-call-row .btn,
  .contact-platform-row .btn {
    min-height: 50px;
    padding-inline: 18px;
    font-size: 0.88rem;
  }

  .contact-platform-row .label-full {
    display: none;
  }

  .contact-platform-row .label-mobile {
    display: inline;
  }

  .form-submit {
    width: 100%;
    min-width: 0;
    align-self: stretch;
  }

  .footer-bottom__logo {
    height: 22px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 64.4px;
    height: 64.4px;
  }
}

@media (max-width: 560px) {
  .container-jw {
    padding-inline: 16px;
  }

  .section {
    padding: 64px 0;
  }

  .card-jw {
    padding: 22px;
    border-radius: 22px;
  }

  .footer-brand,
  .footer-copy,
  .footer-heading,
  .footer-links,
  .footer-bottom__content,
  .footer-bottom__copyright,
  .footer-bottom__madeby {
    text-align: center;
    justify-content: center;
  }

  .footer-brand,
  .footer-bottom__content {
    align-items: center;
  }

  .footer-links {
    align-items: center;
  }

  .hero-secondary-frame {
    left: -10px;
    bottom: -18px;
    width: 50%;
  }

  .hero-badge {
    right: 0;
    top: 12px;
    gap: 8px;
    max-width: 168px;
    padding: 10px 12px;
  }

  .hero-badge-copy {
    font-size: 0.72rem;
  }

  .why-points,
  .trust-strip-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip-grid > div {
    padding: 18px 18px;
    border-bottom: 1px solid oklch(0.286 0.034 247 / 0.06);
  }

  .trust-strip-grid > div:last-child {
    border-bottom: 0;
  }

  .footer-bottom__content {
    gap: 12px;
  }
}

@media (max-width: 420px) {
  .brand-title {
    font-size: 0.88rem;
  }

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

  .point-check {
    flex-shrink: 0;
  }

  .floating-whatsapp {
    width: 59.8px;
    height: 59.8px;
  }

  .contact-call-row,
  .contact-platform-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .contact-call-row .btn,
  .contact-platform-row .btn {
    min-height: 48px;
    padding-inline: 12px;
    font-size: 0.8rem;
    gap: 8px;
  }

  .contact-brand-icon {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
  }
}

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