:root {
  --navy: #08233d;
  --navy-2: #0e3655;
  --teal: #13b8b2;
  --teal-dark: #0e938f;
  --ink: #12283a;
  --muted: #627487;
  --line: #dbe4e7;
  --paper: #ffffff;
  --mist: #f3f7f6;
  --sand: #f3efe7;
  --warm: #c68b4a;
  --success: #1b7f5c;
  --shadow: 0 24px 70px rgba(8, 35, 61, .13);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, "Noto Sans Hebrew", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
body.dialog-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.shell { width: var(--shell); margin-inline: auto; }
.skip-link {
  position: fixed;
  inset-block-start: 8px;
  inset-inline-start: 8px;
  z-index: 999;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--navy);
  box-shadow: var(--shadow);
}
.skip-link:focus { transform: none; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  border-bottom: 1px solid rgba(255,255,255,.16);
  background: rgba(5, 27, 48, .78);
  backdrop-filter: blur(16px);
  color: #fff;
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  background: rgba(8, 35, 61, .96);
  box-shadow: 0 10px 35px rgba(0,0,0,.14);
}
.header-inner {
  width: min(1320px, calc(100% - 34px));
  min-height: 78px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand { flex: 0 0 auto; }
.brand img {
  width: 190px;
  height: auto;
  filter: brightness(0) invert(1);
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-inline: auto;
  font-size: .94rem;
}
.desktop-nav a {
  position: relative;
  color: rgba(255,255,255,.88);
  white-space: nowrap;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 -8px;
  width: 0;
  height: 2px;
  margin: auto;
  background: var(--teal);
  transition: width .2s ease;
}
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 9px; }
.lang-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-weight: 700;
}
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.1;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button:focus-visible, button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(19,184,178,.34);
  outline-offset: 3px;
}
.button-primary {
  background: var(--teal);
  color: #042837;
  box-shadow: 0 9px 24px rgba(19,184,178,.23);
}
.button-primary:hover { background: #2bcac4; box-shadow: 0 12px 28px rgba(19,184,178,.3); }
.button-ghost {
  border-color: rgba(255,255,255,.34);
  background: rgba(255,255,255,.06);
  color: inherit;
}
.button-light { background: #fff; color: var(--navy); }
.button-outline { border-color: var(--navy); background: transparent; color: var(--navy); }
.button-whatsapp { background: #25d366; color: #082d1c; }
.button-large { min-height: 52px; padding-inline: 25px; }
.menu-toggle { display: none; }
.mobile-menu { display: none; }

.hero {
  position: relative;
  min-height: 780px;
  height: min(92vh, 920px);
  display: grid;
  align-items: center;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}
.hero-slides, .hero-slide, .hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-slide {
  object-fit: cover;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 1.1s ease, transform 7s ease;
}
.hero-slide.is-active { opacity: 1; transform: scale(1); }
.hero-shade {
  background:
    linear-gradient(90deg, rgba(5,24,42,.27), rgba(5,24,42,.8) 62%, rgba(5,24,42,.95)),
    linear-gradient(0deg, rgba(4,21,37,.52), transparent 55%);
  z-index: 1;
}
[dir="ltr"] .hero-shade {
  background:
    linear-gradient(-90deg, rgba(5,24,42,.27), rgba(5,24,42,.8) 62%, rgba(5,24,42,.95)),
    linear-gradient(0deg, rgba(4,21,37,.52), transparent 55%);
}
.hero-content { position: relative; z-index: 2; padding-top: 70px; }
.hero-content > * { max-width: 720px; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .055em;
  text-transform: uppercase;
}
.eyebrow.dark { color: var(--teal-dark); }
.hero h1 {
  margin: 0;
  font-size: clamp(2.7rem, 6.2vw, 5.7rem);
  line-height: .99;
  letter-spacing: -.055em;
  text-wrap: balance;
}
.hero-copy {
  margin: 25px 0 0;
  color: rgba(255,255,255,.88);
  font-size: clamp(1.06rem, 1.8vw, 1.3rem);
  line-height: 1.65;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 31px; }
.hero-micro {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 27px;
  color: rgba(255,255,255,.76);
  font-size: .92rem;
}
.hero-micro span::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-inline-end: 8px;
  border-radius: 50%;
  background: var(--teal);
}
.hero-dots {
  position: absolute;
  z-index: 3;
  inset: auto 0 32px;
  width: var(--shell);
  margin: auto;
  display: flex;
  gap: 9px;
}
.hero-dot {
  width: 30px;
  height: 5px;
  padding: 0;
  border: 0;
  border-radius: 20px;
  background: rgba(255,255,255,.42);
}
.hero-dot.is-active { background: var(--teal); }

.trust-strip {
  position: relative;
  z-index: 4;
  margin-top: -1px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.trust-grid { min-height: 116px; display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid article {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 23px 25px;
  border-inline-start: 1px solid var(--line);
}
.trust-grid article:last-child { border-inline-end: 1px solid var(--line); }
.trust-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid #bce3e1;
  border-radius: 13px;
  color: var(--teal-dark);
  background: #ebf9f8;
  font-weight: 900;
}
.trust-grid strong, .trust-grid small { display: block; }
.trust-grid strong { font-size: 1rem; }
.trust-grid small { margin-top: 2px; color: var(--muted); }

.section { padding: 105px 0; }
.section-tint { background: var(--mist); }
.section-heading { margin-bottom: 44px; }
.section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.08;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 1.05rem; }
.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(270px, .75fr);
  align-items: end;
  gap: 80px;
}
.split-heading > p { max-width: 470px; margin: 0; }
.centered { max-width: 760px; margin-inline: auto; text-align: center; }

.audience-switch {
  display: inline-flex;
  gap: 4px;
  padding: 5px;
  margin-bottom: 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--mist);
}
.audience-tab {
  min-width: 120px;
  padding: 10px 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 800;
}
.audience-tab.is-active { background: var(--navy); color: #fff; }
.use-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.use-card {
  min-height: 188px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.use-card:hover { transform: translateY(-4px); border-color: #9bd8d4; box-shadow: 0 18px 42px rgba(8,35,61,.08); }
.use-card .number {
  display: block;
  color: var(--teal-dark);
  font-size: .78rem;
  font-weight: 800;
}
.use-card h3 { margin: 28px 0 7px; color: var(--navy); font-size: 1.35rem; }
.use-card p { margin: 0; color: var(--muted); }

.model-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.model-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(8,35,61,.055);
  transition: transform .22s ease, box-shadow .22s ease;
}
.model-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.model-image {
  position: relative;
  aspect-ratio: 4 / 2.6;
  overflow: hidden;
  background: #dce5e7;
}
.model-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.model-card:hover .model-image img { transform: scale(1.025); }
.asset-label {
  position: absolute;
  inset-block-start: 14px;
  inset-inline-start: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(8,35,61,.86);
  color: #fff;
  backdrop-filter: blur(8px);
  font-size: .76rem;
  font-weight: 800;
}
.model-content { padding: 22px; }
.model-use { margin: 0 0 6px; color: var(--teal-dark); font-size: .82rem; font-weight: 800; }
.model-content h3 { margin: 0; color: var(--navy); font-size: 1.55rem; }
.model-meta { display: flex; gap: 8px; margin: 13px 0 18px; }
.model-meta span {
  padding: 6px 10px;
  border-radius: 8px;
  background: var(--mist);
  color: var(--muted);
  font-size: .82rem;
}
.model-prices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
}
.model-price { padding: 10px; border-radius: 11px; background: #f8faf9; }
.model-price.vip { background: #eaf9f7; }
.model-price small, .model-price strong { display: block; }
.model-price small { color: var(--muted); font-size: .75rem; }
.model-price strong { margin-top: 3px; color: var(--navy); font-size: 1.03rem; }
.vat-line { margin: 8px 0 0; color: var(--muted); font-size: .73rem; }
.model-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 18px; }
.model-actions .button { padding-inline: 10px; }
.custom-size-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 30px;
  padding: 30px 34px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--navy);
}
.mini-label { display: block; color: var(--teal); font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.custom-size-callout h3 { margin: 6px 0; font-size: 1.55rem; }
.custom-size-callout p { max-width: 700px; margin: 0; color: rgba(255,255,255,.7); }

.comparison { background: #fff; }
.comparison-cards { max-width: 980px; margin: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: stretch; }
.finish-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: #fff;
}
.finish-card.featured { border: 2px solid var(--teal); box-shadow: var(--shadow); }
.recommended {
  position: absolute;
  inset-block-start: -15px;
  inset-inline-end: 25px;
  padding: 7px 13px;
  border-radius: 999px;
  background: var(--teal);
  color: var(--navy);
  font-size: .77rem;
  font-weight: 900;
}
.finish-top { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.finish-top > span { color: var(--navy); font-size: 1.25rem; font-weight: 800; }
.finish-top strong { color: var(--navy); font-size: 1.5rem; white-space: nowrap; }
.finish-top small { color: var(--muted); font-size: .75rem; }
.finish-card ul { flex: 1; margin: 24px 0 28px; padding: 0; list-style: none; }
.finish-card li { position: relative; margin: 11px 0; padding-inline-start: 27px; color: #3e5263; }
.finish-card li::before { content: "✓"; position: absolute; inset-inline-start: 0; color: var(--teal-dark); font-weight: 900; }
.price-note { max-width: 980px; margin: 22px auto 0; color: var(--muted); font-size: .85rem; text-align: center; }

.process { color: #fff; background: var(--navy); }
.light-heading h2 { color: #fff; }
.light-heading p:not(.eyebrow) { color: rgba(255,255,255,.68); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 42px; }
.process-step {
  padding: 26px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  background: rgba(255,255,255,.045);
}
.process-step strong { color: var(--teal); font-size: .78rem; }
.process-step h3 { margin: 18px 0 8px; font-size: 1.16rem; }
.process-step p { margin: 0; color: rgba(255,255,255,.65); font-size: .93rem; }
.process-gallery {
  display: grid;
  grid-template-columns: 1.35fr .65fr .65fr;
  gap: 12px;
}
.process-gallery figure { position: relative; min-height: 360px; margin: 0; overflow: hidden; border-radius: 20px; }
.process-gallery img { width: 100%; height: 100%; object-fit: cover; }
.process-gallery figcaption {
  position: absolute;
  inset: auto 12px 12px;
  padding: 9px 12px;
  border-radius: 10px;
  background: rgba(6,28,48,.83);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: .82rem;
}

.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; }
.gallery-item {
  position: relative;
  min-height: 300px;
  grid-column: span 4;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 20px;
  background: #dce3e5;
  text-align: start;
}
.gallery-item:nth-child(1), .gallery-item:nth-child(4) { grid-column: span 8; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery-item:hover img { transform: scale(1.025); }
.gallery-caption {
  position: absolute;
  inset: auto 0 0;
  padding: 52px 20px 18px;
  color: #fff;
  background: linear-gradient(transparent, rgba(4,24,42,.9));
}
.gallery-caption small { display: block; color: var(--teal); font-weight: 800; }
.gallery-caption strong { display: block; margin-top: 3px; font-size: 1.08rem; }

.faq-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.sticky-heading { position: sticky; top: 120px; }
.sticky-heading .button { margin-top: 15px; }
.faq-item { border-bottom: 1px solid #cfdbde; }
.faq-question {
  width: 100%;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 19px 0;
  border: 0;
  background: transparent;
  color: var(--navy);
  text-align: start;
  font-size: 1.04rem;
  font-weight: 800;
}
.faq-question::after { content: "+"; color: var(--teal-dark); font-size: 1.6rem; font-weight: 400; }
.faq-item.is-open .faq-question::after { content: "−"; }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .22s ease; }
.faq-answer > div { overflow: hidden; }
.faq-answer p { margin: 0; padding: 0 0 23px; color: var(--muted); }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }

.contact { color: #fff; background: linear-gradient(145deg, var(--navy), #0e3a59); }
.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 85px; align-items: start; }
.contact-copy h2 { margin: 0; font-size: clamp(2.2rem, 4.5vw, 4rem); line-height: 1.05; letter-spacing: -.05em; }
.contact-copy > p:not(.eyebrow) { color: rgba(255,255,255,.7); font-size: 1.04rem; }
.contact-points { display: grid; gap: 10px; margin-top: 28px; }
.contact-points span::before { content: "✓"; margin-inline-end: 9px; color: var(--teal); font-weight: 900; }
.contact-points a {
  width: fit-content;
  color: #fff;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(19,184,178,.58);
  text-underline-offset: 4px;
}
.contact-points a:hover { color: var(--teal); }
.contact-form {
  padding: 30px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 25px;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(10px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.contact-form label, .builder-stage label { display: grid; gap: 7px; color: inherit; font-size: .9rem; font-weight: 700; }
.contact-form input, .contact-form select, .contact-form textarea,
.builder-stage input, .builder-stage select, .builder-stage textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 11px;
  background: rgba(255,255,255,.96);
  color: var(--ink);
}
.contact-form textarea, .builder-stage textarea { resize: vertical; }
.full-field { margin-bottom: 14px; }
.consent { grid-template-columns: auto 1fr !important; align-items: start; margin: 4px 0 19px; color: rgba(255,255,255,.75) !important; font-size: .82rem !important; font-weight: 400 !important; }
.consent input { width: 18px !important; min-height: 18px !important; margin-top: 2px; }
.form-status { min-height: 24px; margin: 12px 0 0; color: #b6f3d4; }

.site-footer { padding: 58px 0 110px; background: #061b2d; color: rgba(255,255,255,.72); }
.footer-grid { display: grid; grid-template-columns: 1.3fr .6fr 1fr .7fr; gap: 46px; }
.footer-grid img { width: 205px; filter: brightness(0) invert(1); }
.footer-grid p { margin: 12px 0 0; }
.footer-grid > div:not(:first-child) { display: grid; align-content: start; gap: 9px; font-size: .9rem; }
.footer-grid strong { margin-bottom: 5px; color: #fff; }
.footer-grid a:hover { color: var(--teal); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 45px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); font-size: .8rem; }
.mobile-action-bar { display: none; }

dialog {
  padding: 0;
  border: 0;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 30px 100px rgba(0,0,0,.28);
}
dialog::backdrop { background: rgba(2,18,31,.72); backdrop-filter: blur(5px); }
.builder-dialog {
  width: min(1220px, calc(100% - 28px));
  max-width: none;
  height: min(900px, calc(100dvh - 28px));
  max-height: none;
  border-radius: 28px;
  overflow: hidden;
}
.builder-shell { height: 100%; display: grid; grid-template-rows: auto auto minmax(0, 1fr) auto; }
.dialog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 28px 16px;
  border-bottom: 1px solid var(--line);
}
.dialog-header h2 { margin: 3px 0 0; color: var(--navy); font-size: 1.75rem; }
.icon-button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  font-size: 1.7rem;
  line-height: 1;
}
.builder-progress { padding: 15px 28px 16px; border-bottom: 1px solid var(--line); background: #fbfcfc; }
.progress-meta { display: flex; justify-content: space-between; margin-bottom: 8px; color: var(--muted); font-size: .82rem; }
.progress-track { height: 6px; overflow: hidden; border-radius: 999px; background: #e3ebec; }
.progress-track span { display: block; width: 16.66%; height: 100%; border-radius: inherit; background: var(--teal); transition: width .25s ease; }
.step-labels { display: grid; grid-template-columns: repeat(6, 1fr); gap: 5px; margin-top: 10px; color: #82909c; font-size: .72rem; }
.step-labels span.is-active { color: var(--navy); font-weight: 800; }
.builder-body { min-height: 0; display: grid; grid-template-columns: minmax(0, 1fr) 330px; overflow-y: auto; align-items: start; }
.builder-stage { padding: 30px; min-width: 0; }
.builder-stage h3 { margin: 0; color: var(--navy); font-size: clamp(1.65rem, 3vw, 2.35rem); line-height: 1.1; }
.stage-intro { margin: 9px 0 25px; color: var(--muted); }
.choice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.choice-card {
  position: relative;
  min-height: 125px;
  display: grid;
  align-content: end;
  gap: 5px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fff;
  color: var(--ink);
  text-align: start;
}
.choice-card:hover { border-color: #8cd1ce; background: #f7fcfb; }
.choice-card.is-selected { border: 2px solid var(--teal); background: #effbf9; box-shadow: 0 10px 27px rgba(19,184,178,.1); }
.choice-card.is-selected::after {
  content: "✓";
  position: absolute;
  inset-block-start: 12px;
  inset-inline-end: 12px;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: var(--navy);
  font-weight: 900;
}
.choice-card strong { color: var(--navy); font-size: 1.07rem; }
.choice-card small { color: var(--muted); line-height: 1.4; }
.dimension-card { min-height: 150px; align-content: space-between; }
.dimension-card .area { color: var(--teal-dark); font-size: 1.4rem; font-weight: 900; }
.custom-dimensions {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: end;
  gap: 12px;
  margin-top: 18px;
  padding: 20px;
  border: 1px dashed #9ec4c5;
  border-radius: 17px;
  background: #f6fbfa;
}
.custom-dimensions input, .builder-stage textarea { border-color: var(--line); background: #fff; }
.logistics-alert {
  margin-top: 13px;
  padding: 12px 14px;
  border-radius: 11px;
  background: #fff5e8;
  color: #825017;
  font-size: .85rem;
}
.plan-layout { display: grid; grid-template-columns: 1fr; gap: 20px; align-items: start; }
.plan-diagram { margin: 0; padding: 12px; color: var(--navy); }
.floor-plan { display: block; width: 100%; height: auto; max-height: 420px; }
.plan-heading { display: grid; gap: 6px; margin-bottom: 18px; }
.plan-heading strong { font-size: 1.15rem; }
.plan-heading span, .plan-scroll-hint { color: #536575; font-size: .9rem; }
.plan-scroll { max-width: 100%; overflow-x: auto; direction: ltr; border-radius: 12px; background: white; }
.floor-plan.detailed-plan { min-width: 640px; max-height: none; font-family: Arial, sans-serif; }
.plan-rooms { width: 100%; border-collapse: collapse; font-size: .9rem; margin-top: 12px; }
.plan-rooms caption { text-align: start; font-weight: 700; padding-block: 10px; }
.plan-rooms th, .plan-rooms td { text-align: start; padding: 10px 6px; border-bottom: 1px solid var(--line); }
.plan-rooms td[dir="ltr"] { text-align: center; white-space: nowrap; }
.room-number { display: inline-grid; place-items: center; width: 23px; height: 23px; border-radius: 50%; background: var(--navy); color: #fff; margin-inline-end: 5px; font-size: .8rem; }
.plan-disclaimer { color: #536575; font-size: .875rem; line-height: 1.65; margin-top: 18px; }
.model-plan-types { display: flex; flex-wrap: wrap; gap: 8px; margin-block: 18px; }
.model-plan-types button[aria-pressed="true"] { background: var(--navy); color: white; }
@media print { .plan-scroll { overflow: visible; } .floor-plan.detailed-plan { min-width: 0; } .plan-scroll-hint { display: none; } .plan-rooms tr { break-inside: avoid; } }
.plan-diagram figcaption { font-size: .9rem; line-height: 1.6; }
.plan-diagram ol { display: flex; flex-wrap: wrap; gap: 8px 30px; padding-inline-start: 22px; }
.change-fields { display: grid; gap: 16px; margin: 18px 0; }
.builder-stage textarea { width: 100%; min-height: 90px; }
.summary-row strong { white-space: pre-line; overflow-wrap: anywhere; }
.upgrade-grid small { display: block; font-weight: 400; }
.live-summary .summary-row { display: block; font-size: .9rem; }
.live-summary .summary-row strong { display: block; margin-top: 6px; text-align: start; }
.plan-preview { padding: 10px; border: 1px solid var(--line); border-radius: 18px; background: var(--mist); }
.modification-list, .upgrade-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 20px 0; }
.check-card {
  grid-template-columns: auto 1fr !important;
  align-items: start;
  gap: 10px !important;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink) !important;
  font-weight: 600 !important;
}
.check-card input { width: 19px; min-height: 19px; margin-top: 2px; accent-color: var(--teal-dark); }
.upload-box {
  display: block !important;
  margin-top: 14px;
  padding: 17px;
  border: 1px dashed #9db5bf;
  border-radius: 13px;
  background: #f7faf9;
}
.upload-box input { min-height: 0; padding: 8px 0; border: 0; }
.finish-choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.finish-choice { min-height: 330px; align-content: start; }
.finish-choice .builder-price { margin: 8px 0 14px; color: var(--teal-dark); font-size: 1.5rem; font-weight: 900; }
.finish-choice ul { margin: 0; padding-inline-start: 20px; color: var(--muted); font-size: .9rem; }
.quote-only { color: var(--warm); font-size: .78rem; font-weight: 800; }
.final-summary { display: grid; gap: 14px; }
.summary-panel {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.summary-panel h4 { margin: 0 0 11px; color: var(--navy); font-size: 1.05rem; }
.summary-row { display: flex; justify-content: space-between; gap: 18px; margin: 7px 0; color: var(--muted); }
.summary-row strong { color: var(--ink); text-align: end; }
.summary-total { padding-top: 15px; border-top: 1px solid var(--line); font-size: 1.15rem; }
.summary-total strong { color: var(--navy); font-size: 1.4rem; }
.lead-gate { margin-top: 19px; padding: 20px; border-radius: 16px; background: var(--mist); }
.lead-gate h4 { margin: 0 0 13px; color: var(--navy); }
.lead-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.lead-grid label { color: var(--ink); }
.lead-actions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 15px; }
.confirmation-card { margin-top: 14px; padding: 16px; border-radius: 13px; background: #e9f8f2; color: #155f46; }
.live-summary {
  padding: 27px 23px;
  overflow: visible;
  border-inline-start: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
}
.live-summary h3 { margin: 0 0 18px; font-size: 1.2rem; }
.live-summary .summary-line { display: flex; justify-content: space-between; gap: 13px; margin: 12px 0; color: #536575; font-size: .95rem; }
.live-summary .summary-line strong { color: var(--navy); text-align: end; }
.live-price { margin-top: 22px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.15); }
.live-price small, .live-price strong { display: block; }
.live-price small { color: #536575; }
.live-price strong { margin-top: 2px; color: var(--teal); font-size: 1.75rem; }
.live-summary .vat-line { color: #536575; }
.builder-footer {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 12px 28px;
  border-top: 1px solid var(--line);
  background: #fff;
}
.builder-footer .button-ghost { border-color: var(--line); color: var(--navy); background: #fff; }
.saved-indicator { color: var(--muted); font-size: .8rem; }

.model-dialog {
  width: min(1000px, calc(100% - 28px));
  max-width: none;
  max-height: calc(100dvh - 28px);
  border-radius: 25px;
  overflow: auto;
}
.model-dialog > .icon-button, .gallery-dialog > .icon-button {
  position: sticky;
  float: inline-end;
  inset-block-start: 15px;
  margin: 15px 15px -59px;
  z-index: 2;
}
.model-detail-image { position: relative; aspect-ratio: 16/7; overflow: hidden; }
.model-detail-image img { width: 100%; height: 100%; object-fit: cover; }
.model-detail-content { padding: 30px; }
.model-detail-content h2 { margin: 0; color: var(--navy); font-size: 2.2rem; }
.model-detail-layout { display: grid; grid-template-columns: 1fr; gap: 25px; margin-top: 24px; min-width: 0; }
.model-detail-layout > *, .plan-layout > * { min-width: 0; }
.model-detail-layout img { border: 1px solid var(--line); border-radius: 15px; }
.model-detail-copy h3 { margin: 0 0 10px; color: var(--navy); }
.model-detail-copy ul { padding-inline-start: 20px; color: var(--muted); }
.detail-prices { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 18px; }
.detail-prices > div { padding: 14px; border-radius: 12px; background: var(--mist); }
.detail-prices strong, .detail-prices small { display: block; }
.detail-prices strong { color: var(--navy); font-size: 1.2rem; }
.detail-actions { display: flex; gap: 10px; margin-top: 20px; }

.gallery-dialog {
  width: min(1100px, calc(100% - 28px));
  max-width: none;
  max-height: calc(100dvh - 28px);
  padding: 14px;
  border-radius: 22px;
}
.gallery-dialog figure { margin: 0; }
.gallery-dialog img { width: 100%; max-height: 76dvh; object-fit: contain; border-radius: 13px; background: #edf1f2; }
.gallery-dialog figcaption { padding: 14px 4px 3px; color: var(--navy); font-weight: 800; }
.gallery-dialog > .button { margin: 8px 4px 4px; }

.toast {
  position: fixed;
  z-index: 200;
  inset: auto 50% 24px auto;
  transform: translate(50%, 20px);
  min-width: min(360px, calc(100% - 30px));
  padding: 13px 17px;
  border-radius: 12px;
  background: #0d314d;
  color: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  text-align: center;
}
.toast.is-visible { opacity: 1; transform: translate(50%, 0); }
.print-sheet { display: none; }

@media (max-width: 1080px) {
  .desktop-nav { display: none; }
  .header-actions .button-ghost { display: none; }
  .menu-toggle {
    width: 43px;
    height: 43px;
    display: grid;
    align-content: center;
    gap: 5px;
    padding: 0 10px;
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 50%;
    background: transparent;
  }
  .menu-toggle span { height: 2px; border-radius: 4px; background: #fff; }
  .mobile-menu {
    position: absolute;
    inset: 78px 0 auto;
    display: grid;
    max-height: 0;
    overflow: hidden;
    background: rgba(8,35,61,.98);
    transition: max-height .25s ease;
  }
  .mobile-menu.is-open { max-height: 430px; padding: 13px 20px 22px; }
  .mobile-menu a { padding: 11px 4px; border-bottom: 1px solid rgba(255,255,255,.1); }
  .model-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-gallery { grid-template-columns: 1fr 1fr; }
  .process-gallery .process-main { grid-column: span 2; }
  .gallery-item, .gallery-item:nth-child(1), .gallery-item:nth-child(4) { grid-column: span 6; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid > div:last-child { display: none; }
}

@media (max-width: 760px) {
  :root { --shell: min(100% - 28px, 1180px); }
  html { scroll-padding-top: 74px; }
  .site-header { border-bottom-color: rgba(255,255,255,.1); }
  .header-inner { min-height: 70px; width: calc(100% - 22px); gap: 10px; }
  .brand img { width: 150px; }
  .header-actions { margin-inline-start: auto; }
  .header-actions .button { display: none; }
  .lang-toggle { width: 39px; height: 39px; font-size: .8rem; }
  .mobile-menu { inset-block-start: 70px; }
  .hero { min-height: 680px; height: 90dvh; align-items: end; }
  .hero-shade {
    background: linear-gradient(0deg, rgba(4,21,37,.97), rgba(4,21,37,.28) 75%), linear-gradient(90deg, rgba(4,21,37,.3), rgba(4,21,37,.3));
  }
  [dir="ltr"] .hero-shade { background: linear-gradient(0deg, rgba(4,21,37,.97), rgba(4,21,37,.28) 75%); }
  .hero-content { padding: 120px 0 92px; }
  .hero h1 { font-size: clamp(2.4rem, 12vw, 4rem); }
  .hero-copy { font-size: 1rem; line-height: 1.55; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-actions .button { padding-inline: 10px; }
  .hero-micro { display: none; }
  .hero-dots { bottom: 22px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid article { min-height: 92px; padding: 17px 12px; border-bottom: 1px solid var(--line); }
  .trust-grid article:nth-child(odd) { border-inline-end: 1px solid var(--line); }
  .trust-icon { width: 36px; height: 36px; border-radius: 10px; font-size: .82rem; }
  .trust-grid strong { font-size: .9rem; }
  .trust-grid small { font-size: .74rem; }
  .section { padding: 74px 0; }
  .section-heading { margin-bottom: 30px; }
  .section-heading h2 { font-size: 2.2rem; }
  .split-heading { grid-template-columns: 1fr; gap: 14px; }
  .use-grid, .model-grid { grid-template-columns: 1fr; }
  .use-card { min-height: 155px; }
  .model-actions { grid-template-columns: 1fr 1fr; }
  .custom-size-callout { display: grid; padding: 24px; }
  .comparison-cards { grid-template-columns: 1fr; }
  .finish-card { padding: 27px 22px; }
  .finish-top { display: grid; }
  .process-grid { grid-template-columns: 1fr; }
  .process-gallery { grid-template-columns: 1fr; }
  .process-gallery .process-main { grid-column: auto; }
  .process-gallery figure { min-height: 330px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item, .gallery-item:nth-child(1), .gallery-item:nth-child(4) { min-height: 265px; grid-column: auto; }
  .faq-layout, .contact-layout { grid-template-columns: 1fr; gap: 36px; }
  .sticky-heading { position: static; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: span 2; }
  .footer-grid > div:nth-child(3) { display: none; }
  .footer-bottom { display: grid; }
  .mobile-action-bar {
    position: fixed;
    z-index: 75;
    inset: auto 0 0;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 8px;
    padding: 9px 12px max(9px, env(safe-area-inset-bottom));
    border-top: 1px solid rgba(8,35,61,.12);
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);
  }
  .site-footer { padding-bottom: 105px; }
  .builder-dialog {
    width: 100%;
    height: 100dvh;
    max-height: none;
    border-radius: 0;
  }
  .dialog-header { padding: 14px 15px 11px; }
  .dialog-header h2 { font-size: 1.35rem; }
  .builder-progress { padding: 10px 15px 12px; }
  .step-labels { display: none; }
  .builder-body { grid-template-columns: 1fr; }
  .builder-stage { padding: 21px 15px; }
  .live-summary { display: block; border-inline-start: 0; border-top: 1px solid var(--line); }
  .builder-footer { padding: 9px 14px; }
  .saved-indicator { display: none; }
  .choice-grid { grid-template-columns: 1fr 1fr; }
  .choice-card { min-height: 112px; padding: 15px; }
  .custom-dimensions { grid-template-columns: 1fr 1fr; }
  .custom-dimensions .button { grid-column: span 2; }
  .plan-layout, .finish-choice-grid, .lead-grid { grid-template-columns: 1fr; }
  .modification-list, .upgrade-grid { grid-template-columns: 1fr; }
  .model-detail-layout { grid-template-columns: 1fr; }
  .model-detail-content { padding: 22px 17px; }
  .model-detail-content h2 { font-size: 1.65rem; }
  .detail-actions { display: grid; }
  .gallery-dialog { width: 100%; height: 100dvh; max-height: none; border-radius: 0; }
  .gallery-dialog img { max-height: 74dvh; }
}

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

@media print {
  body > * { display: none !important; }
  .print-sheet {
    display: block !important;
    color: #12283a;
    font-family: Arial, sans-serif;
    direction: inherit;
    padding: 20mm;
  }
  .print-sheet > img { width: 190px; margin-bottom: 24px; }
  .print-sheet h1 { color: #08233d; }
  .print-sheet table { width: 100%; border-collapse: collapse; margin-top: 20px; }
  .print-sheet td { padding: 9px; border-bottom: 1px solid #dbe4e7; }
  .print-sheet .print-total { margin-top: 25px; padding: 16px; background: #eef8f7; font-size: 1.35rem; font-weight: 800; }
  .print-sheet small { color: #627487; }
}
