:root {
  --bg: #fff0f3;
  --bg-2: #ff8fa3;
  --surface-dark: rgba(89, 13, 34, 0.88);
  --surface-dark-strong: rgba(164, 19, 60, 0.92);
  --surface-light: #fff0f3;
  --surface-soft: #ff8fa3;

  --accent: #ff4d6d;
  --accent-strong: #a4133c;
  --accent-soft: rgba(255, 77, 109, 0.18);

  --text-on-dark: #ffffff;
  --text-on-light: #1f0a11;
  --text-muted-dark: rgba(255, 255, 255, 0.76);
  --text-muted-light: rgba(31, 10, 17, 0.76);

  --border-dark: rgba(255, 255, 255, 0.14);
  --border-light: rgba(89, 13, 34, 0.12);

  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 999px;

  --shadow-sm: 0 10px 30px rgba(89, 13, 34, 0.16);
  --shadow-lg: 0 20px 60px rgba(89, 13, 34, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text-on-light);
  background:
    radial-gradient(circle at top left, rgba(255, 77, 109, 0.22), transparent 28%),
    linear-gradient(180deg, #590d22 0%, #7a1030 38%, #a4133c 100%);
}

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

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  /* padding: 10px; */
}

.page-shell {
  min-height: 100vh;
}

/* ---------- HEADER ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 16px 0;
  background: rgba(89, 13, 34, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 240, 243, 0.12);
}

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

.brand-block {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff4d6d, #ff8fa3);
  box-shadow: 0 0 0 6px rgba(255, 77, 109, 0.16);
}

.brand-name {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #ffffff;
}

.header-controls,
.main-nav,
.lang-switch {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.nav-pill,
.lang-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  border: 1px solid var(--border-dark);
  background: rgba(255, 240, 243, 0.06);
  /* transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease; */
}

.nav-pill:hover,
.lang-pill:hover {
  transform: translateY(-1px);
  background: #ffb3c1;
}

.nav-pill-primary,
.lang-pill.active {
  background: #ff4d6d;
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 12px 28px #ff4d6d;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  color: #fff0f3;
  transition: 0.2s ease;
}

.main-nav a:hover {
  background: rgba(143, 29, 84, 0.08);
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
  margin-bottom: 20px;
}

.lang-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  background: #A4133c;
  color: white;
  border: 1px solid #ebc9d8;
  transition: 0.2s ease;
}

.lang-switch a.active {
  background: #fff;
  color: #A4133c;
  border-color: #fff;
}

/* ---------- HOME ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 56px;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  pointer-events: none;
}

.hero-glow-1 {
  width: 340px;
  height: 340px;
  top: 20px;
  left: -80px;
  background: rgba(255, 77, 109, 0.22);
}

.hero-glow-2 {
  width: 300px;
  height: 300px;
  top: 60px;
  right: -50px;
  background: rgba(255, 143, 163, 0.18);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 420px);
  gap: 28px;
}

.hero-copy {
  padding: 40px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(89, 13, 34, 0.94), rgba(164, 19, 60, 0.86));
  border: 1px solid rgba(255, 240, 243, 0.12);
  box-shadow: var(--shadow-lg);
}

.hero-panel-card {
  height: 100%;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: rgba(255, 240, 243, 0.08);
  border: 1px solid rgba(255, 240, 243, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.light-text {
  color: #fff;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin: 0 0 18px;
  padding: 0 14px;
  border-radius: var(--radius-full);
  background: rgba(255, 77, 110, 0.178);
  color: #fff0f3;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge-2 {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin: 10 0 18px;
  padding: 0 14px;
  border-radius: var(--radius-full);
  background: #A4133c;
  color: #fff0f3;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 7vw, 72px);
  line-height: 0.98;
  color: #ffffff;
}

.hero-panel-card p {
  color: var(--text-muted-dark);
  line-height: 1.75;
}

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

.panel-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: #c8d5ff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-panel-card h2 {
  margin: 0 0 12px;
  font-size: 30px;
  line-height: 1.1;
}

.hero-panel-card p {
  margin: 0 0 20px;
  color: var(--text-muted);
  line-height: 1.7;
}

.text-link {
  color: var(--text-soft);
  font-weight: 700;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.55));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 64px 0;
}

/* .badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: #8f1d54;
  color: #fff;
  font-weight: 700;
  margin-bottom: 16px;
} */

h1 {
  margin: 0 0 16px;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.05;
}

h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 3vw, 38px);
}

h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.lead {
  max-width: 680px;
  font-size: 18px;
  line-height: 1.6;
  color: #ffffffc5;
}

.lead-2 {
  max-width: 680px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-on-light);
}

.hero-actions,
.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.primary {
  color: #ffffff;
  background: linear-gradient(135deg, #ff4d6d 0%, #a4133c 100%);
  box-shadow: 0 12px 28px #fff;
}

.btn.secondary {
  color: #ffffff;
  background: rgba(255, 240, 243, 0.08);
  border: 1px solid rgba(255, 240, 243, 0.14);
}

.btn.submitted {
  color: #ffffff;
  background: #a4133c;
  box-shadow: 0 12px 28px #a4133c;
  border: 0;
}

.btn.submitted:hover {
  color: #ffffff;
  background: #ff074e;
  box-shadow: 0 12px 28px #a4133c;
  border: 0;
}


.intro-strip,
.cta-section {
  color: var(--text-on-light);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.intro-card,
.cta-card {
  background: #fff0f3;
  color: #1f0a11;
  border: 1px solid rgba(89, 13, 34, 0.08);
  box-shadow: var(--shadow-sm);
  margin-top: 10px;
}

.intro-card {
  padding: 28px;
  border-radius: 28px;
}

.intro-card h3,
.cta-card h2 {
  color: #590d22;
}

.intro-card p,
.cta-card p {
  color: rgba(31, 10, 17, 0.78);
  line-height: 1.75;
}

.intro-label {
  display: inline-block;
  margin-bottom: 12px;
  color: #a4133c;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
  border-radius: 30px;
}

.alt-badge {
  color: #590d22;
  background: rgba(255, 77, 109, 0.16);
}

.btn:disabled,
button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.btn.loading {
  opacity: 0.8;
  cursor: wait;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.nav a {
  color: #8f1d54;
  text-decoration: none;
  font-weight: 700;
}

.back-link{
  display:inline-block;
  margin-top:32px;
  color:#8f1d54;
  font-weight:700;
}

main.container {
  padding: 40px 0 64px;
}

.card {
  background: #fff;
  border: 1px solid #f0dbe4;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(143, 29, 84, 0.08);
  margin-bottom: 24px;
}

.section-title {
  padding: 8px 0 4px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.service .icon {
  font-size: 34px;
  margin-bottom: 12px;
}

.promo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* ---------- WHEEL PAGE ---------- */

.wheel-page {
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 77, 109, 0.18), transparent 28%),
    radial-gradient(circle at 80% 30%, rgba(236, 72, 153, 0.16), transparent 26%),
    linear-gradient(135deg, #fff5f9, #fff0f6);
}

.wheel-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.wheel-left {
  position: relative;
  z-index: 2;
  max-width: 540px;
  padding: 56px 24px;
  margin-left: 460px;
}

.wheel-stage {
  position: absolute;
  left: -390px;
  top: 50%;
  transform: translateY(-50%);
  width: 980px;
  display: flex;
  justify-content: flex-start;
  pointer-events: none;
}

.wheel-wrap {
  position: relative;
  width: 820px;
  height: 820px;
}

.wheel-shadow {
  position: absolute;
  inset: 90px;
  border-radius: 50%;
  filter: blur(42px);
  background: rgba(236, 72, 153, 0.22);
}

.wheel {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 18px solid rgba(255,255,255,.96);
  box-shadow:
    0 30px 70px rgba(0,0,0,.18),
    inset 0 0 0 16px rgba(255,255,255,.6);
  transform-origin: center center;
  will-change: transform;
}

.wheel-center {
  position: absolute;
  inset: 50%;
  width: 102px;
  height: 102px;
  margin: -51px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #fff, #ffd1e6 55%, #ff6fa7 100%);
  box-shadow:
    0 12px 26px rgba(0, 0, 0, 0.12),
    inset 0 0 0 8px rgba(255, 255, 255, 0.7);
  z-index: 2;
}

.wheel-pointer{
  position:absolute;
  top:50%;
  right:-10px;
  bottom:auto;
  left:auto;
  transform:translateY(-50%);
  width:0;
  height:0;
  border-top:30px solid transparent;
  border-bottom:30px solid transparent;
  border-right:52px solid #8f1d54;
  border-left:0;
  z-index:3;
  filter:drop-shadow(8px 0 12px rgba(0,0,0,.24));
}

.wheel-label {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 110px;
  margin-left: -55px;
  transform-origin: center center;
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  line-height: 1.1;
  text-align: center;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.28);
  letter-spacing: 0.2px;
  white-space: normal;
}

@keyframes wheelSpinSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes wheelSpinFast {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ---------- FORM ---------- */

.form {
  display: grid;
  gap: 12px;
}

.form input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #ead6df;
  font-size: 16px;
  outline: none;
  background: #fff;
}

.form input:focus {
  border-color: #ec4899;
  box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.12);
}

.form input:invalid {
  box-shadow: none;
}

.terms-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
}

.terms-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: #8f1d54;
  flex: 0 0 auto;
}

.terms-label {
  font-size: 14px;
  line-height: 1.5;
  color: #5e3145;
}

.terms-label a {
  color: #8f1d54;
  font-weight: 700;
  text-decoration: underline;
}

.terms-label a:hover {
  color: #741645;
}

.result {
  display: none !important;
  min-height: 24px;
  padding-top: 4px;
  color: #8f1d54;
  font-weight: 700;
  line-height: 1.4;
}

/* ---------- MODAL ---------- */

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.modal.show {
  display: flex;
}

.hidden {
  display: none;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
}

.modal-content {
  position: relative;
  z-index: 1;
  width: min(92vw, 480px);
  border-radius: 28px;
  padding: 32px 28px;
  background: linear-gradient(180deg, #ffffff, #fff5fa);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  text-align: center;
  animation: popIn 0.25s ease-out;
}

.popup-badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 14px;
  border-radius: 999px;
  background: #8f1d54;
  color: #fff;
  font-weight: 800;
}

.popup-badge.error {
  background: #b42318;
}

.close-btn {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: #f7e5ee;
  color: #8f1d54;
  font-size: 24px;
  cursor: pointer;
}

@keyframes popIn {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.site-footer {
  background: linear-gradient(180deg, #7a1030 0%, #590d22 100%);
  color: #ffffff;
  border-top: 1px solid rgba(255, 240, 243, 0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 32px;
  padding: 40px 0 26px;
}

.footer-col h3 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 20px;
}

.footer-col p,
.footer-contact li,
.footer-nav a {
  color: rgba(255, 240, 243, 0.8);
  line-height: 1.75;
}

.footer-label {
  color: #ffffff;
  font-weight: 700;
}

.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-contact li {
  margin-bottom: 12px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-bottom {
  padding: 18px 0 22px;
  border-top: 1px solid rgba(255, 240, 243, 0.12);
}

.footer-bottom p {
  margin: 0;
  text-align: center;
  color: rgba(255, 240, 243, 0.72);
  font-size: 14px;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 1100px) {
  .wheel-left {
    margin-left: 0;
    padding: 28px 24px 16px;
    max-width: none;
  }

  .wheel-hero {
    flex-direction: column;
    justify-content: center;
    padding-top: 24px;
  }

  .wheel-stage {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: 100%;
    height: auto;
    justify-content: center;
    margin-top: 18px;
    overflow: hidden;
  }

  .wheel-wrap {
    width: 620px;
    height: 620px;
    transform: translateX(-110px);
  }
}

@media (max-width: 900px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .promo {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px){
  .wheel-hero{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 0;
    overflow: hidden;
    min-height: 100vh;
  }

  .wheel-stage{
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: flex;
    justify-content: center;
    pointer-events: none;
    margin-top: 0;
    overflow: visible;
    z-index: 1;
  }

  .wheel-wrap{
    width: 420px;
    height: 420px;
    transform: none;
  }

  .wheel-left{
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: none;
    margin-left: 0;
    padding: 260px 18px 16px;
  }

  .wheel-label{
    width: 78px;
    margin-left: -39px;
    font-size: 9px;
  }

  .wheel-center{
    width: 74px;
    height: 74px;
    margin: -37px;
  }

  .wheel-pointer{
    top:auto;
    right:auto;
    bottom:-10px;
    left:50%;
    transform:translateX(-50%);
    border-top:0;
    border-right:20px solid transparent;
    border-left:20px solid transparent;
    border-bottom:36px solid #8f1d54;
    filter:drop-shadow(0 -8px 12px rgba(0,0,0,.24));
  }

  .promo{
    flex-direction: column;
    align-items: flex-start;
  }

  .back-link{
    margin-top: 28px;
  }
}

@media (max-width: 480px){
  .wheel-stage{
    top: -160px;
  }

  .wheel-wrap{
    width: 320px;
    height: 320px;
  }

  .wheel-left{
    padding: 205px 16px 12px;
  }

  .wheel-label{
    width: 62px;
    margin-left: -31px;
    font-size: 7px;
  }

  .modal-content{
    padding: 24px 18px;
    border-radius: 22px;
  }

   .wheel-pointer{
    bottom:-6px;
    border-right-width:18px;
    border-left-width:18px;
    border-bottom-width:30px;
  }
}

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

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff0f3;
  background: #c9184a;
  border: 1px solid rgba(143, 29, 84, 0.14);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.instagram-link:hover {
  transform: translateY(-2px);
  background: #ff4d6d;
  box-shadow: 0 10px 28px rgba(143, 29, 84, 0.14);
}

.instagram-text {
  font-size: 14px;
  font-weight: 600;
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff8fb 0%, #fff1f6 45%, #fff8fb 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 214, 226, 0.22), rgba(143, 29, 84, 0.06));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.main-sections {
  display: grid;
  gap: 24px;
  padding-top: 32px;
  padding-bottom: 48px;
}

.card-soft {
  position: relative;
  overflow: hidden;
}

.card-soft::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.card-soft > * {
  position: relative;
  z-index: 1;
}

.about-section::before {
  background: linear-gradient(135deg, rgba(255, 220, 230, 0.16), rgba(255, 255, 255, 0.04));
}

.promo-section::before {
  background: linear-gradient(135deg, rgba(143, 29, 84, 0.05), rgba(255, 214, 226, 0.18));
}

@media (max-width: 768px) {
  .topbar {
    gap: 12px;
    flex-direction: column;
    align-items: stretch;
  }

  .header-actions {
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .instagram-text {
    display: none;
  }
}

.site-footer {
  margin-top: 56px;
  background: linear-gradient(180deg, #1d1720 0%, #120f14 100%);
  color: #f7eef3;
  padding-top: 48px;
  padding-bottom: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  padding-bottom: 28px;
}

.footer-col h3 {
  margin: 0 0 16px;
  font-size: 22px;
  line-height: 1.2;
  color: #ffffff;
}

.footer-col p {
  margin: 0;
  color: rgba(247, 238, 243, 0.76);
  line-height: 1.75;
}

.footer-instagram {
  margin-top: 18px;
  display: inline-flex;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-instagram:hover {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-contact li {
  margin-bottom: 14px;
  color: rgba(247, 238, 243, 0.82);
  line-height: 1.7;
}

.footer-label {
  display: inline-block;
  min-width: 72px;
  font-weight: 700;
  color: #ffffff;
}

.footer-contact a,
.footer-nav a {
  color: rgba(247, 238, 243, 0.82);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-contact a:hover,
.footer-nav a:hover {
  color: #ffffff;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-bottom {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  text-align: center;
  color: rgba(247, 238, 243, 0.72);
  font-size: 14px;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .site-footer {
    padding-top: 36px;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .intro-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .topbar {
    flex-direction: column;
    align-items: stretch;
  }

  .header-controls,
  .main-nav,
  .lang-switch,
  .hero-actions {
    flex-wrap: wrap;
  }

  .hero-copy,
  .hero-panel-card,
  .intro-card,
  .cta-card {
    padding: 24px;
  }

  .hero h1 {
    font-size: clamp(32px, 10vw, 52px);
  }
}