/* ============================================================
   Rada — Complete Stylesheet
   Brand: dark-first, mobile-first responsive
   Fonts: Inter (body), Plus Jakarta Sans (headings)
   ============================================================ */

/* ============================================================
   1. CSS VARIABLES, RESET, BASE, UTILITIES
   ============================================================ */

:root {
  --rada-orange:   #E85A2A;
  --deep-alert:    #D14520;
  --dark-bg:       #1A1A1A;
  --warm-cream:    #F5F0EB;
  --safe-green:    #1D9E75;
  --info-blue:     #378ADD;
  --warning-amber: #BA7517;
  --danger-red:    #E24B4A;
  --dark-surface:  #242424;
  --dark-border:   #333333;
  --text-muted:    #999999;
}

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

img,
svg {
  display: block;
  max-width: 100%;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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

ul {
  list-style: none;
}

/* Base */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #222;
  background: #fff;
}

h1, h2, h3, h4, h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.2;
}

/* Utilities */
.section-inner {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  margin-bottom: 10px;
}

.section-header p {
  color: #666;
  font-size: 15px;
  max-width: 480px;
  margin: 0 auto;
}

.label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rada-orange);
  background: rgba(232, 90, 42, 0.1);
  border: 1px solid rgba(232, 90, 42, 0.25);
  border-radius: 20px;
  padding: 3px 10px;
  margin-bottom: 12px;
}

.label--dark {
  color: var(--rada-orange);
  background: rgba(232, 90, 42, 0.12);
  border-color: rgba(232, 90, 42, 0.25);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--rada-orange);
  outline-offset: 2px;
}

/* ============================================================
   2. NAVBAR
   ============================================================ */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark-bg);
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border-bottom: 1px solid var(--dark-border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--rada-orange);
  text-decoration: none;
}

.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.nav-logo-img--footer {
  height: 28px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  color: #ccc;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.nav-links a[aria-current="page"] {
  color: #fff;
}

.nav-links .btn-premium {
  background: var(--rada-orange);
  color: #fff;
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.15s;
}

.nav-links .btn-premium:hover {
  background: var(--deep-alert);
  color: #fff;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ccc;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}

.nav-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  background: var(--dark-bg);
  border-bottom: 1px solid var(--dark-border);
}

.mobile-nav.is-open {
  display: flex;
  flex-direction: column;
}

.mobile-nav a {
  background: var(--dark-surface);
  color: #ccc;
  font-size: 15px;
  padding: 14px 24px;
  border-bottom: 1px solid var(--dark-border);
  transition: color 0.15s, background 0.15s;
}

.mobile-nav a:hover {
  background: #2e2e2e;
  color: #fff;
}

.mobile-nav a[aria-current="page"] {
  color: #fff;
}

.mobile-nav .btn-premium-mobile {
  background: var(--rada-orange);
  color: #fff;
  text-align: center;
  font-weight: 700;
  padding: 16px 24px;
  border-bottom: none;
  transition: background 0.15s;
}

.mobile-nav .btn-premium-mobile:hover {
  background: var(--deep-alert);
}

/* ============================================================
   3. HERO
   ============================================================ */

.hero-wrap {
  background: var(--dark-bg);
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 64px 0 80px;
}

.hero-text {
  flex: 1;
  min-width: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(232, 90, 42, 0.12);
  border: 1px solid rgba(232, 90, 42, 0.3);
  color: var(--rada-orange);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.15;
}

.hero h1 .accent {
  color: var(--rada-orange);
}

.hero-sub {
  color: #aaa;
  font-size: clamp(15px, 2vw, 17px);
  margin-bottom: 10px;
  max-width: 460px;
}

.hero-tagline {
  color: #666;
  font-style: italic;
  font-size: 14px;
  margin-bottom: 32px;
}

/* Store buttons */
.store-buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
  max-width: 420px;
  margin-bottom: 20px;
}

.store-btn-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.btn-store {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 600;
  font-size: 15px;
  width: 100%;
  border: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.1s;
}

.btn-store__label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  text-align: center;
}

.btn-store__label small {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.4px;
  line-height: 1;
  color: #aaa;
}

.btn-store--play {
  background: #000;
  color: #fff;
  border-color: #333;
}

.btn-store--play:not(.btn-store--disabled):hover {
  border-color: var(--rada-orange);
  box-shadow: 0 0 0 2px rgba(232, 90, 42, 0.35);
  transform: translateY(-1px);
}

.btn-store--disabled {
  opacity: 0.45;
  cursor: not-allowed;
  color: #777;
}

.btn-store--disabled .btn-store__label small {
  color: #555;
}

.btn-store--apple {
  background: #111;
  border-color: #2a2a2a;
}

/* iOS notice box */
.ios-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(55, 138, 221, 0.08);
  border: 1px solid rgba(55, 138, 221, 0.2);
  border-radius: 10px;
  padding: 12px 14px;
  max-width: 420px;
}

.ios-notice__title {
  display: block;
  color: #c8dff8;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 2px;
}

.ios-notice__body {
  color: #6a9ec4;
  font-size: 12px;
  line-height: 1.5;
}

/* Phone mockup */
@keyframes phoneFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}

.phone-wrap {
  flex-shrink: 0;
  position: relative;
}

.hero-chip {
  position: absolute;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  white-space: nowrap;
  z-index: 10;
}

.hero-chip--alert {
  background: var(--rada-orange);
  color: #fff;
  box-shadow: 0 4px 16px rgba(232, 90, 42, 0.45);
  top: 40px;
  left: -60px;
  animation: chipFloat 3s ease-in-out infinite;
}

.hero-chip--clear {
  background: var(--safe-green);
  color: #fff;
  box-shadow: 0 4px 16px rgba(29, 158, 117, 0.45);
  bottom: 60px;
  right: -55px;
  animation: chipFloat 3.5s ease-in-out 0.5s infinite;
}

.phone-mockup {
  width: 313px;
  height: 469px;
  background: transparent;
  position: relative;
  animation: phoneFloat 4s ease-in-out infinite;
}

/* Carousel: 4 slides × 4s each = 16s cycle */
@keyframes phone-slide-1 {
  0%,  30% { opacity: 1; z-index: 2; }
  33%, 97% { opacity: 0; z-index: 1; }
  100%     { opacity: 1; z-index: 2; }
}
@keyframes phone-slide-2 {
  0%,  30% { opacity: 0; z-index: 1; }
  33%, 63% { opacity: 1; z-index: 2; }
  66%,100% { opacity: 0; z-index: 1; }
}
@keyframes phone-slide-3 {
  0%,  63% { opacity: 0; z-index: 1; }
  66%, 96% { opacity: 1; z-index: 2; }
  99%,100% { opacity: 0; z-index: 1; }
}


.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.phone-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.phone-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.phone-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.phone-slide--1 { animation: phone-slide-1 15s ease infinite; }
.phone-slide--2 { animation: phone-slide-2 15s ease infinite; }
.phone-slide--3 { animation: phone-slide-3 15s ease infinite; }


/* ── HERO ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge        { animation: fadeUp 0.6s ease both 0.10s; }
.hero h1           { animation: fadeUp 0.6s ease both 0.25s; }
.hero-sub          { animation: fadeUp 0.6s ease both 0.40s; }
.hero-tagline      { animation: fadeUp 0.6s ease both 0.50s; }
.store-buttons     { animation: fadeUp 0.6s ease both 0.65s; }
.ios-notice        { animation: fadeUp 0.6s ease both 0.80s; }

/* ============================================================
   4. FEATURES
   ============================================================ */

.features {
  background: var(--warm-cream);
  padding: 72px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: #fff;
  border-radius: 14px;
  padding: 26px 22px;
  border: 1px solid #e8e2da;
  transition: box-shadow 0.2s, transform 0.2s;
}

.feature-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.feat-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.feat-icon--orange {
  background: rgba(232, 90, 42, 0.12);
}

.feat-icon--green {
  background: rgba(29, 158, 117, 0.12);
}

.feat-icon--blue {
  background: rgba(55, 138, 221, 0.12);
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}

.feature-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

/* ============================================================
   5. HOW IT WORKS
   ============================================================ */

.hiw {
  background: var(--dark-bg);
  padding: 72px 0;
}

.hiw .section-header h2 {
  color: #fff;
}

.hiw .section-header p {
  color: #888;
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
  text-align: center;
  padding: 0 12px;
  position: relative;
}

.step__connector {
  position: absolute;
  top: 24px;
  left: 50%;
  right: -50%;
  height: 2px;
  background: linear-gradient(90deg, var(--rada-orange), rgba(232, 90, 42, 0.2));
}

.step:last-child .step__connector {
  display: none;
}

.step__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--rada-orange);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
}

.step h3 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step p {
  color: #888;
  font-size: 13px;
  line-height: 1.6;
}

/* ============================================================
   6. PRICING
   ============================================================ */

.pricing {
  background: var(--warm-cream);
  padding: 72px 0;
}

.pricing-cards {
  display: flex;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}

.pricing-card {
  flex: 1;
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid #e8e2da;
  position: relative;
}

.pricing-card--premium {
  border: 2px solid var(--rada-orange);
  box-shadow: 0 8px 40px rgba(232, 90, 42, 0.15);
}

.pricing-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rada-orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.plan-name {
  font-size: 12px;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.plan-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: #111;
  line-height: 1;
  margin-bottom: 4px;
}

.plan-price span {
  font-size: 14px;
  font-weight: 600;
  color: #aaa;
}

.plan-period {
  color: #aaa;
  font-size: 12px;
  margin-bottom: 20px;
}

.plan-features {
  list-style: none;
  margin-bottom: 24px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: #444;
  padding: 9px 0;
  border-bottom: 1px solid #f0ebe4;
}

.plan-features li:last-child {
  border-bottom: none;
}

.check {
  color: var(--safe-green);
  font-weight: 700;
  flex-shrink: 0;
}

.cross {
  color: #ccc;
  flex-shrink: 0;
}

.btn-plan {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.15s, transform 0.1s;
  border: none;
  width: 100%;
}

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

.btn-plan--free {
  background: #f0ebe4;
  color: #888;
}

.btn-plan--free:hover {
  background: #e8e2da;
}

.btn-plan--paid {
  background: var(--rada-orange);
  color: #fff;
}

.btn-plan--paid:hover {
  background: var(--deep-alert);
}

.payment-badges {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.pay-badge {
  background: #f8f4f0;
  border: 1px solid #e0d9d1;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #555;
}

/* ============================================================
   7. TESTIMONIALS
   ============================================================ */

.testimonials {
  background: #fff;
  padding: 72px 0;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testi-card {
  background: var(--warm-cream);
  border-radius: 14px;
  padding: 22px;
  border: 1px solid #e8e2da;
}

.testi-stars {
  color: var(--rada-orange);
  font-size: 13px;
  margin-bottom: 12px;
}

.testi-quote {
  font-size: 14px;
  color: #444;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testi-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--rada-orange);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testi-name {
  font-weight: 600;
  font-size: 13px;
  color: #222;
}

.testi-loc {
  font-size: 11px;
  color: #999;
}

/* ============================================================
   8. FOOTER
   ============================================================ */

.site-footer {
  background: var(--dark-bg);
  padding: 48px 0 28px;
  border-top: 1px solid var(--dark-border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--dark-border);
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.footer-brand {
  max-width: 220px;
}

.footer-brand .nav-logo {
  margin-bottom: 12px;
}

.footer-brand p {
  color: #777;
  font-size: 13px;
  max-width: 200px;
  line-height: 1.6;
}

.footer-col h4 {
  color: #aaa;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.footer-col a {
  color: #666;
  font-size: 13px;
  display: block;
  margin-bottom: 8px;
  transition: color 0.15s;
}

.footer-col a:hover {
  color: #ccc;
}

.footer-copy {
  color: #444;
  font-size: 12px;
  text-align: center;
}

/* ============================================================
   9. INNER PAGE HERO
   ============================================================ */

.page-hero {
  background: var(--dark-bg);
  padding: 56px 0 60px;
  border-bottom: 1px solid var(--dark-border);
}

.page-hero h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.page-hero p {
  color: #888;
  font-size: 16px;
  max-width: 560px;
  line-height: 1.6;
}

/* ============================================================
   10. ABOUT PAGE
   ============================================================ */

.about-content {
  padding: 72px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}

.about-grid:last-child {
  margin-bottom: 0;
}

.about-grid--reverse .about-grid__text {
  order: 1;
}

.about-grid--reverse .about-grid__visual {
  order: 0;
}

.about-grid__text h2 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  color: #111;
  margin-bottom: 16px;
}

.about-grid__text p {
  color: #555;
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 12px;
}

.about-grid__visual {
  background: var(--warm-cream);
  border-radius: 16px;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e8e2da;
  overflow: hidden;
}

.about-grid__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 280px;
}

.values-section {
  background: var(--dark-bg);
  padding: 72px 0;
}

.values-section .section-header h2 {
  color: #fff;
}

.values-section .section-header p {
  color: #888;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.value-card {
  background: var(--dark-surface);
  border-radius: 14px;
  padding: 28px 22px;
  border: 1px solid var(--dark-border);
}

.value-card__icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.value-card h3 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.value-card p {
  color: #888;
  font-size: 13px;
  line-height: 1.6;
}

.team-section {
  background: var(--warm-cream);
  padding: 72px 0;
}

.team-grid {
  display: table;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}

.team-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 22px;
  border: 1px solid #e8e2da;
  text-align: center;
}

.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--rada-orange);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.team-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  margin-bottom: 4px;
}

.team-card p {
  font-size: 13px;
  color: #888;
}

/* ============================================================
   11. SUPPORT PAGE
   ============================================================ */

.support-search {
  background: var(--dark-bg);
  padding: 0 0 40px;
}

.search-bar {
  display: flex;
  max-width: 560px;
  margin: 0 auto;
}

.search-bar input {
  flex: 1;
  font-size: 14px;
  padding: 14px 18px;
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-right: none;
  border-radius: 10px 0 0 10px;
  color: #fff;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s;
}

.search-bar input:focus {
  border-color: var(--rada-orange);
}

.search-bar input::placeholder {
  color: #555;
}

.search-bar button {
  font-size: 14px;
  padding: 14px 20px;
  background: var(--rada-orange);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 0 10px 10px 0;
  cursor: pointer;
  transition: background 0.15s;
  font-family: inherit;
}

.search-bar button:hover {
  background: var(--deep-alert);
}

.faq-section {
  background: var(--warm-cream);
  padding: 72px 0;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 10px;
  border: 1px solid #e8e2da;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 600;
  color: #111;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: background 0.15s;
}

.faq-question:hover {
  background: #faf6f2;
}

.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--warm-cream);
  border: 1px solid #e0d9d1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rada-orange);
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.25s;
  line-height: 1;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 22px 18px;
  font-size: 14px;
  color: #555;
  line-height: 1.75;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.support-cta {
  background: var(--dark-bg);
  padding: 56px 0;
  text-align: center;
}

.support-cta h2 {
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
}

.support-cta p {
  color: #888;
  margin-bottom: 24px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--rada-orange);
  color: #fff;
  padding: 13px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  transition: background 0.15s, transform 0.1s;
}

.btn-cta:hover {
  background: var(--deep-alert);
  transform: translateY(-1px);
}

/* ============================================================
   12. CONTACT PAGE
   ============================================================ */

.contact-section {
  padding: 72px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
}

.contact-form-wrap h2 {
  font-size: 24px;
  font-weight: 800;
  color: #111;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
  border: 1px solid #d8d2cb;
  border-radius: 8px;
  background: #fff;
  color: #222;
  transition: border-color 0.15s, box-shadow 0.15s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--rada-orange);
  box-shadow: 0 0 0 3px rgba(232, 90, 42, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

/* Custom select dropdown (replaces native <select> to control positioning on mobile) */
.custom-select {
  position: relative;
}

.custom-select__trigger {
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
  border: 1px solid #d8d2cb;
  border-radius: 8px;
  background: #fff;
  color: #aaa;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.custom-select__trigger.has-value {
  color: #222;
}

.custom-select__trigger:focus-visible,
.custom-select.is-open .custom-select__trigger {
  border-color: var(--rada-orange);
  box-shadow: 0 0 0 3px rgba(232, 90, 42, 0.12);
  outline: none;
}

.custom-select__trigger svg {
  flex-shrink: 0;
}

.custom-select__options {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #d8d2cb;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  z-index: 200;
  overflow: hidden;
  list-style: none;
  padding: 4px 0;
  margin: 0;
}

.custom-select__option {
  padding: 10px 14px;
  font-size: 14px;
  font-family: inherit;
  color: #333;
  cursor: pointer;
  transition: background 0.1s;
}

.custom-select__option:hover {
  background: #f5f0eb;
}

.custom-select__option.is-selected {
  color: var(--rada-orange);
  font-weight: 600;
}

.form-honeypot {
  display: none;
  visibility: hidden;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--rada-orange);
  color: #fff;
  padding: 13px 32px;
  border-radius: 10px;
  border: none;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, transform 0.1s;
}

.btn-submit:hover {
  background: var(--deep-alert);
  transform: translateY(-1px);
}

.flash {
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.flash--success {
  background: rgba(29, 158, 117, 0.1);
  color: var(--safe-green);
  border: 1px solid rgba(29, 158, 117, 0.25);
}

.flash--error {
  background: rgba(226, 75, 74, 0.1);
  color: var(--danger-red);
  border: 1px solid rgba(226, 75, 74, 0.25);
}

.contact-sidebar {
  position: relative;
}

.contact-info-card {
  background: var(--warm-cream);
  border-radius: 14px;
  padding: 28px;
  border: 1px solid #e8e2da;
}

.contact-info-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 14px;
  color: #555;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-item__icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.contact-info-item a {
  color: var(--rada-orange);
  text-decoration: none;
  transition: text-decoration 0.1s;
}

.contact-info-item a:hover {
  text-decoration: underline;
}

/* ============================================================
   13. LEGAL PAGES
   ============================================================ */

.legal-body {
  padding: 72px 0;
}

.legal-body .section-inner {
  max-width: 760px;
}

.legal-section {
  margin-bottom: 48px;
}

.legal-section h2 {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--warm-cream);
}

.legal-section h3 {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  margin-top: 18px;
  margin-bottom: 8px;
}

.legal-section p {
  color: #555;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-section ul {
  margin-bottom: 12px;
  margin-left: 20px;
  list-style: disc;
}

.legal-section ul li {
  color: #555;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 4px;
}

.legal-section a {
  color: var(--rada-orange);
  text-decoration: none;
}

.legal-section a:hover {
  text-decoration: underline;
}

.legal-updated {
  font-size: 13px;
  color: #999;
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e8e2da;
}

/* ============================================================
   14. RESPONSIVE BREAKPOINTS
   ============================================================ */

@media (max-width: 768px) {

  /* Nav */
  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  /* Hero */
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 40px 0 56px;
    gap: 32px;
  }

  .phone-wrap {
    order: -1;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .store-buttons {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }

  .ios-notice {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-chip {
    display: none;
  }

  /* Features */
  .features-grid {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .steps {
    flex-direction: column;
    align-items: center;
  }

  .step {
    max-width: 280px;
    width: 100%;
  }

  .step__connector {
    display: none;
  }

  /* Pricing */
  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }

  .pricing-card {
    width: 100%;
    max-width: 360px;
  }

  /* Testimonials */
  .testi-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    gap: 24px;
  }

  .footer-brand {
    max-width: 100%;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-grid--reverse .about-grid__text {
    order: 0;
  }

  .about-grid--reverse .about-grid__visual {
    order: 1;
  }

  /* Values */
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Team */
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-group input,
  .form-group select,
  .form-group textarea,
  .custom-select__trigger,
  .custom-select__option {
    font-size: 16px;
  }

  /* Search */
  .search-bar {
    max-width: 100%;
  }

  /* Page hero */
  .page-hero {
    padding: 40px 0 44px;
  }

}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-delay: 0s !important;
  }
  html { scroll-behavior: auto; }
}

@media (min-width: 769px) and (max-width: 1024px) {

  /* Features */
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Testimonials */
  .testi-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Hero */
  .hero h1 {
    font-size: 38px;
  }

  /* Phone */
  .phone-mockup {
    width: 275px;
    height: 413px;
  }

  /* Values */
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Hero padding */
  .hero {
    padding: 48px 0 64px;
  }

}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-delay: 0s !important;
  }
  html { scroll-behavior: auto; }
}

/* ── FIELD VALIDATION ERRORS (Alpine.js) ── */
.field-error {
  display: block;
  color: var(--danger-red);
  font-size: 12px;
  margin-top: 4px;
}

/* --- Deletion request form radio buttons --- */
.radio-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border: 1.5px solid #e0dbd5;
  border-radius: 10px;
  cursor: pointer;
  margin-bottom: 12px;
  transition: border-color .15s;
}

.radio-label:hover {
  border-color: var(--rada-orange);
}

.radio-label input[type="radio"] {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--rada-orange);
  width: 18px;
  height: 18px;
}

.radio-label:has(input:checked) {
  border-color: var(--rada-orange);
  background: rgba(232, 90, 42, .05);
}

.radio-hint {
  display: block;
  font-size: .82rem;
  color: #888;
  margin-top: 3px;
  line-height: 1.5;
}

fieldset.form-fieldset {
  border: none;
  padding: 0;
  margin: 0 0 24px;
}

fieldset.form-fieldset legend {
  font-size: .875rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

.label-optional {
  font-size: .8rem;
  font-weight: 400;
  color: #888;
  margin-left: 4px;
}
