:root {
  --emerald: #14b87a;
  --emerald-dark: #0f8f62;
  --emerald-deep: #08704d;
  --navy: #102a43;
  --navy-deep: #081d30;
  --ink: #1f2937;
  --muted: #667085;
  --surface: #f7fafc;
  --white: #ffffff;
  --border: #e5e7eb;
  --cyan: #18a8b7;
  --coral: #ef7d68;
  --gold: #f2b84b;
  --radius-card: 8px;
  --radius-image: 12px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --shadow-soft: 0 2px 8px rgba(16, 42, 67, .04), 0 16px 42px rgba(16, 42, 67, .08);
  --shadow-hover: 0 8px 18px rgba(16, 42, 67, .08), 0 26px 58px rgba(16, 42, 67, .14);
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.65;
  letter-spacing: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { color: inherit; font: inherit; }
button { cursor: pointer; }
p, h1, h2, h3, blockquote { margin-top: 0; }
:focus-visible { outline: 3px solid rgba(20,184,122,.36); outline-offset: 4px; }

.container { width: min(1320px, calc(100% - 64px)); margin-inline: auto; }
.section { position: relative; padding: 120px 0; }
.section-compact { padding: 44px 0; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--emerald-dark);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow::before { width: 28px; height: 2px; background: currentColor; content: ""; transform: scaleX(.35); transform-origin: left; transition: transform 700ms var(--ease); }
.is-visible .eyebrow::before, .eyebrow.is-visible::before { transform: scaleX(1); }
.eyebrow-light { color: #95f1ca; }

.section-title {
  max-width: 820px;
  margin-bottom: 20px;
  color: var(--navy);
  font-size: 40px;
  font-weight: 750;
  line-height: 1.16;
}

.section-title span, .hero h1 span {
  color: var(--emerald-dark);
  background: linear-gradient(105deg, var(--emerald-deep), var(--cyan), var(--emerald));
  background-size: 180% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 7s ease-in-out infinite;
}

.section-title.light { color: var(--white); }
.section-title.light span { background-image: linear-gradient(105deg, #86efc2, #b4f6dc, #66d9e8); }
.section-lead { max-width: 640px; margin-bottom: 32px; color: var(--muted); }
.section-lead.light-muted { color: #bcd2d0; }
.section-heading { max-width: 780px; margin: 0 auto 64px; text-align: center; }
.section-heading .section-title { margin-inline: auto; }
.section-heading > p:last-child { max-width: 680px; margin: 0 auto; color: var(--muted); }

.button {
  position: relative;
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 14px 26px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 750;
  line-height: 1.2;
  transition: color 250ms var(--ease), background-color 250ms var(--ease), border-color 250ms var(--ease), box-shadow 250ms var(--ease), transform 250ms var(--ease);
  will-change: transform;
}

.button svg, .text-link svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; transition: transform 250ms var(--ease); }
.button:hover { transform: translateY(-4px) scale(1.015); }
.button:hover svg, .text-link:hover svg { transform: translateX(5px); }
.button:active { transform: translateY(-1px) scale(.98); }
.magnetic { transform: translate3d(var(--mag-x, 0), var(--mag-y, 0), 0); }
.magnetic:hover { transform: translate3d(var(--mag-x, 0), calc(var(--mag-y, 0) - 4px), 0) scale(1.015); }
.magnetic:active { transform: translate3d(var(--mag-x, 0), var(--mag-y, 0), 0) scale(.98); }
.button-primary { color: var(--white); background: var(--emerald); box-shadow: 0 9px 24px rgba(20, 184, 122, .24); }
.button-primary:hover { background: var(--emerald-dark); box-shadow: 0 15px 34px rgba(15, 143, 98, .32); }
.button-secondary { color: var(--navy); border-color: #ccd6dd; background: rgba(255, 255, 255, .7); }
.button-secondary::before { position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 0 0 0 var(--emerald); content: ""; transition: box-shadow 300ms var(--ease); }
.button-secondary:hover { color: var(--emerald-deep); border-color: var(--emerald); box-shadow: 0 10px 24px rgba(16, 42, 67, .08); }
.button-secondary:hover::before { box-shadow: inset 0 0 0 1px var(--emerald); }
.button-light { color: var(--emerald-deep); background: var(--white); box-shadow: 0 12px 30px rgba(0, 0, 0, .2); }
.button-light:hover { background: #effff8; box-shadow: 0 18px 38px rgba(0, 0, 0, .25); }
.button-outline-light { color: var(--white); border-color: rgba(255, 255, 255, .5); }
.button-outline-light:hover { border-color: var(--white); background: rgba(255, 255, 255, .1); }
.button-small { min-height: 46px; padding: 11px 20px; font-size: 14px; }
.ripple { position: absolute; border-radius: 50%; background: rgba(255, 255, 255, .38); pointer-events: none; transform: translate(-50%, -50%) scale(0); animation: ripple 600ms ease-out forwards; }

.text-link { position: relative; display: inline-flex; align-items: center; gap: 9px; color: var(--emerald-dark); font-size: 16px; font-weight: 750; }
.text-link::after { position: absolute; right: 28px; bottom: -3px; left: 0; height: 1px; background: currentColor; content: ""; transform: scaleX(0); transform-origin: left; transition: transform 300ms var(--ease); }
.text-link:hover::after { transform: scaleX(1); }

/* Loader */
.page-loader { position: fixed; inset: 0; z-index: 9999; display: grid; place-content: center; gap: 24px; background: var(--white); opacity: 1; transition: opacity 600ms var(--ease), visibility 600ms; }
.page-loader img { width: 132px; height: 82px; object-fit: cover; object-position: center; }
.page-loader.is-hidden { visibility: hidden; opacity: 0; pointer-events: none; }
.loader-track { width: 132px; height: 3px; overflow: hidden; border-radius: 99px; background: #e8f2ee; }
.loader-track span { display: block; width: 45%; height: 100%; border-radius: inherit; background: var(--emerald); animation: loader-bar 1.1s var(--ease) infinite; }

/* Header */
.site-header { position: fixed; top: 0; left: 0; z-index: 1000; width: 100%; height: 96px; border-bottom: 1px solid transparent; background: rgba(255, 255, 255, .92); transition: height 320ms var(--ease), box-shadow 320ms var(--ease), border-color 320ms var(--ease); }
.site-header.is-scrolled { height: 74px; border-color: rgba(229, 231, 235, .75); background: rgba(255, 255, 255, .82); box-shadow: 0 10px 34px rgba(16, 42, 67, .08); backdrop-filter: blur(16px); }
.header-inner { display: flex; height: 100%; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; width: 150px; height: 72px; align-items: center; overflow: hidden; transition: height 300ms var(--ease); }
.brand img { width: 150px; height: 104px; object-fit: cover; object-position: center; }
.is-scrolled .brand { height: 58px; }
.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a { position: relative; padding: 12px 0; color: #405064; font-size: 14px; font-weight: 650; }
.main-nav a::after { position: absolute; bottom: 6px; left: 0; width: 100%; height: 2px; border-radius: 2px; background: var(--emerald); content: ""; transform: scaleX(0); transform-origin: right; transition: transform 300ms var(--ease); }
.main-nav a:hover, .main-nav a.is-active { color: var(--navy); }
.main-nav a:hover::after, .main-nav a.is-active::after { transform: scaleX(1); transform-origin: left; }
.header-actions { display: flex; align-items: center; gap: 18px; }
.phone-link { display: flex; align-items: center; gap: 7px; color: var(--navy); font-size: 14px; font-weight: 700; }
.phone-link svg { width: 17px; height: 17px; fill: none; stroke: var(--emerald-dark); stroke-width: 2; }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 12px; border: 0; border-radius: 50%; background: var(--surface); }
.menu-toggle span { display: block; width: 100%; height: 2px; margin: 5px 0; border-radius: 2px; background: var(--navy); transition: transform 250ms var(--ease), opacity 250ms var(--ease); }

/* Hero */
.hero { position: relative; min-height: 100vh; padding: 164px 0 48px; overflow: hidden; background: radial-gradient(ellipse at 82% 18%, rgba(20, 184, 122, .14), transparent 34%), radial-gradient(ellipse at 50% 75%, rgba(24, 168, 183, .08), transparent 38%), linear-gradient(145deg, #fff 0%, #fbfdfd 52%, #f1faf6 100%); }
.hero::after { position: absolute; top: 16%; right: 7%; width: 38%; height: 63%; border: 1px solid rgba(15,143,98,.1); background: linear-gradient(135deg, transparent 49.8%, rgba(15,143,98,.1) 50%, transparent 50.2%); content: ""; transform: rotate(7deg); pointer-events: none; }
.hero-layout { position: relative; z-index: 2; display: grid; min-height: 590px; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 48px; }
.hero-copy { max-width: 620px; }
.hero h1 { max-width: 650px; margin-bottom: 24px; color: var(--navy); font-size: 58px; font-weight: 790; line-height: 1.05; }
.hero-lead { max-width: 570px; margin-bottom: 34px; color: var(--muted); font-size: 18px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; }
.trust-note { display: flex; align-items: center; gap: 12px; margin-top: 30px; color: var(--muted); font-size: 13px; line-height: 1.45; }
.trust-note b { display: block; color: var(--navy); }
.trust-check { display: grid; flex: 0 0 34px; width: 34px; height: 34px; place-items: center; border: 1px solid rgba(20,184,122,.26); border-radius: 50%; color: var(--emerald-dark); background: #e8faf2; }
.trust-check svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.trust-avatars { display: flex; padding-left: 8px; }
.trust-avatars i { display: grid; width: 31px; height: 31px; margin-left: -8px; place-items: center; border: 2px solid var(--white); border-radius: 50%; color: var(--white); background: var(--navy); font-size: 10px; font-style: normal; font-weight: 800; }
.trust-avatars i:nth-child(2) { background: var(--coral); }
.trust-avatars i:nth-child(3) { background: var(--emerald); }
.hero-grid-pattern { position: absolute; top: 96px; right: 0; width: 50%; height: 74%; opacity: .3; background-image: radial-gradient(rgba(16, 42, 67, .17) 1px, transparent 1px); background-size: 24px 24px; mask-image: linear-gradient(to left, #000, transparent 88%); }
.hero-orb { position: absolute; opacity: .45; }
.hero-orb-one { top: 18%; right: 4%; width: 170px; height: 170px; border: 1px solid rgba(20,184,122,.2); background: repeating-linear-gradient(90deg, transparent 0 20px, rgba(20,184,122,.07) 21px); transform: rotate(12deg); }
.hero-orb-two { right: 42%; bottom: 12%; width: 110px; height: 110px; border-top: 1px solid rgba(24,168,183,.25); border-right: 1px solid rgba(24,168,183,.25); }
.hero-visual-wrap { position: relative; min-width: 0; }
.hero-visual { position: relative; min-height: 590px; isolation: isolate; transition: transform 400ms var(--ease); }
.hero-visual:hover { transform: scale(1.02) rotate(.35deg); }
.visual-glow { position: absolute; z-index: -1; top: 10%; right: 5%; width: 82%; aspect-ratio: 1; border-radius: 50%; opacity: .8; background: radial-gradient(circle, rgba(20, 184, 122, .2), rgba(24, 168, 183, .09) 45%, transparent 70%); }
.hero-photo { position: absolute; top: 1%; bottom: 3%; left: 0; z-index: -1; width: 61%; margin: 0; overflow: hidden; border: 1px solid rgba(16,42,67,.08); border-radius: 12px; background: #edf6f2; box-shadow: 0 28px 70px rgba(16,42,67,.14); transform: translate3d(var(--px), var(--py), 0); transition: transform 220ms ease-out; }
.hero-photo::after { position: absolute; inset: 0; background: linear-gradient(90deg, transparent 42%, rgba(242,250,247,.42) 72%, rgba(242,250,247,.94)), linear-gradient(180deg, transparent 70%, rgba(8,29,48,.13)); content: ""; pointer-events: none; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 48% center; }
.pos-device { position: absolute; top: 10%; right: 0; z-index: 2; width: 76%; max-width: 590px; overflow: hidden; border: 8px solid #112d3f; border-radius: 18px; background: #f9fcfb; box-shadow: 0 34px 90px rgba(8,29,48,.24), 0 10px 24px rgba(8,29,48,.16), inset 0 0 0 1px rgba(255,255,255,.4); transform: perspective(1400px) rotateY(-4deg) rotateX(2deg); animation: device-float 7s var(--ease) infinite; }
.pos-topbar { display: flex; height: 62px; align-items: center; justify-content: space-between; padding: 0 24px; color: var(--white); background: linear-gradient(90deg, var(--navy), #123f49); font-size: 13px; font-weight: 800; letter-spacing: .08em; }
.status-pill { padding: 6px 10px; border-radius: 20px; color: #86efc2; background: rgba(20, 184, 122, .15); font-size: 10px; letter-spacing: 0; }
.pos-content { padding: 24px; }
.pos-welcome { display: flex; flex-direction: column; margin-bottom: 20px; }
.pos-welcome small { color: var(--muted); font-size: 10px; }
.pos-welcome strong { color: var(--navy); font-size: 19px; }
.pos-stat-row { display: grid; grid-template-columns: 1.2fr .8fr; gap: 12px; }
.pos-stat-row > div { display: grid; grid-template-columns: 1fr auto; gap: 1px 8px; padding: 14px; border: 1px solid #e6edea; border-radius: 12px; background: var(--white); }
.pos-stat-row span { grid-column: 1 / -1; color: var(--muted); font-size: 9px; }
.pos-stat-row strong { color: var(--navy); font-size: 20px; }
.pos-stat-row em { align-self: end; color: var(--emerald-dark); font-size: 8px; font-style: normal; }
.pos-chart { display: flex; height: 118px; align-items: end; gap: 9px; margin: 18px 0; padding: 16px 18px 0; border-radius: 12px; background: linear-gradient(180deg, #edf9f4, rgba(237, 249, 244, .2)); }
.pos-chart span { flex: 1; border-radius: 5px 5px 0 0; background: linear-gradient(180deg, #43d5a2, var(--emerald-dark)); transform-origin: bottom; animation: bar-grow 1s var(--ease) both; }
.pos-chart span:nth-child(1) { height: 44%; }.pos-chart span:nth-child(2) { height: 62%; }.pos-chart span:nth-child(3) { height: 53%; }.pos-chart span:nth-child(4) { height: 79%; }.pos-chart span:nth-child(5) { height: 68%; }.pos-chart span:nth-child(6) { height: 91%; }.pos-chart span:nth-child(7) { height: 76%; }
.pos-bottom { display: flex; justify-content: space-between; margin-bottom: 9px; color: var(--navy); font-size: 10px; font-weight: 800; }
.pos-bottom b { color: var(--emerald-dark); }
.pos-row { display: grid; grid-template-columns: 27px 1fr auto; align-items: center; gap: 9px; padding: 8px 0; border-top: 1px solid #edf0f2; }
.pos-row > i { width: 27px; height: 27px; border-radius: 8px; background: #ddf7ed; }
.pos-row:nth-child(even) > i { background: #e5f1fb; }
.pos-row span { display: flex; flex-direction: column; }
.pos-row b { color: var(--navy); font-size: 9px; }
.pos-row small { color: var(--muted); font-size: 8px; }
.pos-row > strong { color: var(--navy); font-size: 10px; }
.glass-card { border: 1px solid rgba(255, 255, 255, .76); background: rgba(255, 255, 255, .82); box-shadow: var(--shadow-soft); backdrop-filter: blur(14px); }
.payment-card-float { position: absolute; right: -2%; bottom: 10%; z-index: 3; display: grid; width: 190px; grid-template-columns: 1fr auto; padding: 17px; border-radius: 8px; animation: float-card 6s var(--ease) infinite; }
.payment-card-float .card-chip { width: 30px; height: 21px; margin-bottom: 15px; border-radius: 5px; background: linear-gradient(135deg, var(--gold), #ffe399); }
.payment-card-float small, .payment-card-float strong { grid-column: 1; }
.payment-card-float small { color: var(--muted); font-size: 9px; }
.payment-card-float strong { color: var(--navy); font-size: 22px; }
.payment-card-float i { grid-row: 2 / 4; grid-column: 2; display: grid; width: 32px; height: 32px; place-items: center; border-radius: 50%; color: var(--white); background: var(--emerald); }
.payment-card-float svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2; }
.support-float { position: absolute; right: 12%; bottom: 0; z-index: 5; display: flex; align-items: center; gap: 11px; padding: 13px 16px; border-radius: 8px; animation: float-card 7s 1s var(--ease) infinite reverse; }
.support-float > svg { width: 21px; height: 21px; padding: 8px; overflow: visible; border-radius: 9px; color: var(--emerald-dark); background: #ddf7ed; fill: none; stroke: currentColor; stroke-width: 2; box-sizing: content-box; }
.support-float span { display: flex; flex-direction: column; }
.support-float small { color: var(--muted); font-size: 8px; }
.support-float strong { color: var(--navy); font-size: 10px; }
.appointment-float { position: absolute; top: 0; right: 1%; z-index: 4; display: grid; grid-template-columns: 36px 1fr auto; align-items: center; gap: 11px; min-width: 230px; padding: 13px 14px; border-radius: 8px; animation: float-card 7.5s .5s var(--ease) infinite; }
.appointment-float > i { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 8px; color: var(--emerald-dark); background: #ddf7ed; }
.appointment-float svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.appointment-float span { display: flex; flex-direction: column; }
.appointment-float small { color: var(--muted); font-size: 8px; }
.appointment-float strong { color: var(--navy); font-size: 10px; }
.appointment-float em { display: flex; gap: 3px; }
.appointment-float em b { width: 7px; height: 18px; border-radius: 2px; background: #f2a3a8; }
.appointment-float em b:nth-child(2) { background: #d774a4; }.appointment-float em b:nth-child(3) { background: #8d6da8; }.appointment-float em b:nth-child(4) { background: #dc6262; }
.hero-terminal { position: absolute; bottom: 1%; left: 2%; z-index: 4; width: 145px; padding: 10px 10px 18px; border: 5px solid #fff; border-radius: 12px; background: linear-gradient(145deg, #fff, #dfe8e5); box-shadow: 0 24px 45px rgba(16,42,67,.22); transform: rotate(-5deg); }
.hero-terminal > div { display: flex; height: 92px; flex-direction: column; align-items: center; justify-content: center; border-radius: 7px; color: var(--white); background: linear-gradient(145deg, #0f8f82, #0b6e68); }
.hero-terminal small { font-size: 7px; font-weight: 800; letter-spacing: .1em; }.hero-terminal strong { font-size: 20px; }.hero-terminal span { color: #bbede3; font-size: 8px; }
.hero-terminal > i { position: absolute; right: 24px; bottom: 7px; left: 24px; height: 4px; border-radius: 2px; background: #aebdb9; }
.hero-metrics { position: relative; z-index: 3; display: grid; max-width: 760px; grid-template-columns: repeat(3, 1fr); margin-top: 18px; }
.hero-metrics > div { display: flex; flex-direction: column; padding: 0 28px; border-left: 1px solid var(--border); }
.hero-metrics > div:first-child { padding-left: 0; border-left: 0; }
.hero-metrics strong { color: var(--navy); font-size: 25px; line-height: 1.2; }
.hero-metrics span { color: var(--muted); font-size: 12px; }

/* Shared cards */
.trust-bar { position: relative; z-index: 5; border-top: 1px solid #e4ece9; border-bottom: 1px solid #e4ece9; background: linear-gradient(90deg, #fff, #f8fcfa 50%, #fff); box-shadow: 0 12px 35px rgba(16,42,67,.04); }
.trust-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.mini-card { display: flex; min-width: 0; align-items: center; gap: 13px; padding: 16px 13px; border: 1px solid transparent; border-radius: 8px; transition: border-color 300ms var(--ease), box-shadow 300ms var(--ease), transform 300ms var(--ease); }
.mini-card:hover { border-color: rgba(20, 184, 122, .3); box-shadow: 0 10px 25px rgba(16, 42, 67, .07); transform: translateY(-6px) scale(1.015); }
.mini-card > svg { flex: 0 0 auto; width: 27px; height: 27px; padding: 7px; overflow: visible; border-radius: 7px; color: var(--emerald-dark); background: #e6f8f0; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; box-sizing: content-box; transition: color 300ms var(--ease), transform 300ms var(--ease), background-color 300ms var(--ease); }
.mini-card:hover > svg { transform: rotate(3deg) scale(1.08); }
.mini-card h3 { margin: 0; color: var(--navy); font-size: 13px; line-height: 1.3; }
.mini-card p { margin: 2px 0 0; color: var(--muted); font-size: 10px; line-height: 1.4; }
.spotlight-card { --mx: 50%; --my: 50%; }

/* Problem */
.problem-section { overflow: hidden; }
.soft-radial { position: absolute; top: 8%; left: -12%; width: 64%; height: 70%; opacity: .42; background: radial-gradient(ellipse, rgba(24,168,183,.1), transparent 68%); transform: rotate(-8deg); }
.split-layout { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 88px; }
.image-frame { border-radius: var(--radius-image); box-shadow: var(--shadow-soft); transition: box-shadow 400ms var(--ease), transform 400ms var(--ease); }
.image-frame:hover { box-shadow: var(--shadow-hover); transform: scale(1.025) rotate(.5deg); }
.salon-scene { position: relative; min-height: 580px; overflow: hidden; isolation: isolate; border: 1px solid #d8e4e0; background: linear-gradient(160deg, #eef7f4, #dceae6 56%, #cbdad6); }
.salon-scene::before { position: absolute; inset: 0; opacity: .7; background-image: linear-gradient(rgba(16,42,67,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(16,42,67,.055) 1px, transparent 1px); background-size: 34px 34px; mask-image: linear-gradient(135deg, #000, transparent 72%); content: ""; }
.salon-scene::after { position: absolute; right: -10%; bottom: -18%; width: 76%; height: 50%; border-radius: 50%; background: rgba(255,255,255,.58); box-shadow: 0 -25px 70px rgba(16,42,67,.1); content: ""; transform: rotate(-5deg); }
.scene-top { position: absolute; top: 28px; right: 30px; left: 30px; z-index: 3; display: flex; align-items: center; justify-content: space-between; padding-bottom: 16px; border-bottom: 1px solid rgba(16,42,67,.13); }
.scene-top span { color: var(--muted); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.scene-top b { padding: 6px 10px; border-radius: 5px; color: #9a432f; background: #ffe7df; font-size: 10px; }
.legacy-terminal { position: absolute; top: 112px; left: 10%; z-index: 2; display: grid; width: 47%; min-height: 260px; place-content: center; padding: 28px; border: 10px solid #374650; border-radius: 12px; color: var(--white); background: linear-gradient(155deg, #253b49, #102533); box-shadow: 0 28px 52px rgba(16,42,67,.26); transform: perspective(1000px) rotateY(7deg); }
.legacy-terminal span { margin-bottom: 28px; color: #8da2ad; font-size: 9px; font-weight: 800; letter-spacing: .15em; }
.legacy-terminal strong { margin-bottom: 22px; font-size: 22px; }
.legacy-terminal i { width: 100%; height: 7px; margin: 4px 0; border-radius: 2px; background: #345160; }
.legacy-terminal i:nth-of-type(2) { width: 76%; }.legacy-terminal i:nth-of-type(3) { width: 58%; background: #9c594a; }
.legacy-terminal small { margin-top: 25px; color: #efb8a8; font-size: 10px; }
.checkout-queue { position: absolute; top: 118px; right: 6%; z-index: 4; display: grid; width: 43%; gap: 10px; }
.checkout-queue > span { display: grid; grid-template-columns: 32px 1fr; padding: 13px; border: 1px solid rgba(255,255,255,.8); border-radius: 8px; background: rgba(255,255,255,.86); box-shadow: 0 13px 26px rgba(16,42,67,.09); backdrop-filter: blur(12px); }
.checkout-queue i { grid-row: 1 / 3; display: grid; width: 25px; height: 25px; place-items: center; border-radius: 50%; color: var(--white); background: var(--navy); font-size: 9px; font-style: normal; font-weight: 800; }
.checkout-queue b { color: var(--navy); font-size: 11px; }.checkout-queue small { color: var(--muted); font-size: 9px; }
.scene-alert { position: absolute; right: 6%; bottom: 28px; left: 6%; z-index: 5; display: flex; align-items: center; gap: 14px; padding: 17px; border: 1px solid rgba(255,255,255,.86); border-radius: 8px; background: rgba(255,255,255,.89); box-shadow: 0 20px 42px rgba(16,42,67,.13); backdrop-filter: blur(14px); }
.scene-alert > svg { width: 23px; height: 23px; padding: 9px; overflow: visible; border-radius: 7px; color: #b85843; background: #ffe7df; fill: none; stroke: currentColor; stroke-width: 1.8; box-sizing: content-box; }
.scene-alert span { display: flex; flex-direction: column; }.scene-alert small { color: var(--muted); font-size: 9px; }.scene-alert b { color: var(--navy); font-size: 14px; }
.check-list { display: grid; gap: 17px; margin: 30px 0 34px; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: 13px; }
.check-list li > i { display: grid; flex: 0 0 29px; width: 29px; height: 29px; margin-top: 2px; place-items: center; border-radius: 50%; color: var(--emerald-dark); background: #ddf7ed; }
.check-list svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2.4; }
.check-list li span { display: flex; flex-direction: column; }
.check-list b { color: var(--navy); font-size: 16px; }
.check-list small { color: var(--muted); font-size: 13px; }

/* Features */
.features-section { overflow: hidden; background: radial-gradient(circle at 12% 20%, rgba(24,168,183,.06), transparent 21%), linear-gradient(180deg, var(--surface), #fbfdfd); }
.features-section::after { position: absolute; right: 2%; bottom: 10%; width: 110px; height: 110px; border: 1px solid rgba(239,125,104,.13); content: ""; transform: rotate(28deg); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card { position: relative; min-height: 302px; padding: 36px; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius-card); background: radial-gradient(circle at var(--mx) var(--my), rgba(20,184,122,.12), transparent 38%), var(--white); box-shadow: 0 2px 5px rgba(16,42,67,.03), 0 12px 34px rgba(16,42,67,.05); transition: border-color 300ms var(--ease), box-shadow 300ms var(--ease), transform 300ms var(--ease); }
.feature-card:hover { border-color: var(--emerald); box-shadow: var(--shadow-hover); transform: translateY(-8px) scale(1.02); }
.feature-card > i, .why-card > i { display: grid; width: 60px; height: 60px; margin-bottom: 24px; place-items: center; border-radius: 8px; color: var(--emerald-dark); background: #e2f8ef; transition: color 300ms var(--ease), background-color 300ms var(--ease), transform 300ms var(--ease); }
.feature-card > i svg, .why-card > i svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.feature-card:hover > i, .why-card:hover > i { color: var(--white); background: var(--emerald); transform: rotate(3deg) scale(1.08); }
.feature-card h3, .why-card h3 { margin-bottom: 10px; color: var(--navy); font-size: 22px; line-height: 1.25; }
.feature-card p, .why-card p { margin-bottom: 0; color: var(--muted); font-size: 15px; }
.feature-card > a { position: absolute; right: 28px; bottom: 25px; display: grid; width: 37px; height: 37px; place-items: center; border-radius: 50%; color: var(--navy); background: var(--surface); transition: color 250ms var(--ease), background-color 250ms var(--ease), transform 250ms var(--ease); }
.feature-label { position: absolute; top: 38px; right: 34px; color: #81908d; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; }
.feature-card > a svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2; }
.feature-card:hover > a { color: var(--white); background: var(--emerald); transform: translateX(3px); }

/* Payments */
.payments-section { overflow: hidden; background: linear-gradient(118deg, #071a2a, #0a2e37 58%, #073c37); }
.payments-section::before { position: absolute; inset: 0; opacity: .08; background-image: linear-gradient(rgba(255,255,255,.35) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.35) 1px, transparent 1px); background-size: 48px 48px; content: ""; mask-image: radial-gradient(circle at 25% 50%, #000, transparent 64%); }
.payment-methods { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin: 32px 0 34px; }
.payment-methods span { display: flex; align-items: center; gap: 9px; padding: 10px 12px; border: 1px solid rgba(255,255,255,.11); border-radius: 10px; color: #d6e4e4; background: rgba(255,255,255,.04); font-size: 13px; transition: border-color 300ms var(--ease), background-color 300ms var(--ease), transform 300ms var(--ease); }
.payment-methods span::before { width: 7px; height: 7px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 0 4px rgba(20,184,122,.12); content: ""; }
.payment-methods span:hover { border-color: rgba(134,239,194,.5); background: rgba(255,255,255,.08); transform: translateX(4px); }
.terminal-stage { position: relative; display: grid; min-height: 640px; place-items: center; perspective: 1200px; }
.stage-ring { position: absolute; width: 470px; height: 470px; border: 1px solid rgba(134,239,194,.16); border-radius: 50%; box-shadow: 0 0 0 60px rgba(20,184,122,.03), 0 0 0 120px rgba(24,168,183,.02); }
.stage-platform { position: absolute; bottom: 8%; width: 76%; height: 22%; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; background: linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.025)); box-shadow: 0 30px 65px rgba(0,0,0,.34), inset 0 1px rgba(255,255,255,.2); transform: rotateX(72deg); }
.payment-product-photo { position: relative; z-index: 2; width: min(500px, 88%); aspect-ratio: 1; margin: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.2); border-radius: 12px; background: var(--white); box-shadow: 0 45px 100px rgba(0,0,0,.42), 0 0 70px rgba(20,184,122,.12); transform: perspective(1100px) rotateY(4deg) rotateX(1deg); animation: terminal-float 8s var(--ease) infinite; }
.payment-product-photo::after { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(255,255,255,.25), transparent 28% 72%, rgba(134,239,194,.08)); content: ""; pointer-events: none; }
.payment-product-photo img { width: 100%; height: 100%; object-fit: cover; }
.tap-card { position: absolute; top: 16%; right: 0; z-index: 4; display: flex; align-items: center; gap: 9px; padding: 13px 16px; border-radius: 8px; color: var(--navy); font-size: 11px; font-weight: 800; animation: float-card 6s var(--ease) infinite; }
.tap-card svg { width: 20px; height: 20px; fill: none; stroke: var(--emerald-dark); stroke-width: 2; }
.receipt-float { position: absolute; bottom: 13%; left: -1%; z-index: 5; display: grid; width: 190px; grid-template-columns: 1fr auto; padding: 16px; border-radius: 8px; animation: float-card 7s .8s var(--ease) infinite reverse; }
.receipt-float small, .receipt-float strong, .receipt-float span { grid-column: 1; }.receipt-float small { color: var(--muted); font-size: 8px; }.receipt-float strong { color: var(--navy); font-size: 20px; }.receipt-float span { color: var(--muted); font-size: 9px; }
.receipt-float i { grid-row: 1 / 4; grid-column: 2; display: grid; width: 31px; height: 31px; place-items: center; border-radius: 50%; color: var(--white); background: var(--emerald); }.receipt-float svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; }

/* Why */
.why-section { background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-card { position: relative; padding: 34px; border: 1px solid var(--border); border-radius: var(--radius-card); background: var(--white); box-shadow: 0 12px 28px rgba(16,42,67,.05); transition: border-color 300ms var(--ease), box-shadow 300ms var(--ease), transform 300ms var(--ease); }
.why-card:hover { border-color: var(--emerald); box-shadow: var(--shadow-hover); transform: translateY(-8px) scale(1.02); }
.why-card > span { position: absolute; top: 25px; right: 28px; color: #d7e1e3; font-size: 13px; font-weight: 800; }
.why-card > small { display: block; margin: -9px 0 7px; color: var(--emerald-dark); font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.why-card-featured { border-color: rgba(20,184,122,.32); background: linear-gradient(145deg, #f1fcf7, #fff 66%); box-shadow: 0 18px 44px rgba(15,143,98,.12); }

/* Timeline */
.process-section { overflow: hidden; background: linear-gradient(180deg, #f6faf8, #eef8f4); }
.timeline { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px; margin-top: 80px; }
.timeline-track { position: absolute; top: 35px; left: 12.5%; width: 75%; height: 2px; overflow: hidden; background: #cbded7; }
.timeline-track span { display: block; width: 100%; height: 100%; background: linear-gradient(90deg, var(--emerald), var(--cyan)); transform: scaleX(var(--timeline-progress, 0)); transform-origin: left; transition: transform 100ms linear; }
.timeline-step { position: relative; z-index: 2; padding: 0 16px; text-align: center; }
.timeline-step > b { position: absolute; top: -30px; left: 50%; color: #94aaa2; font-size: 10px; transform: translateX(-50%); }
.timeline-step > i { display: grid; width: 70px; height: 70px; margin: 0 auto 24px; place-items: center; border: 8px solid #eff8f4; border-radius: 50%; color: var(--emerald-dark); background: var(--white); box-shadow: 0 8px 22px rgba(16,42,67,.1); transition: color 300ms var(--ease), background-color 300ms var(--ease), transform 300ms var(--ease); }
.timeline-step.is-complete > i, .timeline-step:hover > i { color: var(--white); background: var(--emerald); transform: scale(1.08); }
.timeline-step svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.timeline-step h3 { margin-bottom: 8px; color: var(--navy); font-size: 18px; }
.timeline-step p { margin: 0; color: var(--muted); font-size: 13px; }
.centered-action { margin-top: 58px; text-align: center; }

/* Testimonials */
.testimonials-section { overflow: hidden; background: linear-gradient(115deg, #0c2639, #0b3a3b); }
.testimonials-section::after { position: absolute; right: -10%; bottom: -35%; width: 520px; height: 520px; border: 1px solid rgba(134,239,194,.12); opacity: .7; background: repeating-linear-gradient(90deg, transparent 0 36px, rgba(134,239,194,.04) 37px); content: ""; transform: rotate(24deg); }
.testimonial-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 52px; }
.testimonial-head .section-title { margin-bottom: 0; }
.carousel-controls { display: flex; gap: 10px; }
.carousel-controls button { display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; color: var(--white); background: rgba(255,255,255,.06); transition: background-color 250ms var(--ease), border-color 250ms var(--ease), transform 250ms var(--ease); }
.carousel-controls button:hover { border-color: var(--emerald); background: var(--emerald); transform: translateY(-3px); }
.carousel-controls button:first-child svg { transform: rotate(180deg); }
.carousel-controls svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; }
.testimonial-carousel { position: relative; overflow: hidden; }
.testimonial-track { display: flex; transition: transform 650ms var(--ease); }
.testimonial-card { position: relative; flex: 0 0 calc((100% - 40px) / 2.55); margin-right: 20px; padding: 42px 34px 34px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-card); opacity: .7; color: var(--white); background: linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.04)); transition: border-color 400ms var(--ease), opacity 400ms var(--ease), transform 400ms var(--ease); }
.testimonial-card::before { position: absolute; top: 12px; right: 24px; color: rgba(134,239,194,.2); content: "\201C"; font-family: Georgia, serif; font-size: 76px; line-height: 1; }
.testimonial-card.is-active { border-color: rgba(134,239,194,.4); opacity: 1; transform: scale(1.015); }
.stars { margin-bottom: 20px; color: var(--gold); font-size: 14px; letter-spacing: .14em; }
.testimonial-card blockquote { min-height: 145px; margin-bottom: 28px; color: #e3edee; font-size: 17px; line-height: 1.7; }
.testimonial-card footer { display: flex; align-items: center; gap: 13px; }
.avatar { display: grid; width: 44px; height: 44px; place-items: center; border-radius: 50%; color: var(--navy); background: linear-gradient(135deg, #86efc2, #66d9e8); font-size: 11px; font-weight: 800; }
.testimonial-card footer div { display: flex; flex-direction: column; }
.testimonial-card footer strong { font-size: 14px; }
.testimonial-card footer small { color: #9db1b8; font-size: 11px; }
.carousel-dots { display: none; justify-content: center; gap: 8px; margin-top: 24px; }
.carousel-dots button { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 99px; background: rgba(255,255,255,.3); transition: width 300ms var(--ease), background-color 300ms var(--ease); }
.carousel-dots button.is-active { width: 28px; background: var(--emerald); }

/* FAQ */
.faq-section { background: var(--white); }
.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 96px; }
.faq-intro { position: sticky; top: 120px; align-self: start; }
.faq-intro > p:not(.eyebrow) { color: var(--muted); }
.accordion { border-top: 1px solid var(--border); }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-item button { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 24px; padding: 28px 12px; border: 0; color: var(--navy); background: none; font-size: 18px; font-weight: 750; text-align: left; transition: color 250ms var(--ease), background-color 250ms var(--ease); }
.accordion-item button:hover { color: var(--emerald-deep); background: #f8fcfa; }
.accordion-item button svg { flex: 0 0 auto; width: 20px; height: 20px; fill: none; stroke: var(--emerald-dark); stroke-width: 2; transition: transform 350ms var(--ease); }
.accordion-item.is-open button svg { transform: rotate(90deg); }
.accordion-panel { display: grid; grid-template-rows: 0fr; opacity: 0; transition: grid-template-rows 450ms var(--ease), opacity 350ms var(--ease); }
.accordion-panel > div { overflow: hidden; }
.accordion-panel p { margin: 0; padding: 0 58px 28px 12px; color: var(--muted); font-size: 15px; }
.accordion-item.is-open .accordion-panel { grid-template-rows: 1fr; opacity: 1; }

/* CTA */
.cta-section { padding: 0 0 120px; background: var(--white); }
.cta-banner { position: relative; display: flex; min-height: 350px; align-items: center; justify-content: space-between; gap: 48px; padding: 68px 72px; overflow: hidden; border-radius: 10px; color: var(--white); background: radial-gradient(ellipse at 18% 10%, rgba(134,239,194,.2), transparent 38%), linear-gradient(115deg, var(--emerald-deep), #075f53 60%, #0a4b54); box-shadow: 0 30px 70px rgba(8,112,77,.22); }
.cta-banner > div:not(.cta-lines) { position: relative; z-index: 2; }
.cta-banner h2 { max-width: 680px; margin-bottom: 10px; font-size: 40px; line-height: 1.15; }
.cta-banner p:not(.eyebrow) { margin: 0; color: #c7eee0; }
.cta-actions { display: flex; flex: 0 0 auto; gap: 12px; }
.cta-lines { position: absolute; right: -7%; width: 430px; height: 430px; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; background: conic-gradient(from 20deg, transparent, rgba(255,255,255,.08), transparent 32%); animation: cta-spin 24s linear infinite; }
.cta-lines::before, .cta-lines::after { position: absolute; inset: 55px; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; content: ""; }
.cta-lines::after { inset: 110px; }

/* Contact */
.contact-section { background: radial-gradient(circle at 85% 15%, rgba(24,168,183,.07), transparent 23%), var(--surface); }
.contact-layout { display: grid; grid-template-columns: .88fr 1.12fr; align-items: start; gap: 90px; }
.contact-copy > p:not(.eyebrow) { max-width: 560px; color: var(--muted); }
.contact-list { display: grid; gap: 14px; margin: 34px 0; }
.contact-list > * { display: flex; align-items: center; gap: 13px; }
.contact-list i { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 8px; color: var(--emerald-dark); background: #ddf7ed; }
.contact-list svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.contact-list span { display: flex; flex-direction: column; }
.contact-list small { color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.contact-list strong { color: var(--navy); font-size: 14px; }
.contact-photo { position: relative; height: 240px; margin: 34px 0 0; overflow: hidden; border: 1px solid #dbe5e2; border-radius: 8px; background: #e6f1ee; box-shadow: var(--shadow-soft); }
.contact-photo::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(8,29,48,.7)); content: ""; }
.contact-photo > img { width: 100%; height: 100%; object-fit: cover; object-position: center 36%; transition: transform 700ms var(--ease); }
.contact-photo:hover > img { transform: scale(1.035); }
.contact-photo figcaption { position: absolute; right: 18px; bottom: 16px; left: 18px; z-index: 2; display: flex; align-items: center; gap: 11px; color: var(--white); }
.contact-photo figcaption > i { display: grid; flex: 0 0 34px; width: 34px; height: 34px; place-items: center; border-radius: 7px; color: var(--emerald-deep); background: rgba(255,255,255,.92); }
.contact-photo figcaption svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.contact-photo figcaption span { display: flex; flex-direction: column; }.contact-photo figcaption small { color: #bfe9dd; font-size: 8px; text-transform: uppercase; letter-spacing: .08em; }.contact-photo figcaption b { font-size: 12px; }
.contact-form { padding: 46px; border: 1px solid rgba(255,255,255,.85); border-radius: var(--radius-card); background: rgba(255,255,255,.82); box-shadow: 0 24px 60px rgba(16,42,67,.12), inset 0 1px rgba(255,255,255,.9); backdrop-filter: blur(18px); }
.form-heading { margin-bottom: 30px; }
.form-heading span { color: var(--navy); font-size: 24px; font-weight: 780; }
.form-heading p { margin: 4px 0 0; color: var(--muted); font-size: 13px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px 16px; }
.field { position: relative; display: block; }
.field-full { grid-column: 1 / -1; }
.field input, .field textarea { width: 100%; border: 1px solid #d9e0e3; border-radius: 8px; outline: 0; background: var(--white); font-size: 15px; transition: border-color 250ms var(--ease), box-shadow 250ms var(--ease); }
.field input { height: 58px; padding: 21px 15px 8px; }
.field textarea { min-height: 122px; padding: 23px 15px 10px; resize: vertical; }
.field > span { position: absolute; top: 15px; left: 16px; color: var(--muted); font-size: 14px; pointer-events: none; transform-origin: left top; transition: color 250ms var(--ease), transform 250ms var(--ease); }
.field input:focus, .field textarea:focus { border-color: var(--emerald); box-shadow: 0 0 0 4px rgba(20,184,122,.11); }
.field input:focus + span, .field input:not(:placeholder-shown) + span, .field textarea:focus + span, .field textarea:not(:placeholder-shown) + span { color: var(--emerald-dark); transform: translateY(-8px) scale(.74); }
.field small { display: none; margin-top: 5px; color: #c34444; font-size: 10px; }
.field.is-invalid input { border-color: #d95c5c; animation: field-shake 350ms ease; }
.field.is-invalid small { display: block; }
.contact-form > .button { width: 100%; margin-top: 24px; border: 0; }
.form-status { margin: 12px 0 0; color: var(--emerald-dark); font-size: 12px; text-align: center; }
.form-privacy { display: block; margin-top: 12px; color: var(--muted); font-size: 10px; text-align: center; }

/* Footer */
.site-footer { position: relative; padding: 82px 0 0; color: #b8c5cf; background: linear-gradient(145deg, #071927, #08212b); }
.site-footer::before { position: absolute; top: 0; right: 0; left: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(134,239,194,.5), transparent); content: ""; }
.footer-grid { display: grid; grid-template-columns: 1.45fr .8fr .9fr .7fr 1.15fr; gap: 48px; padding-bottom: 60px; }
.footer-brand img { width: 148px; height: 76px; margin-bottom: 19px; border-radius: 10px; object-fit: cover; object-position: center; }
.footer-brand p { max-width: 280px; font-size: 13px; }
.footer-grid h3 { margin-bottom: 20px; color: var(--white); font-size: 14px; }
.footer-grid > div:not(.footer-brand) > a { display: block; width: fit-content; margin-bottom: 11px; color: #9fb0bd; font-size: 12px; transition: color 250ms var(--ease), transform 250ms var(--ease); }
.footer-grid > div:not(.footer-brand) > a:hover { color: #8debc5; transform: translateX(3px); }
.social-links { display: flex; gap: 8px; margin-top: 22px; }
.social-links a { display: grid; width: 36px; height: 36px; place-items: center; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; color: var(--white); font-size: 10px; font-weight: 800; transition: border-color 250ms var(--ease), box-shadow 250ms var(--ease), transform 250ms var(--ease); }
.social-links a:hover { border-color: var(--emerald); box-shadow: 0 0 18px rgba(20,184,122,.3); transform: translateY(-4px) rotate(3deg); }
.newsletter p { color: #8fa2b1; font-size: 12px; }
.newsletter label { position: relative; display: block; }
.newsletter input { width: 100%; height: 48px; padding: 0 48px 0 14px; border: 1px solid rgba(255,255,255,.14); border-radius: 10px; outline: 0; color: var(--white); background: rgba(255,255,255,.06); font-size: 12px; transition: border-color 250ms var(--ease), box-shadow 250ms var(--ease); }
.newsletter input:focus { border-color: var(--emerald); box-shadow: 0 0 0 4px rgba(20,184,122,.1); }
.newsletter button { position: absolute; top: 5px; right: 5px; display: grid; width: 38px; height: 38px; place-items: center; border: 0; border-radius: 8px; color: var(--white); background: var(--emerald); }
.newsletter svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2; }
.footer-bottom { display: flex; min-height: 72px; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.09); color: #718595; font-size: 11px; }
.footer-bottom div { display: flex; gap: 22px; }
.footer-bottom a:hover { color: #8debc5; }

/* Custom cursor */
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; z-index: 9998; border-radius: 50%; pointer-events: none; opacity: 0; transform: translate3d(-50%, -50%, 0); }
.cursor-dot { width: 6px; height: 6px; background: var(--emerald); }
.cursor-ring { width: 34px; height: 34px; border: 1px solid rgba(20,184,122,.65); transition: width 200ms var(--ease), height 200ms var(--ease), background-color 200ms var(--ease), opacity 200ms var(--ease); }
.cursor-ring.is-hovering { width: 52px; height: 52px; background: rgba(20,184,122,.08); }

@media (pointer: fine) and (min-width: 1025px) {
  body, a, button { cursor: none; }
  .cursor-dot, .cursor-ring { opacity: 1; }
}

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