/* =========================================================
   AETHER — myaether.org
   Light, vibrant, fully responsive stylesheet
   ========================================================= */

:root {
  --indigo: #6d5efc;
  --cyan: #3ad0e8;
  --coral: #ff8a5c;
  --ink: #1a1830;
  --ink-soft: #4b4869;
  --muted: #7d7a96;
  --surface: #ffffff;
  --bg: #f6f5ff;
  --bg-tint: #eef0ff;
  --line: #e8e6f5;
  --grad: linear-gradient(120deg, #6d5efc 0%, #3ad0e8 55%, #ff8a5c 110%);
  --grad-soft: linear-gradient(120deg, #efeaff 0%, #e6fbff 100%);
  --shadow-sm: 0 6px 20px rgba(109, 94, 252, 0.10);
  --shadow: 0 18px 50px rgba(80, 70, 180, 0.16);
  --shadow-lg: 0 30px 80px rgba(80, 70, 180, 0.22);
  --radius: 22px;
  --radius-sm: 14px;
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; overflow-x: clip; }

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'Sora', 'Plus Jakarta Sans', sans-serif; line-height: 1.15; color: var(--ink); }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Animated background blobs ---------- */
.bg-decor { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.45; }
.blob-1 { width: 480px; height: 480px; background: #c9bfff; top: -120px; left: -100px; animation: drift 18s var(--ease) infinite alternate; }
.blob-2 { width: 420px; height: 420px; background: #b6f3ff; top: 30%; right: -120px; animation: drift 22s var(--ease) infinite alternate-reverse; }
.blob-3 { width: 380px; height: 380px; background: #ffd6c2; bottom: -120px; left: 30%; animation: drift 20s var(--ease) infinite alternate; }
@keyframes drift { from { transform: translate(0,0) scale(1); } to { transform: translate(40px, 60px) scale(1.15); } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 999px; font-weight: 700; font-size: 0.98rem;
  cursor: pointer; border: none; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s; white-space: nowrap;
}
.btn-primary { background: var(--grad); color: #fff; box-shadow: var(--shadow-sm); background-size: 160% 160%; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow); background-position: 100% 50%; }
.btn-ghost { background: #fff; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--indigo); color: var(--indigo); }
.btn-block { width: 100%; }

/* ---------- Navbar ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(14px); background: rgba(255,255,255,0.72);
  border-bottom: 1px solid transparent; transition: box-shadow 0.3s, background 0.3s, border-color 0.3s;
}
.nav.scrolled { box-shadow: 0 8px 30px rgba(80,70,180,0.10); border-color: var(--line); background: rgba(255,255,255,0.9); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; font-family: 'Sora'; font-weight: 800; font-size: 1.35rem; }
.logo-mark { display: grid; place-items: center; }
.logo-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a { padding: 9px 14px; border-radius: 999px; font-weight: 600; font-size: 0.95rem; color: var(--ink-soft); transition: color 0.2s, background 0.2s; }
.nav-links a:hover { color: var(--indigo); background: var(--bg-tint); }
.nav-cta { background: var(--grad); color: #fff !important; }
.nav-cta:hover { background: var(--grad) !important; opacity: 0.92; transform: translateY(-1px); }

.nav-right { display: flex; align-items: center; gap: 10px; }

/* Language switcher */
.lang-switch { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 7px; padding: 8px 13px; border-radius: 999px;
  background: #fff; border: 1.5px solid var(--line); cursor: pointer; font-weight: 700; font-size: 0.9rem; color: var(--ink); transition: border-color 0.2s, box-shadow 0.2s;
}
.lang-btn:hover { border-color: var(--indigo); box-shadow: var(--shadow-sm); }
.lang-flag { font-size: 1.05rem; }
.lang-menu {
  position: absolute; right: 0; top: calc(100% + 10px); list-style: none;
  background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow);
  padding: 8px; min-width: 190px; max-height: 340px; overflow-y: auto;
  opacity: 0; visibility: hidden; transform: translateY(-8px); transition: all 0.22s var(--ease); z-index: 200;
}
.lang-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu li {
  display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 10px; cursor: pointer; font-weight: 600; font-size: 0.92rem; transition: background 0.15s;
}
.lang-menu li:hover, .lang-menu li.active { background: var(--bg-tint); color: var(--indigo); }
.lang-menu li .flag { font-size: 1.15rem; }
.lang-menu li .code { margin-left: auto; font-size: 0.72rem; color: var(--muted); font-weight: 700; }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.burger span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 3px; transition: transform 0.3s, opacity 0.3s; }
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 70px 0 90px; }
.hero-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; }
.pill {
  display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; border-radius: 999px;
  background: #fff; border: 1.5px solid var(--line); color: var(--indigo); font-weight: 700; font-size: 0.82rem; box-shadow: var(--shadow-sm); margin-bottom: 22px;
}
.hero-title { font-size: clamp(2.3rem, 5.2vw, 3.8rem); font-weight: 800; letter-spacing: -0.02em; }
.hero-title span { display: block; }
.hero-sub { font-size: 1.14rem; color: var(--ink-soft); margin: 22px 0 30px; max-width: 560px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 26px; flex-wrap: wrap; margin-top: 36px; }
.trust-item { display: flex; align-items: center; gap: 9px; font-size: 0.9rem; color: var(--ink-soft); font-weight: 600; }
.trust-item strong { font-size: 1.2rem; }

/* Hero visual */
.hero-visual { display: grid; place-items: center; }
.orbit-card { position: relative; width: 100%; max-width: 420px; aspect-ratio: 1; }
.hero-glass {
  position: absolute; inset: 8%; border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.9), rgba(255,255,255,0.35));
  border: 1px solid rgba(255,255,255,0.7); box-shadow: var(--shadow-lg); backdrop-filter: blur(6px);
  display: grid; place-items: center; padding: 14%; animation: floaty 6s var(--ease) infinite alternate;
}
.float-chip {
  position: absolute; z-index: 3; display: flex; align-items: center; gap: 7px;
  background: #fff; padding: 11px 17px; border-radius: 999px; box-shadow: var(--shadow); font-weight: 700; font-size: 0.9rem; border: 1px solid var(--line);
}
.chip-1 { top: 2%; left: 4%; animation: floaty 5s var(--ease) infinite alternate; }
.chip-2 { top: 42%; right: -4%; animation: floaty 6.5s var(--ease) infinite alternate-reverse; }
.chip-3 { bottom: 4%; left: 12%; animation: floaty 5.5s var(--ease) infinite alternate; }
@keyframes floaty { from { transform: translateY(0); } to { transform: translateY(-14px); } }

.wave-divider { position: absolute; bottom: -1px; left: 0; width: 100%; line-height: 0; }
.wave-divider svg { width: 100%; height: 70px; }

/* ---------- Stats ---------- */
.stats { background: var(--surface); padding: 10px 0 56px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat {
  text-align: center; padding: 28px 16px; border-radius: var(--radius); background: var(--grad-soft); border: 1px solid var(--line);
  display: flex; flex-direction: column; align-items: center; position: relative;
}
.stat-num { font-family: 'Sora'; font-size: 2.6rem; font-weight: 800; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.stat-suffix { display: none; }
.stat-label { font-size: 0.9rem; color: var(--ink-soft); font-weight: 600; margin-top: 8px; }

/* ---------- Sections ---------- */
.section { padding: 84px 0; background: var(--surface); }
.section-tint { background: var(--bg); }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 52px; }
.kicker {
  display: inline-block; padding: 6px 15px; border-radius: 999px; background: var(--bg-tint);
  color: var(--indigo); font-weight: 800; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px;
}
.section-head h2 { font-size: clamp(1.8rem, 3.8vw, 2.7rem); font-weight: 800; letter-spacing: -0.02em; }
.section-lead { font-size: 1.1rem; color: var(--ink-soft); margin-top: 18px; }

/* About grid */
.about-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.about-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); box-shadow: var(--shadow-sm);
}
.about-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.ac-icon { font-size: 2.2rem; margin-bottom: 14px; }
.about-card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.about-card p { color: var(--ink-soft); font-size: 0.96rem; }

/* Solutions grid */
.sol-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.sol-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 28px;
  position: relative; overflow: hidden; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); box-shadow: var(--shadow-sm);
}
.sol-card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease); }
.sol-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.sol-card:hover::before { transform: scaleX(1); }
.sol-icon { font-size: 2.4rem; width: 64px; height: 64px; display: grid; place-items: center; border-radius: 18px; background: var(--grad-soft); margin-bottom: 18px; }
.sol-card h3 { font-size: 1.22rem; margin-bottom: 10px; }
.sol-card p { color: var(--ink-soft); }

/* ---------- Project blocks ---------- */
.project { padding: 90px 0; background: var(--surface); }
.project-alt { background: linear-gradient(180deg, #fff 0%, var(--bg) 100%); }
.project-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.project-inner.reverse .project-copy { order: 2; }
.project-inner.reverse .project-visual { order: 1; }
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; border-radius: 999px; font-weight: 800; font-size: 0.82rem; margin-bottom: 20px; }
.badge-qr { background: #eafaff; color: #0f9bb8; }
.badge-ana { background: #ffeef6; color: #d6488f; }
.project-copy h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); margin-bottom: 18px; letter-spacing: -0.02em; }
.project-copy > p { font-size: 1.08rem; color: var(--ink-soft); margin-bottom: 26px; }

.feature-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.fl-ic { flex: none; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: var(--grad-soft); font-size: 1.25rem; }
.feature-list div { display: flex; flex-direction: column; }
.feature-list strong { font-size: 1rem; color: var(--ink); }
.feature-list span { color: var(--ink-soft); font-size: 0.94rem; }

.project-visual { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.demo-hint { font-size: 0.85rem; color: var(--muted); font-weight: 600; text-align: center; }

/* ---------- QuickQR phone demo ---------- */
.phone {
  width: 320px; max-width: 86vw; aspect-ratio: 320 / 620; background: #15132b; border-radius: 42px;
  padding: 14px; box-shadow: var(--shadow-lg); position: relative; border: 3px solid #2a2748;
}
.phone-notch { position: absolute; top: 16px; left: 50%; transform: translateX(-50%); width: 110px; height: 22px; background: #15132b; border-radius: 0 0 14px 14px; z-index: 5; }
.phone-screen { width: 100%; height: 100%; background: #fff; border-radius: 30px; overflow: hidden; }
.menu-app { height: 100%; display: flex; flex-direction: column; }
.menu-app-head { background: var(--grad); color: #fff; padding: 34px 18px 16px; }
.ma-rest { font-family: 'Sora'; font-weight: 800; font-size: 1.25rem; }
.ma-sub { font-size: 0.74rem; opacity: 0.9; margin-top: 2px; }
.ma-lang { display: flex; gap: 6px; margin-top: 12px; flex-wrap: wrap; }
.ma-lang button { padding: 4px 10px; border-radius: 999px; border: none; background: rgba(255,255,255,0.22); color: #fff; font-weight: 700; font-size: 0.72rem; cursor: pointer; transition: background 0.2s; }
.ma-lang button.active { background: #fff; color: var(--indigo); }
.menu-filters { display: flex; gap: 6px; padding: 12px 16px 6px; flex-wrap: wrap; }
.menu-filters button { padding: 5px 12px; border-radius: 999px; border: 1.5px solid var(--line); background: #fff; font-size: 0.74rem; font-weight: 700; color: var(--ink-soft); cursor: pointer; transition: all 0.2s; }
.menu-filters button.active { background: var(--indigo); color: #fff; border-color: var(--indigo); }
.menu-items { flex: 1; overflow-y: auto; padding: 6px 14px 16px; }
.menu-items::-webkit-scrollbar { width: 5px; }
.menu-items::-webkit-scrollbar-thumb { background: var(--line); border-radius: 9px; }
.dish { border: 1px solid var(--line); border-radius: 16px; padding: 12px 14px; margin-bottom: 10px; cursor: pointer; transition: box-shadow 0.2s, border-color 0.2s; }
.dish:hover { border-color: var(--indigo); box-shadow: var(--shadow-sm); }
.dish-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; }
.dish-name { font-weight: 700; font-size: 0.92rem; }
.dish-price { font-weight: 800; color: var(--indigo); font-size: 0.9rem; white-space: nowrap; }
.dish-tags { display: flex; gap: 5px; margin-top: 7px; flex-wrap: wrap; }
.dish-tag { font-size: 0.64rem; font-weight: 700; padding: 2px 8px; border-radius: 999px; }
.tag-veg { background: #e7f8ec; color: #1f9d55; }
.tag-vegan { background: #e3f7ed; color: #0f8a52; }
.tag-allergen { background: #fff1e6; color: #d96b1f; }
.dish-detail { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.dish.open .dish-detail { max-height: 240px; }
.dish-detail-inner { padding-top: 10px; margin-top: 10px; border-top: 1px dashed var(--line); }
.dd-label { font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted); margin-bottom: 3px; }
.dd-text { font-size: 0.8rem; color: var(--ink-soft); margin-bottom: 8px; }
.dd-allergens { display: flex; gap: 5px; flex-wrap: wrap; }
.dd-allergen { font-size: 0.66rem; font-weight: 700; padding: 3px 9px; border-radius: 999px; background: #fff1e6; color: #d96b1f; }

/* ---------- Anahita vending demo ---------- */
.vending {
  width: 300px; max-width: 86vw; background: linear-gradient(165deg, #fff 0%, #fdf2f8 100%);
  border-radius: 28px; padding: 22px; box-shadow: var(--shadow-lg); border: 1px solid var(--line);
}
.vend-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.vend-brand { font-family: 'Sora'; font-weight: 800; font-size: 1.3rem; background: linear-gradient(120deg, #d6488f, #ff8a5c); -webkit-background-clip: text; background-clip: text; color: transparent; }
.vend-status { font-size: 0.72rem; font-weight: 700; color: #1f9d55; }
.vend-status.busy { color: var(--coral); }
.vend-screen {
  background: #15132b; border-radius: 18px; height: 150px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px; color: #fff; text-align: center; padding: 16px; margin-bottom: 16px; position: relative; overflow: hidden;
}
.vend-illustr { font-size: 2.4rem; transition: transform 0.4s var(--ease); }
.vend-msg { font-size: 0.84rem; font-weight: 600; opacity: 0.92; }
.vend-screen.dispensing .vend-illustr { animation: drop 1s var(--ease); }
@keyframes drop { 0%{transform:translateY(-10px);} 50%{transform:translateY(40px) scale(0.9);} 100%{transform:translateY(0);} }
.vend-pay { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.pay-btn { padding: 13px 8px; border-radius: 14px; border: 1.5px solid var(--line); background: #fff; font-weight: 700; font-size: 0.82rem; cursor: pointer; transition: all 0.2s var(--ease); }
.pay-btn:hover { border-color: #d6488f; color: #d6488f; transform: translateY(-2px); }
.pay-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.vend-slot { background: #15132b; color: rgba(255,255,255,0.6); border-radius: 12px; padding: 10px; text-align: center; font-size: 0.74rem; font-weight: 600; }

/* ---------- Everest POS demo ---------- */
.badge-pos { background: #eef0ff; color: #5a4ad1; }
.pos {
  width: 360px; max-width: 90vw; background: #15132b; border-radius: 24px; padding: 16px;
  box-shadow: var(--shadow-lg); border: 3px solid #2a2748;
}
.pos-head { display: flex; justify-content: space-between; align-items: center; color: #fff; padding: 4px 6px 14px; }
.pos-brand { font-family: 'Sora'; font-weight: 800; font-size: 1.02rem; }
.pos-clock { font-size: 0.8rem; color: #a8a5c4; }
.pos-body { display: grid; grid-template-columns: 1.25fr 1fr; gap: 12px; }
.pos-products { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.pos-prod {
  background: #fff; border: none; border-radius: 14px; padding: 12px 8px; cursor: pointer; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 3px; transition: transform 0.15s var(--ease), box-shadow 0.15s;
}
.pos-prod:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(0,0,0,0.25); }
.pos-prod:active { transform: scale(0.96); }
.pp-emoji { font-size: 1.5rem; }
.pp-name { font-size: 0.72rem; font-weight: 700; color: var(--ink); }
.pp-price { font-size: 0.7rem; font-weight: 800; color: var(--indigo); }
.pos-cart { background: #fff; border-radius: 14px; padding: 12px; display: flex; flex-direction: column; }
.pos-cart-title { font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); margin-bottom: 8px; }
.pos-cart-items { flex: 1; min-height: 118px; max-height: 118px; overflow-y: auto; display: flex; flex-direction: column; gap: 6px; }
.pos-cart-items::-webkit-scrollbar { width: 4px; }
.pos-cart-items::-webkit-scrollbar-thumb { background: var(--line); border-radius: 9px; }
.pos-empty { color: var(--muted); font-size: 0.78rem; font-style: italic; margin: auto; text-align: center; }
.pos-paid { color: #1f9d55; font-weight: 700; font-size: 0.9rem; margin: auto; text-align: center; }
.pos-line { display: flex; align-items: center; gap: 6px; font-size: 0.76rem; }
.pl-qty { font-weight: 800; color: var(--indigo); }
.pl-name { flex: 1; color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pl-price { font-weight: 700; color: var(--ink); }
.pos-total-row { display: flex; justify-content: space-between; font-weight: 800; font-size: 0.92rem; padding: 10px 0; border-top: 1px dashed var(--line); margin-top: 8px; }
.pos-charge { background: var(--grad); color: #fff; border: none; border-radius: 12px; padding: 11px; font-weight: 800; font-size: 0.82rem; cursor: pointer; transition: opacity 0.2s, transform 0.15s; white-space: nowrap; }
.pos-charge:hover:not(:disabled) { transform: translateY(-2px); }
.pos-charge:disabled { opacity: 0.5; cursor: not-allowed; }

/* ---------- WhatsApp button ---------- */
.btn-wa { background: #25d366; color: #fff; }
.btn-wa:hover { background: #1ebe5b; transform: translateY(-3px); box-shadow: var(--shadow); }
.wa-inline { color: #1ebe5b !important; font-weight: 700; }
.wa-inline:hover { text-decoration: underline; }
.form-or { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: 0.82rem; font-weight: 600; margin: 14px 0; }
.form-or::before, .form-or::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.wa-float {
  position: fixed; z-index: 95; width: 58px; height: 58px; border-radius: 50%;
  right: calc(20px + env(safe-area-inset-right, 0px));
  bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 10px 30px rgba(37,211,102,0.45);
  transition: transform 0.25s var(--ease), box-shadow 0.25s; animation: waPulse 2.6s ease-in-out infinite;
}
.wa-float svg { width: 30px; height: 30px; }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 14px 36px rgba(37,211,102,0.55); }
@keyframes waPulse { 0%, 100% { box-shadow: 0 10px 30px rgba(37,211,102,0.45); } 50% { box-shadow: 0 10px 30px rgba(37,211,102,0.25), 0 0 0 12px rgba(37,211,102,0.08); } }

/* ---------- Made in EU ---------- */
.section-eu { background: linear-gradient(180deg, var(--bg) 0%, #fff 100%); }
.eu-band { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin-bottom: 44px; border: 1px solid var(--line); }
.eu-band img { width: 100%; height: 240px; object-fit: cover; display: block; }
.eu-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-bottom: 44px; }
.eu-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 24px; text-align: center; transition: transform 0.3s var(--ease), box-shadow 0.3s; box-shadow: var(--shadow-sm); }
.eu-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.eu-ic { font-size: 2.4rem; margin-bottom: 14px; }
.eu-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.eu-card p { color: var(--ink-soft); font-size: 0.92rem; }
.eu-banner {
  background: linear-gradient(120deg, #003399 0%, #1a4ec2 100%); color: #fff; border-radius: var(--radius);
  padding: 38px 28px; text-align: center; box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.eu-stars { color: #ffcc00; font-size: 1.5rem; letter-spacing: 6px; display: block; margin-bottom: 12px; }
.eu-banner p { font-family: 'Sora'; font-weight: 700; font-size: 1.25rem; }

/* ---------- Contact ---------- */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact-copy h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); margin: 14px 0 16px; }
.contact-copy > p { color: var(--ink-soft); font-size: 1.06rem; margin-bottom: 30px; }
.contact-info { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.contact-info li { display: flex; gap: 14px; align-items: flex-start; }
.ci-ic { flex: none; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 14px; background: var(--grad-soft); font-size: 1.3rem; }
.contact-info strong { display: block; font-size: 0.98rem; margin-bottom: 2px; }
.contact-info a, .contact-info span { color: var(--ink-soft); }
.contact-info a:hover { color: var(--indigo); }

.contact-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; font-size: 0.88rem; margin-bottom: 7px; }
.field input, .field textarea {
  width: 100%; padding: 13px 16px; border-radius: 12px; border: 1.5px solid var(--line); background: var(--bg);
  font-family: inherit; font-size: 0.95rem; color: var(--ink); transition: border-color 0.2s, background 0.2s; resize: vertical;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--indigo); background: #fff; }
.form-note { font-size: 0.8rem; color: var(--muted); margin-top: 14px; text-align: center; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #cfcce6; padding: 64px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.3fr 2fr; gap: 50px; padding-bottom: 44px; }
.logo-light .logo-text { color: #fff; -webkit-text-fill-color: #fff; }
.footer-brand p { margin: 16px 0; max-width: 320px; color: #a8a5c4; }
.made-eu { display: inline-flex; align-items: center; gap: 7px; font-size: 0.86rem; font-weight: 600; background: rgba(255,255,255,0.08); padding: 8px 14px; border-radius: 999px; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.footer-col h4 { color: #fff; font-size: 0.95rem; margin-bottom: 14px; }
.footer-col a, .footer-col span { display: block; color: #a8a5c4; font-size: 0.9rem; margin-bottom: 9px; transition: color 0.2s; }
.footer-col a:hover { color: var(--cyan); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 0.82rem; color: #8b88a8; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { order: -1; }
  .orbit-card { max-width: 320px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: repeat(2, 1fr); }
  .sol-grid { grid-template-columns: repeat(2, 1fr); }
  .eu-grid { grid-template-columns: repeat(2, 1fr); }
  .project-inner { grid-template-columns: 1fr; gap: 40px; }
  .project-inner.reverse .project-copy { order: 1; }
  .project-inner.reverse .project-visual { order: 2; }
  .contact-wrap { grid-template-columns: 1fr; gap: 36px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 760px) {
  .nav-links {
    position: fixed; top: 72px; right: 0; width: min(80vw, 320px); height: calc(100vh - 72px);
    background: #fff; flex-direction: column; align-items: stretch; gap: 4px; padding: 22px;
    box-shadow: var(--shadow-lg); transform: translateX(110%); transition: transform 0.35s var(--ease); border-left: 1px solid var(--line);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { padding: 14px 16px; font-size: 1.05rem; }
  .burger { display: flex; }
}

@media (max-width: 520px) {
  .section { padding: 60px 0; }
  .project { padding: 60px 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .about-grid, .sol-grid, .eu-grid { grid-template-columns: 1fr; }
  .hero-trust { gap: 16px; }
  .stat { padding: 20px 10px; }
  .stat-num { font-size: 2.1rem; }
  .contact-form { padding: 24px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}

/* Everest POS — stack the terminal on phones so nothing is cramped */
@media (max-width: 600px) {
  .pos { width: 100%; max-width: 380px; padding: 14px; }
  .pos-body { grid-template-columns: 1fr; gap: 10px; }
  .pos-products { grid-template-columns: repeat(3, 1fr); gap: 7px; }
  .pos-prod { padding: 10px 4px; }
  .pp-emoji { font-size: 1.35rem; }
  .pos-cart-items { min-height: 84px; max-height: 140px; }
  .pos-charge { padding: 13px; font-size: 0.9rem; }
}
@media (max-width: 360px) {
  .pos-products { gap: 6px; }
  .pp-name { font-size: 0.66rem; }
  .pp-price { font-size: 0.64rem; }
  .wa-float { width: 52px; height: 52px; }
  .wa-float svg { width: 26px; height: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
