/* ==========================================================
   TINNITUS MASKER — v2 (Screenshot-matched style)
   ========================================================== */

:root {
  --orange:       #F97316;
  --orange-hover: #EA6C0A;
  --orange-light: #FFF4ED;
  --orange-mid:   #FED7AA;
  --white:        #FFFFFF;
  --bg:           #FAFAFA;
  --dark:         #111111;
  --dark2:        #222222;
  --body-text:    #444444;
  --muted:        #777777;
  --border:       #E8E8E8;

  --sh-sm: 0 2px 12px rgba(0,0,0,0.07);
  --sh-md: 0 6px 28px rgba(0,0,0,0.10);
  --sh-lg: 0 16px 56px rgba(0,0,0,0.14);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-pill: 100px;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --dur: 0.22s;
}

/* ----------------------------------------------------------
   BASE
   ---------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--body-text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { color: var(--dark); line-height: 1.15; }
p { margin: 0; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; }
.text-orange { color: var(--orange) !important; }

/* ----------------------------------------------------------
   NAV
   ---------------------------------------------------------- */

#mainNav {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  padding: 14px 0;
  transition: box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
#mainNav.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  border-color: var(--border);
}

/* Logo */
.brand-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  object-fit: cover;
}
.brand-icon--sm { width: 32px; height: 32px; border-radius: 8px; }

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-text--footer .brand-line1,
.brand-text--footer .brand-line2 { color: var(--orange); }

.brand-line1 {
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--orange);
}
.brand-line2 {
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--orange);
}

.navbar-nav .nav-link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--dark2);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--orange); }

.nav-burotec { color: var(--muted) !important; font-size: 0.875rem !important; }
.nav-burotec:hover { color: var(--orange) !important; }

.navbar-toggler { border: none; }
.navbar-toggler:focus { box-shadow: 0 0 0 3px var(--orange-mid); outline: none; }

/* ----------------------------------------------------------
   HERO
   ---------------------------------------------------------- */

.hero-section {
  background: var(--white);
  padding: 68px 0 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-row {
  padding: 48px 0 56px;
}

.hero-left { padding-right: 48px; }

.hero-headline {
  font-size: clamp(2.75rem, 6vw, 4.75rem);
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 28px;
}

.hero-body {
  font-size: 1.1rem;
  color: var(--body-text);
  max-width: 420px;
  margin-bottom: 40px;
  line-height: 1.75;
}

/* Buttons */
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.btn-appstore {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--dark);
  color: var(--white);
  padding: 13px 20px;
  border-radius: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-decoration: none;
  box-shadow: var(--sh-sm);
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.btn-appstore:hover { background: #2A2A2A; color: var(--white); transform: translateY(-1px); }
.btn-appstore i { font-size: 1.5rem; }

.btn-store-text { display: flex; flex-direction: column; line-height: 1.2; }
.btn-store-text small { font-size: 0.65rem; opacity: 0.75; }
.btn-store-text strong { font-size: 0.95rem; font-weight: 700; }
.btn-store-text--sm small { font-size: 0.6rem; opacity: 0.85; }
.btn-store-text--sm strong { font-size: 0.875rem; }

.btn-demo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--dark);
  padding: 13px 20px;
  border: 2px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  text-decoration: none;
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.btn-demo:hover { border-color: var(--orange); color: var(--orange); }
.btn-demo i { color: var(--orange); font-size: 1.2rem; }

/* Hero social proof bar */
.hero-proof-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 40px;
  font-size: 0.82rem;
}
.hero-proof-stars {
  color: #F59E0B;
  letter-spacing: 1px;
  flex-shrink: 0;
}
.hero-proof-quote {
  color: var(--body-text);
  font-style: italic;
}
.hero-proof-divider {
  color: var(--muted);
}
.hero-proof-byline {
  color: var(--muted);
  font-style: italic;
}

/* Hero social links */
.hero-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}

.hero-social-link {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  text-decoration: none;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.hero-social-link:hover { background: var(--orange); color: var(--white); transform: translateY(-3px); }

/* Trust indicators */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--dark2);
  line-height: 1.35;
}

.trust-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--orange);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  font-size: 1rem;
}

/* Hero image */
.hero-right { padding: 0; }

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px 0 0 20px;
  min-height: 580px;
}

/* ----------------------------------------------------------
   WHAT ARE YOU LOOKING FOR
   ---------------------------------------------------------- */

.section-looking { background: var(--bg); }

.looking-sub {
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  margin: 8px 0 40px;
}

.looking-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 720px;
  margin: 0 auto 36px;
}

.looking-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 28px 16px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--r-lg);
  cursor: pointer;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.looking-card:hover {
  border-color: var(--orange-mid);
  transform: translateY(-2px);
  box-shadow: var(--sh-sm);
}
.looking-card--active {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.15);
}

.looking-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--orange-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--orange);
  transition: background var(--dur) var(--ease);
}
.looking-card--active .looking-icon {
  background: var(--orange);
  color: var(--white);
}

.looking-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--dark2);
  text-align: center;
  line-height: 1.3;
}

.looking-result {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  border: 1px solid var(--border);
  min-height: 110px;
}

.looking-result-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}

.looking-result-body {
  font-size: 0.9375rem;
  color: var(--body-text);
  line-height: 1.75;
  margin: 0 0 20px;
}

.looking-cta {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: var(--r-pill);
  text-decoration: none;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.looking-cta:hover { background: var(--orange-hover); color: var(--white); transform: translateY(-1px); }

@media (max-width: 575.98px) {
  .looking-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .looking-card { padding: 20px 12px; gap: 10px; }
  .looking-icon { width: 48px; height: 48px; font-size: 1.25rem; }
  .looking-result { padding: 20px; }
}

/* ----------------------------------------------------------
   YOU'RE NOT ALONE
   ---------------------------------------------------------- */

.section-alone { background: var(--white); overflow: hidden; }

.alone-text-col {
  padding: 80px 64px 80px 40px;
}
.alone-text-inner { max-width: 480px; }

.alone-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.alone-body {
  font-size: 1rem;
  color: var(--body-text);
  margin-bottom: 14px;
  line-height: 1.75;
}

.alone-highlight {
  font-size: 1rem;
  color: var(--orange);
  font-weight: 700;
  line-height: 1.65;
  margin-top: 8px;
}

.alone-img-col { overflow: hidden; min-height: 420px; }
.alone-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 420px;
  border-radius: 20px 0 0 20px;
}

/* ----------------------------------------------------------
   SHARED SECTION STYLES
   ---------------------------------------------------------- */

section { padding: 88px 0; }
.section-center-heading {
  text-align: center;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0;
}

/* ----------------------------------------------------------
   FEATURES
   ---------------------------------------------------------- */

.section-features { background: var(--white); }

.feat-icon-circle {
  width: 64px; height: 64px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.625rem;
  color: var(--white);
  margin: 0 auto 20px;
}

.feat-title {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}
.feat-body { font-size: 0.9375rem; color: var(--body-text); line-height: 1.7; margin: 0; }

/* ----------------------------------------------------------
   SCREENSHOTS
   ---------------------------------------------------------- */

.section-screenshots { background: var(--bg); }

.demo-modal-content {
  background: #000;
  border: none;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
}

.demo-modal-close {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 10;
  background: rgba(0,0,0,0.6);
  border: none;
  color: #fff;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: background var(--dur) var(--ease);
}
.demo-modal-close:hover { background: rgba(0,0,0,0.9); }

.video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.screenshots-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.ss-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.ss-img {
  width: 150px;
  border-radius: 24px;
  box-shadow: var(--sh-lg);
  display: block;
  transition: transform var(--dur) var(--ease);
}
.ss-img:hover { transform: translateY(-5px); }

.ss-caption {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  text-align: center;
  margin: 0;
}

/* ----------------------------------------------------------
   SOUNDS
   ---------------------------------------------------------- */

.section-sounds { background: var(--white); }

.sounds-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 40px;
  max-width: 860px;
  margin: 0 auto;
}

.sound-cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: default;
}
.sound-cat i {
  font-size: 1.75rem;
  color: var(--orange);
  transition: transform var(--dur) var(--ease);
}
.sound-cat:hover i { transform: scale(1.15); }
.sound-cat span {
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--dark2);
  text-align: center;
}

.sounds-note {
  text-align: center;
  margin-top: 28px;
  font-size: 0.9rem;
  color: var(--muted);
}

/* ----------------------------------------------------------
   TESTIMONIALS
   ---------------------------------------------------------- */

.section-testimonials { background: var(--bg); }

.t-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 28px;
  border: 1px solid var(--border);
  position: relative;
}

.t-quote-mark {
  font-family: Georgia, serif;
  font-size: 3.5rem;
  color: var(--orange);
  line-height: 0.8;
  margin-bottom: 8px;
  display: block;
}

.t-top {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.t-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  background: #eee;
  flex-shrink: 0;
}

.t-quote {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--body-text);
  margin-bottom: 8px;
}

.t-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--dark2);
  margin: 0;
}

.t-stars { color: #F59E0B; font-size: 0.875rem; display: flex; gap: 2px; }

/* ----------------------------------------------------------
   WHY CHOOSE
   ---------------------------------------------------------- */

.section-why { background: var(--white); }

.why-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 48px;
  max-width: 900px;
  margin: 0 auto;
}

.why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  width: 140px;
}

.why-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.375rem;
  color: var(--orange);
}

.why-label {
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--dark2);
  line-height: 1.4;
  margin: 0;
}

/* ----------------------------------------------------------
   FAQ
   ---------------------------------------------------------- */

.section-faq { background: var(--bg); }

.faq-two-col { gap: 0; }

.faq-accordion { display: flex; flex-direction: column; }

.faq-item {
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid var(--border) !important;
  border-radius: 0 !important;
}

.faq-btn {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--dark);
  background: transparent;
  padding: 18px 16px 18px 0;
  box-shadow: none !important;
}
.faq-btn:not(.collapsed) { color: var(--orange); background: transparent; }

.faq-btn::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23444'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.faq-btn:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23F97316'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-body {
  font-size: 0.9rem;
  color: var(--body-text);
  line-height: 1.75;
  padding: 0 0 16px;
}

/* Padding between columns on desktop */
@media (min-width: 992px) {
  #faqLeft { padding-right: 40px; border-right: 1px solid var(--border); }
  #faqRight { padding-left: 40px; }
}

/* ----------------------------------------------------------
   NEWSLETTER
   ---------------------------------------------------------- */

.section-newsletter { background: var(--dark); }

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.newsletter-text { flex: 1; min-width: 240px; }

.newsletter-heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.newsletter-body {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin: 0;
}

.newsletter-form { flex: 1; min-width: 280px; max-width: 440px; }

.newsletter-field {
  display: flex;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-md);
}

.newsletter-input {
  flex: 1;
  border: none;
  padding: 14px 18px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9375rem;
  color: var(--dark);
  background: var(--white);
  outline: none;
  min-width: 0;
}
.newsletter-input::placeholder { color: var(--muted); }
.newsletter-input:focus { background: #FEFEFE; }

.newsletter-btn {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 14px 22px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--dur) var(--ease);
  flex-shrink: 0;
}
.newsletter-btn:hover { background: var(--orange-hover); }

.newsletter-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin: 10px 0 0;
  text-align: right;
}

.newsletter-success {
  flex: 1;
  min-width: 280px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}
.newsletter-success i { font-size: 1.5rem; color: #2ECC87; }

@media (max-width: 767.98px) {
  .newsletter-inner { flex-direction: column; text-align: center; }
  .newsletter-form { width: 100%; max-width: 100%; }
  .newsletter-note { text-align: center; }
  .newsletter-success { justify-content: center; }
}

/* ----------------------------------------------------------
   FINAL CTA
   ---------------------------------------------------------- */

.section-cta {
  background: var(--orange);
  padding: 64px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-heading {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 480px;
  line-height: 1.2;
}

.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.btn-store-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--dark);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.btn-store-dark:hover { background: #2A2A2A; color: var(--white); transform: translateY(-1px); }
.btn-store-dark i { font-size: 1.5rem; }

/* ----------------------------------------------------------
   FOOTER
   ---------------------------------------------------------- */

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

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

.footer-links { display: flex; flex-wrap: wrap; gap: 6px 20px; align-items: center; }
.footer-link { font-size: 0.875rem; font-weight: 600; color: var(--muted); transition: color var(--dur) var(--ease); }
.footer-link:hover { color: var(--orange); }
.footer-link--brand { color: var(--orange); }

.footer-social {
  display: flex;
  gap: 16px;
  justify-content: center;
  padding: 16px 0 8px;
  border-top: 1px solid var(--border);
  margin-top: 16px;
}
.footer-social-link {
  font-size: 1.5rem;
  color: var(--dark2);
  transition: color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.footer-social-link:hover { color: var(--orange); transform: translateY(-2px); }

.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.6;
  margin: 12px 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

/* ----------------------------------------------------------
   SCROLL FADE-IN
   ---------------------------------------------------------- */

.fade-ready { opacity: 0; transform: translateY(18px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
.fade-in { opacity: 1; transform: translateY(0); }

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

@media (max-width: 991.98px) {
  section { padding: 56px 0; }

  .hero-section { text-align: center; padding-top: 68px; }
  .hero-left { padding-right: 0; }
  .hero-body { margin: 0 auto 28px; }
  .hero-btns { justify-content: center; }
  .hero-social { justify-content: center; }
  .trust-row { justify-content: center; }

  .alone-text-col { padding: 40px 24px; }
  .alone-text-inner { max-width: 100%; }
  .alone-img-col { min-height: 300px; }
  .alone-img { min-height: 300px; }

  .cta-inner { flex-direction: column; text-align: center; }
  .cta-btns { justify-content: center; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 767.98px) {
  section { padding: 48px 0; }

  .hero-img { min-height: 280px; border-radius: 0; }
  .hero-row { padding-bottom: 0; }
  .hero-left { padding-bottom: 28px; }

  .screenshots-row {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 0 20px 12px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }
  .ss-item { flex-shrink: 0; scroll-snap-align: start; }

  .sounds-grid { gap: 16px 24px; }
}

@media (max-width: 575.98px) {
  section { padding: 36px 0; }
  .alone-text-col { padding: 32px 20px; }

  .hero-headline { font-size: 2.4rem; }
  .hero-body { margin-bottom: 20px; }
  .hero-btns { gap: 8px; margin-bottom: 24px; justify-content: center; }
  .btn-appstore, .btn-demo { padding: 11px 18px; }

  /* Trust: 2x2 grid */
  .trust-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 10px;
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
  }
  .trust-item { align-items: center; }
}

/* ----------------------------------------------------------
   ACCESSIBILITY
   ---------------------------------------------------------- */

:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 4px; }

/* ----------------------------------------------------------
   BLOG — LISTING PAGE
   ---------------------------------------------------------- */

.blog-main { padding-top: 80px; }

.blog-hero-strip {
  background: var(--dark);
  color: var(--white);
  padding: 64px 0 56px;
  text-align: center;
}
.blog-hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.blog-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

.blog-listing { padding: 64px 0 80px; }

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  text-decoration: none;
  color: inherit;
  height: 100%;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.blog-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
  border-color: var(--orange-mid);
  color: inherit;
}
.blog-card-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
}
.blog-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin: 0;
}
.blog-card-excerpt {
  font-size: 0.9rem;
  color: var(--body-text);
  line-height: 1.6;
  flex-grow: 1;
}
.blog-card-meta {
  display: flex;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

/* ----------------------------------------------------------
   BLOG — ARTICLE PAGE
   ---------------------------------------------------------- */

.article-main {
  padding-top: 80px;
  padding-bottom: 80px;
}

.article-wrap {
  max-width: 740px;
  margin: 0 auto;
  padding: 48px 0 0;
}

.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 32px;
}
.article-breadcrumb a { color: var(--muted); text-decoration: none; }
.article-breadcrumb a:hover { color: var(--orange); }

.article-header { margin-bottom: 40px; }

.article-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 14px;
}

.article-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.article-meta {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.82rem;
  color: var(--muted);
}

.article-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--body-text);
}
.article-body p { margin-bottom: 1.4em; }
.article-body h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  margin: 2em 0 0.6em;
}
.article-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 1.6em 0 0.5em;
}
.article-body ul, .article-body ol {
  padding-left: 1.4em;
  margin-bottom: 1.4em;
}
.article-body li { margin-bottom: 0.4em; }

.article-lead {
  font-size: 1.15rem;
  color: var(--dark2);
  font-weight: 500;
  line-height: 1.75;
}

/* In-article CTA box */
.article-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--orange-light);
  border: 1px solid var(--orange-mid);
  border-radius: var(--r-md);
  padding: 24px 28px;
  margin: 2.5em 0;
}
.article-cta-text {
  font-size: 0.9rem;
  color: var(--dark2);
  line-height: 1.55;
}
.article-cta-btn {
  flex-shrink: 0;
  background: var(--orange);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: var(--r-pill);
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--dur) var(--ease);
}
.article-cta-btn:hover { background: var(--orange-hover); color: var(--white); }

/* End CTA */
.article-end-cta {
  background: var(--dark);
  color: var(--white);
  border-radius: var(--r-lg);
  padding: 48px 40px;
  text-align: center;
  margin: 56px 0 40px;
}
.article-end-cta h3 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.article-end-cta p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  margin-bottom: 28px;
}
.article-end-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Back link */
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}
.article-back:hover { color: var(--orange); }

@media (max-width: 767.98px) {
  .article-wrap { padding: 32px 0 0; }
  .article-cta-box { flex-direction: column; align-items: flex-start; }
  .article-end-cta { padding: 36px 24px; }
}

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