* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1f2937;
  background: #f8f6f1;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
.topbar {
  background: #12343b;
  color: #f8fafc;
  position: sticky;
  top: 0;
  z-index: 30;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}
.brand {
  display: flex;
  flex-direction: column;
}
.brand strong {
  font-size: 26px;
  letter-spacing: 0.5px;
}
.brand span {
  font-size: 13px;
  color: #d1d5db;
}
.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}
.nav a {
  color: #e5e7eb;
}
.nav a:hover {
  color: #f3c77a;
}
.hero {
  background: linear-gradient(135deg, rgba(18, 52, 59, 0.84), rgba(142, 92, 42, 0.62)), url("assets/product-library/SAN-001/cover_1.jpg") center/cover;
  color: #fff;
  padding: 86px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: center;
}
.page-hero {
  background: linear-gradient(135deg, #12343b, #8e5c2a);
  color: #fff;
  padding: 70px 0 56px;
}
.page-hero.light {
  background: linear-gradient(135deg, #24454b, #54737b);
}
.kicker {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 13px;
  letter-spacing: 0.4px;
  margin-bottom: 16px;
}
.hero h1, .page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(38px, 7vw, 66px);
  line-height: 1.06;
}
.page-hero h1 {
  font-size: clamp(34px, 6vw, 56px);
}
.hero .arabic, .page-hero .arabic {
  font-size: clamp(26px, 4.2vw, 42px);
  margin-bottom: 14px;
}
.hero p, .page-hero p {
  font-size: 18px;
  color: #f3f4f6;
  max-width: 720px;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.2s ease;
}
.button.primary {
  background: #f3c77a;
  color: #1f2937;
}
.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #fff;
}
.button.ghost {
  background: #fff;
  color: #12343b;
}
.button.dark {
  background: #12343b;
  color: #fff;
}
.button:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}
.hero-card, .info-panel, .form-card, .faq-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 22px;
  padding: 24px;
}
.info-panel, .form-card, .faq-card {
  background: #fff;
  border: 1px solid #ece8df;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}
.hero-card h3, .info-panel h3, .form-card h3, .faq-card h3 {
  margin-top: 0;
  font-size: 20px;
}
.hero-card ul, .info-panel ul, .checklist, .faq-list {
  padding-left: 20px;
  margin: 0;
}
.section {
  padding: 72px 0;
}
.section.alt {
  background: #fff;
}
.section-title {
  margin: 0 0 14px;
  font-size: 34px;
  line-height: 1.2;
}
.section-subtitle {
  margin: 0 0 34px;
  max-width: 820px;
  color: #4b5563;
  font-size: 17px;
}
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}
.badge {
  padding: 8px 12px;
  border-radius: 999px;
  background: #e7efe6;
  color: #12343b;
  font-size: 13px;
  font-weight: 600;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 30px;
}
.stat {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  padding: 18px 20px;
}
.stat strong {
  display: block;
  font-size: 28px;
  margin-bottom: 6px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  border: 1px solid #ece8df;
}
.card h3, .card h4 {
  margin-top: 0;
}
.card p, .card li {
  color: #4b5563;
}
.category-card {
  background: linear-gradient(180deg, #fff, #f8f3ea);
}
.product-card {
  min-height: 210px;
}
.product-card .label, .tag {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f4efe4;
  color: #8e5c2a;
  font-size: 12px;
  font-weight: 700;
}
.product-card h4 {
  margin: 14px 0 8px;
  font-size: 20px;
}
.product-card .meta, .muted {
  font-size: 14px;
  color: #6b7280;
}
.feature-list {
  display: grid;
  gap: 12px;
}
.feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.feature-item strong {
  min-width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #12343b;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.step {
  background: #12343b;
  color: #fff;
  border-radius: 18px;
  padding: 24px;
}
.step strong {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f3c77a;
  color: #111827;
  margin-bottom: 12px;
}
.quote-banner {
  background: linear-gradient(135deg, #12343b, #1f4c56);
  color: #fff;
  border-radius: 28px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  align-items: center;
}
.callout {
  background: #fff7e6;
  border: 1px solid #f0d59d;
  color: #6b4e1d;
  border-radius: 18px;
  padding: 20px;
}
.callout strong {
  display: block;
  margin-bottom: 8px;
}
.table-wrap {
  overflow-x: auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}
table {
  width: 100%;
  border-collapse: collapse;
}
th, td {
  padding: 14px 16px;
  border-bottom: 1px solid #ece8df;
  text-align: left;
  vertical-align: top;
}
th {
  background: #12343b;
  color: #fff;
  font-size: 14px;
}
tr:nth-child(even) td {
  background: #fbfaf7;
}
.footer {
  background: #111827;
  color: #e5e7eb;
  padding: 34px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 24px;
}
.rtl {
  direction: rtl;
}
.notice {
  background: #fff7e6;
  border: 1px solid #f0d59d;
  color: #6b4e1d;
  border-radius: 16px;
  padding: 18px;
}
.inline-list {
  display: grid;
  gap: 10px;
  padding-left: 18px;
}
.kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.kpi-box {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  border: 1px solid #ece8df;
}
.kpi-box strong {
  display: block;
  color: #12343b;
  font-size: 26px;
  margin-bottom: 8px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.field {
  background: #f8fafc;
  border: 1px solid #dbe4ea;
  border-radius: 14px;
  padding: 16px;
}
.field label {
  display: block;
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 8px;
}
.field div {
  font-weight: 600;
  color: #1f2937;
}
.field.full {
  grid-column: 1 / -1;
}
.timeline {
  display: grid;
  gap: 16px;
}
.timeline-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 18px;
  align-items: start;
}
.timeline-item strong {
  color: #8e5c2a;
}
.banner-option {
  border-left: 4px solid #8e5c2a;
  padding-left: 16px;
}
.contact-card {
  background: #12343b;
  color: #fff;
  border-radius: 18px;
  padding: 22px;
}
.contact-card p {
  color: #e5e7eb;
}
.footer a, .contact-card a {
  color: inherit;
}
@media (max-width: 980px) {
  .hero-grid, .quote-banner, .footer-grid, .grid-2, .form-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .steps, .stats, .kpi-row { grid-template-columns: 1fr 1fr; }
  .timeline-item { grid-template-columns: 1fr; gap: 6px; }
}
.product-visual {
  min-height: 132px;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 6px;
  color: #fff;
  background: linear-gradient(135deg, #5b7280, #1f2937);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}
.product-visual span {
  font-size: 20px;
  font-weight: 700;
}
.product-visual small {
  color: rgba(255,255,255,0.82);
  font-size: 12px;
}
.product-visual.shelter { background: linear-gradient(135deg, #7b5d3d, #3d2b1f); }
.product-visual.water { background: linear-gradient(135deg, #2c7da0, #174b62); }
.product-visual.hygiene { background: linear-gradient(135deg, #5b6ee1, #2f3c8c); }
.product-visual.family { background: linear-gradient(135deg, #c45c7c, #7f314f); }
.product-visual.kitchen { background: linear-gradient(135deg, #c47c2b, #724314); }
.product-visual.lighting { background: linear-gradient(135deg, #f2b94b, #915f00); color: #1f2937; }
.product-visual.lighting small { color: rgba(31,41,55,0.8); }
.product-visual.care { background: linear-gradient(135deg, #2e8b79, #175046); }
.product-card.visual {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  overflow: hidden;
  min-height: auto;
}
.product-card.visual p {
  margin: 0;
}
.product-card.visual .meta {
  margin-top: 0;
}
.visual-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 20px 20px;
  flex: 1;
}
.visual-body .label {
  align-self: flex-start;
}
.product-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #d7dee5;
}
.product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.02) 30%, rgba(15, 23, 42, 0.72) 100%);
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-media.contain {
  background: linear-gradient(180deg, #ffffff, #f3f4f6);
}
.product-media.contain img {
  object-fit: contain;
  padding: 14px;
}
.product-media-copy {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 1;
  color: #fff;
}
.product-media-copy span {
  display: block;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.12;
}
.product-media-copy small {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
}
.spec-line {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
}
.sticky-cta-shell {
  position: sticky;
  bottom: 0;
  z-index: 20;
  padding: 0 0 18px;
}
.sticky-cta {
  background: rgba(17, 24, 39, 0.94);
  color: #fff;
  border-radius: 24px;
  padding: 20px 22px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  align-items: center;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.22);
}
.sticky-cta strong {
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
}
.sticky-cta span {
  color: #d1d5db;
  font-size: 14px;
}
.button.secondary-dark {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
  background: rgba(255,255,255,0.08);
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.faq-card p:last-child {
  margin-bottom: 0;
}
.ready-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.ready-card {
  background: #fff;
  border: 1px solid #ece8df;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}
.ready-card strong {
  display: block;
  color: #12343b;
  margin-bottom: 8px;
  font-size: 18px;
}
.signal-list {
  display: grid;
  gap: 10px;
  padding-left: 18px;
}
.copy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.copy-card {
  background: #fff;
  border: 1px solid #ece8df;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}
.copy-card h3 {
  margin: 14px 0 10px;
}
.mini-note {
  margin: 0 0 14px;
  color: #6b7280;
  font-size: 13px;
}
.copy-block {
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: 16px;
  padding: 16px;
  color: #334155;
  white-space: pre-line;
}
.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  margin: 0 6px 6px 0;
}
.pill.core {
  background: #e7efe6;
  color: #12343b;
}
.pill.backup {
  background: #fff3db;
  color: #8e5c2a;
}
@media (max-width: 980px) {

  .hero-grid, .quote-banner, .footer-grid, .grid-2, .form-grid, .copy-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .steps, .stats, .kpi-row, .ready-grid, .faq-grid { grid-template-columns: 1fr 1fr; }
  .timeline-item, .sticky-cta { grid-template-columns: 1fr; gap: 6px; }
}
@media (max-width: 640px) {
  .nav { display: none; }
  .hero, .page-hero { padding-top: 64px; }
  .grid-3, .grid-4, .steps, .stats, .kpi-row, .ready-grid, .faq-grid, .copy-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 28px; }
  .sticky-cta-shell { padding-bottom: 12px; }
}


