:root {
  --bg: #f2eee6;
  --bg-2: #e7dfd0;
  --surface: #f8f4ec;
  --panel: #ffffff;
  --panel-soft: #fcfaf6;
  --ink: #17211b;
  --muted: #56645a;
  --line: #d4cbbb;
  --line-strong: #c8bea9;
  --brand: #0e6758;
  --brand-2: #144f7f;
  --accent: #d97706;
  --ok: #0f9f57;
  --radius: 20px;
  --shadow-soft: 0 14px 28px rgba(16, 27, 20, 0.08);
  --shadow-strong: 0 26px 58px rgba(10, 19, 14, 0.16);
  --shadow-glow: 0 0 0 1px rgba(255, 255, 255, 0.8), 0 18px 36px rgba(11, 25, 17, 0.1);
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  background:
    radial-gradient(900px 500px at -8% -8%, rgba(20, 79, 127, 0.16), transparent 64%),
    radial-gradient(900px 500px at 108% 8%, rgba(14, 103, 88, 0.15), transparent 62%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
}

h1, h2, h3, .brand-text {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  letter-spacing: -0.02em;
}

h2 {
  line-height: 1.08;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

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

.section-text {
  color: var(--muted);
  font-weight: 700;
  max-width: 70ch;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(212, 203, 187, 0.92);
  background: rgba(251, 248, 241, 0.86);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 28px rgba(20, 28, 23, 0.06);
}

.nav-wrap {
  min-height: 92px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 1rem;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(200, 190, 169, 0.85);
  background: linear-gradient(140deg, #fff, #edf5f2);
  box-shadow: var(--shadow-glow);
  padding: 6px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text strong {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 700;
}

.brand-text em {
  font-style: normal;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--brand);
}

.desktop-nav {
  justify-self: center;
  display: flex;
  gap: 0.78rem;
  color: #526055;
  font-weight: 700;
}

.desktop-nav a {
  padding: 0.54rem 0.76rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background-color 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  background: rgba(20, 79, 127, 0.11);
  border-color: rgba(20, 79, 127, 0.2);
  color: #18324d;
}

.desktop-cta {
  display: flex;
  gap: 0.72rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: #1e2a22;
}

.mobile-panel {
  display: none;
  border-top: 1px solid rgba(212, 203, 187, 0.8);
  background: #fcf9f3;
  padding: 0.8rem 1rem 1rem;
}

.mobile-panel a {
  display: block;
  padding: 0.72rem 0.62rem;
  border-radius: 10px;
  font-weight: 700;
}

.mobile-panel a:hover { background: rgba(21, 93, 147, 0.1); }
.mobile-panel.is-open { display: block; }

.btn {
  border: 0;
  border-radius: 13px;
  padding: 0.8rem 1.05rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.98rem;
  letter-spacing: 0.005em;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.16s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  filter: brightness(1.03);
  transform: translateY(-1px);
}
.btn:active { transform: translateY(0); }

.btn-soft {
  color: #1a2b24;
  background: #fff;
  border: 1px solid var(--line-strong);
  box-shadow: 0 10px 22px rgba(16, 27, 20, 0.06);
}

.btn-dark {
  color: #fff;
  background: linear-gradient(130deg, #0f2a21, #244235);
  box-shadow: 0 16px 32px rgba(15, 38, 29, 0.28);
}

.btn-accent {
  color: #fff;
  background: linear-gradient(125deg, #0fa65f, #0f7f48);
  box-shadow: 0 16px 34px rgba(15, 127, 71, 0.3);
}

.hero {
  padding: 3.6rem 0 1.2rem;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 78%;
  background:
    radial-gradient(520px 260px at 14% 18%, rgba(15, 127, 72, 0.12), transparent 68%),
    radial-gradient(460px 250px at 88% 18%, rgba(20, 79, 127, 0.14), transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.2rem;
  align-items: stretch;
}

.hero-copy {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.91), rgba(248, 252, 249, 0.98));
  border: 1px solid rgba(212, 203, 187, 0.95);
  border-radius: 24px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.72), 0 26px 54px rgba(11, 25, 17, 0.12);
  padding: clamp(1.2rem, 2.8vw, 2.1rem);
  position: relative;
  overflow: hidden;
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: auto -90px -90px auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 103, 88, 0.1), rgba(14, 103, 88, 0));
  pointer-events: none;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--brand);
  font-size: 0.74rem;
  font-weight: 800;
}

.hero h1 {
  margin: 0.6rem 0 0.9rem;
  line-height: 1.01;
  font-size: clamp(2.15rem, 4.5vw, 3.72rem);
}

.hero h1 span {
  color: var(--brand-2);
  display: inline-block;
}

.hero h1 span:last-child {
  color: var(--brand);
  margin-top: 0.18rem;
}

.lead {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
  max-width: 56ch;
}

.hero-highlight {
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(15, 127, 72, 0.18);
  background: linear-gradient(135deg, rgba(15, 127, 72, 0.09), rgba(255, 255, 255, 0.9));
  box-shadow: 0 16px 30px rgba(15, 127, 72, 0.08);
}

.hero-highlight strong,
.hero-highlight span {
  display: block;
}

.hero-highlight strong {
  font-size: 0.98rem;
}

.hero-highlight span {
  margin-top: 0.2rem;
  color: var(--muted);
  font-weight: 700;
}

.hero-actions {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.66rem;
}

.hero-actions .btn:first-child {
  min-width: 250px;
}

.hero-microproof {
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-kpis {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.58rem;
}

.kpi {
  border-radius: 14px;
  border: 1px solid rgba(212, 203, 187, 0.95);
  background: linear-gradient(150deg, #fffefb, #fff8eb);
  padding: 0.7rem 0.76rem;
  box-shadow: 0 14px 28px rgba(17, 27, 21, 0.08);
  backdrop-filter: blur(6px);
}

.kpi strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 800;
}

.kpi span {
  display: block;
  margin-top: 0.1rem;
  color: var(--muted);
  font-size: 0.77rem;
  font-weight: 700;
}

.hero-points {
  margin: 1rem 0 0;
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.48rem;
  color: var(--muted);
  font-weight: 600;
}

.hero-points li::before {
  content: "✓";
  margin-right: 0.5rem;
  color: var(--ok);
}

.hero-media {
  position: relative;
  display: grid;
  gap: 0.82rem;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: -10px -10px auto auto;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(217, 119, 6, 0.2), rgba(217, 119, 6, 0));
  pointer-events: none;
}

.split-card {
  margin: 0;
  border: 1px solid rgba(212, 203, 187, 0.95);
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-strong);
  position: relative;
  transform: perspective(1400px) rotateY(-2deg);
}

.split-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.split-card-tag {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 2;
  max-width: 240px;
  border-radius: 16px;
  padding: 0.8rem 0.92rem;
  color: #fff;
  background: linear-gradient(135deg, rgba(15, 42, 33, 0.92), rgba(20, 79, 127, 0.82));
  box-shadow: 0 18px 36px rgba(11, 25, 17, 0.2);
  backdrop-filter: blur(8px);
}

.split-card-tag strong,
.split-card-tag span {
  display: block;
}

.split-card-tag strong {
  font-size: 0.94rem;
}

.split-card-tag span {
  margin-top: 0.18rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

.split-card figcaption {
  padding: 0.7rem 0.95rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 800;
  color: #f0f7f4;
  background: linear-gradient(90deg, #143b2f, #1b6a57);
}

.hero-badge {
  border-radius: 16px;
  border: 1px solid rgba(20, 79, 127, 0.25);
  background: linear-gradient(145deg, #e8f1fa, #f8fbff);
  padding: 0.84rem 0.95rem;
  box-shadow: 0 10px 22px rgba(20, 79, 127, 0.08);
  margin-left: auto;
  max-width: 320px;
}

.hero-badge strong {
  display: block;
  font-size: 0.95rem;
}

.hero-badge span {
  display: block;
  margin-top: 0.1rem;
  color: #57697b;
  font-weight: 700;
  font-size: 0.86rem;
}

.trust-strip {
  padding: 0 0 1.2rem;
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.72rem;
}

.trust-pill {
  border: 1px solid rgba(212, 203, 187, 0.92);
  border-radius: 18px;
  padding: 0.95rem 1rem;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.96), rgba(251, 248, 241, 0.94));
  box-shadow: 0 14px 28px rgba(18, 29, 22, 0.07);
}

.trust-pill strong,
.trust-pill span {
  display: block;
}

.trust-pill strong {
  font-size: 0.94rem;
}

.trust-pill span {
  margin-top: 0.18rem;
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 700;
}

.quick-inquiry {
  padding-top: 0;
}

.quick-inquiry-grid {
  margin-top: 0.85rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.quick-chip {
  border: 1px solid rgba(20, 79, 127, 0.24);
  background: linear-gradient(150deg, #f4f9ff, #ffffff);
  border-radius: 14px;
  padding: 0.8rem 0.86rem;
  font-weight: 800;
  color: #20486e;
  box-shadow: 0 10px 22px rgba(20, 79, 127, 0.08);
  transition: transform 0.16s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.quick-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(14, 103, 88, 0.4);
  box-shadow: var(--shadow-strong);
}

.calc-more {
  margin-top: 0.75rem;
  border: 1px solid rgba(212, 203, 187, 0.95);
  border-radius: 16px;
  background: linear-gradient(155deg, #fff, #fbf8f1);
  box-shadow: 0 12px 24px rgba(18, 29, 22, 0.05);
}

.calc-more summary {
  cursor: pointer;
  list-style: none;
  padding: 0.95rem 1rem;
  font-weight: 800;
  color: #1d3b30;
}

.calc-more summary::-webkit-details-marker {
  display: none;
}

.calc-more-grid {
  padding: 0 1rem 1rem;
  display: grid;
  gap: 0.9rem;
}

.steps {
  background: linear-gradient(180deg, transparent, rgba(20, 79, 127, 0.08), transparent);
}

.steps h2,
.services h2,
.calc h2,
.gallery h2,
.area h2,
.faq h2,
.contact h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.contact-direct {
  margin-bottom: 14px;
  border-left: 4px solid var(--accent);
  background: linear-gradient(145deg, #fff9ef, #ffffff);
  box-shadow: 0 12px 26px rgba(22, 33, 26, 0.06);
}

.contact-direct p {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-weight: 700;
}

.contact-direct a {
  text-decoration: underline;
}

.landing-detail {
  padding-top: 1.5rem;
}

.landing-stack {
  display: grid;
  gap: 1rem;
}

.landing-duo,
.landing-faq {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.landing-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.78rem;
}

.landing-card h3,
.landing-cta-card h2,
.landing-intro-card h2 {
  margin-top: 0;
}

.landing-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-weight: 700;
  display: grid;
  gap: 0.45rem;
}

.legal-card h2 {
  margin-top: 1.8rem;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  font-weight: 600;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.78rem;
}

.step {
  padding: 1.05rem;
  border: 1px solid rgba(212, 203, 187, 0.95);
  border-radius: var(--radius);
  background: linear-gradient(160deg, #fff, #fefdf8);
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.2s ease;
}

.step:hover {
  transform: translateY(-2px);
  border-color: rgba(20, 79, 127, 0.24);
  box-shadow: var(--shadow-strong);
}

.step span {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-content: center;
  background: linear-gradient(140deg, #1e3d31, #315f4f);
  color: #fff;
  font-weight: 800;
  margin-bottom: 0.72rem;
}

.step h3 { margin: 0 0 0.35rem; }
.step p { margin: 0; color: var(--muted); font-weight: 700; }

.services {
  background: linear-gradient(180deg, rgba(14, 103, 88, 0.08), rgba(14, 103, 88, 0.02));
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.82rem;
}

.service-card {
  border: 1px solid rgba(212, 203, 187, 0.95);
  border-radius: 18px;
  background: linear-gradient(155deg, #fff, #fffcf6);
  box-shadow: var(--shadow-soft);
  padding: 1.08rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.18s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-2), var(--brand));
}

.service-card::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -64px;
  top: -64px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 79, 127, 0.12), rgba(20, 79, 127, 0));
}

.service-card:hover {
  transform: translateY(-2px);
  border-color: rgba(14, 103, 88, 0.35);
  box-shadow: var(--shadow-strong);
}

.service-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1rem;
}

.service-card p {
  margin: 0;
  font-weight: 700;
  color: var(--muted);
}

.service-card strong {
  color: var(--brand-2);
  font-size: 1.25rem;
  font-weight: 800;
}

.calc {
  background:
    linear-gradient(180deg, transparent, rgba(12, 22, 18, 0.045), transparent);
}

.calc-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 1rem;
  align-items: start;
}

.calc-grid > *,
.contact-grid > * {
  min-width: 0;
}

.card {
  border: 1px solid rgba(212, 203, 187, 0.95);
  border-radius: var(--radius);
  background: linear-gradient(160deg, #fff, #fdfbf6);
  box-shadow: var(--shadow-soft);
  padding: 1.2rem;
  min-width: 0;
}

label {
  display: grid;
  gap: 0.42rem;
  margin-bottom: 0.9rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  border: 1px solid #d1c6b1;
  border-radius: 13px;
  background: #fcfbf8;
  padding: 0.78rem 0.86rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

input[type="checkbox"],
input[type="radio"] {
  width: 1rem;
  height: 1rem;
  padding: 0;
}

input:focus,
select:focus,
textarea:focus {
  outline: 0;
  border-color: rgba(20, 79, 127, 0.45);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(20, 79, 127, 0.14);
}

textarea {
  min-height: 112px;
  resize: vertical;
}

fieldset.options {
  border: 1px dashed #cabea7;
  border-radius: 14px;
  background: #fffefb;
  padding: 0.76rem 0.86rem;
  margin: 0 0 0.85rem;
}

fieldset.options legend {
  padding: 0 0.32rem;
  font-weight: 800;
}

fieldset.options label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0 0 0.52rem;
  line-height: 1.35;
}

fieldset.options label input {
  flex: 0 0 auto;
  margin-top: 0.1rem;
}

.result {
  background: linear-gradient(145deg, #f3f8ff, #ffffff);
  border-color: #c7d6ec;
  box-shadow: 0 18px 36px rgba(18, 54, 89, 0.12);
  position: sticky;
  top: 108px;
}

.result .price {
  font-size: clamp(1.28rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.18;
  margin: 0.35rem 0 0.75rem;
  overflow-wrap: anywhere;
}

.result ul {
  margin: 0 0 1rem;
  padding-left: 1.06rem;
  color: var(--muted);
  font-weight: 700;
}

.result li {
  overflow-wrap: anywhere;
}

.result .btn {
  width: 100%;
}

.gallery {
  background: linear-gradient(180deg, rgba(217, 119, 6, 0.05), transparent);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.gallery-item {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(212, 203, 187, 0.95);
  box-shadow: var(--shadow-soft);
  background: #fff;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.gallery-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-item figcaption {
  padding: 0.6rem 0.78rem;
  font-size: 0.84rem;
  color: var(--muted);
  font-weight: 700;
}

.gallery-item img[src^="http"] {
  background: #f4efe5;
}

.case-grid {
  margin-top: 0.92rem;
  display: grid;
  gap: 0.78rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case-card {
  border: 1px solid rgba(212, 203, 187, 0.95);
  border-radius: 16px;
  background: linear-gradient(160deg, #fff, #fefbf4);
  box-shadow: var(--shadow-soft);
  padding: 0.92rem;
}

.case-card h3 {
  margin: 0 0 0.62rem;
  font-size: 1.04rem;
}

.case-card ul {
  margin: 0;
  padding-left: 1rem;
  color: var(--muted);
  font-weight: 700;
}

.case-card li + li {
  margin-top: 0.24rem;
}

.contact-note {
  border: 1px solid rgba(20, 79, 127, 0.18);
  border-radius: 16px;
  background: linear-gradient(145deg, #eef6ff, #ffffff);
  padding: 0.9rem 0.95rem;
  margin-bottom: 0.95rem;
  box-shadow: 0 12px 24px rgba(20, 79, 127, 0.08);
}

.contact-note strong {
  display: block;
  margin-bottom: 0.32rem;
  color: var(--brand-2);
}

.contact-note p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.contact-brief,
.contact-card-strong {
  display: grid;
  gap: 1rem;
}

.contact-checklist {
  display: grid;
  gap: 0.72rem;
}

.contact-check {
  border: 1px solid rgba(212, 203, 187, 0.95);
  border-radius: 16px;
  background: linear-gradient(155deg, #fff, #fcfaf4);
  padding: 0.9rem 0.95rem;
  box-shadow: 0 10px 22px rgba(16, 27, 20, 0.05);
}

.contact-check strong,
.contact-check span {
  display: block;
}

.contact-check strong {
  font-size: 0.96rem;
}

.contact-check span {
  margin-top: 0.18rem;
  color: var(--muted);
  font-weight: 700;
}

.contact-brief-note {
  border: 1px solid rgba(15, 127, 72, 0.16);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(15, 127, 72, 0.08), rgba(255, 255, 255, 0.96));
  padding: 0.95rem 1rem;
}

.contact-brief-note strong {
  display: block;
  margin-bottom: 0.5rem;
}

.contact-brief-note .hero-points {
  margin-top: 0;
}

.contact-direct-box {
  border-top: 1px solid rgba(212, 203, 187, 0.95);
  padding-top: 0.9rem;
}

.contact-direct-box strong {
  display: block;
  margin-bottom: 0.2rem;
}

.contact-direct-box p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.contact-direct-box a {
  text-decoration: underline;
}

.contact-cta-panel {
  border: 1px solid rgba(15, 127, 72, 0.2);
  border-radius: 20px;
  background: linear-gradient(145deg, #effcf5, #ffffff);
  padding: 1rem;
  box-shadow: 0 16px 34px rgba(15, 127, 72, 0.1);
}

.contact-cta-head strong,
.contact-cta-head span {
  display: block;
}

.contact-cta-head span {
  margin-top: 0.18rem;
  color: var(--muted);
  font-weight: 700;
}

.contact-cta-meta {
  margin: 0.8rem 0 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem;
}

.contact-cta-meta span {
  border-radius: 999px;
  padding: 0.4rem 0.72rem;
  background: rgba(15, 127, 72, 0.1);
  color: #1f5d41;
  font-size: 0.82rem;
  font-weight: 800;
}

.contact-primary-wa {
  width: 100%;
}

.contact-form-grid {
  display: grid;
  gap: 0.2rem;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.contact-mail-note {
  margin: 0 0 0.3rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.area {
  background: linear-gradient(180deg, rgba(21, 93, 147, 0.06), transparent);
}

.area-list {
  list-style: none;
  margin: 0.9rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.58rem;
}

.area-list li {
  border: 1px solid rgba(212, 203, 187, 0.92);
  background: linear-gradient(150deg, #fffef9, #fff9ef);
  border-radius: 999px;
  padding: 0.52rem 0.82rem;
  font-weight: 700;
  color: #2c3c32;
}

.local-pages {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.faq {
  background: linear-gradient(180deg, rgba(15, 106, 91, 0.06), transparent);
}

.faq-grid {
  display: grid;
  gap: 0.72rem;
}

.faq-item {
  border: 1px solid rgba(212, 203, 187, 0.95);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  padding: 0.76rem 0.9rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item[open] {
  border-color: rgba(20, 79, 127, 0.28);
  box-shadow: 0 14px 28px rgba(20, 79, 127, 0.1);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
  position: relative;
  padding-right: 1.3rem;
  line-height: 1.35;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--brand-2);
  font-weight: 800;
}

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

.faq-item p {
  margin: 0.62rem 0 0;
  color: var(--muted);
  font-weight: 600;
}

.trust-list {
  margin: 0.3rem 0 0.92rem;
  padding-left: 1.02rem;
  color: var(--muted);
  font-weight: 700;
}

.trust-list li + li {
  margin-top: 0.22rem;
}

.quote {
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #f9fcfa;
  padding: 0.84rem;
  margin-bottom: 0.7rem;
}

.quote strong { color: #d97706; letter-spacing: 0.09em; }
.quote p { margin: 0.35rem 0 0.45rem; color: var(--muted); font-weight: 700; }
.quote span { font-size: 0.9rem; font-weight: 700; }

.site-footer {
  padding: 1.3rem 0 2rem;
  border-top: 1px solid rgba(212, 203, 187, 0.95);
  background: linear-gradient(180deg, #faf6ee, #f5efe3);
}

.image-credits {
  margin-top: 0.35rem;
}

.image-credits small {
  display: block;
  color: #647165;
  font-size: 0.78rem;
  line-height: 1.45;
}

.admin-page {
  min-height: 100vh;
}

[hidden] {
  display: none !important;
}

.admin-shell {
  padding: 2rem 0 4rem;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.admin-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem;
}

.admin-stack {
  display: grid;
  gap: 1rem;
}

.status-box {
  border-radius: 14px;
  border: 1px solid rgba(20, 79, 127, 0.18);
  background: linear-gradient(145deg, #eef6ff, #ffffff);
  padding: 0.9rem 1rem;
  color: var(--muted);
  font-weight: 700;
}

.status-box strong {
  display: block;
  color: var(--brand-2);
  margin-bottom: 0.25rem;
}

.status-box.is-error {
  border-color: rgba(185, 28, 28, 0.22);
  background: linear-gradient(145deg, #fff1f1, #ffffff);
}

.status-box.is-ok {
  border-color: rgba(15, 159, 87, 0.22);
  background: linear-gradient(145deg, #f1fbf5, #ffffff);
}

.admin-card h2,
.admin-card h3 {
  margin-top: 0;
}

.admin-overview {
  margin-bottom: 1.25rem;
}

.admin-overview-head,
.admin-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.admin-section-head-inline {
  margin-top: 1rem;
}

.admin-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1rem;
}

.admin-overview-item {
  border: 1px solid rgba(212, 203, 187, 0.95);
  border-radius: 18px;
  background: linear-gradient(180deg, #fffdf9, #f8f2e8);
  padding: 1rem;
}

.admin-overview-item h3 {
  margin-bottom: 0.35rem;
}

.admin-overview-item p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.admin-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  background: var(--brand-2);
  color: #fff;
  font-weight: 800;
  margin-bottom: 0.7rem;
}

.admin-help {
  margin: 0.6rem 0 0;
  color: var(--muted);
  font-weight: 700;
}

.admin-form-grid {
  display: grid;
  gap: 0.9rem;
}

.admin-field-group {
  border: 1px solid rgba(212, 203, 187, 0.95);
  border-radius: 18px;
  background: linear-gradient(180deg, #fffdf9, #ffffff);
  padding: 1rem;
}

.admin-field-group h3 {
  margin-bottom: 0.8rem;
}

.admin-submit-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 0.25rem;
}

.admin-inline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.admin-gallery-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.admin-auth-card {
  max-width: 40rem;
  margin: 0 auto 1.5rem;
}

.admin-gallery-item {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr) auto;
  gap: 0.8rem;
  align-items: center;
  border: 1px solid rgba(212, 203, 187, 0.95);
  border-radius: 16px;
  background: #fff;
  padding: 0.75rem;
}

.admin-gallery-item img {
  width: 104px;
  height: 84px;
  object-fit: cover;
  border-radius: 12px;
}

.admin-gallery-copy h3 {
  margin: 0 0 0.15rem;
  font-size: 1rem;
}

.admin-gallery-form {
  display: grid;
  gap: 0.55rem;
}

.admin-gallery-form label {
  display: grid;
  gap: 0.3rem;
  font-weight: 700;
  color: var(--brand-2);
}

.admin-gallery-copy p {
  margin: 0.1rem 0;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
}

.admin-gallery-actions {
  display: grid;
  gap: 0.55rem;
  align-self: stretch;
}

.admin-upload-note {
  border: 1px dashed rgba(20, 79, 127, 0.24);
  border-radius: 16px;
  background: #f7fbff;
  padding: 0.9rem 1rem;
}

.admin-upload-note strong {
  display: block;
  margin-bottom: 0.2rem;
}

.admin-upload-note p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.admin-divider {
  border: 0;
  border-top: 1px solid rgba(212, 203, 187, 0.95);
  margin: 1.2rem 0;
}

.admin-asset-item strong {
  color: var(--brand-2);
  font-size: 1rem;
}

.admin-asset-key {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  word-break: break-word;
}

.admin-empty {
  color: var(--muted);
  font-weight: 700;
}

.gallery-empty {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  padding: 1rem 0;
}

.before-after-card {
  margin: 1.25rem 0 1.5rem;
  border: 1px solid rgba(212, 203, 187, 0.95);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,252,249,0.98));
  box-shadow: var(--shadow-glow);
  padding: 1rem;
}

.before-after-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.before-after-head h3 {
  margin: 0.25rem 0 0;
}

.before-after-demo {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  min-height: 320px;
  background: #dbe5df;
}

.before-after-base,
.before-after-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

.before-after-overlay {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.before-after-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 0 0 1px rgba(20, 79, 127, 0.16);
  transform: translateX(-50%);
}

.before-after-label {
  position: absolute;
  top: 1rem;
  z-index: 2;
  background: rgba(17, 31, 25, 0.72);
  color: #fff;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
}

.before-after-label.before {
  left: 1rem;
}

.before-after-label.after {
  right: 1rem;
}

.before-after-range {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  width: calc(100% - 2rem);
  z-index: 3;
}

.proof {
  padding-top: 0;
}

.proof-head {
  margin-bottom: 1rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.proof-card {
  border: 1px solid rgba(212, 203, 187, 0.95);
  border-radius: 20px;
  background: linear-gradient(180deg, #fffdf9, #ffffff);
  padding: 1rem;
  box-shadow: var(--shadow-soft);
}

.proof-card strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--brand-2);
}

.proof-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 700;
}

.footer-wrap div {
  display: flex;
  gap: 1rem;
}

.footer-wrap a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.site-footer {
  padding: 0 0 1.25rem;
}

.wa-fab-sentinel {
  height: 1px;
}

.wa-fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  border-radius: 18px;
  padding: 0.9rem 1.1rem;
  background: linear-gradient(120deg, #0ea25d, #0f7f48);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 18px 36px rgba(15, 126, 72, 0.33);
  display: grid;
  gap: 0.08rem;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.wa-fab span,
.wa-fab small {
  display: block;
}

.wa-fab small {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 700;
}

.wa-fab.is-hidden {
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

.delay-1 { transition-delay: 0.07s; }
.delay-2 { transition-delay: 0.14s; }
.delay-3 { transition-delay: 0.21s; }

@media (max-width: 1060px) {
  .hero-grid,
  .calc-grid,
  .contact-grid,
  .admin-grid,
  .landing-duo,
  .landing-faq {
    grid-template-columns: 1fr;
  }

  .admin-overview-grid {
    grid-template-columns: 1fr;
  }

  .result {
    position: static;
  }

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

  .service-grid,
  .step-grid,
  .landing-steps,
  .gallery-grid,
  .quick-inquiry-grid,
  .case-grid,
  .proof-grid,
  .trust-strip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .before-after-head {
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .desktop-nav,
  .desktop-cta {
    display: none;
  }

  .menu-toggle { display: inline-block; }
  .nav-wrap { grid-template-columns: 1fr auto; }

  .hero-actions .btn,
  .btn-dark,
  .btn-accent,
  .btn-soft {
    width: 100%;
  }

  .admin-inline,
  .admin-gallery-item {
    grid-template-columns: 1fr;
  }

  .admin-overview-head,
  .admin-section-head,
  .admin-submit-row {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-gallery-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
  }

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

  .hero-kpis,
  .service-grid,
  .step-grid,
  .landing-steps,
  .gallery-grid,
  .quick-inquiry-grid,
  .case-grid,
  .proof-grid,
  .trust-strip-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .section { padding: 58px 0; }
  .calc { padding-bottom: 94px; }
  .site-footer { padding-bottom: 7.5rem; }

  .before-after-demo,
  .before-after-base,
  .before-after-overlay img {
    min-height: 240px;
  }

  .hero h1 {
    font-size: clamp(1.95rem, 10.8vw, 2.45rem);
  }

  .split-card {
    transform: none;
  }

  .split-card-tag {
    left: 0.8rem;
    right: 0.8rem;
    top: 0.8rem;
    max-width: none;
  }

  .brand-mark {
    width: 50px;
    height: 50px;
  }

  .wa-fab {
    left: 1rem;
    right: 1rem;
    text-align: center;
    bottom: calc(0.8rem + env(safe-area-inset-bottom));
  }

}
