:root {
  --bg: #f6fbff;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --surface-soft: rgba(236, 248, 255, 0.92);
  --text: #163046;
  --muted: #5f7386;
  --border: rgba(112, 165, 205, 0.22);
  --shadow: 0 30px 80px rgba(21, 78, 118, 0.12);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-pill: 999px;
  --brand-blue: #1e9fff;
  --brand-green: #72d53f;
  --brand-mint: #5ee7dc;
  --brand-orange: #ff9a2e;
  --brand-deep: #1976ff;
  --content-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(114, 213, 63, 0.2), transparent 24%),
    radial-gradient(circle at 85% 10%, rgba(30, 159, 255, 0.22), transparent 28%),
    radial-gradient(circle at 80% 40%, rgba(255, 154, 46, 0.14), transparent 20%),
    linear-gradient(180deg, #f9fdff 0%, #f2fbff 42%, #eef8ff 100%);
}

body[dir="rtl"] {
  direction: rtl;
}

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

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

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

.page-blur {
  position: fixed;
  width: 28rem;
  height: 28rem;
  border-radius: 999px;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.blur-one {
  top: -8rem;
  left: -6rem;
  background: rgba(114, 213, 63, 0.18);
}

.blur-two {
  top: 14rem;
  right: -8rem;
  background: rgba(30, 159, 255, 0.2);
}

.blur-three {
  bottom: -10rem;
  left: 35%;
  background: rgba(94, 231, 220, 0.18);
}

.shell,
.site-header {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--content-width));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  box-shadow: 0 16px 32px rgba(22, 106, 175, 0.18);
}

.brand-wordmark {
  font-family: "Sora", sans-serif;
  font-size: 1.16rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 40px rgba(31, 102, 158, 0.08);
  backdrop-filter: blur(18px);
}

.site-nav a {
  font-weight: 700;
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--brand-deep);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 176px;
  height: 48px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 40px rgba(31, 102, 158, 0.08);
  backdrop-filter: blur(18px);
}

.language-switcher select {
  flex: 1 1 auto;
  border: 0;
  background: transparent;
  color: var(--text);
  font-weight: 700;
  appearance: none;
  cursor: pointer;
  min-width: 0;
}

.language-switcher select:focus {
  outline: none;
}

.language-icon,
.language-arrow {
  color: var(--muted);
  flex: 0 0 auto;
}

.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.header-cta,
.primary-button {
  padding: 14px 22px;
  color: #0d2f34;
  background: linear-gradient(135deg, var(--brand-green), var(--brand-mint) 45%, var(--brand-blue));
  box-shadow: 0 24px 44px rgba(38, 154, 240, 0.18);
}

.secondary-button {
  padding: 14px 22px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.header-cta:hover,
.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 52px;
  align-items: center;
  padding: 52px 0 30px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--brand-deep);
  font-size: 0.88rem;
}

.eyebrow-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-green), var(--brand-blue));
  box-shadow: 0 0 24px rgba(30, 159, 255, 0.42);
}

.hero h1,
.section h2,
.simple-title,
.cta-card h2 {
  margin: 14px 0 16px;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.hero h1 {
  font-size: clamp(2.7rem, 5vw, 4.8rem);
}

.hero-text,
.section-heading p,
.feature-card p,
.template-card p,
.faq-card p,
.content-card p,
.content-list,
.screens-note,
.cta-card p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.hero-points {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 28px;
  font-weight: 700;
  color: #2e4d64;
}

body[dir="rtl"] .hero-points li {
  padding-left: 0;
  padding-right: 28px;
}

.hero-points li::before {
  content: "";
  position: absolute;
  top: 0.58rem;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-green));
}

body[dir="rtl"] .hero-points li::before {
  left: auto;
  right: 0;
}

.hero-device-card,
.feature-card,
.template-card,
.shot-card,
.faq-card,
.content-card,
.cta-card,
.social-proof,
.language-pill-grid,
.site-footer,
.simple-page {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-device-card {
  padding: 24px;
  border-radius: var(--radius-xl);
}

.hero-device-top {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-logo {
  width: 88px;
  height: 88px;
  border-radius: 28px;
  box-shadow: 0 22px 40px rgba(27, 113, 200, 0.18);
}

.mini-label {
  margin: 0 0 6px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-deep);
}

.hero-device-top h2 {
  margin: 0;
  font-size: 1.65rem;
}

.hero-device-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.mini-panel {
  padding: 20px;
  min-height: 110px;
  border-radius: 24px;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.35;
  color: #183b46;
}

.mini-panel.lime {
  background: linear-gradient(145deg, rgba(190, 255, 165, 0.9), rgba(120, 224, 109, 0.55));
}

.mini-panel.blue {
  background: linear-gradient(145deg, rgba(194, 228, 255, 0.96), rgba(124, 195, 255, 0.58));
}

.mini-panel.orange {
  background: linear-gradient(145deg, rgba(255, 226, 173, 0.94), rgba(255, 177, 96, 0.58));
}

.mini-panel.mint {
  background: linear-gradient(145deg, rgba(198, 255, 244, 0.92), rgba(106, 231, 214, 0.55));
}

.social-proof {
  margin-top: 8px;
  padding: 18px 24px;
  border-radius: 28px;
}

.social-proof p {
  margin: 0 0 14px;
  font-weight: 800;
  color: #35566b;
}

.social-proof-grid,
.language-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-proof-grid span,
.language-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.88);
  color: #2f5166;
  font-weight: 800;
}

.section,
.cta-section {
  padding: 78px 0 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section h2,
.simple-title,
.cta-card h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.feature-grid,
.template-grid,
.content-grid {
  display: grid;
  gap: 16px;
}

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

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

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

.feature-card,
.template-card,
.content-card,
.faq-card {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.feature-card h3,
.template-card h3,
.faq-card h3,
.content-card h2 {
  margin: 16px 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.24rem;
  letter-spacing: -0.03em;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  color: #11303a;
}

.feature-icon.green { background: linear-gradient(145deg, #c9ffbb, #74d74f); }
.feature-icon.blue { background: linear-gradient(145deg, #d4edff, #77bfff); }
.feature-icon.orange { background: linear-gradient(145deg, #ffe0b9, #ffab4b); }
.feature-icon.mint { background: linear-gradient(145deg, #d3fff8, #6be7da); }

.template-card.lime { background: linear-gradient(145deg, rgba(243, 255, 233, 0.96), rgba(225, 255, 210, 0.72)); }
.template-card.blue { background: linear-gradient(145deg, rgba(237, 247, 255, 0.96), rgba(214, 236, 255, 0.76)); }
.template-card.orange { background: linear-gradient(145deg, rgba(255, 244, 230, 0.96), rgba(255, 227, 194, 0.76)); }
.template-card.mint { background: linear-gradient(145deg, rgba(236, 255, 251, 0.96), rgba(213, 251, 245, 0.78)); }

.language-pill-grid {
  padding: 20px;
  border-radius: var(--radius-xl);
}

.shot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.shot-card {
  border-radius: var(--radius-xl);
  padding: 18px;
}

.shot-card.wide {
  grid-column: span 3;
}

.shot-frame {
  min-height: 460px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  border: 2px dashed rgba(79, 144, 187, 0.22);
  background: linear-gradient(160deg, rgba(222, 250, 255, 0.88), rgba(246, 255, 244, 0.92));
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
  color: #44708b;
}

.shot-frame.alt {
  background: linear-gradient(160deg, rgba(239, 244, 255, 0.92), rgba(225, 240, 255, 0.9));
}

.shot-frame.soft {
  min-height: 290px;
  background: linear-gradient(160deg, rgba(250, 255, 239, 0.94), rgba(239, 254, 221, 0.92));
}

.screens-note {
  margin: 18px 0 0;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.cta-card {
  padding: 32px;
  border-radius: var(--radius-xl);
}

.simple-page {
  padding: 34px;
  border-radius: var(--radius-xl);
}

.content-list {
  margin: 0;
  padding-left: 18px;
}

body[dir="rtl"] .content-list {
  padding-left: 0;
  padding-right: 18px;
}

.contact-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.contact-stack a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, rgba(114, 213, 63, 0.16), rgba(30, 159, 255, 0.14));
  color: var(--brand-deep);
  font-weight: 800;
}

.site-footer {
  margin: 80px auto 34px;
  padding: 22px 24px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-weight: 800;
  color: var(--muted);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 1040px) {
  .site-header {
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

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

  .feature-grid,
  .template-grid,
  .content-grid,
  .shot-grid {
    grid-template-columns: 1fr;
  }

  .shot-card.wide {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  .site-header,
  .shell {
    width: min(calc(100% - 20px), var(--content-width));
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .language-switcher,
  .header-cta {
    width: 100%;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-device-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-device-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .cta-section {
    padding-top: 58px;
  }

  .shot-frame {
    min-height: 260px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
