:root {
  --green: #0F3D34;
  --green-deep: #0A2B24;
  --green-soft: #164A3F;
  --gold: #D4AF37;
  --gold-light: #E5C75A;
  --gray: #6D7477;
  --gray-light: #E8EAE9;
  --white: #FFFFFF;
  --ink: #0F3D34;
  --radius: 4px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: "Tajawal", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

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

.container {
  width: min(1140px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* ——— Nav ——— */
.nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s, padding 0.4s;
  padding: 1.25rem 0;
}

.nav.scrolled {
  background: rgba(15, 61, 52, 0.92);
  backdrop-filter: blur(14px);
  padding: 0.75rem 0;
  box-shadow: 0 8px 32px rgba(10, 43, 36, 0.25);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  flex-shrink: 0;
}

.nav__brand img {
  width: auto;
  height: 52px;
  object-fit: contain;
  background: transparent;
  padding: 0;
  border-radius: 0;
}

.nav__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav__brand-text strong {
  font-size: 1.15rem;
  font-weight: 800;
}

.nav__brand-text span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 400;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav__links a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  transition: color 0.25s;
}

.nav__links a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -4px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

.nav__links a:hover {
  color: var(--white);
}

.nav__links a:hover::after {
  transform: scaleX(1);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gold);
  color: var(--green) !important;
  font-weight: 700;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius);
  transition: background 0.25s, transform 0.25s;
}

.nav__cta::after {
  display: none !important;
}

.nav__cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.nav__toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
}

.nav__toggle span {
  position: absolute;
  inset-inline: 8px;
  height: 2px;
  background: var(--white);
  transition: 0.3s;
}

.nav__toggle span:nth-child(1) { top: 12px; }
.nav__toggle span:nth-child(2) { top: 19px; }
.nav__toggle span:nth-child(3) { top: 26px; }

.nav__backdrop {
  display: none;
}

.nav.open .nav__toggle span:nth-child(1) {
  top: 19px;
  transform: rotate(45deg);
}
.nav.open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav__toggle span:nth-child(3) {
  top: 19px;
  transform: rotate(-45deg);
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 700;
  border: 0;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--gold {
  background: var(--gold);
  color: var(--green);
}

.btn--gold:hover {
  background: var(--gold-light);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--outline {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
}

.btn--outline:hover {
  background: var(--green);
  color: var(--white);
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slides {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__slide {
  position: absolute;
  inset: -8%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  will-change: transform, opacity;
}

.hero__slide--a {
  animation: saudiSlideA 28s var(--ease) infinite;
}

.hero__slide--b {
  animation: saudiSlideB 28s var(--ease) infinite;
}

@keyframes saudiSlideA {
  0% {
    opacity: 1;
    transform: scale(1.12) translate3d(2%, 0, 0);
  }
  40% {
    opacity: 1;
    transform: scale(1.22) translate3d(-3%, -2%, 0);
  }
  50% {
    opacity: 0;
    transform: scale(1.24) translate3d(-3.5%, -2.5%, 0);
  }
  90% {
    opacity: 0;
    transform: scale(1.12) translate3d(2%, 0, 0);
  }
  100% {
    opacity: 1;
    transform: scale(1.12) translate3d(2%, 0, 0);
  }
}

@keyframes saudiSlideB {
  0% {
    opacity: 0;
    transform: scale(1.18) translate3d(-2%, 1%, 0);
  }
  40% {
    opacity: 0;
    transform: scale(1.18) translate3d(-2%, 1%, 0);
  }
  50% {
    opacity: 1;
    transform: scale(1.2) translate3d(-1%, 0, 0);
  }
  90% {
    opacity: 1;
    transform: scale(1.28) translate3d(3%, -2%, 0);
  }
  100% {
    opacity: 0;
    transform: scale(1.3) translate3d(3.5%, -2.5%, 0);
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 43, 36, 0.5) 0%, rgba(15, 61, 52, 0.68) 42%, rgba(10, 43, 36, 0.96) 100%),
    radial-gradient(ellipse at 75% 25%, rgba(212, 175, 55, 0.16), transparent 50%);
  z-index: 1;
}

.hero__saudi-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(212, 175, 55, 0.12), transparent 60%),
    linear-gradient(90deg, transparent 0%, rgba(15, 61, 52, 0.15) 50%, transparent 100%);
  animation: glowDrift 14s ease-in-out infinite alternate;
}

@keyframes glowDrift {
  from { opacity: 0.55; transform: translateX(0); }
  to { opacity: 1; transform: translateX(-3%); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__slide--a,
  .hero__slide--b,
  .hero__saudi-glow {
    animation: none;
  }
  .hero__slide--a {
    opacity: 1;
    transform: scale(1.08);
  }
  .hero__slide--b {
    opacity: 0;
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(1140px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 8rem 0 5rem;
}

.hero__brand {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: rise 0.9s 0.15s var(--ease) forwards;
}

.hero__logo {
  width: min(420px, 88vw);
  height: auto;
  background: transparent;
  padding: 0;
  border-radius: 0;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.45));
}

.hero__lead {
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: rise 0.9s 0.35s var(--ease) forwards;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  opacity: 0;
  animation: rise 0.9s 0.65s var(--ease) forwards;
}

.hero__signal {
  position: absolute;
  left: 8%;
  top: 28%;
  width: 120px;
  height: 120px;
  pointer-events: none;
  opacity: 0.35;
  z-index: 1;
}

.hero__signal span {
  position: absolute;
  inset: 0;
  border: 2px solid var(--gold);
  border-radius: 50%;
  animation: pulseRing 3.2s ease-out infinite;
}

.hero__signal span:nth-child(2) { animation-delay: 1s; }
.hero__signal span:nth-child(3) { animation-delay: 2s; }

@keyframes pulseRing {
  0% { transform: scale(0.4); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ——— Section shared ——— */
.section {
  padding: 6rem 0;
}

.section--green {
  background: var(--green);
  color: var(--white);
}

.section--muted {
  background: var(--gray-light);
}

.section__eyebrow {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.section--green .section__eyebrow {
  color: var(--gold);
}

.section__title {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 0.85rem;
}

.section__desc {
  color: var(--gray);
  max-width: 36rem;
  font-size: 1.05rem;
}

.section--green .section__desc {
  color: rgba(255, 255, 255, 0.7);
}

.section__head {
  margin-bottom: 3.5rem;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ——— About strip ——— */
.about-strip {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.about-strip__visual {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

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

.about-strip__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 61, 52, 0.25), transparent 60%);
}

.about-strip__badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  background: var(--green);
  color: var(--white);
  padding: 1rem 1.25rem;
  max-width: 220px;
}

.about-strip__badge strong {
  display: block;
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}

.about-strip__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(15, 61, 52, 0.12);
}

.stat strong {
  display: block;
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1.1;
}

.stat span {
  font-size: 0.88rem;
  color: var(--gray);
}

/* ——— Products ——— */
.product-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}

.product-story:nth-child(even) .product-story__media {
  order: 2;
}

.product-story__media {
  position: relative;
  min-height: 520px;
  background: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-story__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 55% 50% at 50% 55%, rgba(15, 61, 52, 0.15), rgba(10, 43, 36, 0.72) 70%),
    linear-gradient(180deg, rgba(10, 43, 36, 0.35), rgba(10, 43, 36, 0.55));
  pointer-events: none;
}

.product-story__media img.product-shot {
  position: relative;
  z-index: 2;
  width: min(68%, 360px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.45)) drop-shadow(0 8px 16px rgba(212, 175, 55, 0.18));
  animation: productFloat 5.5s ease-in-out infinite;
  transition: transform 0.7s var(--ease);
}

.product-story:hover .product-shot {
  animation-play-state: paused;
  transform: translateY(-14px) scale(1.05);
}

.product-story__media .lifestyle {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  mix-blend-mode: normal;
  transform: scale(1.06);
  animation: lifestyleDrift 22s ease-in-out infinite alternate;
}

@keyframes productFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes lifestyleDrift {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to { transform: scale(1.12) translate3d(-2%, 1%, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .product-story__media img.product-shot,
  .product-story__media .lifestyle {
    animation: none;
  }
}

.product-story__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 5rem);
  background: var(--white);
}

.product-story--dark .product-story__body {
  background: var(--green);
  color: var(--white);
}

.product-story--dark .product-story__body p {
  color: rgba(255, 255, 255, 0.72);
}

.product-story__tag {
  display: inline-block;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.85rem;
  letter-spacing: 0.06em;
}

.product-story__body h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.product-story__body p {
  color: var(--gray);
  margin-bottom: 1.5rem;
  max-width: 28rem;
}

.product-story__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.product-story__meta span {
  font-size: 0.82rem;
  padding: 0.35rem 0.75rem;
  background: var(--gray-light);
  color: var(--green);
  font-weight: 600;
}

.product-story--dark .product-story__meta span {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold-light);
}

/* ——— Features ——— */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature {
  padding: 2.25rem 1.75rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.35s;
}

.feature:nth-child(3n) {
  border-left: 0;
}

.feature:hover {
  background: rgba(212, 175, 55, 0.08);
}

.feature__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
  color: var(--gold);
}

.feature__icon svg {
  width: 100%;
  height: 100%;
}

.feature h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
}

/* ——— Values band ——— */
.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.value {
  text-align: center;
  padding: 1.5rem 0.5rem;
}

.value__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.15rem;
  color: var(--green);
}

.value h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.value p {
  color: var(--gray);
  font-size: 0.92rem;
}

/* ——— CTA panel ——— */
.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  color: var(--white);
}

.cta-panel__bg {
  position: absolute;
  inset: 0;
}

.cta-panel__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-panel__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(15, 61, 52, 0.95) 0%, rgba(15, 61, 52, 0.78) 55%, rgba(10, 43, 36, 0.7) 100%);
}

.cta-panel__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.cta-panel h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 0.65rem;
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 32rem;
}

/* ——— Contact ——— */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-list {
  list-style: none;
  margin-top: 2rem;
}

.contact-list li {
  display: flex;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(15, 61, 52, 0.1);
}

.contact-list .icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--green);
  color: var(--gold);
  display: grid;
  place-items: center;
}

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

.contact-list strong {
  display: block;
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 500;
  margin-bottom: 0.15rem;
}

.contact-list a,
.contact-list span {
  font-weight: 700;
  color: var(--green);
}

.contact-form {
  background: var(--white);
  border: 1px solid rgba(15, 61, 52, 0.08);
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(15, 61, 52, 0.06);
}

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

.form-field {
  margin-bottom: 1rem;
}

.form-field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--green);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(109, 116, 119, 0.3);
  background: #fafbfa;
  color: var(--ink);
  border-radius: var(--radius);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 0;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
  background: var(--white);
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-success {
  display: none;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  background: rgba(15, 61, 52, 0.08);
  color: var(--green);
  font-weight: 600;
  border-right: 3px solid var(--gold);
}

.form-success.show {
  display: block;
}

/* ——— Footer ——— */
.footer {
  background: var(--green-deep);
  color: rgba(255, 255, 255, 0.75);
  padding: 3.5rem 0 1.5rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.footer__brand img {
  width: 180px;
  height: auto;
  background: transparent;
  padding: 0;
  border-radius: 0;
  object-fit: contain;
}

.footer__brand h3 {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.footer__brand p {
  font-size: 0.92rem;
  max-width: 260px;
}

.footer h4 {
  color: var(--gold);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer ul {
  list-style: none;
}

.footer li + li {
  margin-top: 0.55rem;
}

.footer a:hover {
  color: var(--gold);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 1.5rem;
  font-size: 0.85rem;
}

.saudi-line {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-weight: 600;
}

/* ——— Tablet ——— */
@media (max-width: 960px) {
  .container {
    width: min(1140px, calc(100% - 2rem));
  }

  .nav__toggle {
    display: block;
    z-index: 110;
  }

  .nav__links {
    position: fixed;
    top: 0;
    bottom: 0;
    inset-inline-start: 0;
    width: min(320px, 86vw);
    background: var(--green-deep);
    flex-direction: column;
    align-items: stretch;
    padding: 5.5rem 1.5rem 2rem;
    gap: 0.35rem;
    transform: translateX(-105%);
    transition: transform 0.35s var(--ease);
    z-index: 105;
    overflow-y: auto;
    box-shadow: 8px 0 40px rgba(0, 0, 0, 0.35);
    list-style: none;
  }

  [dir="rtl"] .nav__links {
    transform: translateX(105%);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.35);
  }

  .nav.open .nav__links {
    transform: none;
  }

  .nav__links a {
    display: block;
    padding: 0.9rem 0.35rem;
    font-size: 1.05rem;
  }

  .nav__links a::after {
    display: none;
  }

  .nav__cta {
    justify-content: center;
    margin-top: 0.75rem;
    width: 100%;
  }

  .nav__backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 43, 36, 0.55);
    z-index: 104;
    border: 0;
    cursor: pointer;
  }

  .nav.open .nav__backdrop {
    display: block;
  }

  .section {
    padding: 4rem 0;
  }

  .section__head {
    margin-bottom: 2.5rem;
  }

  .about-strip,
  .product-story,
  .contact-grid,
  .cta-panel__inner,
  .footer__top {
    grid-template-columns: 1fr;
  }

  .product-story {
    min-height: 0;
  }

  .product-story:nth-child(even) .product-story__media {
    order: 0;
  }

  .product-story__media {
    min-height: 360px;
  }

  .product-story__media img.product-shot {
    width: min(58%, 280px);
  }

  .product-story__body {
    padding: 2rem 1.5rem 2.5rem;
  }

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

  .feature {
    border-inline-end: 1px solid rgba(255, 255, 255, 0.1);
  }

  .feature:nth-child(3n) {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }

  .feature:nth-child(2n) {
    border-inline-end: 0;
    border-left: 0;
  }

  .values {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .about-strip {
    gap: 2rem;
  }

  .about-strip__visual {
    min-height: 280px;
    aspect-ratio: 4 / 3;
  }

  .about-strip__stats {
    gap: 1rem;
  }

  .cta-panel {
    padding: 3.5rem 0;
  }

  .cta-panel__inner {
    gap: 1.5rem;
  }

  .cta-panel__inner .btn {
    width: 100%;
    max-width: 280px;
  }

  .contact-grid {
    gap: 2rem;
  }

  .footer__top {
    gap: 2rem;
  }

  .hero__signal {
    display: none;
  }
}

/* ——— Phone ——— */
@media (max-width: 640px) {
  .container,
  .hero__content {
    width: calc(100% - 1.5rem);
  }

  .features,
  .values,
  .about-strip__stats,
  .form-row {
    grid-template-columns: 1fr;
  }

  .feature {
    border-inline-end: 0 !important;
    border-left: 0 !important;
    padding: 1.75rem 1.25rem;
  }

  .section {
    padding: 3.25rem 0;
  }

  .hero {
    min-height: 100svh;
    align-items: flex-end;
  }

  .hero__content {
    padding: 6.5rem 0 2.75rem;
  }

  .hero__brand {
    margin-bottom: 1.25rem;
  }

  .hero__logo {
    width: min(300px, 92vw);
  }

  .hero__lead {
    font-size: 0.98rem;
    margin-bottom: 1.5rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
  }

  .hero__actions .btn {
    width: 100%;
    padding: 0.9rem 1.25rem;
  }

  .nav__brand img {
    height: 40px;
  }

  .about-strip__visual {
    min-height: 220px;
  }

  .about-strip__badge {
    inset-inline-end: 0.85rem;
    bottom: 0.85rem;
    padding: 0.75rem 0.9rem;
    max-width: 180px;
    font-size: 0.85rem;
  }

  .about-strip__stats {
    margin-top: 1.75rem;
    padding-top: 1.5rem;
  }

  .stat strong {
    font-size: 1.5rem;
  }

  .product-story__media {
    min-height: 280px;
  }

  .product-story__media img.product-shot {
    width: min(62%, 220px);
  }

  .product-story__body {
    padding: 1.75rem 1.15rem 2.25rem;
  }

  .product-story__meta span {
    font-size: 0.78rem;
  }

  .contact-form {
    padding: 1.35rem;
  }

  .cta-panel__inner .btn {
    max-width: none;
  }

  .footer {
    padding: 2.5rem 0 1.25rem;
  }

  .footer__brand {
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer__brand p {
    max-width: none;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: start;
  }

  .btn {
    min-height: 48px;
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    font-size: 16px; /* يمنع زوم iOS عند التركيز */
  }
}

@media (max-width: 380px) {
  .hero__actions .btn,
  .cta-panel__inner .btn,
  .nav__cta {
    font-size: 0.95rem;
  }

  .values {
    gap: 0.75rem;
  }
}
