/* ============================================================
   NAURYZ 2026 — M-Lombard Promo Site
   Mobile-first CSS
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@400;500;600;700;800&display=swap');

@font-face {
  font-family: 'Tangak';
  src: url('../assets/KZ_TANGAK.OTF') format('opentype');
  font-weight: normal;
  font-style: normal;
}

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

:root {
  --brown-dark: #3D1F00;
  --brown: #8B4513;
  --brown-light: #C9A96E;
  --cream: #FFF8E7;
  --cream-dark: #F0E0C0;
  --gold: #D4A843;
  --white: #FFFFFF;
  --overlay-bg: rgba(61, 31, 0, 0.55);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow: 0 8px 32px rgba(61, 31, 0, 0.25);
  --shadow-sm: 0 4px 16px rgba(61, 31, 0, 0.15);

  /* New tokens for the refined hero */
  --hero-brown: #4A2C11;
  --hero-cream: #F5EFE6;
}

html,
body {
  width: 100%;
  height: 100%;
  font-family: 'Inter Tight', sans-serif;
  background: var(--brown-dark);
  color: var(--brown-dark);
  overflow-x: hidden;
}

/* ============================================================
   GLOBAL BACKGROUND
   ============================================================ */

.site-bg {
  min-height: 100dvh;
  background: url('../assets/bg.jpg') center center / cover no-repeat;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Ensure content fills space above footer */
.page-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  /* important for flex items to shrink below content size if needed */
}



/* ============================================================
   LANGUAGE MODAL (OVERLAY) — NAURYZ HERO SECTION
   ============================================================ */

#lang-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  /* Pin to top */
  padding-top: 4dvh;
  /* Leading space for logo (reduced to show yurt/girl) */
  background: url('../assets/bg.jpg') center 40% / cover no-repeat;
  animation: fadeIn 0.5s ease;
}



#lang-modal.hidden {
  display: none;
}

/* Inner container — vertically stacked, moved HIGHER */
.lang-modal-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  /* Tighter gap */
  text-align: center;
  border-radius: 24px;
  padding: 20px;
  /* Reduced padding */
  margin: 0;
  /* No negative margin needed with flex-start */
  width: 95%;
  max-width: 400px;
}

@media (max-height: 700px) {
  .lang-modal-inner {
    margin-top: -5dvh;
    /* Reduced from -25vh to prevent pushing off-screen */
    gap: 2.5dvh;
    padding-top: 2.5dvh;
  }

  .modal-logo-img {
    width: 120px;
  }
}

/* ── Logo — LARGER ── */
.lang-modal-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal-logo-img {
  width: 150px;
  /* Reduced from 180px */
  height: auto;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15));
  /* More visible */
}

/* ── Text block — LARGER ── */
.lang-modal-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  /* Extremely tight gap */
}

.lang-modal-title p {
  font-family: 'Inter', sans-serif;
  font-size: clamp(20px, 5vw, 26px);
  /* Larger text */
  font-weight: 800;
  color: var(--hero-brown);
  letter-spacing: 4px;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0;
}

.lang-modal-divider {
  width: 90%;
  /* Length of text */
  max-width: 260px;
  height: auto;
  margin: 2px 0;
  /* Minimal margin */
  display: block;
  opacity: 0.85;
  transform: scaleY(0.85);
  /* Slightly slimmer */
}

.lang-modal-title style {
  display: none;
}

/* Hide the inline style block from index.html if any */

/* ── Language Buttons — LARGER ── */
.lang-buttons {
  display: flex;
  gap: 32px;
  align-items: center;
}

.lang-btn {
  position: relative;
  width: 140px;
  height: 140px;
  background: #a98b5c;
  /* Specific border color */
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  /* Large and clear */
  font-weight: 900;
  color: var(--hero-brown);
  letter-spacing: 1px;
  transition: transform 0.2s ease, filter 0.2s ease;
  filter: drop-shadow(0 12px 24px rgba(61, 31, 0, 0.35));
  animation: introBounce 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) backwards;
  z-index: 1;

  /* Smoother octagon clip (more octagon-like) */
  clip-path: polygon(25% 0%, 75% 0%,
      100% 25%, 100% 75%,
      75% 100%, 25% 100%,
      0% 75%, 0% 25%);
}

.lang-btn::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  background: #eee2cb;
  /* Specific fill color */
  z-index: -1;
  clip-path: polygon(25% 0%, 75% 0%,
      100% 25%, 100% 75%,
      75% 100%, 25% 100%,
      0% 75%, 0% 25%);
}

.lang-btn:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 16px 32px rgba(61, 31, 0, 0.5));
}

.lang-btn:active {
  transform: scale(0.95);
}

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1dvh 20px;
  /* Adaptive padding */
  background: rgba(255, 248, 231, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 1px 1px rgba(61, 31, 0, 0.05);
  isolation: isolate;
}

.header-logo .logo-wordmark span {
  color: var(--gold);
}

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

.header-btn {
  background: transparent;
  border: none;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
  text-decoration: none;
  color: var(--gold);
  /* Yellow icon */
  position: relative;
  z-index: 1;
}

.header-btn:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

.header-btn svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  /* Follow color */
}

.lang-switcher-btn {
  font-size: 18px;
  /* Larger */
  font-weight: 800;
  color: var(--gold);
  /* Yellow bold text */
  background: transparent;
  border: none;
  padding: 4px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, text-shadow 0.2s ease;
  font-family: 'Inter', sans-serif;
}

.lang-switcher-btn:hover {
  transform: scale(1.1);
  text-shadow: 0 0 8px rgba(212, 168, 67, 0.4);
}

.lang-switcher-btn:active {
  transform: scale(0.95);
}

/* ============================================================
   MAIN CONTENT
   ============================================================ */

.site-main,
.page-content {
  position: relative;
  z-index: 5;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0 16px;
  /* Reduced top padding from 4px to 0 */
}

.title-block {
  width: 100%;
  text-align: center;
  padding: 1.5dvh 24px 0px;
  /* Adaptive top padding */
}

.title-block h1 {
  font-family: 'Tangak', sans-serif;
  /* Tangak font for greetings */
  font-size: clamp(28px, 8vw, 42px);
  font-weight: normal;
  /* Tangak is usually best at normal weight */
  color: #a98b5c;
  /* Specific greeting color */
  -webkit-text-stroke: 0.6px #eee2cb;
  /* Specific outline color */
  text-shadow: 0 1px 2px rgba(61, 31, 0, 0.2);
  line-height: 1.0;
  /* Tightened from 1.1 to compensate for font padding */
  letter-spacing: 1px;
  transition: opacity 0.2s ease-in-out;
}

.title-block.is-switching h1 {
  opacity: 0;
}

/* Video Block */
.video-block {
  width: 100%;
  max-width: 420px;
  padding: 0 16px;
  flex: 1;
  /* Grow to fill available space */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 2px;
  min-height: 0;
}

.video-prompt {
  font-size: 14px;
  font-weight: 600;
  color: var(--brown-dark);
  text-align: center;
  text-shadow: none;
  letter-spacing: 0.3px;
}

.video-wrapper {
  width: 100%;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow);
  /* Use flex-grow to push down to footer */
  flex: 1;
  max-height: 70dvh;
  /* Safety limit */
  aspect-ratio: 9 / 16;
  margin-bottom: 8px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Language specific rescaling */
html[lang="ru"] .video-wrapper {
  max-height: 72dvh;
  /* Reduced from 75dvh for taller phones with bottom buttons (e.g. S8+) */
}

html[lang="kz"] .video-wrapper {
  max-height: 68dvh;
  /* Longer title (2 lines) -> Shorter video to align top margins */
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Custom video overlay for no-FF */
.video-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Placeholder shown when no real video is loaded */
.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: transparent;
}

.video-placeholder .play-icon {
  width: 64px;
  height: 64px;
  background: rgba(61, 31, 0, 0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-placeholder .play-icon svg {
  width: 28px;
  height: 28px;
  fill: white;
  margin-left: 4px;
}

.video-placeholder p {
  font-size: 13px;
  color: var(--brown-dark);
  opacity: 0.6;
  font-weight: 500;
}

/* ============================================================
   CUSTOM VIDEO CONTROLS
   ============================================================ */

.custom-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 12px;
  background: linear-gradient(to top, rgba(61, 31, 0, 0.85) 0%, transparent 100%);
  z-index: 10;
}

.ctrl-play-pause {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(61, 31, 0, 0.5);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
  backdrop-filter: blur(4px);
}

.ctrl-play-pause:hover {
  background: rgba(61, 31, 0, 0.7);
}

.ctrl-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.progress-bar-wrap {
  position: relative;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
}

/* Max-watched zone — available for seeking back */
.progress-bar-watched {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: rgba(212, 168, 67, 0.5);
  border-radius: 2px;
  pointer-events: none;
  transition: width 0.1s linear;
}

/* Current playback position */
.progress-bar-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  pointer-events: none;
  transition: width 0.1s linear;
}

/* Invisible full-width click target */
.progress-bar-track {
  position: absolute;
  inset: -6px 0;
  cursor: pointer;
}

.video-time {
  font-size: 10px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.5px;
  font-variant-numeric: tabular-nums;
}

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

.site-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 5;
  padding: 1.5dvh 20px;
  /* Adaptive vertical padding */
}

/* Fix for small devices (like iPhone SE) where content overlaps absolute footer */
@media (max-height: 700px) {

  /* Move background to body for perfect continuity across scrolled content on small screens */
  body {
    background: url('../assets/bg.jpg') center top / cover no-repeat;
    background-attachment: scroll;
  }

  .site-bg,
  #lang-modal {
    background: transparent !important;
  }

  .site-footer {
    position: relative;
    bottom: auto;
    padding: 3dvh 20px;
  }

  .site-footer p {
    color: var(--brown-dark) !important;
    font-size: 11px;
    font-weight: 500;
  }

  .site-bg {
    height: auto;
    min-height: 100dvh;
    background-image: none !important;
  }
}

.site-footer p {
  font-size: 10px;
  line-height: 1.6;
  color: var(--brown-dark);
  text-align: center;
}

/* ============================================================
   SURVEY BLOCK
   ============================================================ */

.survey-container {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 400px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  visibility: visible;
  opacity: 1;
}

.survey-container.hidden {
  display: none;
}

/* Base animation for any card appearing in this container */
.survey-card {
  animation: modalPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  will-change: transform, opacity;
}

@keyframes modalPop {
  0% {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.survey-thankyou {
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.survey-thankyou.show {
  opacity: 1;
  transform: scale(1);
  display: flex;
}

.survey-card {
  width: 100%;
  /* Back to full width (max 480px via container) */
  background: var(--white);
  padding: 12px 12px;
  /* Reduced padding to stretch text closer to the edge */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  /* Reduced vertical gap to move buttons higher */
  box-shadow: var(--shadow);
  border: none;
  min-height: 130px;
  /* Reduced min-height to make dialog smaller */
  /* transform: translateY(-100px); removed because container is absolute centered */

  /* Precise 1px border that follows clip-path without "fat corners" */
  filter:
    drop-shadow(1px 0 0 #a98b5c) drop-shadow(-1px 0 0 #a98b5c) drop-shadow(0 1px 0 #a98b5c) drop-shadow(0 -1px 1px #a98b5c);

  /* Octagon shape (45-degree chamfer) */
  clip-path: polygon(20px 0, calc(100% - 20px) 0, 100% 20px, 100% calc(100% - 20px), calc(100% - 20px) 100%, 20px 100%, 0 calc(100% - 20px), 0 20px);
}

.survey-card.is-success {
  /* Maintain the exact size of the PREVIOUS initial state (untouched) */
  gap: 16px !important;
  padding: 16px 30px !important;
  min-height: 160px !important;
}

.survey-question {
  font-size: 18px;
  /* Increased from 16px per user request */
  font-weight: 700;
  color: #643f25;
  /* Specific color as requested */
  text-align: left;
  line-height: 1.3;
  min-height: 56px;
  /* Increased to fit larger font */
  /* Fixed height to prevent dialog resizing on line wrap */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding-left: 14px;
  /* Increased offset for aesthetics */
}

.survey-answers {
  display: flex;
  gap: 60px;
  /* Increased gap */
  /* Increased gap */
  width: 100%;
  max-width: 320px;
  justify-content: center;
}

.answer-btn {
  width: 80px;
  /* Reduced width from 90px */
  padding: 14px 10px;
  /* Reduced vertical padding from 18px to 14px */
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  /* Slightly reduced font size from 20px */
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;

  /* Smoother Octagon shape for buttons (14% chamfer) */
  background: #E8CA75;
  /* Lighter gold border */
  /* This creates the "line" */
  color: var(--hero-brown);
  position: relative;
  z-index: 1;

  /* Octagon shape buttons (8px 45-degree chamfer) */
  clip-path: polygon(8px 0, calc(100% - 8px) 0, 100% 8px, 100% calc(100% - 8px), calc(100% - 8px) 100%, 8px 100%, 0 calc(100% - 8px), 0 8px);
}

.answer-btn::before {
  content: '';
  position: absolute;
  top: 1.5px;
  left: 1.5px;
  right: 1.5px;
  bottom: 1.5px;
  background: var(--white);
  z-index: -1;
  /* Match the 45-degree chamfer of the parent button (8px) */
  clip-path: polygon(8px 0, calc(100% - 8px) 0, 100% 8px, 100% calc(100% - 8px), calc(100% - 8px) 100%, 8px 100%, 0 calc(100% - 8px), 0 8px);
}

.answer-btn:hover {
  transform: translateY(-2px);
  background: var(--brown);
  box-shadow: 0 4px 12px rgba(74, 44, 17, 0.3);
}

.answer-btn:active {
  transform: scale(0.95);
}

/* Thank you message */
.survey-thankyou {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  /* Tighter gap */
  text-align: center;
  padding: 10px 0;
}

.survey-thankyou.show {
  display: flex;
}

.survey-thankyou .thank-icon {
  font-size: 54px;
  animation: bounceIn 0.5s ease;
}

.survey-thankyou .thank-title {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #643f25;
  /* Specific color as requested */
  margin: 0;
  line-height: 1.1;
  text-transform: uppercase;
}

.survey-thankyou p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #643f25;
  /* Specific color as requested */
  line-height: 1.3;
  margin: 0;
}

/* ============================================================
   KAZAKH ORNAMENT DECORATION
   ============================================================ */

.ornament {
  width: 100%;
  text-align: center;
  padding: 0;
  font-size: 18px;
  color: rgba(212, 168, 67, 0.7);
  letter-spacing: 4px;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes introBounce {
  0% {
    transform: scale(0.6) translateY(40px);
    opacity: 0;
  }

  50% {
    transform: scale(1.05) translateY(-10px);
    opacity: 1;
  }

  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes bounceIn {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }

  50% {
    transform: scale(1.1);
  }

  80% {
    transform: scale(0.95);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}

/* Seek blocking is managed fully in JavaScript */


/* ============================================================
   RESPONSIVE — slightly larger screens
   ============================================================ */

@media (min-width: 480px) {
  .title-block h1 {
    font-size: 30px;
  }

  html[lang="ru"] .video-wrapper {
    max-height: 82dvh;
  }

  html[lang="kz"] .video-wrapper {
    max-height: 78dvh;
  }
}

@media (min-width: 768px) {
  .site-main {
    padding-top: 10px;
  }

  .video-block {
    max-width: 400px;
  }

  html[lang="ru"] .video-wrapper {
    max-height: 85dvh;
  }

  html[lang="kz"] .video-wrapper {
    max-height: 82dvh;
  }
}

/* Ensure svg inside ctrl-play-pause is white for contrast */
.ctrl-play-pause svg {
  fill: var(--white) !important;
}

/* ============================================================
   DESKTOP OPTIMIZATION (min-width: 1024px)
   Strictly for computers to prevent "narrow column" look.
   ============================================================ */

@media (min-width: 1024px) {

  /* ─── PAGE LAYOUT ─── */
  #site-main .page-content {
    flex-direction: row !important;
    justify-content: center;
    align-items: center;
    gap: 80px;
    padding: 60px 80px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    height: calc(100vh - 80px - 80px);
    /* Fill space between header and footer */
  }

  /* ─── TEXT COLUMN ─── */
  .title-block {
    flex: 1;
    text-align: left;
    max-width: 600px;
    padding: 0;
    margin-top: -5vh;
    /* Visual balance */
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .title-block h1 {
    font-size: clamp(48px, 5vw, 64px);
    line-height: 1.1;
    margin: 0;
  }

  /* ─── VIDEO COLUMN ─── */
  .video-block {
    flex: 0 0 420px;
    max-width: 420px;
    padding: 0;
    height: 100%;
    justify-content: center;
  }

  .video-wrapper {
    max-height: 85vh !important;
    height: auto;
    box-shadow: 0 30px 60px rgba(61, 31, 0, 0.4);
    border-radius: 30px;
  }

  .video-prompt {
    font-size: 20px;
    text-align: left;
    width: 100%;
    margin-bottom: 20px;
    opacity: 0.9;
  }

  /* ─── LANGUAGE MODAL (DESKTOP) ─── */
  .lang-modal-inner {
    max-width: 900px;
    gap: 60px;
    padding: 80px;
    background: rgba(255, 248, 231, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
  }

  .modal-logo-img {
    width: 240px;
  }

  .lang-modal-title p {
    font-size: 42px;
    letter-spacing: 12px;
  }

  .lang-buttons {
    gap: 80px;
  }

  .lang-btn {
    width: 220px;
    height: 220px;
    font-size: 82px;
  }

  /* ─── SURVEY (DESKTOP) ─── */
  .survey-container {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    flex: 1;
    max-width: 700px;
    padding: 0;
    animation: modalPop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  }

  .survey-card {
    padding: 60px !important;
    min-height: 350px;
    gap: 40px;
    border-radius: 40px;
    clip-path: none !important;
    /* Use rounded corners on desktop for more premium feel, or keep octagon but bigger */
    /* Let's keep the octagon brand identity but refined */
    clip-path: polygon(40px 0, calc(100% - 40px) 0, 100% 40px, 100% calc(100% - 40px), calc(100% - 40px) 100%, 40px 100%, 0 calc(100% - 40px), 0 40px) !important;
  }

  .survey-question {
    font-size: 32px;
    text-align: center;
    justify-content: center;
    padding: 0;
    line-height: 1.4;
  }

  .answer-btn {
    width: 180px;
    font-size: 32px;
    padding: 24px;
  }

  .survey-thankyou .thank-title {
    font-size: 64px;
  }

  .survey-thankyou p {
    font-size: 28px;
  }

  /* ─── FOOTER (DESKTOP) ─── */
  .site-footer {
    position: fixed;
    bottom: 0;
    padding: 30px 60px;
    background: linear-gradient(to top, rgba(255, 248, 231, 1), rgba(255, 248, 231, 0));
  }

  .site-footer p {
    font-size: 14px;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
  }
}