@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg-base: radial-gradient(circle at 50% 0%, #05301f 0%, transparent 60%), radial-gradient(circle at 80% 80%, #011a11 0%, transparent 60%), #000000;
  --bg-surface-1: rgba(10, 10, 12, 0.8);
  --bg-surface-2: rgba(20, 20, 22, 0.85);
  --bg-surface-3: rgba(30, 30, 32, 0.9);
  
  --text-primary: #ffffff;
  --text-secondary: #A1A8B8;
  --text-tertiary: #6b7280;
  
  --accent-mint: #00C896;
  --accent-mint-glow: rgba(0, 200, 150, 0.08);
  
  --grad-primary: linear-gradient(135deg, #00C896, #53E0A1);
  --grad-text: linear-gradient(135deg, #00C896, #7CF2BF);
  
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-accent: rgba(0, 200, 150, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg-base);
  background-attachment: fixed;
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
  overflow-x: hidden;
}

.lp {
  background: transparent;
  color: var(--text-primary);
  width: 100%;
}

/* NAV (Tone-matched to background spotlight) */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  border-bottom: 0.5px solid rgba(0, 200, 150, 0.15);
  position: sticky;
  top: 0;
  background: rgba(6, 40, 28, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 100;
}

.nav-waitlist {
  gap: 16px;
}

.nav-cta-simple {
  padding: 10px 18px;
  font-size: 14px;
  white-space: nowrap;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img {
  height: 120px;
  width: auto;
  object-fit: contain;
  margin: -35px 0;
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: -0.1px;
}

.nav-links a:hover {
  color: var(--text-primary);
}

/* CTA / Gradient Buttons */
.nav-cta,
.btn-hero,
.btn-demo,
.btn-submit,
button,
input[type="submit"],
input[type="button"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.nav-cta,
.btn-hero,
.btn-demo,
.btn-submit,
button,
input[type="submit"],
input[type="button"] {
  background: var(--grad-primary);
  color: #000000 !important;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0, 200, 150, 0.24), inset 0 2px 2px rgba(255, 255, 255, 0.3);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, filter 0.35s ease;
  letter-spacing: -0.1px;
}

.nav-cta:hover,
.btn-hero:hover,
.btn-demo:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 36px rgba(0, 200, 150, 0.35), inset 0 2px 2px rgba(255, 255, 255, 0.35);
}

.nav-cta:active,
.btn-hero:active,
.btn-demo:active {
  transform: translateY(-1px) scale(0.99);
}

/* Glass sliding sheen overlay */
.nav-cta::after,
.btn-hero::after,
.btn-demo::after,
.db-ai button[style*="grad-primary"]::after {
  content: '';
  position: absolute;
  top: 0;
  left: -160%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-25deg);
  pointer-events: none;
  transition: left 0.6s ease-in-out;
}

.nav-cta:hover::after,
.btn-hero:hover::after,
.btn-demo:hover::after,
.db-ai button[style*="grad-primary"]:hover::after {
  left: 160%;
}

/* HERO */
.hero {
  position: relative;
  padding: 60px 40px 80px;
  text-align: center;
  overflow: visible;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 20%, rgba(0, 200, 150, 0.1) 0%, transparent 75%);
  pointer-events: none;
  z-index: 2;
}

/* Tech Grid Overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: center top;
  mask-image: radial-gradient(circle at 50% 30%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 50% 30%, black 20%, transparent 80%);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 5;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 200, 150, 0.05);
  border: 1px solid rgba(0, 200, 150, 0.2);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12px;
  color: #53E0A1;
  margin-bottom: 28px;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 0 15px rgba(0, 200, 150, 0.03);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-mint);
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 8px var(--accent-mint);
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

/* Italicized & Compact Hero Headline */
.hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 20px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-primary);
}

.hero h1 em {
  font-style: italic;
  color: #ffffff;
  font-weight: 800;
}

.gradient-text {
  font-style: normal;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 36px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.btn-hero {
  background: var(--grad-primary);
  color: #000000 !important;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 200, 150, 0.35), inset 0 2px 2px rgba(255, 255, 255, 0.3);
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}
.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 200, 150, 0.45), inset 0 2px 2px rgba(255, 255, 255, 0.3);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 12px;
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: color 0.2s, border-color 0.2s, background-color 0.2s;
}
.btn-ghost:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.05);
}

/* DASHBOARD PREVIEW */
.dashboard-wrap {
  max-width: 840px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.dashboard-glow {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 550px;
  height: 250px;
  background: radial-gradient(ellipse, rgba(0, 200, 150, 0.15), transparent 70%);
  pointer-events: none;
}

.dashboard {
  background: var(--bg-surface-1);
  border: 0.5px solid var(--border-subtle);
  border-radius: 20px;
  padding: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
  position: relative;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.dashboard::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08) 50%, transparent);
}

.db-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.db-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.db-badge {
  font-size: 11px;
  background: rgba(0, 214, 143, 0.08);
  color: #00D68F;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
  border: 1px solid rgba(0, 214, 143, 0.15);
}

.db-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.db-card {
  background: var(--bg-surface-2);
  border-radius: 12px;
  padding: 16px;
  border: 0.5px solid var(--border-subtle);
  transition: border-color 0.2s, transform 0.2s;
}
.db-card:hover {
  border-color: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.db-card-label {
  font-size: 11px;
  color: var(--text-tertiary);
  margin-bottom: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.db-card-val {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.db-card-sub {
  font-size: 11px;
  margin-top: 4px;
}

.db-ai {
  background: var(--bg-surface-2);
  border-radius: 12px;
  padding: 16px;
  border: 0.5px solid var(--border-accent);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  position: relative;
}

.ai-orb {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-surface-3);
  border: 0.5px solid var(--border-accent);
  padding: 4px;
  object-fit: contain;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(0, 200, 150, 0.15);
}

.ai-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.ai-text strong {
  color: var(--text-primary);
}

.db-bars {
  display: flex;
  gap: 4px;
  align-items: flex-end;
  height: 48px;
  margin-top: 12px;
}

.db-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
}

/* SECTION */
.section {
  padding: 80px 40px;
  position: relative;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-mint);
  margin-bottom: 12px;
  text-align: center;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: var(--text-secondary);
  text-align: center;
  max-width: 480px;
  margin: 0 auto 52px;
  line-height: 1.7;
}

/* INTERACTIVE DEMO SECTION (Full width showcase space for Phone.png) */
.demo-section {
  padding: 100px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.demo-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 450px;
  background: radial-gradient(circle, rgba(0, 200, 150, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.demo-showcase {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  margin-top: 30px;
}

.demo-phone-wrap {
  position: relative;
  max-width: 600px;
  width: 100%;
  perspective: 1000px;
  display: flex;
  justify-content: center;
}

.demo-phone-img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.85));
  transform: rotateX(6deg) rotateY(-8deg);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
  cursor: pointer;
}

.demo-phone-wrap:hover .demo-phone-img {
  transform: rotateX(0deg) rotateY(0deg) scale(1.04);
  filter: drop-shadow(0 30px 60px rgba(0, 200, 150, 0.12));
}

.demo-phone-shadow {
  position: absolute;
  bottom: -24px;
  width: 260px;
  height: 18px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.35), transparent 70%);
  border-radius: 50%;
}

/* Footer */
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 48px;
  border-top: 0.5px solid var(--border-subtle);
  color: var(--text-secondary);
  gap: 24px;
}

.footer-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.footer-copy {
  font-size: 14px;
}

/* Form / Survey */
.modal-form,
.survey-container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.input-field {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-primary);
  padding: 16px 18px;
  border-radius: 16px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  outline: none;
  width: 100%;
  min-height: 52px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.05);
}

.input-field:hover,
.input-field:focus {
  border-color: rgba(0, 200, 150, 0.4);
  box-shadow: 0 0 0 4px rgba(0, 200, 150, 0.06);
}

select.input-field {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: rgba(8, 12, 18, 0.88);
  color: #7CFFE0;
  border-color: rgba(0, 200, 150, 0.4);
  background-image: linear-gradient(45deg, transparent 50%, rgba(124, 255, 224, 0.85) 50%), linear-gradient(135deg, rgba(124, 255, 224, 0.85) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 4px), calc(100% - 12px) calc(50% - 4px);
  background-size: 8px 8px;
  background-repeat: no-repeat;
  padding-right: 44px;
}

select.input-field option {
  background: rgba(8, 12, 18, 0.98);
  color: #7CFFE0;
}

textarea.survey-textarea {
  min-height: 140px;
}

textarea:focus {
  border-color: var(--accent-mint);
}

.btn-submit {
  background: var(--grad-primary);
  color: #000000;
  font-weight: 700;
  font-size: 15px;
  padding: 16px;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 24px rgba(0, 200, 150, 0.22);
}

.btn-submit:hover { transform: translateY(-2px); }

.form-message {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 500;
  display: none;
}

.form-message.success { color: var(--accent-mint); display: block; }
.form-message.error { color: #FFB547; display: block; }

.survey-section {
  background: transparent;
  border-top: 0.5px solid var(--border-subtle);
  padding: 120px 20px;
  position: relative;
  overflow: hidden;
}

.survey-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 200, 150, 0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.survey-container {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(10, 15, 20, 0.5);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 50px 60px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1;
}

.survey-header {
  text-align: center;
  margin-bottom: 50px;
}

.survey-header h2 {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1.2px;
  margin-bottom: 18px;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.survey-header p {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.survey-question {
  margin-bottom: 36px;
}

.survey-question h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #ffffff;
  letter-spacing: -0.2px;
}

.survey-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.survey-label {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255, 255, 255, 0.02);
  padding: 18px 22px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.survey-label:hover {
  border-color: rgba(0, 200, 150, 0.3);
  background: rgba(0, 200, 150, 0.03);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.survey-label input[type="radio"],
.survey-label input[type="checkbox"] {
  margin-top: 3px;
  accent-color: #00C896;
  transform: scale(1.3);
  cursor: pointer;
}

.survey-textarea {
  width: 100%;
  height: 120px;
  resize: vertical;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
}

.survey-textarea:focus {
  background: rgba(255, 255, 255, 0.04);
  border-color: #00C896;
  box-shadow: 0 0 0 3px rgba(0, 200, 150, 0.1);
}

.survey-scale {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  background: rgba(255, 255, 255, 0.02);
  padding: 24px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.scale-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  font-weight: 500;
}

.scale-option input[type="radio"] {
  accent-color: #00C896;
  transform: scale(1.3);
  cursor: pointer;
}

.wishlist-form {
  display: grid;
  gap: 24px;
}

.wishlist-form .form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: flex-start;
}

.wishlist-form .form-row-full {
  grid-column: 1 / -1;
}

.wishlist-form .field-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wishlist-form .field-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 6px;
  font-weight: 600;
}

.wishlist-form select.input-field {
  background: rgba(255, 255, 255, 0.05);
}

.wishlist-form .hint-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

.wishlist-card {
  max-width: 840px;
  margin: 0 auto;
  background: rgba(8, 12, 18, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  padding: 56px 60px;
  box-shadow: 0 32px 120px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1;
}

.wishlist-card::before {
  content: '';
  position: absolute;
  top: -12px;
  right: -12px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at top right, rgba(0, 200, 150, 0.12), transparent 55%);
  pointer-events: none;
}

.wishlist-card h2,
.wishlist-card .wishlist-heading {
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 12px;
  color: #ffffff;
  letter-spacing: -1px;
}

.wishlist-card .wishlist-heading {
  max-width: 780px;
}

.wishlist-card p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  margin-bottom: 36px;
}

.wishlist-card .form-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.wishlist-card .form-footer .footer-text {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}

.wishlist-card .form-footer .footer-link {
  color: var(--accent-mint);
  text-decoration: underline;
}

.wishlist-card h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 14px;
}

.wishlist-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  margin-bottom: 34px;
}

@media (max-width: 768px) {
  .nav {
    padding: 20px 24px;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
  }
  .nav-waitlist {
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .nav-logo {
    width: auto;
    margin: 0;
  }
  .nav-logo img {
    height: 72px;
    margin: 0;
  }
  .nav-cta,
  .nav-cta-simple {
    width: auto;
    max-width: 220px;
    padding: 10px 16px;
    font-size: 14px;
  }
  .hero { padding: 48px 24px 72px; }
  .hero h1 { font-size: clamp(32px, 10vw, 52px); }
  .hero-sub, .section-sub { max-width: 100%; }
  .section { padding: 60px 24px; }
  .dashboard-wrap { width: 100%; }
  .db-grid { grid-template-columns: 1fr; }
  .countdown-grid { gap: 12px; }
  .countdown-card { padding: 16px 12px; min-width: 80px; border-radius: 14px; }
  .countdown-val { font-size: 28px; }
  .countdown-lbl { font-size: 9px; }
  .footer { flex-direction: column; gap: 20px; text-align: center; }
  .demo-phone-wrap { max-width: 320px; }
  .wishlist-form .form-row { grid-template-columns: 1fr; }
  .wishlist-card { padding: 30px 24px; }
  .survey-container { padding: 30px 20px; }
  .survey-header h2 { font-size: 28px; }
  .wishlist-card {
    padding: 36px 24px;
  }
  .wishlist-card::before {
    width: 90px;
    height: 90px;
    top: -8px;
    right: -8px;
  }
  .btn-submit {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .nav {
    padding: 16px 18px;
    gap: 10px;
  }
  .nav-logo img {
    height: 56px;
  }
  .nav-cta,
  .nav-cta-simple {
    width: 100%;
    max-width: none;
    padding: 10px 14px;
    font-size: 14px;
  }
  .wishlist-card {
    padding: 28px 18px;
  }
  .wishlist-card .wishlist-heading {
    font-size: clamp(28px, 7vw, 36px);
  }
  .wishlist-card p {
    font-size: 15px;
    margin-bottom: 24px;
  }
  .wishlist-form .field-label {
    font-size: 13px;
  }
  .input-field,
  .survey-textarea {
    font-size: 14px;
    padding: 12px 14px;
  }
  .wishlist-card .form-footer {
    flex-direction: column;
    align-items: stretch;
  }
}

