:root {
  --font-manrope: "Manrope", Arial, Helvetica, sans-serif;
  --font-outfit: "Outfit", Arial, Helvetica, sans-serif;
  --navy: #071522;
  --navy-soft: #0c2030;
  --navy-card: #102b3c;
  --cream: #f7f3eb;
  --paper: #fffcf6;
  --amber: #f4a62a;
  --amber-light: #ffc45d;
  --green: #29b66f;
  --ink: #17232c;
  --muted: #61707a;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-manrope), Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
.section-shell { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: relative;
  z-index: 20;
  background: rgba(7, 21, 34, .96);
  color: white;
}

.announcement {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #0b2839;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: #cbd9df;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.status-dot { width: 7px; height: 7px; border-radius: 50%; background: #47dc8f; box-shadow: 0 0 0 4px rgba(71,220,143,.12); }
.announcement-separator { color: rgba(255,255,255,.25); }

.nav-shell {
  width: min(1180px, calc(100% - 40px));
  height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand { display: flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(145deg, var(--amber-light), var(--amber));
  color: var(--navy); font-family: var(--font-outfit), sans-serif;
  font-weight: 900; letter-spacing: -.08em;
  box-shadow: 0 8px 26px rgba(244,166,42,.2);
}
.brand strong { display: block; font-family: var(--font-outfit), sans-serif; font-size: 20px; line-height: 1; letter-spacing: -.02em; }
.brand small { display: block; margin-top: 5px; color: #91a6b2; font-size: 9px; font-weight: 700; letter-spacing: .045em; }

.nav-links { display: flex; align-items: center; justify-content: center; gap: 29px; margin-left: auto; }
.nav-links a { color: #d8e2e6; font-size: 13px; font-weight: 700; transition: color .2s ease; }
.nav-links a:hover, .nav-links a:focus-visible { color: var(--amber-light); }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-weight: 800;
  font-size: 13px;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible { outline: 3px solid rgba(255,196,93,.45); outline-offset: 3px; }
.button-small { min-height: 42px; padding: 0 18px; border-radius: 11px; font-size: 12px; }
.button-whatsapp { background: #24b66a; box-shadow: 0 8px 24px rgba(36,182,106,.18); }
.button-primary { background: linear-gradient(135deg, var(--amber-light), var(--amber)); color: #17212a; box-shadow: 0 14px 35px rgba(244,166,42,.23); }
.button-secondary { border-color: rgba(255,255,255,.2); color: white; background: rgba(255,255,255,.04); }
.button-secondary:hover { background: rgba(255,255,255,.09); }
.button-icon { display: grid; place-items: center; width: 23px; height: 23px; border-radius: 50%; background: rgba(7,21,34,.12); }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 590px;
  background: linear-gradient(115deg, var(--navy) 0%, #091a29 55%, #0a2231 100%);
  color: white;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .15;
  background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to right, black, transparent 70%);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-glow-one { width: 520px; height: 520px; right: -120px; top: -220px; background: radial-gradient(circle, rgba(244,166,42,.15), transparent 68%); }
.hero-glow-two { width: 420px; height: 420px; left: -180px; bottom: -260px; background: radial-gradient(circle, rgba(41,182,111,.11), transparent 68%); }

.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 66px; padding-top: 70px; padding-bottom: 78px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--amber-light); font-size: 11px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow span { width: 24px; height: 2px; border-radius: 5px; background: currentColor; }
.hero h1 { margin: 20px 0 22px; font-family: var(--font-outfit), sans-serif; font-size: clamp(44px, 5.2vw, 72px); line-height: .98; letter-spacing: -.045em; font-weight: 750; }
.hero h1 em { color: var(--amber-light); font-style: normal; }
.hero-copy > p { max-width: 590px; margin: 0; color: #b4c4cc; font-size: 16px; line-height: 1.8; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-note { display: flex; align-items: center; gap: 10px; margin-top: 23px; color: #8fa7b3; font-size: 11px; font-weight: 650; }
.shield { width: 19px; height: 19px; display: grid; place-items: center; border: 1px solid rgba(71,220,143,.45); border-radius: 50%; color: #47dc8f; font-size: 10px; }

.hero-visual {
  position: relative; height: 410px; border-radius: 29px; padding: 18px;
  background: linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.035));
  border: 1px solid rgba(255,255,255,.13);
  box-shadow: 0 35px 80px rgba(0,0,0,.35);
  transform: rotate(1.2deg);
}
.hero-visual::before { content: ""; position: absolute; inset: 9px; border: 1px solid rgba(255,255,255,.07); border-radius: 23px; pointer-events: none; }
.visual-topline { height: 42px; display: flex; align-items: center; justify-content: space-between; padding: 0 10px; color: #c4d1d7; font-size: 9px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.visual-topline span { display: flex; align-items: center; gap: 7px; }
.visual-topline i { width: 6px; height: 6px; border-radius: 50%; background: #47dc8f; }
.visual-topline strong { color: var(--amber-light); font-size: 10px; letter-spacing: .15em; }
.shelf-scene { position: relative; height: calc(100% - 42px); overflow: hidden; border-radius: 18px; background: linear-gradient(90deg, rgba(5,17,27,.28), transparent 55%), url("images/alo-tekelim-hero.png") center / cover no-repeat; }
.shelf-scene::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(2,9,15,.38), transparent 62%); }
.shelf { position: absolute; left: 10%; right: 10%; display: none; align-items: end; justify-content: space-around; padding: 0 7%; border-bottom: 8px solid #8b5c32; box-shadow: 0 10px 18px rgba(0,0,0,.35); }
.shelf-one { top: 29%; height: 70px; }
.shelf-two { top: 60%; height: 68px; }
.shelf span { width: 13%; height: 54px; border-radius: 9px 9px 4px 4px; background: linear-gradient(145deg, #ffc45d, #ce682b); box-shadow: inset 0 -10px 0 rgba(0,0,0,.12); }
.shelf span:nth-child(2n) { height: 44px; background: linear-gradient(145deg, #59cf93, #1b7f54); }
.shelf span:nth-child(3n) { height: 61px; background: linear-gradient(145deg, #e26459, #7c2f42); }
.delivery-bag { position: absolute; z-index: 2; right: 8%; bottom: 7%; width: 105px; height: 115px; display: none; place-items: center; border-radius: 15px 15px 24px 24px; background: linear-gradient(145deg, var(--amber-light), #d77c16); color: var(--navy); font-family: var(--font-outfit); font-size: 32px; font-weight: 900; letter-spacing: -.1em; box-shadow: 0 18px 28px rgba(0,0,0,.36); transform: rotate(-4deg); }
.delivery-bag::before { content: ""; position: absolute; top: -18px; width: 55px; height: 34px; border: 7px solid #d77c16; border-bottom: 0; border-radius: 26px 26px 0 0; }
.delivery-bag small { position: absolute; bottom: 14px; font-size: 6px; letter-spacing: .11em; }
.floating-card { position: absolute; z-index: 4; display: flex; align-items: center; background: rgba(255,255,255,.96); color: var(--ink); border: 1px solid rgba(255,255,255,.8); box-shadow: 0 18px 35px rgba(0,0,0,.25); }
.floating-card-time { top: 72px; right: -28px; width: 128px; height: 73px; flex-direction: column; justify-content: center; border-radius: 17px; transform: rotate(-1.2deg); }
.floating-card-time b { color: #13864e; font-family: var(--font-outfit); font-size: 23px; line-height: 1; }
.floating-card-time span { margin-top: 5px; color: #71808a; font-size: 7px; font-weight: 800; }
.floating-card-order { left: -32px; bottom: 35px; gap: 11px; padding: 12px 15px; border-radius: 15px; transform: rotate(-1.2deg); }
.check { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 50%; background: #daf6e8; color: #13864e; font-weight: 900; }
.floating-card-order b, .floating-card-order small { display: block; }
.floating-card-order b { font-size: 10px; }
.floating-card-order small { margin-top: 3px; color: #7b8991; font-size: 7px; }

.trust-strip { background: #fff; border-bottom: 1px solid #e8e4dc; box-shadow: 0 12px 30px rgba(17,31,40,.04); }
.trust-grid { min-height: 104px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.trust-item { min-height: 52px; display: flex; align-items: center; justify-content: center; gap: 13px; padding: 8px 22px; border-right: 1px solid #ece7df; }
.trust-item:last-child { border-right: 0; }
.trust-icon { width: 39px; height: 39px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 12px; background: #fff4df; color: #c97612; font-family: var(--font-outfit); font-size: 13px; font-weight: 900; }
.trust-item b, .trust-item small { display: block; }
.trust-item b { font-size: 12px; }
.trust-item small { margin-top: 4px; color: #8a969d; font-size: 9px; }

.intro-section { padding: 90px 0 60px; background: var(--paper); }
.section-heading.centered { max-width: 680px; margin: 0 auto; text-align: center; }
.section-heading .eyebrow.dark { color: #ca7818; }
.section-heading h2 { margin: 16px 0 15px; font-family: var(--font-outfit); color: var(--navy); font-size: clamp(34px, 4.4vw, 51px); line-height: 1.06; letter-spacing: -.035em; }
.section-heading h2 em { color: #d5801d; font-style: normal; }
.section-heading p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

.catalog-layout { display: grid; grid-template-columns: .95fr 1.05fr; gap: 22px; margin-top: 46px; }
.catalog-feature { position: relative; min-height: 500px; overflow: hidden; border-radius: 25px; background: var(--navy); box-shadow: 0 22px 55px rgba(14,34,46,.14); }
.catalog-photo { position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,17,27,.92) 0%, rgba(5,17,27,.12) 68%), url("images/alo-tekelim-categories.png") center / cover no-repeat; transition: transform .5s ease; }
.catalog-feature:hover .catalog-photo { transform: scale(1.025); }
.catalog-feature-copy { position: absolute; z-index: 2; left: 32px; right: 32px; bottom: 30px; color: white; }
.catalog-feature-copy > span { color: var(--amber-light); font-size: 9px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.catalog-feature-copy h3 { max-width: 420px; margin: 10px 0 18px; font-family: var(--font-outfit); font-size: 31px; line-height: 1.07; letter-spacing: -.02em; }
.catalog-feature-copy a { display: inline-flex; align-items: center; gap: 9px; padding-bottom: 3px; border-bottom: 1px solid rgba(255,255,255,.45); font-size: 11px; font-weight: 800; }
.catalog-feature-copy a b { color: var(--amber-light); font-size: 17px; }

.category-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.category-card { min-height: 242px; display: flex; flex-direction: column; align-items: flex-start; position: relative; padding: 26px; border: 1px solid #e6e1d8; border-radius: 22px; background: #fff; box-shadow: 0 12px 32px rgba(14,34,46,.045); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.category-card:hover { transform: translateY(-4px); border-color: #f1bd6b; box-shadow: 0 17px 40px rgba(14,34,46,.09); }
.category-symbol { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 16px; font-family: var(--font-outfit); font-size: 17px; font-weight: 900; }
.category-symbol.blue { color: #27678b; background: #e7f4fa; }
.category-symbol.orange { color: #bd6a14; background: #fff0d9; }
.category-symbol.green { color: #247958; background: #e6f5ec; }
.category-symbol.rose { color: #a64a52; background: #fbe9eb; }
.category-card h3 { margin: 20px 0 8px; font-family: var(--font-outfit); color: var(--navy); font-size: 19px; }
.category-card p { margin: 0; color: #7c8991; font-size: 11px; line-height: 1.65; }
.category-card > a { position: absolute; right: 24px; bottom: 22px; width: 31px; height: 31px; display: grid; place-items: center; border: 1px solid #e9e2d9; border-radius: 50%; color: #c97a1e; font-weight: 900; }
.category-card > a:hover { background: var(--amber); color: var(--navy); border-color: var(--amber); }

.mini-categories { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 20px; border: 1px solid #e6e1d8; border-radius: 18px; background: #fff; }
.mini-categories > div { min-height: 89px; display: grid; grid-template-columns: 38px 1fr; grid-template-rows: auto auto; align-content: center; column-gap: 13px; padding: 17px 25px; border-right: 1px solid #ece7df; }
.mini-categories > div:last-child { border-right: 0; }
.mini-categories span { grid-row: 1 / 3; width: 38px; height: 38px; display: grid; place-items: center; align-self: center; border-radius: 12px; background: #fff4df; color: #ca7818; font-size: 10px; font-weight: 900; }
.mini-categories b { align-self: end; color: var(--navy); font-size: 11px; }
.mini-categories small { align-self: start; margin-top: 4px; color: #9aa4aa; font-size: 8px; }

.why-section { position: relative; overflow: hidden; padding: 100px 0 105px; background: #071722; color: white; }
.why-section::before { content: ""; position: absolute; inset: 0; opacity: .12; background-image: linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px); background-size: 80px 80px; mask-image: linear-gradient(to bottom, black, transparent); }
.why-section .section-shell { position: relative; z-index: 2; }
.light-heading { max-width: 660px; }
.light-heading h2 { color: white; }
.light-heading h2 em { color: var(--amber-light); }
.light-heading p { color: #9fb2bc; max-width: 610px; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 46px; }
.why-grid article { min-height: 270px; padding: 28px 25px; border: 1px solid rgba(255,255,255,.1); border-radius: 20px; background: rgba(255,255,255,.045); transition: transform .25s ease, background .25s ease; }
.why-grid article:hover { transform: translateY(-4px); background: rgba(255,255,255,.075); }
.why-grid article > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; background: rgba(255,196,93,.12); color: var(--amber-light); font-size: 10px; font-weight: 900; }
.why-grid h3 { margin: 44px 0 11px; font-family: var(--font-outfit); font-size: 18px; }
.why-grid p { margin: 0; color: #91a6b1; font-size: 11px; line-height: 1.7; }

.steps-section { padding: 100px 0 104px; background: #f8f4ec; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 55px; }
.steps-grid article { position: relative; text-align: center; padding: 0 32px; }
.step-number { position: relative; z-index: 2; width: 66px; height: 66px; display: grid; place-items: center; margin: 0 auto; border: 7px solid #f8f4ec; border-radius: 50%; background: linear-gradient(145deg, var(--amber-light), var(--amber)); color: var(--navy); font-family: var(--font-outfit); font-size: 22px; font-weight: 900; box-shadow: 0 0 0 1px #f0d49f, 0 10px 25px rgba(218,131,26,.18); }
.step-line { position: absolute; z-index: 1; top: 33px; left: calc(50% + 33px); width: calc(100% - 30px); height: 1px; background: repeating-linear-gradient(90deg, #d8c8af 0 7px, transparent 7px 13px); }
.steps-grid h3 { margin: 24px 0 9px; font-family: var(--font-outfit); color: var(--navy); font-size: 19px; }
.steps-grid p { max-width: 270px; margin: 0 auto; color: #73818a; font-size: 11px; line-height: 1.7; }
.center-action { display: flex; justify-content: center; margin-top: 47px; }

.delivery-section { padding: 85px 0; background: var(--paper); }
.delivery-card { min-height: 500px; display: grid; grid-template-columns: .95fr 1.05fr; overflow: hidden; border-radius: 28px; background: linear-gradient(125deg, #0a1c29, #0b2635); color: white; box-shadow: 0 28px 70px rgba(7,21,34,.18); }
.delivery-copy { align-self: center; padding: 55px 40px 55px 58px; }
.delivery-copy h2 { margin: 17px 0 17px; font-family: var(--font-outfit); font-size: clamp(38px, 4.5vw, 54px); line-height: 1.02; letter-spacing: -.035em; }
.delivery-copy h2 em { color: var(--amber-light); font-style: normal; }
.delivery-copy p { max-width: 500px; margin: 0; color: #a5b7c0; font-size: 13px; line-height: 1.8; }
.delivery-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 25px 0; }
.delivery-tags span { padding: 8px 11px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; background: rgba(255,255,255,.05); color: #c3d1d7; font-size: 8px; font-weight: 800; letter-spacing: .045em; text-transform: uppercase; }
.delivery-map { position: relative; min-height: 500px; overflow: hidden; background: radial-gradient(circle at center, rgba(46,151,110,.22), transparent 34%), #0a1e2c; }
.map-grid { position: absolute; inset: 0; opacity: .17; background-image: linear-gradient(rgba(255,255,255,.11) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.11) 1px, transparent 1px); background-size: 38px 38px; transform: rotate(-8deg) scale(1.25); }
.map-grid::after, .map-grid::before { content: ""; position: absolute; width: 160%; height: 14px; left: -25%; background: rgba(255,255,255,.18); transform: rotate(28deg); }
.map-grid::before { top: 34%; }
.map-grid::after { top: 69%; transform: rotate(-31deg); }
.map-ring { position: absolute; left: 50%; top: 46%; border: 1px solid rgba(71,220,143,.24); border-radius: 50%; transform: translate(-50%,-50%); }
.ring-one { width: 130px; height: 130px; }
.ring-two { width: 250px; height: 250px; }
.ring-three { width: 390px; height: 390px; }
.map-pin { position: absolute; left: 50%; top: 46%; width: 72px; height: 72px; display: grid; place-items: center; border: 7px solid rgba(255,255,255,.18); border-radius: 50% 50% 50% 8px; background: linear-gradient(145deg, var(--amber-light), var(--amber)); transform: translate(-50%,-50%) rotate(-45deg); box-shadow: 0 18px 35px rgba(0,0,0,.32); }
.map-pin span { color: var(--navy); font-family: var(--font-outfit); font-size: 20px; font-weight: 900; transform: rotate(45deg); }
.map-badge { position: absolute; left: 50%; bottom: 42px; min-width: 245px; padding: 14px 18px; border: 1px solid rgba(255,255,255,.13); border-radius: 14px; background: rgba(5,17,27,.82); backdrop-filter: blur(8px); transform: translateX(-50%); text-align: center; }
.map-badge b, .map-badge small { display: block; }
.map-badge b { color: white; font-size: 11px; }
.map-badge small { margin-top: 5px; color: #91a7b3; font-size: 8px; }

.faq-section { padding: 95px 0 105px; background: #f8f4ec; }
.faq-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.faq-layout .section-heading { position: sticky; top: 30px; }
.faq-layout .section-heading a { display: inline-block; margin-top: 25px; color: #b86a12; font-size: 11px; font-weight: 900; }
.faq-list { border-top: 1px solid #ddd6ca; }
.faq-list details { border-bottom: 1px solid #ddd6ca; }
.faq-list summary { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; list-style: none; color: var(--navy); font-family: var(--font-outfit); font-size: 16px; font-weight: 700; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { width: 29px; height: 29px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; background: #fff; color: #c57619; font-family: var(--font-manrope); font-size: 17px; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: -3px 50px 22px 0; color: #6f7c84; font-size: 11px; line-height: 1.75; }

.contact-cta { padding: 0 0 70px; background: #f8f4ec; }
.contact-card { min-height: 210px; display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 40px 52px; border-radius: 24px; background: linear-gradient(110deg, #0a1d2a, #0d3040); color: white; box-shadow: 0 20px 50px rgba(7,21,34,.15); }
.contact-kicker { color: var(--amber-light); font-size: 9px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.contact-card h2 { margin: 9px 0 7px; font-family: var(--font-outfit); font-size: 34px; letter-spacing: -.025em; }
.contact-card p { margin: 0; color: #9fb1ba; font-size: 11px; }
.contact-actions { display: flex; align-items: center; gap: 24px; }
.phone-link span, .phone-link b { display: block; }
.phone-link span { color: #91a6b1; font-size: 8px; font-weight: 800; text-transform: uppercase; }
.phone-link b { margin-top: 4px; font-size: 13px; }

.footer { padding: 65px 0 0; background: #06131e; color: white; }
.footer-grid { display: grid; grid-template-columns: 1.6fr .7fr 1fr; gap: 80px; padding-bottom: 50px; }
.footer-brand { width: max-content; }
.footer-grid > div:first-child > p { max-width: 390px; margin: 22px 0 0; color: #8096a2; font-size: 10px; line-height: 1.75; }
.footer-grid h3 { margin: 0 0 17px; color: #dce6ea; font-size: 10px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.footer-grid > div:not(:first-child) a, .footer-grid > div:not(:first-child) span { display: block; margin: 11px 0; color: #8298a3; font-size: 9px; }
.footer-grid > div:not(:first-child) a:hover { color: var(--amber-light); }
.legal-row { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border-top: 1px solid rgba(255,255,255,.08); color: #647d89; font-size: 8px; line-height: 1.5; }

.floating-whatsapp {
  position: fixed; z-index: 50; right: 22px; bottom: 22px;
  min-height: 54px; display: flex; align-items: center; gap: 10px;
  padding: 0 18px 0 10px; border-radius: 999px; background: #24b66a; color: white;
  box-shadow: 0 14px 35px rgba(16,95,57,.35); font-size: 12px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.floating-whatsapp span { width: 35px; height: 35px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.16); font-size: 20px; }
.floating-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(16,95,57,.42); }

@media (max-width: 960px) {
  .nav-links { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 52px; padding-top: 62px; }
  .hero-copy { text-align: center; }
  .hero-copy > p { margin-inline: auto; }
  .hero-actions, .hero-note { justify-content: center; }
  .hero-visual { width: min(570px, 100%); margin: 0 auto; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); padding: 14px 0; }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid #ece7df; }
  .catalog-layout { grid-template-columns: 1fr; }
  .catalog-feature { min-height: 460px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid article { min-height: 220px; }
  .why-grid h3 { margin-top: 30px; }
  .delivery-card { grid-template-columns: 1fr; }
  .delivery-map { min-height: 400px; }
  .faq-layout { grid-template-columns: 1fr; gap: 45px; }
  .faq-layout .section-heading { position: static; max-width: 620px; }
  .contact-card { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1.2fr .7fr 1fr; gap: 35px; }
}

@media (max-width: 620px) {
  .section-shell, .nav-shell { width: min(100% - 28px, 1180px); }
  .announcement { height: 30px; font-size: 8px; letter-spacing: .06em; }
  .nav-shell { height: 72px; }
  .brand-mark { width: 40px; height: 40px; border-radius: 12px; }
  .brand strong { font-size: 18px; }
  .brand small { font-size: 7px; }
  .nav-shell > .button { display: none; }
  .hero { min-height: auto; }
  .hero-grid { padding-top: 48px; padding-bottom: 65px; gap: 45px; }
  .hero h1 { font-size: 43px; }
  .hero-copy > p { font-size: 14px; line-height: 1.72; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-note { align-items: flex-start; text-align: left; font-size: 9px; }
  .hero-visual { height: 315px; padding: 12px; }
  .visual-topline { height: 36px; }
  .shelf-scene { height: calc(100% - 36px); }
  .floating-card-time { right: -7px; top: 60px; width: 109px; height: 64px; }
  .floating-card-order { left: -7px; bottom: 24px; }
  .delivery-bag { width: 84px; height: 94px; font-size: 26px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item { padding: 12px 6px; gap: 8px; justify-content: flex-start; }
  .trust-icon { width: 34px; height: 34px; border-radius: 10px; }
  .trust-item b { font-size: 10px; }
  .trust-item small { font-size: 7px; }
  .intro-section { padding-top: 68px; }
  .catalog-layout { margin-top: 34px; }
  .catalog-feature { min-height: 420px; border-radius: 20px; }
  .catalog-feature-copy { left: 23px; right: 23px; bottom: 23px; }
  .catalog-feature-copy h3 { font-size: 26px; }
  .category-grid { grid-template-columns: 1fr; }
  .category-card { min-height: 205px; padding: 22px; }
  .category-card h3 { margin-top: 16px; }
  .mini-categories { grid-template-columns: 1fr; }
  .mini-categories > div { border-right: 0; border-bottom: 1px solid #ece7df; }
  .mini-categories > div:last-child { border-bottom: 0; }
  .why-section, .steps-section, .faq-section { padding: 72px 0; }
  .why-grid { grid-template-columns: 1fr; }
  .why-grid article { min-height: 190px; }
  .steps-grid { grid-template-columns: 1fr; gap: 47px; }
  .steps-grid article { padding: 0 20px; }
  .step-line { top: 65px; left: 50%; width: 1px; height: 48px; background: repeating-linear-gradient(0deg, #d8c8af 0 7px, transparent 7px 13px); }
  .delivery-section { padding: 62px 0; }
  .delivery-card { width: calc(100% - 28px); border-radius: 22px; }
  .delivery-copy { padding: 42px 25px; }
  .delivery-copy h2 { font-size: 38px; }
  .delivery-copy .button { width: 100%; padding-inline: 14px; text-align: center; }
  .delivery-map { min-height: 350px; }
  .ring-three { width: 310px; height: 310px; }
  .map-badge { min-width: 225px; }
  .faq-list summary { min-height: 70px; font-size: 14px; }
  .faq-list details p { margin-right: 36px; }
  .contact-cta { padding-bottom: 50px; }
  .contact-card { width: calc(100% - 28px); padding: 35px 25px; }
  .contact-card h2 { font-size: 30px; }
  .contact-actions { width: 100%; align-items: flex-start; flex-direction: column; }
  .contact-actions .button { width: 100%; }
  .footer { padding-top: 50px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .legal-row { min-height: 105px; align-items: flex-start; justify-content: center; flex-direction: column; gap: 12px; padding: 22px 0; }
  .floating-whatsapp { right: 14px; bottom: 14px; min-height: 50px; padding-right: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
