:root {
  --bg: #0e0c09;
  --bg-soft: #17130e;
  --surface: rgba(255, 255, 255, 0.065);
  --surface-strong: rgba(255, 255, 255, 0.1);
  --line: rgba(255, 222, 157, 0.18);
  --gold: #d7a747;
  --gold-light: #ffe2a2;
  --gold-deep: #9b6819;
  --cream: #fff8eb;
  --muted: #d0c4b0;
  --white: #ffffff;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 16px 46px rgba(0, 0, 0, 0.24);
  --focus-ring: 0 0 0 4px rgba(255, 226, 162, 0.2);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --container: min(1220px, calc(100% - 32px));
  --transition: 260ms cubic-bezier(.2,.75,.25,1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--cream);
  background:
    radial-gradient(circle at 82% 5%, rgba(215, 167, 71, 0.18), transparent 25%),
    radial-gradient(circle at 10% 40%, rgba(255, 226, 162, 0.08), transparent 24%),
    linear-gradient(180deg, #0a0907 0%, #15110c 48%, #0c0a08 100%);
  font-family: "Cairo", Tahoma, Arial, sans-serif;
  font-synthesis: none;
  line-height: 1.85;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

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

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

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

button {
  font: inherit;
}

::selection {
  color: #211707;
  background: var(--gold-light);
}

:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.noise {
  position: fixed;
  inset: 0;
  opacity: .035;
  pointer-events: none;
  z-index: 50;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.ambient {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  z-index: -1;
  opacity: .28;
}

.ambient-one {
  width: 420px;
  height: 420px;
  top: -140px;
  right: -100px;
  background: var(--gold-deep);
}

.ambient-two {
  width: 360px;
  height: 360px;
  bottom: 12%;
  left: -160px;
  background: #7c4f16;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  width: var(--container);
  height: 78px;
  margin: 14px auto 0;
  padding: 10px 12px 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border: 1px solid rgba(255, 230, 177, 0.15);
  border-radius: 24px;
  background: rgba(16, 13, 9, 0.78);
  box-shadow: 0 16px 50px rgba(0,0,0,.22);
  backdrop-filter: blur(18px) saturate(140%);
}

.brand {
  width: 150px;
  height: 58px;
  display: flex;
  align-items: center;
}

.brand img {
  width: 100%;
  max-height: 58px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.desktop-nav a {
  position: relative;
  padding: 9px 14px;
  color: #e8dfd0;
  font-size: .94rem;
  transition: var(--transition);
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 14px;
  left: 14px;
  bottom: 4px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: var(--transition);
}

.desktop-nav a:hover {
  color: var(--gold-light);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

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

.language-switch,
.header-call {
  min-height: 46px;
  border-radius: 15px;
  border: 1px solid rgba(255, 224, 161, .18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  cursor: pointer;
  transition: var(--transition);
}

.language-switch {
  padding: 0 14px;
  color: var(--cream);
  background: rgba(255,255,255,.05);
}

.language-switch:hover {
  background: rgba(255,255,255,.09);
  transform: translateY(-2px);
}

.language-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 14px var(--gold);
}

.header-call {
  padding: 0 16px;
  color: #17110a;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 10px 28px rgba(215, 167, 71, .2), inset 0 1px rgba(255,255,255,.45);
  font-weight: 800;
}

.header-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(215, 167, 71, .3), inset 0 1px rgba(255,255,255,.55);
}

.icon-circle {
  display: grid;
  place-items: center;
  font-size: 1.18rem;
}

.icon-circle svg,
.primary-button svg,
.floating-whatsapp svg {
  fill: currentColor;
  stroke: none;
}

.section {
  width: var(--container);
  margin-inline: auto;
}

.hero {
  min-height: calc(100vh - 110px);
  padding: 84px 0 70px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(500px, 1.35fr);
  align-items: center;
  gap: 54px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  color: var(--gold-light);
  font-weight: 800;
  letter-spacing: .02em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  font-size: .88rem;
}

.eyebrow-mark {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  box-shadow: 0 0 16px rgba(215,167,71,.55);
}

.hero h1 {
  margin: 23px 0 18px;
  font-size: clamp(3rem, 5.5vw, 5.6rem);
  line-height: 1.18;
  letter-spacing: -.045em;
  font-weight: 900;
  text-wrap: balance;
}

.hero h1 span,
.hero h1 strong {
  display: block;
}

.hero h1 span {
  color: #fffdf8;
}

.hero h1 strong {
  margin-top: 13px;
  color: transparent;
  background: linear-gradient(180deg, #fff0c6 0%, #d9a84b 52%, #8d5f1e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 9px 30px rgba(215,167,71,.22));
}

.hero-copy > p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  font-weight: 500;
  line-height: 1.95;
}

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

.primary-button,
.secondary-button {
  min-height: 58px;
  padding: 0 22px;
  border-radius: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 900;
  transition: var(--transition);
}

.primary-button {
  color: #17110a;
  background: linear-gradient(135deg, #ffe7ad 0%, #d6a346 55%, #b17925 100%);
  box-shadow: 0 16px 42px rgba(215,167,71,.28), inset 0 1px rgba(255,255,255,.5);
}

.primary-button svg {
  font-size: 1.35rem;
}

.primary-button:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 22px 48px rgba(215,167,71,.36), inset 0 1px rgba(255,255,255,.55);
}

.secondary-button {
  border: 1px solid rgba(255, 229, 174, .19);
  color: var(--cream);
  background: rgba(255,255,255,.045);
}

.secondary-button svg {
  transition: transform var(--transition);
}

html[dir="rtl"] .secondary-button:hover svg {
  transform: translateX(-4px);
}

html[lang="he"] .secondary-button svg {
  transform: rotate(180deg);
}

html[lang="he"] .secondary-button:hover svg {
  transform: rotate(180deg) translateX(-4px);
}

.secondary-button:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.085);
}

.quick-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 32px;
}

.quick-stats > div {
  min-width: 0;
  padding: 13px 14px;
  border-inline-start: 1px solid rgba(255, 226, 162, .17);
}

.quick-stats strong {
  display: block;
  color: var(--gold-light);
  font-size: 1.3rem;
  line-height: 1.2;
}

.quick-stats span {
  display: block;
  margin-top: 4px;
  color: #bfb4a2;
  font-size: .78rem;
}

.hero-visual {
  position: relative;
  min-height: 510px;
  display: grid;
  place-items: center;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 84%;
  height: 68%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215,167,71,.32), rgba(215,167,71,.07) 46%, transparent 70%);
  filter: blur(18px);
  transform: translateZ(-30px);
}

.showcase-card {
  position: relative;
  width: min(760px, 100%);
  padding: 12px;
  border: 1px solid rgba(255, 226, 162, .26);
  border-radius: 31px;
  background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.025));
  box-shadow: 0 44px 120px rgba(0,0,0,.56), inset 0 1px rgba(255,255,255,.2);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 140ms ease-out;
}

.showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, rgba(255,255,255,.24), transparent 17%, transparent 75%, rgba(215,167,71,.13));
  pointer-events: none;
}

.showcase-card img {
  width: 100%;
  border-radius: 22px;
  transform: translateZ(24px);
}

.showcase-glow {
  position: absolute;
  inset: -30%;
  background: conic-gradient(from 180deg, transparent 0 35%, rgba(255,218,141,.18), transparent 60% 100%);
  animation: spin 10s linear infinite;
}

.visual-orbit {
  position: absolute;
  border: 1px solid rgba(255, 220, 150, .12);
  border-radius: 50%;
}

.orbit-one {
  width: 540px;
  height: 540px;
  animation: orbitFloat 9s ease-in-out infinite;
}

.orbit-two {
  width: 390px;
  height: 390px;
  border-style: dashed;
  animation: orbitFloat 7s ease-in-out -2s infinite reverse;
}

.floating-chip {
  position: absolute;
  z-index: 4;
  min-width: 138px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255,230,178,.22);
  border-radius: 16px;
  color: #fff7e9;
  background: rgba(25,20,14,.76);
  box-shadow: 0 20px 50px rgba(0,0,0,.38), inset 0 1px rgba(255,255,255,.13);
  backdrop-filter: blur(14px);
  font-size: .88rem;
  font-weight: 800;
  transition: transform 140ms ease-out;
}

.chip-quality {
  top: 45px;
  left: -15px;
  animation: chipFloat 5s ease-in-out infinite;
}

.chip-service {
  right: -7px;
  bottom: 65px;
  animation: chipFloat 5.5s ease-in-out -1.7s infinite;
}

.chip-icon {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: #1b1409;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.trust-strip {
  width: var(--container);
  margin: -13px auto 0;
  padding: 13px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  border: 1px solid rgba(255, 225, 166, .15);
  border-radius: 24px;
  background: rgba(255,255,255,.035);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.trust-item {
  min-height: 84px;
  padding: 15px 17px;
  display: flex;
  align-items: center;
  gap: 13px;
  border-radius: 17px;
  background: rgba(255,255,255,.025);
}

.trust-icon {
  width: 45px;
  height: 45px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--gold-light);
  background: linear-gradient(145deg, rgba(215,167,71,.22), rgba(215,167,71,.06));
  box-shadow: inset 0 1px rgba(255,255,255,.11);
  font-size: 1.32rem;
}

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

.trust-item strong {
  color: var(--cream);
  font-size: .96rem;
}

.trust-item div > span {
  color: #b9ad9b;
  font-size: .83rem;
}

.categories {
  padding: 130px 0 48px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 38px;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-size: .9rem;
}

.section-heading h2,
.app-copy h2,
.contact-copy h2 {
  margin: 0;
  color: #fffdf8;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.28;
  letter-spacing: -.028em;
  font-weight: 900;
  text-wrap: balance;
}

.section-heading p,
.app-copy > p,
.contact-copy > p {
  margin: 0;
  color: var(--muted);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}

.category-card {
  position: relative;
  min-height: 250px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,226,162,.12);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 15% 0%, rgba(215,167,71,.14), transparent 35%),
    linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.025));
  box-shadow: 0 20px 60px rgba(0,0,0,.2), inset 0 1px rgba(255,255,255,.08);
  transition: transform var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition);
  isolation: isolate;
}

.category-card::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  inset-inline-end: -80px;
  bottom: -80px;
  border-radius: 50%;
  background: rgba(215,167,71,.09);
  filter: blur(3px);
  z-index: -1;
  transition: transform var(--transition), background var(--transition);
}

.category-card:hover,
.category-card:focus-visible {
  outline: none;
  transform: translateY(-10px) rotateX(2deg);
  border-color: rgba(255,226,162,.32);
  background:
    radial-gradient(circle at 15% 0%, rgba(215,167,71,.22), transparent 39%),
    linear-gradient(145deg, rgba(255,255,255,.105), rgba(255,255,255,.035));
  box-shadow: 0 30px 75px rgba(0,0,0,.35), 0 12px 36px rgba(215,167,71,.08), inset 0 1px rgba(255,255,255,.12), var(--focus-ring);
}

.category-card:hover::before {
  transform: scale(1.5);
  background: rgba(215,167,71,.14);
}

.category-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: var(--gold-light);
  background: linear-gradient(145deg, rgba(215,167,71,.24), rgba(215,167,71,.06));
  box-shadow: inset 0 1px rgba(255,255,255,.13), 0 12px 30px rgba(0,0,0,.18);
  font-size: 2.15rem;
  transition: transform var(--transition);
}

.category-card:hover .category-icon {
  transform: translateY(-4px) rotate(-4deg) scale(1.05);
}

.category-card h3 {
  margin: 23px 0 7px;
  color: #fffaf0;
  font-size: 1.18rem;
}

.category-card p {
  margin: 0;
  color: #bcae9a;
  font-size: .9rem;
}

.card-index {
  position: absolute;
  inset-inline-end: 21px;
  top: 16px;
  color: rgba(255, 231, 180, .14);
  font-size: 2.8rem;
  line-height: 1;
  font-weight: 900;
}

.app-section {
  padding: 112px 0 65px;
}

.app-shell {
  position: relative;
  min-height: 620px;
  padding: 64px 6.5%;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: center;
  gap: 72px;
  overflow: hidden;
  border: 1px solid rgba(255,226,162,.17);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 16% 50%, rgba(215,167,71,.18), transparent 32%),
    radial-gradient(circle at 95% 0%, rgba(255,235,190,.1), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  box-shadow: 0 40px 110px rgba(0,0,0,.38), inset 0 1px rgba(255,255,255,.11);
}

.app-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at 20% 50%, black, transparent 60%);
}

.phone-scene {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
  perspective: 1100px;
  transform-style: preserve-3d;
}

.phone-halo {
  position: absolute;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215,167,71,.28), rgba(215,167,71,.06) 46%, transparent 67%);
  filter: blur(8px);
}

.phone {
  position: relative;
  width: 245px;
  height: 488px;
  padding: 11px;
  border: 2px solid rgba(255,235,193,.35);
  border-radius: 42px;
  background: linear-gradient(155deg, #3b2a16, #0a0806 42%, #261a0d);
  box-shadow: 0 45px 90px rgba(0,0,0,.56), 17px 18px 50px rgba(0,0,0,.3), inset 0 0 0 2px rgba(255,255,255,.05);
  transform: rotateY(-12deg) rotateX(3deg) translateZ(18px);
  transition: transform 140ms ease-out;
}

.phone::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 37px;
  border: 1px solid rgba(255,255,255,.09);
  pointer-events: none;
}

.phone-speaker {
  position: absolute;
  z-index: 3;
  top: 20px;
  left: 50%;
  width: 76px;
  height: 20px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #080706;
}

.phone-screen {
  position: relative;
  height: 100%;
  padding: 64px 18px 23px;
  overflow: hidden;
  border-radius: 31px;
  background:
    radial-gradient(circle at 50% 9%, rgba(255,230,174,.3), transparent 26%),
    linear-gradient(180deg, #15100a, #24170a 62%, #0b0907);
  text-align: center;
}

.phone-screen::before,
.phone-screen::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,230,174,.13);
}

.phone-screen::before {
  width: 280px;
  height: 280px;
  top: -120px;
  right: -110px;
}

.phone-screen::after {
  width: 190px;
  height: 190px;
  left: -100px;
  bottom: 20px;
}

.app-logo {
  position: relative;
  z-index: 1;
  width: 180px;
  height: 96px;
  margin: 0 auto 23px;
  object-fit: contain;
}

.phone-screen > span {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--gold-light);
  font-size: .86rem;
  font-weight: 800;
}

.mini-products {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 25px 0 30px;
}

.mini-products i {
  height: 98px;
  border-radius: 15px;
  border: 1px solid rgba(255,226,162,.16);
  background:
    radial-gradient(circle at 50% 30%, rgba(255,226,162,.3), transparent 28%),
    linear-gradient(150deg, rgba(255,255,255,.13), rgba(255,255,255,.025));
  box-shadow: inset 0 1px rgba(255,255,255,.1);
}

.mini-products i:nth-child(2) {
  transform: translateY(-10px);
}

.phone-button {
  position: relative;
  z-index: 1;
  min-height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #1b1308;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  font-size: .83rem;
  font-weight: 900;
}

.app-orb {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffe4a3, #a46b17);
  box-shadow: 0 10px 25px rgba(0,0,0,.35), inset 0 1px 4px rgba(255,255,255,.7);
}

.orb-a {
  width: 25px;
  height: 25px;
  top: 90px;
  right: 34px;
  animation: chipFloat 5s ease-in-out infinite;
}

.orb-b {
  width: 15px;
  height: 15px;
  bottom: 95px;
  left: 35px;
  animation: chipFloat 4.5s ease-in-out -1s infinite;
}

.orb-c {
  width: 10px;
  height: 10px;
  top: 42%;
  left: 20px;
  animation: chipFloat 4s ease-in-out -2s infinite;
}

.app-copy {
  position: relative;
  z-index: 2;
}

.app-copy h2 {
  max-width: 710px;
  margin-bottom: 18px;
}

.app-copy > p {
  max-width: 650px;
  font-size: 1rem;
}

.app-features {
  display: grid;
  gap: 11px;
  margin: 27px 0;
}

.app-features > span {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #e7ddcc;
}

.app-features b {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: #1b1308;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  font-size: .85rem;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.store-button {
  min-width: 190px;
  min-height: 61px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(255,235,193,.17);
  border-radius: 17px;
  background: #070706;
  box-shadow: 0 14px 30px rgba(0,0,0,.25), inset 0 1px rgba(255,255,255,.08);
  transition: var(--transition);
}

.store-button:hover {
  transform: translateY(-4px);
  border-color: rgba(255,226,162,.36);
  box-shadow: 0 20px 42px rgba(0,0,0,.35), 0 10px 30px rgba(215,167,71,.08), inset 0 1px rgba(255,255,255,.1);
}

.store-button svg {
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  fill: currentColor;
  stroke: none;
}

.store-button small,
.store-button strong {
  display: block;
  line-height: 1.2;
}

.store-button small {
  color: #c3b7a6;
  font-size: .68rem;
}

.store-button strong {
  margin-top: 3px;
  color: #fff;
  font-size: 1.08rem;
}

.coming-note {
  margin-top: 10px !important;
  color: #927d5f !important;
  font-size: .78rem !important;
}

.contact-section {
  padding: 70px 0 115px;
}

.contact-card {
  position: relative;
  padding: 47px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 52px;
  align-items: center;
  border: 1px solid rgba(255,226,162,.18);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 100% 0%, rgba(215,167,71,.16), transparent 28%),
    linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  box-shadow: 0 34px 90px rgba(0,0,0,.3), inset 0 1px rgba(255,255,255,.1);
}

.contact-copy h2 {
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  margin-bottom: 14px;
}

.contact-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.contact-links > a {
  min-width: 0;
  min-height: 126px;
  padding: 17px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(255,226,162,.12);
  border-radius: 19px;
  background: rgba(255,255,255,.04);
  transition: var(--transition);
}

.contact-links > a:hover {
  transform: translateY(-6px);
  border-color: rgba(255,226,162,.3);
  background: rgba(255,255,255,.075);
}

.contact-link-icon {
  width: 41px;
  height: 41px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--gold-light);
  background: rgba(215,167,71,.13);
  font-size: 1.3rem;
}

.contact-links small,
.contact-links strong {
  display: block;
  overflow-wrap: anywhere;
}

.contact-links small {
  color: #a99d8c;
  font-size: .72rem;
}

.contact-links strong {
  margin-top: 3px;
  color: #fff8ea;
  font-size: .86rem;
}

.footer {
  width: var(--container);
  margin: 0 auto;
  padding: 42px 0 36px;
  border-top: 1px solid rgba(255,226,162,.12);
  text-align: center;
}

.footer-brand {
  width: 210px;
  display: block;
  margin: 0 auto 5px;
}

.footer-brand img {
  max-height: 90px;
  margin: auto;
  object-fit: contain;
}

.footer p {
  margin: 5px 0;
  color: #b9ac99;
  font-size: .85rem;
  font-weight: 500;
}

.copyright {
  opacity: .68;
}

.floating-whatsapp {
  position: fixed;
  z-index: 25;
  left: max(20px, env(safe-area-inset-left));
  bottom: max(20px, env(safe-area-inset-bottom));
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 19px;
  color: white;
  background: linear-gradient(145deg, #35d46d, #148a42);
  box-shadow: 0 18px 40px rgba(11,91,42,.38), inset 0 1px rgba(255,255,255,.33);
  font-size: 1.75rem;
  transition: var(--transition);
}

.floating-whatsapp:hover {
  transform: translateY(-5px) rotate(-4deg) scale(1.04);
}

.toast {
  position: fixed;
  z-index: 60;
  left: 50%;
  bottom: 32px;
  max-width: calc(100% - 36px);
  padding: 12px 18px;
  border: 1px solid rgba(255,226,162,.18);
  border-radius: 14px;
  color: #171109;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 18px 50px rgba(0,0,0,.4);
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 16px);
  transition: var(--transition);
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 0;
  transform: translateY(26px) scale(.985);
  transition: opacity .75s ease, transform .75s cubic-bezier(.2,.75,.25,1);
}

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

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes orbitFloat {
  0%, 100% { transform: rotateX(68deg) rotateZ(0deg) scale(.95); opacity: .4; }
  50% { transform: rotateX(68deg) rotateZ(180deg) scale(1.03); opacity: .85; }
}

@keyframes chipFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -12px; }
}

@media (max-width: 1080px) {
  .site-header {
    width: min(940px, calc(100% - 24px));
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 68px;
    gap: 30px;
  }

  .hero-copy {
    max-width: 780px;
    text-align: center;
    margin: auto;
  }

  .hero-copy > p {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .quick-stats {
    max-width: 680px;
    margin-inline: auto;
    margin-top: 30px;
  }

  .hero-visual {
    min-height: 450px;
  }

  .showcase-card {
    width: min(870px, 100%);
  }

  .app-shell,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .app-copy {
    order: -1;
    text-align: center;
  }

  .app-copy > p {
    margin-inline: auto;
  }

  .app-features {
    width: max-content;
    max-width: 100%;
    margin-inline: auto;
    text-align: start;
  }

  .store-buttons {
    justify-content: center;
  }

  .contact-copy {
    text-align: center;
  }
}

@media (max-width: 820px) {
  :root {
    --container: min(100% - 22px, 720px);
    --radius-xl: 28px;
  }

  .site-header {
    height: 70px;
    margin-top: 9px;
    padding: 8px 9px 8px 13px;
    border-radius: 20px;
  }

  .brand {
    width: 126px;
    height: 50px;
  }

  .header-call span:last-child {
    display: none;
  }

  .header-call {
    width: 45px;
    min-height: 45px;
    padding: 0;
  }

  .language-switch {
    min-height: 45px;
  }

  .hero {
    min-height: auto;
    padding: 65px 0 45px;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 11.5vw, 4.5rem);
    line-height: 1.2;
  }

  .hero-visual {
    min-height: 350px;
  }

  .floating-chip {
    min-width: 120px;
    padding: 10px 12px;
    font-size: .76rem;
  }

  .chip-quality {
    left: 3px;
    top: 15px;
  }

  .chip-service {
    right: 3px;
    bottom: 25px;
  }

  .orbit-one {
    width: 390px;
    height: 390px;
  }

  .orbit-two {
    width: 270px;
    height: 270px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-item {
    min-height: 72px;
  }

  .categories {
    padding-top: 95px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }

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

  .app-shell {
    padding: 52px 24px;
    gap: 35px;
  }

  .contact-card {
    padding: 34px 22px;
  }

  .contact-links {
    grid-template-columns: 1fr;
  }

  .contact-links > a {
    min-height: 88px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  body {
    line-height: 1.65;
  }

  .site-header {
    width: calc(100% - 14px);
  }

  .brand {
    width: 104px;
  }

  .language-switch {
    padding: 0 11px;
    font-size: .82rem;
  }

  .hero {
    padding-top: 53px;
  }

  .eyebrow {
    font-size: .76rem;
  }

  .hero h1 {
    margin-top: 18px;
    font-size: clamp(2.35rem, 12.5vw, 3.7rem);
    line-height: 1.24;
  }

  .hero-copy > p {
    font-size: .94rem;
  }

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

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .quick-stats {
    gap: 0;
  }

  .quick-stats > div {
    padding-inline: 8px;
  }

  .quick-stats span {
    font-size: .68rem;
  }

  .hero-visual {
    min-height: 285px;
    margin-top: 8px;
  }

  .showcase-card {
    padding: 7px;
    border-radius: 21px;
  }

  .showcase-card img {
    border-radius: 15px;
  }

  .floating-chip {
    display: none;
  }

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

  .category-card {
    min-height: 210px;
  }

  .app-section {
    padding-top: 88px;
  }

  .app-shell {
    padding: 44px 16px;
  }

  .phone-scene {
    min-height: 440px;
    transform: scale(.88);
    margin: -28px 0;
  }

  .store-buttons {
    display: grid;
  }

  .store-button {
    width: 100%;
  }

  .contact-section {
    padding-bottom: 85px;
  }

  .contact-card {
    padding: 30px 15px;
  }

  .footer-brand {
    width: 175px;
  }

  .floating-whatsapp {
    width: 52px;
    height: 52px;
    border-radius: 17px;
    font-size: 1.55rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

.compact-page {
  min-height: 100svh;
  padding: clamp(20px, 5vw, 64px) 20px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 82% 12%, rgba(215, 167, 71, .22), transparent 29%),
    radial-gradient(circle at 14% 88%, rgba(155, 104, 25, .2), transparent 32%),
    linear-gradient(145deg, #0a0907, #19120a 56%, #0b0907);
}

.store-card {
  position: relative;
  width: min(100%, 760px);
  padding: clamp(30px, 6vw, 58px);
  overflow: hidden;
  border: 1px solid rgba(255, 226, 162, .2);
  border-radius: 32px;
  text-align: center;
  background: linear-gradient(145deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .025));
  box-shadow: 0 34px 100px rgba(0, 0, 0, .48), inset 0 1px rgba(255, 255, 255, .16);
  backdrop-filter: blur(18px);
}

.store-card::before,
.store-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.store-card::before {
  width: 310px;
  height: 310px;
  top: -210px;
  right: -120px;
  background: rgba(215, 167, 71, .18);
  filter: blur(20px);
}

.store-card::after {
  width: 220px;
  height: 220px;
  bottom: -150px;
  left: -110px;
  border: 1px solid rgba(255, 226, 162, .12);
}

.compact-language-switch {
  position: absolute;
  top: 18px;
  left: 18px;
  min-height: 38px;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255, 226, 162, .18);
  border-radius: 12px;
  color: var(--cream);
  background: rgba(8, 7, 5, .38);
  cursor: pointer;
  font-size: .76rem;
  font-weight: 700;
  transition: var(--transition);
}

.compact-language-switch:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 226, 162, .4);
  background: rgba(255, 255, 255, .08);
}

.store-logo {
  width: min(240px, 72%);
  max-height: 118px;
  margin: 0 auto 22px;
  object-fit: contain;
}

.store-label,
.download-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border: 1px solid rgba(255, 226, 162, .2);
  border-radius: 999px;
  color: var(--gold-light);
  background: rgba(215, 167, 71, .09);
  font-size: .8rem;
  font-weight: 800;
}

.store-intro h1 {
  max-width: 560px;
  margin: 16px auto 10px;
  color: #fffdf8;
  font-size: clamp(2rem, 5vw, 3.45rem);
  line-height: 1.25;
  letter-spacing: -.035em;
  font-weight: 900;
}

.store-intro p {
  max-width: 530px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.9;
}

.store-details {
  margin: 30px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 11px;
}

.store-details a {
  min-width: 0;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 226, 162, .13);
  border-radius: 18px;
  text-align: start;
  background: rgba(255, 255, 255, .045);
  transition: var(--transition);
}

.store-details a:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 226, 162, .34);
  background: rgba(255, 255, 255, .075);
}

.store-details svg {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  color: var(--gold-light);
}

.store-details small,
.store-details strong {
  display: block;
}

.store-details small {
  color: #b7aa97;
  font-size: .73rem;
}

.store-details strong {
  margin-top: 2px;
  overflow-wrap: anywhere;
  color: #fff8eb;
  font-size: .87rem;
}

.app-download {
  padding: clamp(24px, 5vw, 34px);
  border: 1px solid rgba(255, 226, 162, .19);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 0, rgba(215, 167, 71, .14), transparent 57%),
    rgba(9, 8, 6, .34);
}

.app-download h2 {
  margin: 12px 0 5px;
  color: #fffdf8;
  font-size: clamp(1.55rem, 4vw, 2.15rem);
  line-height: 1.35;
  font-weight: 900;
}

.app-download > p {
  margin: 0;
  color: #c3b6a3;
  font-size: .92rem;
}

.download-buttons {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 11px;
}

.download-button {
  min-width: 195px;
  min-height: 62px;
  padding: 9px 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 16px;
  color: #fff;
  text-align: start;
  background: #090909;
  box-shadow: inset 0 1px rgba(255, 255, 255, .13), 0 12px 25px rgba(0, 0, 0, .24);
  transition: var(--transition);
}

.download-button:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 226, 162, .43);
  box-shadow: inset 0 1px rgba(255, 255, 255, .16), 0 18px 34px rgba(0, 0, 0, .34);
}

.download-button svg {
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  fill: currentColor;
  stroke: none;
}

.download-button small,
.download-button strong {
  display: block;
  line-height: 1.2;
}

.download-button small {
  color: #c9c4bb;
  font-size: .7rem;
}

.download-button strong {
  margin-top: 3px;
  font-size: 1.05rem;
}

.android svg {
  color: #8fe36b;
}

.whatsapp-link {
  width: fit-content;
  min-height: 47px;
  margin: 23px auto 0;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #31c866, #138a42);
  box-shadow: 0 12px 30px rgba(12, 125, 57, .25);
  font-size: .9rem;
  font-weight: 800;
  transition: var(--transition);
}

.whatsapp-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 17px 34px rgba(12, 125, 57, .35);
}

@media (max-width: 560px) {
  .compact-page {
    padding: 12px;
  }

  .store-card {
    padding: 30px 18px;
    border-radius: 25px;
  }

  .compact-language-switch {
    top: 12px;
    left: 12px;
  }

  .store-logo {
    width: min(205px, 76%);
    margin-bottom: 17px;
  }

  .store-intro h1 {
    font-size: 2rem;
  }

  .store-intro p {
    font-size: .92rem;
  }

  .store-details {
    grid-template-columns: 1fr;
    margin: 24px 0;
  }

  .store-details a {
    min-height: 70px;
  }

  .app-download {
    padding: 24px 13px;
    border-radius: 20px;
  }

  .download-buttons {
    display: grid;
  }

  .download-button {
    width: 100%;
  }
}
