:root {
  --ink: #14211d;
  --muted: #5b6b65;
  --paper: #f7f8f4;
  --card: #ffffff;
  --line: #dce4de;
  --green: #0d5c4b;
  --green-dark: #073d34;
  --gold: #c5933d;
  --gold-soft: #f3e7cf;
  --red: #a3423a;
  --shadow: 0 14px 34px rgba(16, 43, 36, 0.12);
  --radius: 8px;
  --header-height: 68px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", Tahoma, Arial, sans-serif;
  line-height: 1.6;
}

[dir="rtl"] body {
  font-family: "Segoe UI", Tahoma, "Noto Naskh Arabic", "PingFang SC", sans-serif;
}

h1, h2, h3, p {
  margin: 0 0 1rem;
}

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

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

button {
  cursor: pointer;
}

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

[hidden] {
  display: none !important;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #fff;
  background: var(--green);
  border-radius: var(--radius);
  font-size: 0.8rem;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-inline-start: auto;
}

.site-nav a {
  padding: 8px 10px;
  color: var(--muted);
  font-size: 0.95rem;
  border-radius: var(--radius);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--green-dark);
  background: var(--gold-soft);
}

.site-nav .nav-cta {
  color: #fff;
  background: var(--green);
  font-weight: 600;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: #fff;
  background: var(--green-dark);
}

.lang-switch {
  position: relative;
}

.lang-current {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 69px;
  padding: 6px 8px;
  font-size: 0.82rem;
  color: var(--muted);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.lang-current:hover,
.lang-current:focus-visible {
  color: var(--green-dark);
  border-color: var(--green);
}

.lang-caret {
  position: absolute;
  inset-inline-end: 5px;
  font-size: 0.8rem;
  transition: transform 0.15s ease;
}

.lang-switch.open .lang-caret {
  transform: rotate(180deg);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 6px);
  inset-inline-end: 0;
  z-index: 60;
  min-width: 134px;
  padding: 6px;
  background: var(--card);
  border: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lang-menu button {
  display: block;
  width: 100%;
  min-width: 0;
  padding: 9px 12px;
  color: var(--muted);
  text-align: start;
  background: transparent;
  border: 0;
  border-radius: 6px;
}

.lang-menu button:hover,
.lang-menu button.active {
  color: var(--green-dark);
  background: var(--gold-soft);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  padding: 10px 8px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
  filter: brightness(1.12);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 33, 28, 0.22);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 0 130px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

@media (min-width: 701px) {
  .hero-content {
    transform: translate(-50px, -250px);
  }

  .hero h1 {
    white-space: nowrap;
  }

}

.eyebrow {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.hero h1 {
  max-width: 860px;
  font-size: 3.6rem;
  line-height: 1.14;
  margin-bottom: 1.1rem;
}

.hero-subtitle {
  max-width: 720px;
  font-size: 1.25rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.6rem;
}

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

.hero-actions .btn {
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 600;
  line-height: 1.2;
}

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

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--green-dark);
}

.btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: transparent;
}

.btn-secondary {
  color: var(--green-dark);
  border-color: var(--line);
  background: var(--card);
}

.btn-small {
  min-height: 36px;
  padding: 7px 12px;
  font-size: 0.9rem;
}

.hero-stats {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 40px));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 0;
  border-radius: var(--radius) var(--radius) 0 0;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(6px);
}

.hero-stat {
  padding: 16px;
  border-inline-end: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-stat:last-child {
  border-inline-end: 0;
}

.hero-stat strong {
  display: block;
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform 0.25s ease, color 0.25s ease;
}

.hero-stat span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.86);
  transition: color 0.25s ease;
}

.hero-stat:hover strong {
  color: #fff;
  transform: scale(1.18);
  transform-origin: left center;
}

.hero-stat:hover span {
  color: #fff;
}

.section {
  padding: 84px 0;
}

.section-tinted {
  background: #edf2ed;
}

#services {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#services .section-head {
  text-align: center;
}

#services::before {
  background: rgba(6, 28, 23, 0.35);
}

#about {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

#about::before {
  background: rgba(6, 28, 23, 0.25);
}

#quote {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

#quote::before {
  background: rgba(6, 28, 23, 0.35);
}

#products {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

#products::before {
  background: rgba(6, 28, 23, 0.25);
}

#process-trust {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

#process-trust::before {
  background: rgba(6, 28, 23, 0.35);
}

#contact {
  background: transparent;
}

#contact::before {
  display: none;
}

#contact h2 {
  color: var(--ink);
}

#contact .eyebrow {
  color: var(--green);
}

#video::before {
  background: rgba(6, 28, 23, 0.25);
}

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

.section-pattern .eyebrow {
  color: #e9c98c;
}

.section-pattern .section-intro {
  color: rgba(255, 255, 255, 0.82);
}

.scenic-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}

.scenic-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(6, 28, 23, 0.55);
}

.scenic-section > .container {
  position: relative;
  z-index: 1;
}

.scenic-section h2 {
  color: #fff;
}

.scenic-section .eyebrow {
  color: #e9c98c;
}

.scenic-section .section-intro,
.scenic-section .form-note,
.scenic-section .quote-copy > p {
  color: rgba(255, 255, 255, 0.88);
}

.section-head {
  max-width: 820px;
  margin-bottom: 40px;
}

.about-copy {
  line-height: 1.9;
}

.about-copy h2 {
  line-height: 1.35;
  margin-bottom: 1.2rem;
}

.about-copy p {
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

.about-copy .check-list li {
  line-height: 1.8;
  margin-bottom: 12px;
}

.about-copy .btn {
  margin-top: 6px;
}

.section-head h2,
.about-copy h2,
.quote-copy h2,
.admin-form h2 {
  font-size: 2.1rem;
  line-height: 1.2;
}

.section-intro {
  color: var(--muted);
  font-size: 1.05rem;
}

.video-wrap {
  max-width: 980px;
}

.video-wrap video {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 72vh;
  aspect-ratio: 9 / 16;
  object-fit: contain;
  margin-inline: auto;
  border-radius: var(--radius);
  background: #000;
}

.text-link {
  display: inline-block;
  margin-top: 16px;
  color: #e9c98c;
  font-weight: 600;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 144px;
  align-items: center;
}

.about-media {
  position: relative;
  min-height: 440px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-position: center;
  background-size: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.persona-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.persona-caption {
  position: relative;
  z-index: 1;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: var(--radius);
}

.persona-caption strong,
.persona-caption span {
  display: block;
}

.persona-caption strong {
  font-size: 1.15rem;
}

.persona-caption span {
  color: var(--muted);
}

.check-list {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-inline-start: 28px;
  margin-bottom: 10px;
}

.check-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 7px;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}

.business-slider-wrap {
  position: relative;
  width: min(1600px, calc(100% - 40px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  gap: 12px;
  align-items: center;
}

.business-slider {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.business-slider::-webkit-scrollbar {
  display: none;
}

.business-track {
  display: flex;
  gap: 12px;
  width: max-content;
  padding: 4px;
}

.business-card {
  position: relative;
  flex: 0 0 360px;
  width: 360px;
  height: 600px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #102a24;
  box-shadow: var(--shadow);
  scroll-snap-align: start;
}

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

.business-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 28, 23, 0.08) 0%, rgba(6, 28, 23, 0.9) 78%);
}

.business-card-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  color: #fff;
}

.business-card-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
}

.business-card-icon svg {
  width: 22px;
  height: 22px;
}

.business-card h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 1.1rem;
}

.business-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
}

.slider-btn {
  width: 44px;
  height: 44px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  font-size: 1.35rem;
  line-height: 1;
}

.slider-btn:hover,
.slider-btn:focus-visible {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card,
.product-card,
.process-card,
.testimonial-card,
.contact-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-card,
.product-card,
.process-card,
.testimonial-card {
  padding: 24px;
}

.service-card h3,
.product-card h3,
.process-card h3 {
  font-size: 1.08rem;
  margin: 14px 0 8px;
}

.service-card p,
.product-card p,
.process-card p,
.testimonial-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.icon-badge {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #fff;
  background: var(--green);
  border-radius: var(--radius);
}

.icon-badge svg {
  width: 22px;
  height: 22px;
}

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

.product-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: stretch;
}

.product-layout .section-head {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.product-layout .product-grid {
  height: 100%;
  grid-template-columns: repeat(3, 1fr);
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 240px;
}

.product-card .icon-badge {
  background: var(--gold-soft);
  color: var(--green-dark);
}

.product-card h3 {
  margin-top: 18px;
}

.process-card {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.process-card h3 {
  color: #fff;
}

.process-card p {
  color: rgba(255, 255, 255, 0.82);
}

.process-card .step-number {
  color: var(--gold);
  font-weight: 800;
}

.process-trust-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  align-items: start;
}

.process-trust-col .section-head {
  margin-bottom: 28px;
}

.process-trust-col .process-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.process-trust-col .trust-grid {
  grid-template-columns: 1fr;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial-card {
  position: relative;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 8px;
  inset-inline-start: 18px;
  color: var(--gold);
  font-size: 2.6rem;
  line-height: 1;
}

.testimonial-card p {
  padding-top: 26px;
}

.testimonial-card strong {
  display: block;
  margin-top: 18px;
  color: var(--green-dark);
}

.quote-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 44px;
  align-items: start;
}

.quote-copy {
  position: sticky;
  top: 96px;
}

.quote-form,
.admin-form {
  padding: 28px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

label {
  display: block;
}

label span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

textarea {
  resize: vertical;
}

.full-field {
  margin-top: 16px;
}

.submit-btn {
  width: 100%;
  margin-top: 18px;
}

.form-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.form-success {
  margin-top: 14px;
  color: var(--green);
  font-weight: 600;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.contact-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

.contact-icon-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 96px;
  height: 96px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: var(--shadow);
  text-align: center;
  transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.contact-icon-btn svg {
  width: 28px;
  height: 28px;
}

.contact-icon-btn span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
}

.contact-icon-btn:hover,
.contact-icon-btn:focus-visible {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.contact-icon-btn:hover span,
.contact-icon-btn:focus-visible span {
  color: #fff;
}

.email-popup {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(6, 28, 23, 0.55);
}

.email-popup-card {
  width: min(440px, 100%);
  padding: 28px;
  text-align: center;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.email-popup-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
}

.email-popup-value {
  margin: 0 0 20px;
  padding: 12px;
  color: var(--green-dark);
  background: var(--paper);
  border-radius: var(--radius);
  font-size: 1.15rem;
  font-weight: 700;
  word-break: break-all;
}

.email-popup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.contact-card {
  padding: 22px;
}

.contact-card strong {
  display: block;
  word-break: break-word;
}

.contact-card:hover {
  border-color: var(--green);
}

.contact-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-note {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer {
  padding: 44px 0 24px;
  color: var(--ink);
  background: #fff;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.footer-brand {
  font-size: 1.2rem;
}

.footer-inner p {
  margin: 8px 0 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a {
  color: var(--green);
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  color: var(--muted);
  font-size: 0.86rem;
}

.admin-shell {
  min-height: 100vh;
  background: var(--paper);
}

.admin-login {
  max-width: 560px;
  padding-top: 9vh;
}

.admin-login .quote-form {
  margin: 0 auto;
}

.admin-login-error {
  margin-top: 14px;
  color: #b42318;
  font-weight: 600;
}

.admin-header {
  position: sticky;
  top: 0;
  z-index: 20;
  color: #fff;
  background: var(--green-dark);
}

.admin-header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.admin-header h1 {
  margin: 0;
  font-size: 1.3rem;
}

.admin-header .btn-ghost {
  border-color: rgba(255, 255, 255, 0.4);
}

.admin-actions {
  display: flex;
  gap: 10px;
  margin-inline-start: auto;
}

.admin-actions .btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

.admin-body {
  padding: 28px 0 60px;
}

.admin-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.admin-tab {
  min-height: 40px;
  padding: 8px 16px;
  color: var(--muted);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.admin-tab.active {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}

.stat-card {
  padding: 18px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.stat-card strong {
  display: block;
  font-size: 1.7rem;
  color: var(--green);
}

.stat-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.admin-panel {
  display: none;
}

.admin-panel.active {
  display: block;
}

.table-wrap {
  overflow-x: auto;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.admin-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.admin-table th,
.admin-table td {
  padding: 12px 14px;
  text-align: start;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.admin-table th {
  color: var(--muted);
  background: #f0f4f0;
  font-weight: 700;
}

.admin-table td:first-child {
  font-weight: 700;
  white-space: nowrap;
}

.admin-table select,
.admin-table button {
  width: auto;
  margin: 2px 0;
}

.table-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.empty-state {
  padding: 28px;
  color: var(--muted);
  text-align: center;
  background: var(--card);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
}

.quote-form.admin-form {
  margin-bottom: 22px;
}

.print-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  overflow: auto;
  background: #e8ece8;
}

.print-bar {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
}

.print-sheet {
  width: min(820px, calc(100% - 32px));
  min-height: 420px;
  margin: 24px auto;
  padding: 46px;
  background: #fff;
  color: #111;
  box-shadow: var(--shadow);
}

.print-sheet h2 {
  margin-bottom: 20px;
}

.print-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 30px;
  margin: 18px 0;
}

.print-grid div {
  border-bottom: 1px solid #ddd;
  padding-bottom: 6px;
}

.print-grid span {
  display: block;
  color: #666;
  font-size: 0.85rem;
}

.print-total {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 2px solid #111;
  font-size: 1.2rem;
  font-weight: 700;
}

@media (max-width: 1020px) {
  .process-trust-grid {
    grid-template-columns: 1fr;
  }

  .product-layout {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .hero h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
    margin-inline-start: auto;
  }

  .site-nav {
    position: absolute;
    top: var(--header-height);
    inset-inline: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: var(--card);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 12px;
  }

  .lang-switch {
    order: -1;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .quote-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .quote-copy {
    position: static;
  }

  .hero {
    min-height: 100vh;
  }

  .hero-content {
    padding-top: 64px;
    padding-bottom: 150px;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    min-height: 100vh;
    align-items: stretch;
    flex-direction: column;
  }

  .hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 56px 0 28px;
  }

  .hero-stats {
    position: static;
    transform: none;
    width: 100%;
    margin-inline: auto;
    margin-top: 12px;
  }

  .hero h1 {
    font-size: 2.2rem;
    white-space: normal;
  }

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

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

  .hero-stat {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .section {
    padding: 60px 0;
  }

  .business-slider-wrap {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
  }

  .business-card {
    flex-basis: 82vw;
    width: 82vw;
    height: 600px;
  }

  .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }

  .slider-prev {
    inset-inline-start: 8px;
  }

  .slider-next {
    inset-inline-end: 8px;
  }

  .section-head h2,
  .about-copy h2,
  .quote-copy h2,
  .admin-form h2 {
    font-size: 1.7rem;
  }

  .card-grid,
  .product-grid,
  .process-grid,
  .form-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .product-layout .product-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner,
  .footer-meta {
    flex-direction: column;
  }

  .admin-header-inner {
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .admin-header h1 {
    width: 100%;
  }

  .admin-actions {
    width: 100%;
  }

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

  .print-sheet {
    padding: 26px;
  }

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

@media print {
  body > *:not(.print-overlay),
  .print-overlay .print-bar {
    display: none !important;
  }

  .print-overlay {
    position: static;
    background: #fff;
    overflow: visible;
  }

  .print-sheet {
    width: 100%;
    margin: 0;
    padding: 20px;
    box-shadow: none;
  }
}
