/* === Bahsegel Mobil — Light Newspaper === */
/* Palette: white #f5f9f9 + teal #00b5bd + orange #f5a31a */

*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  margin: 0;
  font-family: 'Source Serif 4','Source Serif Pro', Georgia, 'Times New Roman', serif;
  font-size: 17px;
  line-height: 1.55;
  color: #0d2426;
  background: #f5f9f9;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  max-width: 100vw;
}

.tbl-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 20px 0;
  border: 1px solid #c5dfe0;
  background: #ffffff;
}
.tbl-scroll .cmp-table { margin: 0; min-width: 500px; border: 0; }
img { max-width: 100%; height: auto; display: block; }
a { color: #008a91; text-decoration: underline; text-decoration-color: rgba(0,138,145,0.4); text-underline-offset: 3px; }
a:hover { color: #f5a31a; }

:root {
  --bg-light:     #f5f9f9;
  --bg-card:      #ffffff;
  --bg-card-alt:  #e8f5f5;
  --teal:         #00b5bd;
  --teal-dim:     #0097a0;
  --teal-dark:    #007e86;
  --gold:         #f5a31a;
  --gold-dim:     #d48a10;
  --ink:          #0d2426;
  --ink-soft:     #2a4a4c;
  --muted:        #6e8c8e;
  --rule:         #c5dfe0;
  --navy:         #0d2426;
  /* Legacy compat */
  --salmon:       #f5f9f9;
  --salmon-dim:   #e8f5f5;
  --cream:        #eef7f7;
  --red:          #f5a31a;
  --brass:        #0097a0;
}

/* === MASTHEAD === */
.mast {
  border-top: 3px solid #00b5bd;
  border-bottom: 1px solid #c5dfe0;
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,181,189,0.08);
}
.mast-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
}
.mast-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.mast-logo img {
  width: auto;
  height: 40px;
  max-width: 160px;
  border-radius: 0;
  display: block;
  object-fit: contain;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: none;
}
.mast-logo:hover img {
  opacity: 0.8;
  transform: scale(1.02);
  box-shadow: none;
}
.mast-date {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  color: #6e8c8e;
  text-transform: uppercase;
  letter-spacing: 1px;
  justify-self: center;
}
.mast-cta {
  background: linear-gradient(135deg, #00b5bd 0%, #0097a0 50%, #f5a31a 100%);
  background-size: 200% 200%;
  background-position: 0% 50%;
  color: #ffffff;
  text-decoration: none;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 13px;
  padding: 10px 20px;
  border-radius: 999px;
  letter-spacing: 0.4px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background-position 0.3s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 3px 12px rgba(0,181,189,0.3);
}
.mast-cta:hover {
  background-position: 100% 50%;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245,163,26,0.4);
  color: #ffffff;
}
.mast-cta-icon {
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}

/* === NAV === */
.nav {
  background: #eef7f7;
  border-bottom: 1px solid #c5dfe0;
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 6px 18px;
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}
.nav-inner::-webkit-scrollbar { display: none; }
.ni {
  font-style: normal;
  font-size: 14px;
  line-height: 1;
  flex-shrink: 0;
}
.nav a {
  color: #2a6669;
  text-decoration: none;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.2px;
  padding: 7px 13px;
  white-space: nowrap;
  border-radius: 999px;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.18s ease, color 0.18s ease;
  border: 1px solid transparent;
}
.nav a:hover {
  background: rgba(0,181,189,0.1);
  color: #00b5bd;
  border-color: rgba(0,181,189,0.25);
}
.nav a.active {
  background: #00b5bd;
  color: #ffffff;
  border-color: #00b5bd;
}
.nav a.nav-dl {
  background: rgba(245,163,26,0.1);
  color: #b87800;
  border-color: rgba(245,163,26,0.35);
  font-weight: 600;
}
.nav a.nav-dl:hover {
  background: #f5a31a;
  color: #ffffff;
  border-color: #f5a31a;
}

/* === BURGER === */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 40px;
  height: 40px;
  background: rgba(0,181,189,0.08);
  border: 1px solid rgba(0,181,189,0.3);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
}
.burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: #00b5bd;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* === HERO === */
.hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 18px 20px;
  border-bottom: 1px solid #c5dfe0;
}
.kicker {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #00b5bd;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.hero h1 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 900;
  font-size: clamp(34px, 7.5vw, 72px);
  line-height: 1.02;
  color: #0d2426;
  margin: 0 0 16px;
  letter-spacing: -0.5px;
}
.hero-standfirst {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 400;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.45;
  color: #2a4a4c;
  max-width: 780px;
  margin: 0 0 22px;
}
.byline {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  color: #6e8c8e;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding-top: 14px;
  border-top: 1px solid #c5dfe0;
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.byline b { color: #00b5bd; font-weight: 700; }

.hero-art {
  margin: 20px 0;
  border: 1px solid #c5dfe0;
}
.hero-art img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.hero-art figcaption {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  color: #6e8c8e;
  padding: 10px 14px;
  border-top: 1px solid #c5dfe0;
  font-style: italic;
  background: #eef7f7;
}

/* === LAYOUT WRAP === */
.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 18px 60px;
}
.lead-section {
  border-top: 4px solid #00b5bd;
  padding-top: 22px;
  margin-bottom: 32px;
}
.lead-section > h2 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 900;
  font-size: clamp(28px, 4.5vw, 44px);
  color: #0d2426;
  line-height: 1.1;
  margin: 0 0 10px;
  letter-spacing: -0.3px;
}
.lead-section > .deck {
  font-family: 'Source Serif 4', Georgia, serif;
  font-style: italic;
  font-size: clamp(17px, 2vw, 20px);
  color: #6e8c8e;
  max-width: 820px;
  margin: 0 0 22px;
  line-height: 1.5;
}

/* Drop cap */
.dropcap::first-letter {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 900;
  font-size: 4em;
  float: left;
  line-height: 0.85;
  padding: 6px 10px 0 0;
  color: #f5a31a;
}

/* === News body === */
.newsbody {
  column-count: 1;
  column-gap: 30px;
}
.newsbody p {
  margin: 0 0 14px;
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
  color: #0d2426;
}
.newsbody h3 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 700;
  font-size: 20px;
  color: #00828a;
  margin: 22px 0 8px;
  break-after: avoid;
}
.newsbody ul, .newsbody ol { padding-left: 22px; margin: 0 0 14px; }
.newsbody li { margin-bottom: 6px; color: #0d2426; }
.newsbody blockquote {
  border-left: 4px solid #00b5bd;
  padding: 4px 0 4px 16px;
  font-family: 'Source Serif 4', Georgia, serif;
  font-style: italic;
  font-size: 19px;
  color: #0d2426;
  margin: 14px 0;
  background: #eef7f7;
  break-inside: avoid;
}

/* === PROBLEM/SOLUTION cards === */
.pc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin: 24px 0;
}
.pc-card {
  background: #ffffff;
  border: 1px solid #c5dfe0;
  padding: 22px 20px;
  position: relative;
}
.pc-card.problem { border-top: 4px solid #f5a31a; }
.pc-card.solution { border-top: 4px solid #00b5bd; background: #f0fbfb; }
.pc-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.pc-card.problem .pc-label { color: #f5a31a; }
.pc-card.solution .pc-label { color: #00b5bd; }
.pc-card h3 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 900;
  font-size: 22px;
  color: #0d2426;
  margin: 0 0 10px;
  line-height: 1.15;
}
.pc-card p { margin: 0 0 8px; color: #2a4a4c; font-size: 16px; line-height: 1.55; }
.pc-metric {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 900;
  font-size: 32px;
  color: #f5a31a;
  line-height: 1;
  margin: 8px 0 4px;
}
.pc-card.solution .pc-metric { color: #00b5bd; }
.pc-metric-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  color: #6e8c8e;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* === KPI row === */
.kpi-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 2px solid #00b5bd;
  border-bottom: 2px solid #00b5bd;
  margin: 24px 0;
  background: #ffffff;
}
.kpi {
  padding: 18px 16px;
  border-right: 1px solid #c5dfe0;
  border-bottom: 1px solid #c5dfe0;
  text-align: center;
}
.kpi:last-child { border-right: 0; }
.kpi-num {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 900;
  font-size: clamp(32px, 6vw, 48px);
  color: #00b5bd;
  line-height: 1;
  display: block;
}
.kpi-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  color: #6e8c8e;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-top: 8px;
  display: block;
}

/* === Comparison table === */
.cmp-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  background: #ffffff;
  border: 1px solid #c5dfe0;
}
.cmp-table thead th {
  background: #00b5bd;
  color: #ffffff;
  padding: 12px 14px;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.3px;
}
.cmp-table tbody td, .cmp-table tbody th {
  padding: 12px 14px;
  border-bottom: 1px solid #c5dfe0;
  vertical-align: top;
  color: #0d2426;
}
.cmp-table tbody tr:nth-child(even) { background: #e8f5f5; }
.cmp-table tbody th {
  text-align: left;
  font-weight: 600;
  color: #007e86;
  background: #f5f9f9;
  width: 34%;
}
.cmp-check { color: #00b5bd; font-weight: 700; }
.cmp-x { color: #f5a31a; font-weight: 700; }

/* === Pull quote === */
.pullquote {
  font-family: 'Source Serif 4', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 3vw, 30px);
  color: #0d2426;
  line-height: 1.25;
  border-top: 2px solid #00b5bd;
  border-bottom: 2px solid #00b5bd;
  padding: 22px 0;
  margin: 28px auto;
  text-align: center;
  max-width: 860px;
}
.pullquote-attr {
  display: block;
  font-family: 'Inter', system-ui, sans-serif;
  font-style: normal;
  font-size: 12px;
  color: #6e8c8e;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 12px;
}

/* === App info card === */
.app-card {
  background: #ffffff;
  border: 1px solid #c5dfe0;
  padding: 22px;
  margin: 18px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.app-card-head {
  display: flex;
  gap: 14px;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid #c5dfe0;
}
.app-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: #eef7f7;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #c5dfe0;
}
.app-icon img { width: 42px; height: 42px; }
.app-title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 900;
  font-size: 22px;
  color: #0d2426;
  margin: 0;
  line-height: 1.1;
}
.app-subtitle {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  color: #6e8c8e;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 3px;
}
.app-spec {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 14px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
}
.app-spec dt { color: #6e8c8e; text-transform: uppercase; letter-spacing: 0.6px; font-size: 11px; }
.app-spec dd { margin: 2px 0 0; color: #00b5bd; font-weight: 600; }
.app-rating {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 12px 0;
  border-top: 1px dashed #c5dfe0;
  font-family: 'Inter', system-ui, sans-serif;
}
.rating-big {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 32px;
  font-weight: 900;
  color: #f5a31a;
  line-height: 1;
}
.rating-stars { font-size: 16px; color: #f5a31a; letter-spacing: 3px; }
.rating-meta { font-size: 12px; color: #6e8c8e; }

/* === Step list === */
.step-list { counter-reset: step; padding: 0; list-style: none; margin: 20px 0; }
.step-list li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  margin-bottom: 18px;
  padding: 14px;
  background: #ffffff;
  border: 1px solid #c5dfe0;
  border-left: 4px solid #f5a31a;
}
.step-list li::before {
  content: counter(step, decimal-leading-zero);
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 900;
  font-size: 28px;
  color: #f5a31a;
  line-height: 1;
  padding-top: 2px;
}
.step-list h4 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 700;
  font-size: 18px;
  color: #0d2426;
  margin: 0 0 6px;
}
.step-list p { margin: 0; color: #2a4a4c; font-size: 15px; line-height: 1.5; }

/* === FAQ === */
.faq { border-top: 2px solid #00b5bd; margin-top: 30px; }
.faq-item { border-bottom: 1px solid #c5dfe0; }
.faq-q {
  padding: 18px 50px 18px 0;
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 700;
  font-size: 18px;
  color: #0d2426;
  cursor: pointer;
  position: relative;
  list-style: none;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: #f5a31a;
  font-family: Georgia, serif;
  font-weight: 400;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-item[open] .faq-q::after { content: "−"; }
.faq-item[open] .faq-q { color: #00b5bd; }
.faq-a { padding: 0 0 18px; color: #2a4a4c; font-size: 16px; line-height: 1.6; }
.faq-a p { margin: 0 0 10px; }
.faq-a p:last-child { margin-bottom: 0; }

/* === Gallery grid === */
.gal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 20px 0;
}
.gal-item { background: #ffffff; border: 1px solid #c5dfe0; }
.gal-item img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.gal-item figcaption {
  padding: 10px 12px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  color: #6e8c8e;
  font-style: italic;
  border-top: 1px solid #c5dfe0;
  background: #f5f9f9;
}

/* Emoji gallery cards */
.gal-emoji-item {
  border: 1px solid #c5dfe0;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.gal-emoji-wrap {
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: radial-gradient(ellipse at 50% 40%, rgba(0,181,189,0.06) 0%, transparent 70%), #eef7f7;
  position: relative;
  overflow: hidden;
}
.gal-emoji-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%,
    color-mix(in srgb, var(--ec, #00b5bd) 12%, transparent) 0%,
    transparent 70%);
  animation: gal-pulse 3s ease-in-out infinite;
}
.gal-emoji-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 35%;
  background: linear-gradient(to top, rgba(238,247,247,0.9), transparent);
}
@keyframes gal-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.08); }
}
.gal-emoji {
  font-size: clamp(52px, 10vw, 80px);
  line-height: 1;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 14px var(--ec, #00b5bd))
          drop-shadow(0 0 28px color-mix(in srgb, var(--ec, #00b5bd) 40%, transparent));
  animation: gal-float 4s ease-in-out infinite;
}
@keyframes gal-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}
.gal-emoji-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ec, #00b5bd);
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.75);
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--ec, #00b5bd) 35%, transparent);
}

/* === Score panel === */
.score-panel {
  background: #ffffff;
  border: 1px solid #c5dfe0;
  padding: 22px 20px;
  margin: 22px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.score-big {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 900;
  font-size: clamp(60px, 14vw, 96px);
  color: #00b5bd;
  line-height: 0.9;
  letter-spacing: -2px;
}
.score-big small {
  font-size: 0.38em;
  color: #6e8c8e;
  font-weight: 400;
}
.score-tag {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  color: #00b5bd;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 4px;
  display: block;
}
.score-bars { display: grid; gap: 10px; }
.score-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  color: #0d2426;
}
.score-row b { font-weight: 600; }
.bar-track { grid-column: 1/-1; height: 6px; background: #c5dfe0; border-radius: 0; overflow: hidden; }
.bar-fill { height: 100%; background: linear-gradient(90deg, #00b5bd, #f5a31a); }
.score-review {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  color: #6e8c8e;
  line-height: 1.6;
  margin: 12px 0 0;
  padding-top: 12px;
  border-top: 1px solid #c5dfe0;
  grid-column: 1 / -1;
}

/* === Download box === */
.dl-box {
  background: #004a50;
  color: #fff;
  padding: 26px 22px;
  margin: 28px 0;
  border-left: 6px solid #00b5bd;
}
.dl-box h3 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 900;
  font-size: 26px;
  margin: 0 0 8px;
  color: #fff;
}
.dl-box p { font-size: 15px; color: rgba(255,255,255,0.85); margin: 0 0 16px; }
.dl-btn-row { display: flex; gap: 10px; flex-wrap: wrap; }
.dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: #00b5bd;
  color: #ffffff;
  text-decoration: none;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 14px;
  border-radius: 2px;
  min-height: 44px;
}
.dl-btn:hover { background: #f5a31a; color: #ffffff; }
.dl-btn .ico { font-size: 20px; font-weight: 900; }

/* === CTA strip === */
.cta-strip {
  background: #00b5bd;
  color: #ffffff;
  padding: 28px 22px;
  margin: 28px 0;
  text-align: center;
  border-top: 4px solid #007e86;
  border-bottom: 4px solid #007e86;
}
.cta-strip h3 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 900;
  font-size: clamp(22px, 3.5vw, 30px);
  color: #ffffff;
  margin: 0 0 8px;
}
.cta-strip p { color: rgba(255,255,255,0.9); margin: 0 0 16px; font-size: 16px; }
.cta-strip a {
  display: inline-block;
  background: #f5a31a;
  color: #ffffff;
  padding: 14px 28px;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border-radius: 2px;
  min-height: 44px;
  letter-spacing: 0.5px;
}
.cta-strip a:hover { background: #d48a10; color: #ffffff; }

/* === Footer === */
.foot {
  background: #005a5f;
  color: #e0f4f5;
  padding: 36px 18px 18px;
  border-top: 6px double #f5a31a;
}
.foot-inner { max-width: 1280px; margin: 0 auto; }
.foot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.foot h4 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #7de8ec;
  margin: 0 0 10px;
}
.foot ul { list-style: none; padding: 0; margin: 0; }
.foot li { margin-bottom: 8px; }
.foot a { color: rgba(224,244,245,0.75); font-size: 14px; text-decoration: none; }
.foot a:hover { color: #fff; text-decoration: underline; }
.foot-badges { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-top: 8px; }
.foot-badge {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  padding: 6px 10px;
  border: 1px solid rgba(125,232,236,0.4);
  color: #7de8ec;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.foot-bot {
  padding-top: 18px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  color: rgba(224,244,245,0.5);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* === FAB === */
.fab {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: linear-gradient(135deg, #f5a31a, #d48a10);
  color: #ffffff;
  padding: 13px 22px;
  border-radius: 999px;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 20px rgba(245,163,26,0.45), 0 0 0 2px rgba(245,163,26,0.2);
  z-index: 80;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.fab:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 28px rgba(245,163,26,0.6);
  color: #ffffff;
}

/* === Cookie consent === */
.cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #004a50;
  color: #fff;
  padding: 16px 18px;
  display: none;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  z-index: 100;
  border-top: 3px solid #f5a31a;
  font-size: 14px;
}
.cookie.show { display: grid; }
.cookie button {
  background: #00b5bd;
  color: #ffffff;
  border: 0;
  padding: 10px 18px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  border-radius: 2px;
  min-height: 44px;
  font-family: 'Inter', system-ui, sans-serif;
}

/* === Back-to-top === */
.totop {
  position: fixed;
  right: 14px;
  bottom: 80px;
  width: 42px;
  height: 42px;
  background: #00b5bd;
  color: #ffffff;
  display: none;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  border-radius: 2px;
  z-index: 70;
  font-family: 'Inter', system-ui, sans-serif;
}
.totop.show { display: flex; }

/* === Mobile table responsive === */
@media (max-width: 767px) {
  .cmp-table { font-size: 12px; }
  .cmp-table thead th,
  .cmp-table tbody td,
  .cmp-table tbody th {
    padding: 9px 7px;
    word-break: break-word;
    overflow-wrap: anywhere;
    hyphens: auto;
  }
  .cmp-table tbody th { width: 34%; font-size: 12px; }
  .newsbody blockquote { font-size: 16px; padding: 4px 0 4px 12px; }
  .hero-art img { aspect-ratio: 4/3; }
  .newsbody p { hyphens: auto; -webkit-hyphens: auto; }
}

/* === Mobile header button === */
.mast-mob-btn {
  display: none;
  background: #f5a31a;
  color: #fff;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 22px;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.mast-mob-btn:hover { background: #d48a10; color: #fff; }

/* === Nav mobile === */
@media (max-width: 767px) {
  .mast-inner { grid-template-columns: auto 1fr auto auto; }
  .mast-date { display: none; }
  .mast-cta { display: none; }
  .mast-mob-btn { display: inline-flex; align-items: center; justify-self: end; }
  .burger {
    display: inline-flex;
    justify-self: end;
  }
  .nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(245,249,249,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 200;
    padding: 70px 24px 24px;
    overflow-y: auto;
  }
  .nav.open { display: block; }
  .nav-inner {
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    gap: 6px;
  }
  .nav a {
    padding: 14px 16px;
    font-size: 15px;
    border-radius: 10px;
    border: 1px solid #c5dfe0;
    background: #ffffff;
    color: #2a6669;
  }
  .nav a.active {
    background: #00b5bd;
    color: #ffffff;
    border-color: #00b5bd;
  }
  .nav a.nav-dl {
    background: rgba(245,163,26,0.08);
    border-color: rgba(245,163,26,0.3);
    margin-top: 4px;
  }
  .nav-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0,181,189,0.1);
    border: 1px solid rgba(0,181,189,0.3);
    color: #00b5bd;
    font-size: 22px;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (min-width: 768px) {
  body { font-size: 17px; }
  .burger { display: none !important; }
  .nav-close { display: none; }
  .pc-grid { grid-template-columns: repeat(2, 1fr); }
  .app-card { grid-template-columns: auto 1fr; align-items: start; }
  .app-card-head { flex-direction: column; align-items: start; border-bottom: 0; padding-right: 22px; border-right: 1px solid #c5dfe0; padding-bottom: 0; }
  .kpi-row { grid-template-columns: repeat(4, 1fr); }
  .gal-grid { grid-template-columns: repeat(3, 1fr); }
  .score-panel { grid-template-columns: 200px 1fr; align-items: start; }
  .score-review { grid-column: 1 / -1; }
  .foot-grid { grid-template-columns: repeat(4, 1fr); }
  .fab { display: none; }
}

@media (min-width: 1024px) {
  .newsbody { column-count: 2; }
  .pc-grid { grid-template-columns: repeat(3, 1fr); }
  .gal-grid { grid-template-columns: repeat(4, 1fr); }
  .mast-cta { font-size: 13px; padding: 12px 22px; }
}

@media (min-width: 1240px) {
  .newsbody.three-col { column-count: 3; }
}

/* === Hero Carousel === */
.hero-carousel { position: relative; overflow: hidden; border: 1px solid #c5dfe0; margin: 20px 0; }
.hc-track { position: relative; width: 100%; }
.hc-slide {
  display: none;
  width: 100%;
}
.hc-slide.hc-active { display: block; }
.hc-slide a { display: block; line-height: 0; }
.hc-slide img {
  width: 100%;
  height: 460px;
  display: block;
  object-fit: cover;
  object-position: center center;
}
.hc-slide.hc-fade-in  { animation: hc-in  0.45s ease both; }
.hc-slide.hc-fade-out { animation: hc-out 0.45s ease both; }
@keyframes hc-in  { from { opacity: 0; transform: scale(1.02); } to { opacity: 1; transform: scale(1); } }
@keyframes hc-out { from { opacity: 1; } to { opacity: 0; } }

.hc-controls {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.hc-prev, .hc-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #f5a31a;
  border: none;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s ease, transform 0.15s ease;
  z-index: 11;
  padding: 0;
}
.hc-prev { left: 14px; }
.hc-next { right: 14px; }
.hc-prev:hover { background: #d48a10; transform: translateY(-50%) scale(1.08); }
.hc-next:hover { background: #d48a10; transform: translateY(-50%) scale(1.08); }
.hc-dots { display: flex; gap: 7px; align-items: center; }
.hc-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.8);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.hc-dot.hc-dot-active {
  background: #00b5bd;
  border-color: #00b5bd;
  transform: scale(1.3);
}
.hero-carousel figcaption {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  color: #6e8c8e;
  padding: 10px 14px;
  border-top: 1px solid #c5dfe0;
  font-style: italic;
  background: #eef7f7;
}

@media (max-width: 767px) {
  .hc-slide img { height: 220px; }
  .hc-prev, .hc-next { width: 30px; height: 30px; font-size: 13px; }
}

/* === Print === */
@media print {
  .nav, .fab, .cookie, .totop, .mast-cta { display: none; }
  body { background: #fff; color: #000; }
}

/* === Prefers reduced motion === */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
