/* =========================
   Nargis Enterprise Landing Page
   Mobile-first, lightweight CSS
   ========================= */

:root {
  --primary: #f97316;
  --primary-dark: #c2410c;
  --secondary: #fff7ed;
  --ink: #1f2937;
  --muted: #6b7280;
  --border: #fed7aa;
  --white: #ffffff;
  --surface: #fffbf7;
  --success: #16a34a;
  --shadow: 0 20px 50px rgba(124, 45, 18, 0.12);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(249, 115, 22, 0.12);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), #fb7185);
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.3);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.72rem;
}

.menu-button {
  width: 44px;
  height: 44px;
  display: grid;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
}

.menu-button span {
  width: 21px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
}

.site-nav {
  position: absolute;
  top: calc(100% + 1px);
  left: 16px;
  right: 16px;
  display: none;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.site-nav.is-open {
  display: grid;
}

.site-nav a {
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a:hover {
  background: var(--secondary);
}

.site-nav .nav-cta {
  color: var(--white);
  background: var(--primary);
  text-align: center;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 58px 0 72px;
  background:
    radial-gradient(circle at 10% 20%, rgba(251, 113, 133, 0.14), transparent 35%),
    linear-gradient(180deg, #fffaf5 0%, #ffffff 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 44px;
  align-items: center;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-shape-one {
  width: 250px;
  height: 250px;
  top: -100px;
  right: -100px;
  background: rgba(249, 115, 22, 0.1);
}

.hero-shape-two {
  width: 180px;
  height: 180px;
  left: -80px;
  bottom: -80px;
  background: rgba(251, 113, 133, 0.1);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
}

.hero h1,
.section-heading h2,
.offer-card h2,
.contact-card h2 {
  margin: 0;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(2.45rem, 8vw, 5.5rem);
}

.hero-copy > p {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2.3vw, 1.2rem);
}

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

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), #ea580c);
  box-shadow: 0 14px 28px rgba(249, 115, 22, 0.28);
}

.button-primary:hover {
  box-shadow: 0 18px 34px rgba(249, 115, 22, 0.34);
}

.button-secondary {
  color: var(--primary-dark);
  background: var(--white);
  border-color: var(--border);
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 34px;
}

.hero-trust div {
  padding: 14px 10px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(249, 115, 22, 0.15);
  border-radius: var(--radius-sm);
}

.hero-trust strong,
.hero-trust span {
  display: block;
}

.hero-trust strong {
  color: var(--primary-dark);
  font-size: 1rem;
}

.hero-trust span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.72rem;
}

.hero-visual {
  position: relative;
  max-width: 560px;
  margin-inline: auto;
}

.hero-visual > img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 42% 42% 24px 24px;
  box-shadow: var(--shadow);
}

.sale-badge {
  position: absolute;
  top: 8%;
  right: -8px;
  z-index: 2;
  width: 94px;
  height: 94px;
  display: grid;
  place-content: center;
  color: var(--white);
  background: var(--primary);
  border: 6px solid var(--white);
  border-radius: 50%;
  text-align: center;
  transform: rotate(8deg);
  box-shadow: 0 16px 30px rgba(124, 45, 18, 0.25);
}

.sale-badge span,
.sale-badge strong {
  display: block;
  line-height: 1;
}

.sale-badge span {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.sale-badge strong {
  margin: 4px 0;
  font-size: 1.7rem;
}

.hero-card {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: -22px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-card span,
.hero-card strong {
  display: block;
}

.hero-card span {
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-card strong {
  margin-top: 4px;
  font-size: 1rem;
}

.announcement {
  color: var(--white);
  background: var(--ink);
}

.announcement-inner {
  min-height: 54px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 18px;
  padding-block: 10px;
  text-align: center;
  font-size: 0.86rem;
}

.announcement-inner a {
  color: #fdba74;
  font-weight: 900;
}

.section {
  padding: 82px 0;
}

.section-heading {
  display: grid;
  gap: 16px;
  margin-bottom: 34px;
}

.section-heading h2 {
  font-size: clamp(2rem, 5vw, 3.3rem);
}

.section-heading p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

.section-heading.centered {
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 38px;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-self: center;
}

.section-heading.centered p {
  margin-inline: auto;
}

.product-grid,
.benefit-grid,
.review-grid {
  display: grid;
  gap: 22px;
}

.product-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid #ffedd5;
  border-radius: var(--radius-md);
  box-shadow: 0 14px 34px rgba(124, 45, 18, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.product-image {
  position: relative;
  overflow: hidden;
  background: #fff7ed;
}

.product-image img {
  width: 100%;
  aspect-ratio: 4 / 4.8;
  object-fit: cover;
  transition: transform 350ms ease;
}

.product-card:hover .product-image img {
  transform: scale(1.04);
}

.product-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 7px 11px;
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.product-info {
  padding: 20px;
}

.product-info h3 {
  margin: 0;
  font-size: 1.15rem;
}

.product-info p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 15px 0;
}

.price del {
  color: #9ca3af;
  font-size: 0.9rem;
}

.price strong {
  color: var(--primary-dark);
  font-size: 1.2rem;
}

.product-button {
  min-height: 46px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 12px;
  font-weight: 900;
}

.product-button:hover {
  background: var(--primary);
}

.benefits {
  background: var(--surface);
}

.benefit-grid article {
  padding: 26px;
  background: var(--white);
  border: 1px solid #ffedd5;
  border-radius: var(--radius-md);
}

.icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--primary-dark);
  background: var(--secondary);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 900;
}

.benefit-grid h3 {
  margin: 18px 0 7px;
}

.benefit-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.offer-section {
  padding-top: 0;
  background: var(--surface);
}

.offer-card {
  display: grid;
  gap: 28px;
  padding: 38px 26px;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 15%, rgba(255, 255, 255, 0.16), transparent 22%),
    linear-gradient(135deg, #c2410c, #fb7185);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.eyebrow-light {
  color: #ffedd5;
}

.offer-card h2 {
  max-width: 720px;
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.offer-card p {
  max-width: 650px;
  margin: 18px 0 25px;
  color: rgba(255, 255, 255, 0.86);
}

.button-light {
  color: var(--primary-dark);
  background: var(--white);
}

.offer-stat {
  min-height: 220px;
  display: grid;
  place-content: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 28px;
}

.offer-stat span,
.offer-stat strong,
.offer-stat small {
  display: block;
}

.offer-stat span {
  font-weight: 700;
}

.offer-stat strong {
  margin: 3px 0;
  font-size: clamp(4rem, 12vw, 7rem);
  line-height: 1;
}

.offer-stat small {
  color: #ffedd5;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-grid blockquote {
  margin: 0;
  padding: 26px;
  background: var(--white);
  border: 1px solid #ffedd5;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 30px rgba(124, 45, 18, 0.06);
}

.stars {
  color: #f59e0b;
  letter-spacing: 0.12em;
}

.review-grid blockquote p {
  margin: 16px 0;
  font-size: 1rem;
}

.review-grid footer {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.contact {
  background: linear-gradient(180deg, #ffffff, #fff7ed);
}

.contact-card {
  display: grid;
  gap: 26px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.contact-card h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.contact-copy > p {
  max-width: 650px;
  color: var(--muted);
}

.contact-points {
  display: grid;
  gap: 8px;
  margin-top: 20px;
  color: #166534;
  font-weight: 800;
  font-size: 0.9rem;
}

.order-box {
  padding: 24px;
  background: var(--secondary);
  border-radius: var(--radius-md);
}

.order-box h3 {
  margin: 0;
  font-size: 1.35rem;
}

.order-box p {
  color: var(--muted);
  font-size: 0.88rem;
}

.button-whatsapp {
  width: 100%;
  color: var(--white);
  background: var(--success);
}

.contact-link {
  display: block;
  margin-top: 14px;
  color: var(--primary-dark);
  font-weight: 900;
  text-align: center;
}

.order-box small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  text-align: center;
}

.site-footer {
  padding: 32px 0 90px;
  color: rgba(255, 255, 255, 0.78);
  background: #111827;
}

.footer-grid {
  display: grid;
  gap: 22px;
  align-items: center;
  text-align: center;
}

.footer-brand {
  color: var(--white);
}

.footer-brand small {
  color: rgba(255, 255, 255, 0.58);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  font-size: 0.86rem;
  font-weight: 800;
}

.site-footer p {
  margin: 0;
  font-size: 0.82rem;
}

.floating-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  color: var(--white);
  background: var(--primary);
  border: 3px solid var(--white);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(124, 45, 18, 0.28);
  font-weight: 900;
}

:focus-visible {
  outline: 3px solid rgba(249, 115, 22, 0.45);
  outline-offset: 3px;
}

@media (min-width: 700px) {
  .hero {
    padding: 78px 0 92px;
  }

  .section {
    padding: 100px 0;
  }

  .section-heading {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: end;
  }

  .section-heading.centered {
    display: block;
  }

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

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

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

  .offer-card {
    grid-template-columns: 1.4fr 0.6fr;
    align-items: center;
    padding: 54px;
  }

  .contact-card {
    grid-template-columns: 1.25fr 0.75fr;
    align-items: center;
    padding: 46px;
  }

  .footer-grid {
    grid-template-columns: 1fr auto 1fr;
    text-align: left;
  }

  .site-footer p {
    text-align: right;
  }

  .floating-cta {
    display: none;
  }

  .site-footer {
    padding-bottom: 32px;
  }
}

@media (min-width: 900px) {
  .menu-button {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

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

  .site-nav .nav-cta {
    margin-left: 6px;
    padding-inline: 18px;
    border-radius: 999px;
  }

  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 74px;
  }

  .hero-trust div {
    padding: 16px;
  }

  .hero-trust strong {
    font-size: 1.15rem;
  }

  .hero-trust span {
    font-size: 0.8rem;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
