/* WakeIt Web Landing Page & PWA Styling */
:root {
  --bg-color: #080C14;
  --panel-bg: rgba(18, 24, 38, 0.7);
  --panel-border: rgba(255, 255, 255, 0.08);
  --accent-color: #FF3B30;
  --accent-color-rgb: 255, 59, 48;
  --accent-cyan: #00F5D4;
  --accent-green: #34C759;
  --text-primary: #FFFFFF;
  --text-secondary: #98A2B3;
  --font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-color);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  position: relative;
}

/* Ambient Background Glows */
.ambient-glow {
  position: absolute;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}
.glow-top-left {
  top: -120px;
  left: -120px;
  background: radial-gradient(circle, #FF3B30, #007AFF);
}
.glow-bottom-right {
  top: 750px;
  right: -120px;
  background: radial-gradient(circle, #AF52DE, #00F5D4);
}

/* NAVIGATION */
.site-nav {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(8, 12, 20, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--panel-border);
  z-index: 100;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(255, 59, 48, 0.25);
}
.brand-name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.highlight-wake { color: #FFFFFF; }
.highlight-it { color: var(--accent-color); }

.nav-right-area {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 14.5px;
  transition: color 0.2s ease;
}
.nav-links a:hover {
  color: var(--text-primary);
}
.btn-nav-action {
  background: linear-gradient(135deg, #FF3B30, #FF9500);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-nav-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 59, 48, 0.4);
}

/* LANGUAGE SWITCHER PILL (TR / EN) */
.lang-switch-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 3px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  user-select: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}
.lang-switch-pill:hover {
  border-color: rgba(255, 255, 255, 0.22);
}
.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lang-btn:hover:not(.active) {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.07);
}
.lang-btn.active {
  background: linear-gradient(135deg, #FF3B30, #FF9500);
  color: #FFFFFF;
  box-shadow: 0 2px 10px rgba(255, 59, 48, 0.35);
}

/* HERO SECTION */
.hero-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 70px 24px 60px;
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 46px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 30px;
  background: rgba(255, 59, 48, 0.12);
  border: 1px solid rgba(255, 59, 48, 0.35);
  font-size: 13px;
  font-weight: 700;
  color: #FF5E55;
  margin-bottom: 24px;
  box-shadow: 0 0 20px rgba(255, 59, 48, 0.15);
}
.badge-sparkle { font-size: 14px; }

/* HERO TITLE: CLEAN, BALANCED & PLAYFUL 2-LINE STARTUP TYPOGRAPHY */
.hero-title {
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-title-main {
  display: block;
  color: #FFFFFF;
  font-size: 50px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.2px;
}
.hero-title-accent {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 50px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
}
.wavy-word {
  display: inline-flex;
  align-items: baseline;
}

/* WHITE Ç AND K */
.letter-white {
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
  font-weight: 900;
}

/* FLOWING THEMATIC 'O' STREAM ANIMATION */
.wavy-o-stream {
  background: linear-gradient(90deg, #FF3B30 0%, #FF9500 25%, #FFCC00 50%, #00F5D4 75%, #007AFF 100%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: waveGradientAnim 4s ease-in-out infinite alternate;
  font-weight: 900;
  letter-spacing: -2px;
  padding: 0 1px;
}
@keyframes waveGradientAnim {
  0% { background-position: 0% center; }
  100% { background-position: 100% center; }
}

.hero-highlight-word {
  background: linear-gradient(135deg, #00F5D4 0%, #34C759 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  letter-spacing: -1px;
  filter: drop-shadow(0 0 18px rgba(0, 245, 212, 0.35));
}

.hero-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 30px;
  max-width: 540px;
  line-height: 1.6;
}
.hero-subtitle strong {
  color: #FFFFFF;
}

/* HERO ACTIONS */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}
.btn-store {
  background: #121826;
  border: 1px solid var(--panel-border);
  color: #fff;
}
.btn-store:hover {
  background: #1A2234;
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.btn-text-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.btn-subtext {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
}
.btn-maintext {
  font-size: 15px;
  font-weight: 700;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  border: 1px solid var(--panel-border);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #FF3B30, #FF9500);
  color: #FFFFFF;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 59, 48, 0.4);
}

/* HERO TRUST BADGES */
.hero-trust-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 540px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: var(--text-secondary);
}
.trust-badge-icon {
  font-size: 18px;
  flex-shrink: 0;
}
.trust-badge-text strong {
  color: #FFFFFF;
  margin-right: 6px;
}
.support-inline-link {
  color: #00F5D4;
  text-decoration: underline;
}

/* ================================================================
   HERO PHONE MOCKUP: CLEAN & MINIMAL AI POSE DETECTION SIMULATION
   ================================================================ */
.hero-preview-wrapper {
  display: flex;
  justify-content: center;
}
.phone-mockup-frame {
  width: 320px;
  height: 580px;
  background: #0B101D;
  border-radius: 44px;
  border: 8px solid #1E2738;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 25px rgba(0, 245, 212, 0.1);
  padding: 12px;
  position: relative;
  overflow: hidden;
}
.mockup-speaker-notch {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #2A364F;
  border-radius: 3px;
  z-index: 10;
}
.phone-pose-screen {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 30%, #121D30 0%, #080D18 100%);
  border-radius: 34px;
  padding: 22px 14px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

/* Clean Minimal Header */
.clean-mockup-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
}
.clean-header-badge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  padding: 4px 14px;
  border-radius: 16px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* Clean Camera Viewfinder */
.pose-sim-viewfinder {
  flex: 1;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 245, 212, 0.25);
  border-radius: 20px;
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  box-shadow: inset 0 0 20px rgba(0, 245, 212, 0.05);
}
.pose-sim-hud-top {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.pose-tracking-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(0, 245, 212, 0.4);
  padding: 4px 12px;
  border-radius: 14px;
  font-size: 11px;
  font-weight: 700;
  color: #00F5D4;
}
.pose-tracking-dot {
  width: 6px;
  height: 6px;
  background: #00F5D4;
  border-radius: 50%;
  box-shadow: 0 0 8px #00F5D4;
}

/* Pose SVG Stage */
.pose-sim-stage {
  position: relative;
  width: 100%;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pose-sim-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* Clean Rep Counter Card */
.pose-sim-rep-card {
  background: rgba(18, 26, 42, 0.85);
  border: 1px solid var(--panel-border);
  border-radius: 18px;
  padding: 12px 14px;
  margin-top: 10px;
}
.pose-sim-rep-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.pose-sim-task-label {
  font-size: 13.5px;
  font-weight: 800;
  color: #FFFFFF;
}
.pose-sim-rep-numbers {
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.pose-sim-rep-cur {
  font-size: 20px;
  font-weight: 900;
  color: #00F5D4;
  transition: transform 0.2s ease;
}
.pose-sim-rep-slash {
  font-size: 13px;
  color: var(--text-secondary);
}
.pose-sim-progress-track {
  height: 5px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}
.pose-sim-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #00F5D4, #34C759);
  transition: width 0.3s ease;
}
.pose-sim-guarantee-note {
  font-size: 10.5px;
  color: var(--text-secondary);
  font-weight: 600;
  text-align: center;
}

/* ================================================================
   FEATURES SECTION
   ================================================================ */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}
.section-tag {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--accent-color);
}
.section-title {
  font-size: 38px;
  font-weight: 800;
  margin: 10px 0 16px;
  letter-spacing: -0.5px;
}
.section-subtitle {
  color: var(--text-secondary);
  font-size: 16px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: 20px;
  padding: 32px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
}
.feature-card-highlight {
  border: 1px solid rgba(0, 245, 212, 0.3);
  box-shadow: 0 8px 30px rgba(0, 245, 212, 0.08);
}
.feature-card-highlight:hover {
  border-color: rgba(0, 245, 212, 0.6);
}
.feature-icon {
  font-size: 36px;
  margin-bottom: 20px;
}
.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.feature-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

/* ================================================================
   IOS / IPHONE GUIDE SECTION
   ================================================================ */
.ios-section {
  background: linear-gradient(180deg, rgba(8, 12, 20, 0) 0%, rgba(18, 24, 38, 0.45) 100%);
}
.section-card-glass {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: 28px;
  padding: 48px 36px;
  text-align: center;
}
.ios-badge {
  font-size: 12px;
  font-weight: 800;
  color: #34C759;
  letter-spacing: 1px;
}
.ios-header-group h2 {
  font-size: 32px;
  font-weight: 800;
  margin: 10px 0 12px;
}
.ios-header-group p {
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.ios-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  text-align: left;
}
.ios-step-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--panel-border);
  padding: 24px;
  border-radius: 18px;
  position: relative;
}
.step-num {
  width: 32px;
  height: 32px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 16px;
}
.ios-step-item h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.ios-step-item p {
  color: var(--text-secondary);
  font-size: 13.5px;
}

/* ================================================================
   WEB APP IFRAME
   ================================================================ */
.web-app-frame-container {
  width: 100%;
  max-width: 480px;
  height: 750px;
  margin: 0 auto;
  border-radius: 32px;
  overflow: hidden;
  border: 4px solid var(--panel-border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  background: #080C14;
}
.web-app-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ================================================================
   SUPPORT & CONTACT SECTION
   ================================================================ */
.support-section {
  position: relative;
  z-index: 2;
}
.support-card-glass {
  background: radial-gradient(circle at top center, rgba(30, 42, 66, 0.7) 0%, rgba(14, 20, 32, 0.8) 100%);
  border: 1px solid rgba(0, 245, 212, 0.25);
  border-radius: 28px;
  padding: 50px 32px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
  width: 100%;
}
.support-icon-wrap {
  font-size: 48px;
  margin-bottom: 16px;
}
.support-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 14px;
}
.support-desc {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.6;
}
.support-action-area {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.btn-support-main {
  padding: 16px 32px;
  border-radius: 20px;
  background: linear-gradient(135deg, #00F5D4, #007AFF);
  color: #080C14;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 100%;
  box-sizing: border-box;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-support-main:hover {
  box-shadow: 0 8px 30px rgba(0, 245, 212, 0.4);
  transform: translateY(-2px);
}
.btn-support-main:active {
  transform: scale(0.96);
}
.support-mail-icon {
  flex-shrink: 0;
}
.btn-support-text-wrap {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  min-width: 0;
}
.btn-support-title {
  font-size: 16px;
  font-weight: 800;
  color: #080C14;
}
.btn-support-email {
  font-size: 14px;
  font-weight: 700;
  color: rgba(8, 12, 20, 0.85);
  word-break: break-all;
  overflow-wrap: anywhere;
}


/* ================================================================
   FLOATING SUPPORT PILL (BOTTOM-RIGHT - COMPACT CIRCLE WITH HOVER EXPAND)
   ================================================================ */
.floating-support-pill {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  height: 48px;
  border-radius: 50px;
  background: rgba(18, 26, 42, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 245, 212, 0.35);
  color: #FFFFFF;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45), 0 0 15px rgba(0, 245, 212, 0.18);
  z-index: 99;
  overflow: hidden;
  white-space: nowrap;
  padding: 0;
  cursor: pointer;
  transition: border-color 0.25s ease,
              box-shadow 0.25s ease,
              transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-support-pill:hover,
.floating-support-pill:focus-visible {
  transform: translateY(-3px);
  border-color: #00F5D4;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 22px rgba(0, 245, 212, 0.35);
}

.floating-support-pill:active {
  transform: scale(0.93) translateY(-1px);
}

.support-pill-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.floating-support-pill:hover .support-pill-icon,
.floating-support-pill:focus-visible .support-pill-icon {
  transform: scale(1.08);
}

.support-pill-text {
  max-width: 0;
  opacity: 0;
  white-space: nowrap;
  overflow: hidden;
  pointer-events: none;
  font-size: 13px;
  font-weight: 700;
  color: #FFFFFF;
  padding-right: 0;
  transition: max-width 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.25s ease,
              padding-right 0.35s ease;
}

.floating-support-pill:hover .support-pill-text,
.floating-support-pill:focus-visible .support-pill-text {
  max-width: 260px;
  opacity: 1;
  padding-right: 18px;
  pointer-events: auto;
}

/* HIGHLIGHT ANIMATION FOR CONTACT SECTION */
.support-card-highlight {
  animation: contactGlowPulse 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes contactGlowPulse {
  0% {
    transform: scale(1);
    border-color: rgba(0, 245, 212, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  }
  35% {
    transform: scale(1.02);
    border-color: #00F5D4;
    box-shadow: 0 15px 50px rgba(0, 245, 212, 0.45), 0 0 30px rgba(0, 245, 212, 0.3);
  }
  100% {
    transform: scale(1);
    border-color: rgba(0, 245, 212, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  }
}

/* ================================================================
   LEGAL & FOOTER
   ================================================================ */
.legal-section {
  border-top: 1px solid var(--panel-border);
}
.legal-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--panel-border);
  border-radius: 20px;
  padding: 32px;
}
.legal-box h3 {
  font-size: 18px;
  margin-bottom: 14px;
}
.legal-box p {
  color: var(--text-secondary);
  font-size: 13.5px;
  margin-bottom: 12px;
}

.site-footer {
  border-top: 1px solid var(--panel-border);
  padding: 40px 24px;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo {
  font-weight: 800;
  font-size: 20px;
}
.footer-left p {
  color: var(--text-secondary);
  font-size: 13px;
  margin-top: 4px;
}
.footer-right {
  display: flex;
  gap: 20px;
}
.footer-right a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
}
.footer-right a:hover { color: #fff; }

/* MODAL */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 20px;
}
.modal-overlay.hidden { display: none; }

.modal-card-ios {
  background: #121826;
  border: 1px solid var(--panel-border);
  border-radius: 24px;
  max-width: 420px;
  width: 100%;
  padding: 32px;
  position: relative;
  text-align: center;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 24px;
  cursor: pointer;
}
.apple-icon { font-size: 40px; }
.ios-modal-header h3 {
  font-size: 20px;
  margin: 10px 0 20px;
}
.ios-modal-steps {
  text-align: left;
  padding-left: 20px;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.8;
}
.full-width {
  width: 100%;
}

/* ================================================================
   RESPONSIVE LAYOUT
   ================================================================ */
@media (max-width: 960px) {
  .hero-section {
    grid-template-columns: 1fr;
    padding-top: 40px;
    text-align: center;
  }
  .hero-title {
    align-items: center;
    margin: 0 auto 24px;
  }
  .hero-title-main {
    font-size: 40px;
  }
  .hero-title-accent {
    font-size: 40px;
    justify-content: center;
  }
  .hero-highlight-word {
    font-size: 40px;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-trust-badges {
    margin: 0 auto;
    text-align: left;
  }
  .nav-links {
    display: none;
  }
  .nav-right-area {
    gap: 0;
  }
}

@media (max-width: 680px) {
  .section-container {
    padding: 60px 18px;
  }
  .support-card-glass {
    padding: 36px 20px;
    border-radius: 22px;
    width: 100%;
    max-width: 100%;
  }
  .support-title {
    font-size: 24px;
    line-height: 1.3;
  }
  .btn-support-main {
    width: 100%;
    max-width: 100%;
    padding: 14px 18px;
    box-sizing: border-box;
  }
  .btn-support-text-wrap {
    flex-direction: column;
    align-items: center;
    gap: 3px;
    text-align: center;
  }
  .btn-support-title {
    font-size: 15px;
    line-height: 1.2;
  }
  .btn-support-email {
    font-size: 13px;
    line-height: 1.2;
    opacity: 0.9;
  }
}

@media (max-width: 520px) {
  .hero-title-main {
    font-size: 30px;
    letter-spacing: -0.8px;
  }
  .hero-title-accent {
    font-size: 28px;
    letter-spacing: -0.8px;
    gap: 8px;
  }
  .wavy-o-stream {
    letter-spacing: -1.2px;
  }
  .hero-highlight-word {
    font-size: 30px;
  }
  .phone-mockup-frame {
    width: 295px;
    height: 540px;
  }
  .section-container {
    padding: 50px 16px;
  }
  .support-card-glass {
    padding: 30px 16px;
    border-radius: 20px;
  }
  .support-icon-wrap {
    font-size: 38px;
    margin-bottom: 10px;
  }
  .support-title {
    font-size: 21px;
    line-height: 1.3;
    margin-bottom: 10px;
  }
  .support-desc {
    font-size: 13.5px;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  .btn-support-main {
    padding: 13px 14px;
    border-radius: 16px;
    gap: 8px;
  }
  .btn-support-title {
    font-size: 14.5px;
  }
  .btn-support-email {
    font-size: 12px;
  }
  .floating-support-pill {
    bottom: 16px;
    right: 16px;
    max-width: calc(100vw - 32px);
  }
  .floating-support-pill:hover .support-pill-text,
  .floating-support-pill:focus-visible .support-pill-text {
    max-width: min(200px, calc(100vw - 84px));
    font-size: 12px;
    padding-right: 14px;
  }
}

@media (max-width: 380px) {
  .section-container {
    padding: 40px 12px;
  }
  .support-card-glass {
    padding: 24px 12px;
  }
  .support-title {
    font-size: 19px;
  }
  .support-desc {
    font-size: 13px;
  }
  .btn-support-main {
    padding: 11px 10px;
  }
  .btn-support-title {
    font-size: 13.5px;
  }
  .btn-support-email {
    font-size: 11px;
  }
}

/* ================================================================
   NETLIFY BADGE & HUD AGGRESSIVE SUPPRESSION
   ================================================================ */
#nl-badge-frame,
iframe#nl-badge-frame,
iframe[title*="Netlify"],
iframe[title*="Powered by Netlify"],
iframe[src*="netlify"],
[data-netlify-deploy],
#netlify-notification-root,
.netlify-badge,
[class*="netlify-badge"],
[id*="netlify-badge"],
[class*="netlify"],
[id*="netlify"],
a[href*="netlify.com"],
a[href*="netlify.app"],
img[src*="netlify"],
img[alt*="Netlify"],
img[alt*="Powered by Netlify"],
svg[aria-label*="Netlify"],
div[data-testid*="netlify"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 0 !important;
  height: 0 !important;
  position: absolute !important;
  left: -9999px !important;
  z-index: -99999 !important;
}
