/* Google Fonts loaded via <link> in HTML for better performance */

:root {
  --primary: #ff6b6b;
  --primary-dark: #e45151;
  --secondary: #4ecdc4;
  --secondary-dark: #229b94;
  --dark: #292f36;
  --deep: #1f252b;
  --ink: #292f36;
  --muted: #667085;
  --light: #f7fff7;
  --paper: #ffffff;
  --soft: #f6f7f8;
  --line: #e6e8eb;
  --danger: #b42318;
  --whatsapp: #25d366;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header .container,
.hero .container {
  width: min(1660px, calc(100% - 96px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(41, 47, 54, 0.06);
  backdrop-filter: blur(12px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--dark);
  font-size: 25px;
  font-weight: 850;
  font-family: "Manrope", "Inter", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-block;
  flex: 0 0 auto;
  color: transparent;
  background: url("/favicon.svg?v=20260529-4") center / contain no-repeat;
  font-size: 0;
  line-height: 0;
}

.brand-accent {
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #44515f;
  font-size: 15px;
  font-weight: 700;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-toggle {
  display: none;
  min-width: 48px;
  height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--dark);
  font-weight: 800;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(41, 47, 54, 0.14);
}

.btn-primary {
  color: #fff;
  background: var(--primary);
}

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

.btn-secondary {
  color: #fff;
  background: var(--whatsapp);
}

.btn-secondary:hover {
  background: #1fb459;
}

.btn-outline {
  color: var(--dark);
  border-color: #cfd5dc;
  background: #fff;
}

.btn-outline:hover {
  border-color: var(--dark);
}

.btn-light {
  color: var(--dark);
  background: #fff;
}

.btn-block {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 820px;
  display: grid;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(41, 47, 54, 0.92), rgba(41, 47, 54, 0.78) 52%, rgba(41, 47, 54, 0.5)),
    url("/images/optimized/women-dress1-hero.jpg") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 130px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(560px, 640px);
  gap: 72px;
  align-items: center;
  padding: 132px 0 102px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--secondary);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #bff4ef;
}

.hero h1,
.page-hero h1 {
  max-width: 850px;
  margin: 0 0 22px;
  font-size: 56px;
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: 0;
  font-family: "Manrope", "Inter", ui-sans-serif, system-ui, sans-serif;
}

.hero-copy {
  max-width: 650px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
}

.hero-list {
  display: grid;
  gap: 10px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
  font-weight: 700;
}

.hero-list li {
  position: relative;
  padding-left: 30px;
}

.hero-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary);
  font-weight: 900;
}

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

.hero-badges,
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.hero-badge {
  min-height: 94px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-badge strong,
.trust-item strong {
  display: block;
  font-size: 26px;
  line-height: 1;
}

.hero-badge span,
.trust-item span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.form-panel {
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-top: 9px solid var(--primary);
  border-radius: 14px;
  box-shadow: 0 24px 70px rgba(16, 24, 40, 0.28);
}

.form-panel-inner {
  padding: 32px;
}

.hero .form-panel-inner {
  padding: 28px;
}

.form-panel h2,
.form-panel h3 {
  margin: 0 0 8px;
  color: var(--dark);
  font-size: 28px;
  line-height: 1.2;
  font-family: "Manrope", "Inter", ui-sans-serif, system-ui, sans-serif;
}

.form-panel p {
  margin: 0 0 18px;
  color: var(--muted);
}

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

.tally-panel {
  overflow: hidden;
}

.tally-panel .form-panel-inner {
  display: grid;
}

.tally-embed {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.tally-embed iframe {
  display: block;
  width: 100%;
  border: 0;
  background: #fff;
}

.tally-embed-hero iframe {
  height: 480px;
}

.tally-embed-footer iframe {
  height: 340px;
}

.tally-embed-sidebar iframe {
  height: 520px;
}

.tally-mobile-card {
  display: none;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(78, 205, 196, 0.35);
  border-radius: 12px;
  background: rgba(78, 205, 196, 0.08);
}

.tally-mobile-card p {
  margin: 0;
}

.tally-open {
  text-align: center;
}

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

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

.field label {
  color: #344054;
  font-size: 13px;
  font-weight: 800;
}

.hero .field label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.hero .field {
  gap: 0;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 56px;
  padding: 13px 14px;
  border: 1px solid #cfd5dc;
  border-radius: 6px;
  background: #fff;
  color: var(--dark);
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 3px solid rgba(255, 107, 107, 0.22);
  border-color: var(--primary);
}

.form-status {
  min-height: 0;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.privacy-note {
  color: #98a2b3;
  text-align: center;
  font-size: 13px;
}

.form-status.is-error {
  color: var(--danger);
}

.form-trust {
  display: grid;
  gap: 7px;
  margin-top: 2px;
  color: #475467;
  font-size: 13px;
  font-weight: 750;
}

.form-trust span {
  position: relative;
  padding-left: 20px;
}

.form-trust span::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--secondary);
}

.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding: 72px 0 20px;
  background: var(--soft);
}

.trust-panel {
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.trust-item {
  display: grid;
  align-items: center;
  justify-items: center;
  gap: 14px;
  min-height: 178px;
  padding: 30px 26px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(41, 47, 54, 0.04);
  text-align: center;
}

.trust-icon {
  width: auto;
  height: auto;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--primary);
  background: transparent;
  border: 0;
  border-radius: 0;
  margin: 0 auto;
}

.trust-icon svg {
  width: 52px;
  height: 52px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-item:nth-child(even) .trust-icon {
  color: var(--secondary-dark);
}

.trust-item strong {
  color: var(--dark);
  font-size: 21px;
  line-height: 1.2;
}

.trust-item span {
  color: var(--muted);
  margin-top: 4px;
  max-width: 300px;
}

.section {
  padding: 88px 0;
}

.section-soft {
  background: var(--light);
}

.section-muted {
  background: var(--soft);
}

.section-dark {
  color: #fff;
  background: var(--dark);
}

.section-head {
  max-width: 780px;
  margin-bottom: 38px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  margin: 0 0 14px;
  color: var(--dark);
  font-size: 38px;
  line-height: 1.14;
  letter-spacing: 0;
  font-family: "Manrope", "Inter", ui-sans-serif, system-ui, sans-serif;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.section-dark .section-head h2,
.section-dark h2,
.section-dark h3 {
  color: #fff;
}

.section-dark .section-head p,
.section-dark .muted {
  color: rgba(255, 255, 255, 0.72);
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 24px;
}

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

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

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

.card {
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(41, 47, 54, 0.06);
}

.card h3 {
  margin: 0 0 10px;
  color: var(--dark);
  font-size: 21px;
  line-height: 1.25;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.card .link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--primary);
  font-weight: 900;
}

.link-card {
  display: block;
  color: inherit;
}

.category-card {
  position: relative;
  min-height: 360px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  border-radius: 18px;
  background: var(--dark);
  box-shadow: 0 18px 40px rgba(41, 47, 54, 0.16);
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(41, 47, 54, 0.04), rgba(41, 47, 54, 0.82));
}

.category-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-content {
  position: relative;
  z-index: 2;
  padding: 28px;
}

.category-content h3 {
  margin: 0 0 8px;
  font-size: 25px;
  line-height: 1.15;
}

.category-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.category-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  font-size: 13px;
  font-weight: 800;
}

.category-cta {
  display: inline-flex;
  margin-top: 18px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  border-bottom: 2px solid var(--secondary);
}

.process {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  counter-reset: steps;
}

.process-step {
  min-height: 188px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  counter-increment: steps;
}

.process-step::before {
  content: "0" counter(steps);
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--primary);
  font-weight: 900;
}

.process-step h3 {
  margin: 0 0 8px;
  color: var(--dark);
  font-size: 18px;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 52px;
  align-items: center;
}

.media-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(41, 47, 54, 0.14);
}

.media-frame img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

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

.proof {
  padding: 18px;
  border-radius: 14px;
  background: var(--light);
}

.proof strong {
  display: block;
  color: var(--primary);
  font-size: 25px;
  line-height: 1;
}

.proof span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

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

.gallery-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(41, 47, 54, 0.05);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.gallery-card figcaption {
  padding: 12px 14px 14px;
  color: var(--dark);
  font-size: 14px;
  font-weight: 800;
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 26px 0;
}

.capability-list .card {
  padding: 20px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 15px;
  height: 15px;
  border: 3px solid var(--secondary-dark);
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg);
}

.case-study {
  border-top: 5px solid var(--primary);
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--dark);
  background: rgba(78, 205, 196, 0.16);
  font-size: 13px;
  font-weight: 850;
}

.cta-band {
  padding: 52px 0;
  color: #fff;
  background: linear-gradient(135deg, var(--dark), #3d444c 54%, var(--primary));
}

.cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-row h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 34px;
  line-height: 1.16;
}

.cta-row p {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

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

.faq details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(41, 47, 54, 0.05);
}

.faq summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--dark);
  font-weight: 900;
}

.faq details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.page-hero {
  padding: 92px 0 76px;
  background:
    linear-gradient(135deg, rgba(255, 107, 107, 0.12), rgba(78, 205, 196, 0.14)),
    var(--light);
  border-bottom: 1px solid var(--line);
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
}

.breadcrumb {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 14px;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 36px;
  align-items: start;
}

.content-layout > * {
  min-width: 0;
}

.article {
  max-width: 840px;
  min-width: 0;
}

.article h2 {
  margin: 36px 0 12px;
  color: var(--dark);
  font-size: 29px;
  line-height: 1.2;
}

.article h3 {
  margin: 24px 0 8px;
  color: var(--dark);
  font-size: 21px;
}

.article p,
.article li {
  color: #475467;
}

.article ul,
.article ol {
  padding-left: 22px;
}

.table-wrap {
  max-width: 100%;
  overflow-x: auto;
  margin: 22px 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.table-wrap table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}

.table-wrap th,
.table-wrap td {
  padding: 13px 15px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.table-wrap th {
  color: var(--dark);
  background: var(--light);
  font-size: 14px;
  font-weight: 900;
}

.table-wrap tr:last-child td {
  border-bottom: 0;
}

.copy-box {
  margin: 18px 0;
  padding: 20px;
  border: 1px solid rgba(78, 205, 196, 0.45);
  border-radius: 14px;
  background: rgba(78, 205, 196, 0.08);
  overflow-wrap: anywhere;
}

.copy-box p + p {
  margin-top: 10px;
}

.article > .card {
  margin-top: 26px;
}

.sidebar-sticky {
  position: sticky;
  top: 96px;
}

.site-footer {
  padding: 58px 0 28px;
  color: #fff;
  background: var(--deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 30px;
  margin-bottom: 38px;
}

.site-footer .brand {
  color: #fff;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 16px;
}

.site-footer p,
.site-footer a,
.footer-bottom {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a:hover {
  color: #fff;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 14px;
}

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

.mobile-contact-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 110;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 26px rgba(41, 47, 54, 0.12);
  backdrop-filter: blur(10px);
}

.mobile-contact-bar a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: var(--primary);
  font-weight: 900;
}

.mobile-contact-bar a:last-child {
  background: var(--whatsapp);
}

.hidden {
  display: none !important;
}

@media (max-width: 1040px) {
  .site-header .container,
  .hero .container {
    width: min(1180px, calc(100% - 40px));
  }

  .nav-links {
    display: none;
  }

  .nav-actions {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links.is-open {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 10px 20px 18px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 30px rgba(41, 47, 54, 0.12);
  }

  .nav-links.is-open a {
    padding: 12px 0;
  }

  .nav-links.is-open ~ .nav-actions {
    display: flex;
    position: absolute;
    top: 74px;
    right: 20px;
    z-index: 51;
  }

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

  .hero-grid,
  .split,
  .content-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 44px;
    padding: 80px 0 108px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 43px;
  }

  .trust-row,
  .production-gallery,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .sidebar-sticky {
    position: static;
  }
}

@media (max-width: 700px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    right: 18px;
    bottom: 88px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }

  .mobile-contact-bar {
    display: grid;
  }

  body {
    padding-bottom: 76px;
  }

  .container,
  .site-header .container,
  .hero .container {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    gap: 30px;
    padding: 58px 0 96px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 34px;
  }

  .hero-copy,
  .page-hero p,
  .section-head p {
    font-size: 17px;
  }

  .form-panel-inner {
    padding: 22px;
  }

  .tally-mobile-card {
    display: none;
  }

  .tally-embed-hero iframe {
    height: 520px;
  }

  .tally-embed-footer iframe {
    height: 500px;
  }

  .tally-embed-sidebar iframe {
    height: 520px;
  }

  .form-grid,
  .hero-badges,
  .trust-row,
  .production-gallery,
  .grid-2,
  .grid-3,
  .grid-4,
  .capability-list,
  .process,
  .proof-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 62px 0;
  }

  .section-head h2,
  .cta-row h2 {
    font-size: 29px;
  }

  .category-card {
    min-height: 300px;
  }

  .media-frame img {
    min-height: 300px;
  }

  .cta-row,
  .footer-bottom {
    display: grid;
  }
}
