:root {
  --bg: #f7fbfb;
  --surface: #ffffff;
  --soft: #e7f4f4;
  --accent: #6b9ea0;
  --text: #284245;
  --muted: rgba(39, 52, 69, 0.72);
  --shadow: 0 18px 48px rgba(30, 45, 63, 0.10);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg) 0%, #ffffff 100%);
  line-height: 1.9;
  direction: rtl;
  text-align: right;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; border-radius: 24px; }
button, input, textarea { font: inherit; }
input, textarea { text-align: right; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(920px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 88px 0; }
.section-soft { background: linear-gradient(180deg, var(--soft), rgba(255,255,255,0.94)); }
.section-alt { background: linear-gradient(180deg, rgba(255,255,255,0.82), #ffffff); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(255,255,255,0.76);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}
.brand { font-size: 1.05rem; font-weight: 800; }
.brand small { display: block; margin-top: 4px; font-size: 0.78rem; color: var(--muted); font-weight: 500; }
.nav { display: flex; flex-wrap: wrap; gap: 18px; color: var(--muted); }
.nav a:hover, .service-link:hover, .inline-links a:hover, .footer-inner a:hover { color: var(--accent); }
.hero-section { padding-top: 56px; overflow: hidden; }
.section-header { max-width: 780px; margin-bottom: 30px; }
.section-kicker {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.06);
  background: rgba(255,255,255,0.84);
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 0.03em;
}
h1, h2, h3, p { margin-top: 0; }
h1 { margin: 14px 0 18px; font-size: clamp(2.4rem, 5vw, 4.5rem); line-height: 1.15; }
h2 { margin: 14px 0; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.25; }
h3 { margin-bottom: 10px; font-size: 1.12rem; }
p, .lead { color: var(--muted); }
.card, .hero-copy, .floating-card, .rail-card, .timeline-card, .stat-card, .editorial-note, .band-panel {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}
.hero-copy, .card, .band-panel, .editorial-note { padding: 26px; }
.hero-shell, .split-layout, .contact-layout { display: grid; gap: 24px; align-items: center; }
.hero-split-shell, .hero-mosaic-shell, .hero-diagonal-shell, .hero-columns-shell, .hero-layer-shell, .hero-zigzag-shell { grid-template-columns: 1fr 1fr; }
.hero-rail-shell { grid-template-columns: .34fr .86fr .8fr; }
.hero-stack-shell { grid-template-columns: .92fr 1.08fr; }
.hero-editorial-shell { grid-template-columns: 1.04fr .96fr; }
.hero-band-shell .band-wrap { display: grid; gap: 24px; }
.hero-split-media { display: grid; grid-template-columns: 1.06fr .94fr; gap: 16px; }
.main-image { min-height: 500px; height: 100%; object-fit: cover; }
.side-stack { display: grid; gap: 16px; }
.side-stack img { height: 250px; object-fit: cover; }
.floating-card { padding: 22px; }
.floating-card strong, .rail-card strong, .stat-card strong, .editorial-note strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.7rem;
  color: var(--text);
}
.hero-mosaic { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hero-mosaic img:first-child { grid-row: span 2; min-height: 460px; height: 100%; object-fit: cover; }
.hero-mosaic img:nth-child(2), .hero-mosaic img:nth-child(3) { height: 220px; object-fit: cover; }
.hero-band-media { position: relative; min-height: 520px; }
.band-main { width: 100%; min-height: 520px; object-fit: cover; }
.band-mini { position: absolute; left: 22px; bottom: 22px; width: 230px; height: 230px; object-fit: cover; border: 8px solid #fff; }
.band-panel { position: absolute; right: 34px; bottom: 34px; max-width: 560px; z-index: 2; }
.metric-rail { display: grid; gap: 12px; }
.rail-card { padding: 18px; }
.hero-single { display: grid; gap: 16px; }
.hero-single img { width: 100%; object-fit: cover; box-shadow: var(--shadow); }
.hero-single img:first-child { min-height: 360px; }
.hero-secondary { height: 180px; }
.hero-diagonal { display: grid; grid-template-columns: 1fr .9fr; gap: 16px; align-items: end; }
.hero-diagonal img:first-child { height: 430px; object-fit: cover; }
.hero-diagonal img:last-child { margin-top: 54px; height: 320px; object-fit: cover; }
.hero-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.hero-columns img { height: 430px; object-fit: cover; }
.hero-columns img:nth-child(2) { margin-top: 30px; }
.hero-stack-right { display: grid; gap: 16px; }
.stack-tall { min-height: 360px; object-fit: cover; }
.stack-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stack-row img { height: 220px; object-fit: cover; }
.hero-layer { position: relative; min-height: 520px; }
.layer-main { width: 100%; min-height: 520px; object-fit: cover; }
.layer-float { position: absolute; left: 24px; bottom: 24px; width: 240px; height: 240px; object-fit: cover; border: 8px solid #fff; }
.editorial-media { display: grid; grid-template-columns: 1.1fr .9fr; gap: 16px; align-items: stretch; }
.editorial-media img:first-child { grid-row: span 2; min-height: 460px; height: 100%; object-fit: cover; }
.editorial-media img:last-child { height: 220px; object-fit: cover; }
.editorial-note { display: flex; flex-direction: column; justify-content: center; }
.zigzag-media { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.zigzag-media img:first-child { grid-row: span 2; min-height: 460px; object-fit: cover; }
.zigzag-media img:nth-child(2), .zigzag-media img:nth-child(3) { height: 220px; object-fit: cover; }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 22px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .25s ease, background .25s ease;
}
.btn.primary { background: var(--accent); color: #fff; }
.btn.secondary { background: rgba(255,255,255,0.95); border-color: rgba(0,0,0,0.08); }
.btn:hover { transform: translateY(-2px); }
.hero-points { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 22px; }
.point-item { padding: 16px 18px; border-radius: 18px; background: rgba(255,255,255,0.82); border: 1px solid rgba(0,0,0,0.06); }
.point-item strong { display: block; margin-bottom: 6px; }
.split-layout { grid-template-columns: 1fr 1fr; }
.contact-layout { grid-template-columns: .92fr 1.08fr; align-items: start; }
.service-grid, .cards.three, .cards.four, .stats-grid, .timeline-grid, .mini-card-grid, .info-grid, .form-grid, .showcase-grid {
  display: grid;
  gap: 18px;
}
.service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.stats-grid, .timeline-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.mini-card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.info-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 22px; }
.showcase-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.service-card, .showcase-card { overflow: hidden; }
.service-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.icon-badge {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255,255,255,0.72);
  color: var(--accent);
}
.icon-badge svg { width: 22px; height: 22px; }
.service-index, .step-no { color: var(--accent); font-weight: 800; letter-spacing: .08em; }
.service-link { margin-top: 12px; color: var(--accent); font-weight: 700; }
.media-frame { overflow: hidden; border-radius: 30px; box-shadow: var(--shadow); }
.media-frame img { min-height: 420px; object-fit: cover; }
.info-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(0,0,0,0.06);
}
.inline-links { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 16px; color: var(--accent); }
.stat-card { padding: 18px; text-align: center; }
.timeline-card { padding: 22px; }
.timeline-card strong { display: block; margin-bottom: 10px; color: var(--accent); }
.showcase-card img { width: 100%; height: 320px; object-fit: cover; border-radius: 0; }
.showcase-copy { padding: 22px; }
.quote { min-height: 110px; }
.role { color: var(--accent); font-weight: 700; }
.faq-list { display: grid; gap: 14px; }
.faq-item {
  overflow: hidden;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.faq-question {
  width: 100%;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  background: transparent;
  text-align: right;
  cursor: pointer;
  color: var(--text);
}
.faq-question span { font-weight: 700; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-answer-inner { padding: 0 22px 22px; }
.faq-item.active .faq-answer { max-height: 260px; }
.contact-meta { display: grid; gap: 16px; }
.form-shell { padding: 28px; }
.form-grid { grid-template-columns: 1fr 1fr; }
.field { display: grid; gap: 8px; margin-bottom: 14px; }
.field.full { grid-column: 1 / -1; }
input, textarea {
  width: 100%;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.96);
  color: var(--text);
}
textarea { min-height: 150px; resize: vertical; }
.form-note { margin-top: 12px; font-size: .92rem; }
.site-footer {
  padding: 32px 0 42px;
  border-top: 1px solid rgba(0,0,0,0.06);
  background: rgba(255,255,255,0.82);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: .95rem;
}
.footer-inner > div:last-child { display: flex; flex-wrap: wrap; gap: 14px; }
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (max-width: 1100px) {
  .hero-split-shell, .hero-mosaic-shell, .hero-diagonal-shell, .hero-columns-shell, .hero-layer-shell, .hero-zigzag-shell, .hero-rail-shell, .hero-stack-shell, .hero-editorial-shell, .service-grid, .cards.three, .cards.four, .stats-grid, .timeline-grid, .mini-card-grid, .info-grid, .showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-band-shell .band-wrap, .split-layout, .contact-layout { grid-template-columns: 1fr; }
  .band-panel { position: static; max-width: none; }
  .hero-band-media { min-height: auto; }
}
@media (max-width: 760px) {
  .container, .narrow { width: min(var(--max), calc(100% - 28px)); }
  .section { padding: 72px 0; }
  .header-inner { min-height: 72px; align-items: flex-start; padding: 12px 0; }
  .nav { gap: 12px; font-size: .92rem; }
  .hero-copy, .card, .band-panel, .editorial-note, .floating-card, .timeline-card, .form-shell { padding: 22px; }
  .hero-split-shell, .hero-mosaic-shell, .hero-diagonal-shell, .hero-columns-shell, .hero-layer-shell, .hero-zigzag-shell, .hero-rail-shell, .hero-stack-shell, .hero-editorial-shell, .split-layout, .contact-layout, .hero-split-media, .hero-mosaic, .hero-diagonal, .hero-columns, .stack-row, .editorial-media, .zigzag-media, .service-grid, .cards.three, .cards.four, .stats-grid, .timeline-grid, .mini-card-grid, .info-grid, .showcase-grid, .form-grid, .hero-points {
    grid-template-columns: 1fr;
  }
  .main-image, .side-stack img, .hero-mosaic img:first-child, .hero-mosaic img:nth-child(2), .hero-mosaic img:nth-child(3), .hero-diagonal img:first-child, .hero-diagonal img:last-child, .hero-columns img, .stack-tall, .stack-row img, .layer-main, .editorial-media img:first-child, .editorial-media img:last-child, .zigzag-media img:first-child, .zigzag-media img:nth-child(2), .zigzag-media img:nth-child(3), .showcase-card img, .hero-single img, .media-frame img {
    min-height: auto;
    height: auto;
  }
  .hero-columns img:nth-child(2), .hero-diagonal img:last-child { margin-top: 0; }
  .band-mini, .layer-float {
    position: static;
    width: 100%;
    height: auto;
    border: 0;
    margin-top: 14px;
  }
}
