/* =========================================================
   HappySitting — Landing Page Styles
   Dark experiential chrome (page) + LIGHT app screens (phones).
   ========================================================= */

:root {
  /* --- page / dark chrome --- */
  --bg: #0F0F14;
  --surface: #1E1E26;
  --surface-2: #24242E;
  --hairline: rgba(255, 255, 255, 0.06);

  --pink: #F1A6B9;
  --pink-text: #7A2A3E;
  --pink-glow: #EC9AAE;

  --white: #FFFFFF;
  --muted: #9A9AA5;
  --muted-2: #6E6E78;

  /* --- light app tokens (inside phones) --- */
  --app-bg: #EDEAE4;
  --app-card: #FFFFFF;
  --app-text: #1C1C1E;
  --app-muted: #8A8A8F;
  --app-rose: #B83A57;
  --app-track: #E4E1DB;
  --app-hairline: rgba(0, 0, 0, 0.07);
  --app-pinkcell: #F7D5DE;
  --app-todayring: #EEA6B7;
  --app-green-bg: #DCEBE0;
  --app-green-tx: #2E6B44;
  --app-orange: #D8974A;
  --app-blue: #5B9BD5;
  --app-due-bg: #EAD9B8;
  --app-due-tx: #9A7B3A;
  --app-active-bg: #CDE8D5;
  --app-toggle-off: #C8C8CC;

  --radius-card: 20px;
  --radius-pill: 16px;

  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-head: "Sora", "Inter", -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; background: var(--bg); }

body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

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

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.02em;
}

p { margin: 0; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

::selection { background: var(--pink); color: var(--pink-text); }

/* =========================================================
   Language switcher
   ========================================================= */

.lang-switch {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 60;
  display: flex;
  gap: 2px;
  background: rgba(30, 30, 38, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 3px;
}

.lang-btn {
  border: none;
  background: transparent;
  color: var(--muted);
  font-family: inherit;
  font-weight: 700;
  font-size: 12px;
  padding: 5px 13px;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.lang-btn.active { background: var(--pink); color: var(--pink-text); }
.lang-btn:not(.active):hover { color: var(--white); }

.footer-lang {
  position: static;
  top: auto;
  right: auto;
  background: transparent;
}

/* =========================================================
   Background parallax glow blobs
   ========================================================= */

.bg-glow { position: fixed; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  will-change: transform;
}

.blob-1 {
  width: 640px; height: 640px; top: -10%; left: -12%;
  background: radial-gradient(circle at 30% 30%, rgba(241, 166, 185, 0.55), rgba(241, 166, 185, 0) 70%);
}
.blob-2 {
  width: 720px; height: 720px; top: 45%; right: -18%;
  background: radial-gradient(circle at 60% 40%, rgba(122, 90, 220, 0.35), rgba(122, 90, 220, 0) 70%);
}
.blob-3 {
  width: 560px; height: 560px; bottom: -15%; left: 20%;
  background: radial-gradient(circle at 50% 50%, rgba(236, 154, 174, 0.4), rgba(236, 154, 174, 0) 70%);
}

/* =========================================================
   Buttons / pills / tags (page chrome)
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 30px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary {
  background: var(--pink);
  color: var(--pink-text);
  box-shadow: 0 8px 30px rgba(241, 166, 185, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(241, 166, 185, 0.5); }

.btn-ghost { background: transparent; color: var(--white); border: 1px solid rgba(255, 255, 255, 0.16); }
.btn-ghost:hover { border-color: rgba(255, 255, 255, 0.35); }

.btn-big { padding: 20px 44px; font-size: 19px; }

.pill-tag {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.free-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 22px 0;
  padding: 10px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(241, 166, 185, 0.18), rgba(236, 154, 174, 0.08));
  border: 1px solid rgba(241, 166, 185, 0.5);
  color: var(--pink-glow);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.04em;
  will-change: transform;
}

.free-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--pink-glow);
  box-shadow: 0 0 10px var(--pink-glow);
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 0 60px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
}

.hero-title { font-size: clamp(38px, 5.4vw, 64px); line-height: 1.05; margin: 22px 0 20px; }
.hero-title .accent, .cta-title .accent { color: var(--pink-glow); }

.hero-sub { font-size: 18px; line-height: 1.6; color: var(--muted); max-width: 460px; }
.hero-sub strong { color: var(--white); }

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

.hero-phone { display: flex; justify-content: center; align-items: center; }

.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  z-index: 2;
}
.scroll-cue span { width: 1px; height: 34px; background: linear-gradient(var(--pink-glow), transparent); }
.scroll-cue p { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }

/* =========================================================
   FEATURE SECTIONS
   ========================================================= */

.feature { position: relative; padding: 140px 0; }

.feature-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; }

.feature.alt .feature-text { order: 2; }
.feature.alt .feature-phone { order: 1; }

.eyebrow {
  display: inline-block;
  color: var(--pink-glow);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}

.feature-text h2 { font-size: clamp(28px, 3.4vw, 42px); line-height: 1.15; margin-bottom: 20px; }
.feature-text p { font-size: 17px; line-height: 1.7; color: var(--muted); max-width: 460px; }
.feature-text .note { margin-top: 18px; color: var(--pink-glow); font-weight: 700; font-size: 14px; }

.feature-phone { display: flex; justify-content: center; }

/* =========================================================
   iPHONE FRAME (pure CSS) — boosted glow for light screens
   ========================================================= */

.phone-wrap { will-change: transform; }

.phone {
  width: 300px;
  aspect-ratio: 9 / 19.5;
  position: relative;
  filter:
    drop-shadow(0 40px 80px rgba(241, 166, 185, 0.35))
    drop-shadow(0 18px 40px rgba(0, 0, 0, 0.55));
  will-change: transform;
}

.phone-body {
  position: absolute;
  inset: 0;
  background: #000;
  border-radius: 46px;
  border: 2px solid rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 6px #050505, inset 0 0 0 7px rgba(255, 255, 255, 0.05);
  padding: 12px;
  overflow: hidden;
}

.phone-notch {
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 96px; height: 24px;
  background: #000;
  border-radius: 14px;
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--app-bg);
  border-radius: 36px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Real-screenshot variant: the image already includes its own status bar
   and dynamic island, so drop the CSS notch and let it fill the screen. */
.phone-body--image .phone-notch { display: none; }
.screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* --- status bar (black text now, app is light) --- */
.status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 22px 4px;
  font-size: 12px;
  font-weight: 700;
  color: #000;
  flex-shrink: 0;
}
.st-icons { font-size: 10px; opacity: 0.9; }

.screen-content {
  position: relative;
  flex: 1;
  padding: 8px 12px 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 12px;
  color: var(--app-text);
}

/* =========================================================
   LIGHT APP — shared components
   ========================================================= */

.l-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 2px 2px;
}
.l-topbar.compact { padding: 0 2px; }

.l-title { font-family: var(--font-head); font-weight: 800; font-size: 20px; color: var(--app-text); }
.l-title.sm { font-size: 15px; }

.l-icons { display: flex; gap: 6px; }
.l-icon-btn {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--app-card);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
}

.chev { color: var(--app-muted); font-size: 11px; }

/* profile pill (home topbar) */
.l-profile {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--app-card);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  padding: 5px 12px 5px 9px;
  font-weight: 700;
  font-size: 12px;
  color: var(--app-text);
}
.l-profile-ic { font-size: 12px; line-height: 1; }
.l-profile-photo {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  background:
    radial-gradient(circle at 68% 30%, #FFE9B0 0 16%, transparent 17%),
    linear-gradient(155deg, #F7B27A 0%, #E86A8E 46%, #7A4E9E 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

/* family card header */
.l-famhead { display: flex; align-items: center; gap: 9px; }
.l-famicon {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: var(--pink);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.l-famname {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
  color: var(--app-text);
}

.l-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--app-muted);
  padding: 2px 4px 0;
}

.l-card {
  background: var(--app-card);
  border-radius: var(--radius-card);
  padding: 11px 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.l-divider { height: 1px; background: var(--app-hairline); margin: 8px 0; }

.l-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--app-text);
}

.rose { color: var(--app-rose); font-weight: 700; }

.l-linkrow {
  border: none;
  background: none;
  font-family: inherit;
  font-size: 11.5px;
  font-weight: 700;
  padding: 0;
  text-align: left;
  cursor: default;
  color: var(--app-text);
}
.l-linkrow.auto { width: auto; }

/* sitter card */
.l-sitter { display: flex; align-items: center; gap: 8px; }
.l-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--pink);
  color: var(--pink-text);
  font-weight: 800; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.l-sitter-name { font-weight: 700; font-size: 13px; flex: 1; }

.badge-active {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--app-active-bg);
  color: var(--app-green-tx);
  font-size: 9.5px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
}
.badge-active .adot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--app-green-tx);
}

/* segmented control */
.l-seg {
  display: flex;
  background: var(--app-track);
  border-radius: 11px;
  padding: 3px;
  gap: 3px;
}
.l-seg-item {
  flex: 1;
  text-align: center;
  padding: 6px 0;
  border-radius: 8px;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--app-muted);
}
.l-seg-item.active {
  background: var(--app-card);
  color: var(--app-text);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* =========================================================
   Calendar
   ========================================================= */

.cal-card { padding: 11px 11px 12px; }

.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 700;
  color: var(--app-text);
  margin-bottom: 8px;
}
.cal-nav {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #EFEBE3;
  color: var(--app-rose);
  border: none;
  font-size: 12px;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  font-family: inherit;
  cursor: default;
}

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  color: var(--app-muted);
  font-size: 8.5px;
  font-weight: 700;
  margin-bottom: 4px;
}

.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); row-gap: 2px; }

.day {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  font-size: 9px;
  color: var(--app-text);
  gap: 1px;
}
.day .n { font-weight: 600; font-size: 9.5px; }
.day .h { font-size: 6.5px; font-weight: 800; color: var(--app-rose); line-height: 1; }
.day.blank { visibility: hidden; }
.day.muted { color: #B8B4AC; }

.day.hrs { background: var(--app-pinkcell); }
.day.hrs .n { color: var(--app-rose); }

.day.avail { background: var(--app-green-bg); }
.day.avail .n { color: var(--app-green-tx); }

.day.today { border: 1.5px solid var(--app-todayring); }
.day.today .n { font-weight: 800; }

.day .dot {
  position: absolute;
  top: 3px; right: 4px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--app-orange);
}
.day .bk {
  position: absolute;
  bottom: 1px; right: 4px;
  font-size: 6px;
  color: var(--app-blue);
  font-weight: 800;
  line-height: 1;
}

.cal-card.small .day .n { font-size: 8.5px; }
.cal-card.small .cal-grid { row-gap: 1px; }

/* =========================================================
   Summary card
   ========================================================= */

.summary-card { display: flex; flex-direction: column; gap: 8px; }
.summary-title { font-weight: 700; font-size: 12px; }

.summary-grid { display: grid; grid-template-columns: 1fr 1fr; row-gap: 8px; column-gap: 8px; }
.s-col { display: flex; flex-direction: column; gap: 2px; }
.s-label { font-size: 9px; color: var(--app-muted); }
.s-value { font-size: 12.5px; font-weight: 700; color: var(--app-text); }

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.summary-row .s-label { font-size: 10px; }
.summary-row .s-value { font-size: 11.5px; }

.summary-total {
  display: flex;
  justify-content: space-between;
  font-weight: 800;
  font-size: 14px;
}
.summary-total .rose { font-size: 14px; }

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pill-due {
  background: var(--app-due-bg);
  color: var(--app-due-tx);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 4px 9px;
  border-radius: 8px;
}

/* FAB */
.fab {
  position: absolute;
  right: 14px; bottom: 16px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--pink);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  box-shadow: 0 0 24px rgba(241, 166, 185, 0.75), 0 6px 18px rgba(0, 0, 0, 0.3);
}

/* =========================================================
   Screen: Book a shift
   ========================================================= */

.title-lg {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 17px;
  color: var(--app-text);
  padding: 2px 2px 2px;
}

.pill-rose {
  background: var(--app-pinkcell);
  color: var(--app-rose);
  font-size: 10.5px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 10px;
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--app-text);
}

.switch {
  width: 34px; height: 20px;
  border-radius: 11px;
  background: var(--app-toggle-off);
  position: relative;
  flex-shrink: 0;
  transition: background 0.2s ease;
}
.switch i {
  position: absolute;
  top: 2px; left: 2px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  display: block;
}
.switch.on { background: var(--pink); }
.switch.on i { left: auto; right: 2px; }

.time-pickers { display: flex; gap: 10px; margin-top: 10px; }
.picker-col { flex: 1; display: flex; flex-direction: column; gap: 4px; align-items: center; }
.pk-label { font-size: 9px; color: var(--app-muted); font-weight: 600; }
.picker {
  width: 100%;
  background: #F2F0EC;
  border-radius: 12px;
  padding: 5px 0;
  display: flex; flex-direction: column; align-items: center; gap: 1px;
}
.p-faint { font-size: 9px; color: #B8B4AC; }
.p-chosen { font-size: 14px; font-weight: 800; color: var(--app-text); }

.caption { font-size: 9px; color: var(--app-muted); margin-top: 8px; }

.note-input {
  width: 100%;
  border: 1px solid var(--app-hairline);
  background: var(--app-card);
  border-radius: 12px;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 10px;
  color: var(--app-muted);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}
.note-input::placeholder { color: var(--app-muted); }

.pill-btn {
  width: 100%;
  border: none;
  background: var(--pink);
  color: var(--pink-text);
  font-weight: 700;
  font-family: inherit;
  font-size: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-pill);
  display: flex; align-items: center; justify-content: center;
  cursor: default;
  box-shadow: 0 4px 14px rgba(241, 166, 185, 0.35);
}
.pill-btn.full { width: 100%; }

/* =========================================================
   Screen: Availability legend
   ========================================================= */

.legend-card { display: flex; flex-direction: column; gap: 8px; }
.legend-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--app-text);
}
.lg-sw { width: 16px; height: 16px; border-radius: 5px; flex-shrink: 0; }
.lg-sw.green { background: var(--app-green-bg); }
.lg-sw.grey { background: #E4E1DB; }
.lg-dot {
  width: 16px; height: 16px; border-radius: 5px; background: #EFEBE3;
  position: relative; flex-shrink: 0;
}
.lg-dot::after {
  content: ""; position: absolute; top: 3px; right: 3px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--app-orange);
}
.lg-check {
  width: 16px; height: 16px; border-radius: 5px; background: #EFEBE3;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 800; color: var(--app-blue);
  flex-shrink: 0;
}

/* =========================================================
   Screen: Notify (dimmed background + bottom sheet)
   ========================================================= */

.scr-notify { padding: 8px 12px 0; }

.dim-wrap {
  display: flex;
  flex-direction: column;
  gap: 7px;
  filter: brightness(0.97);
}

.sheet-scrim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.12);
}

.bottom-sheet {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: var(--app-card);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  padding: 10px 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.18);
}
.sheet-handle {
  width: 36px; height: 4px; border-radius: 3px;
  background: rgba(0, 0, 0, 0.14);
  margin-bottom: 2px;
}
.sheet-title { font-weight: 800; font-size: 14px; color: var(--app-text); margin-bottom: 4px; }

/* =========================================================
   CTA FINALE
   ========================================================= */

.cta-final {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 100px 0;
}

.cta-inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.cta-title { font-size: clamp(36px, 6vw, 68px); line-height: 1.08; }
.cta-sub { color: #CFCFD8; font-size: 18px; text-shadow: 0 1px 14px rgba(0, 0, 0, 0.7); }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.btn-soon { color: var(--muted); border-style: dashed; cursor: default; pointer-events: none; }
.btn-soon:hover { transform: none; box-shadow: none; border-color: rgba(255, 255, 255, 0.16); }
.cta-caption { color: var(--muted); font-size: 13px; margin-top: 14px; text-shadow: 0 1px 12px rgba(0, 0, 0, 0.7); }

.cta-phones { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

.mini-phone {
  position: absolute;
  top: 50%; left: 50%;
  width: 190px;
  aspect-ratio: 9 / 19.5;
  background: #000;
  border-radius: 34px;
  border: 2px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 34px 80px rgba(241, 166, 185, 0.22), 0 12px 34px rgba(0, 0, 0, 0.5);
  padding: 8px;
  will-change: transform;
  opacity: 0.5;
}
.mini-screen {
  width: 100%; height: 100%;
  border-radius: 26px;
  background: linear-gradient(160deg, #2A2E37 0%, #14141A 72%);
}

.mini-phone-1 { transform: translate(-50%, -50%) translate(-165px, 70px) rotate(-10deg); }
.mini-phone-2 { transform: translate(-50%, -50%) translate(0, 110px) rotate(0deg); z-index: 2; }
.mini-phone-3 { transform: translate(-50%, -50%) translate(165px, 70px) rotate(10deg); }

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--hairline);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  display: flex; align-items: center; gap: 8px;
  font-weight: 800;
  font-family: var(--font-head);
  font-size: 16px;
}
.footer-logo .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--pink); display: inline-block; }

.footer-links { display: flex; align-items: center; gap: 24px; color: var(--muted); font-size: 14px; }
.footer-links a:hover { color: var(--white); }

.footer-copy { color: var(--muted-2); font-size: 13px; }

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 820px) {
  .hero { padding: 100px 0 60px; min-height: auto; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 30px; }
  .hero-sub { max-width: 100%; margin: 0 auto; }
  .hero-actions { justify-content: center; }
  .hero-phone { order: 2; }
  .hero-text { order: 1; }

  .phone { width: 250px; }

  .feature { padding: 90px 0; }
  .feature-grid { grid-template-columns: 1fr; text-align: center; gap: 36px; }

  .feature-text { order: 1 !important; }
  .feature-phone { order: 2 !important; }
  .feature-text p { max-width: 100%; margin-left: auto; margin-right: auto; }

  .cta-title { font-size: clamp(30px, 9vw, 44px); }

  .mini-phone { width: 140px; }
  .mini-phone-1 { transform: translate(-50%, -50%) translate(-110px, 80px) rotate(-10deg); }
  .mini-phone-2 { transform: translate(-50%, -50%) translate(0, 120px) rotate(0deg); z-index: 2; }
  .mini-phone-3 { transform: translate(-50%, -50%) translate(110px, 80px) rotate(10deg); }

  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .phone { width: 230px; }
  .btn { padding: 14px 24px; font-size: 15px; }
  .lang-switch { top: 12px; right: 12px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
