/* Main Navigation */
.navbar {
  background: var(--bg-page);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 20px;
}

.logo-group {
  display: flex;
  align-items: center;
}

.logo-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-ink);
  white-space: nowrap;
  text-decoration: none;
}

.logo-mark {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: block;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}

@media (min-width: 960px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  transition: color 0.15s ease;
  min-height: 44px;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--text-ink);
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-color);
  background: var(--bg-panel);
  padding: 2px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
}

.lang-btn {
  padding: 4px 8px;
  min-height: 28px;
  min-width: 30px;
  color: var(--text-secondary);
  border-radius: 3px;
  transition: all 0.15s ease;
}

.lang-btn.active {
  background: var(--border-dark);
  color: #fff;
}

/* Header Action Button */
.btn-header-tg {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 36px;
  padding: 0 14px;
  background: var(--border-dark);
  color: #fff;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: background 0.15s ease, transform 0.1s ease;
}

.btn-header-tg:hover {
  background: #33363B;
}

.btn-header-tg:active {
  transform: translateY(1px);
}

@media (max-width: 540px) {
  .btn-header-tg span {
    display: none;
  }
  .btn-header-tg {
    padding: 0 10px;
  }
}

/* Hero Section */
.hero-section {
  padding: 56px 0 64px;
  border-bottom: 1px solid var(--border-color);
}

@media (min-width: 992px) {
  .hero-section {
    padding: 72px 0 88px;
  }
}

.hero-wrap {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 920px;
}

/* Tablo Chronometer Banner */
.tablo-chronometer {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font-mono);
  background: var(--bg-panel);
  border-left: 4px solid var(--ochre);
  padding: 12px 18px;
  border-top: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  border-radius: 0 4px 4px 0;
  max-width: fit-content;
}

.chrono-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.chrono-time-old {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-secondary);
}

.chrono-text-old {
  font-size: 14px;
  color: var(--text-muted);
}

.chrono-time-new {
  font-size: 22px;
  font-weight: 700;
  color: var(--ochre);
}

.chrono-text-new {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-ink);
}

@media (max-width: 480px) {
  .chrono-row {
    gap: 8px;
  }
  .chrono-time-old {
    font-size: 16px;
  }
  .chrono-time-new {
    font-size: 18px;
  }
  .chrono-text-old, .chrono-text-new {
    font-size: 13px;
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--text-ink);
  max-width: 880px;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 52px;
  }
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 720px;
}

/* Hero Actions - In ONE Clean Row on Desktop, 2x2 on Mobile */
.hero-actions-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 4px;
}

@media (max-width: 680px) {
  .hero-actions-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
  }
  .btn-hero-store, .btn-hero-tg, .btn-hero-pricing {
    width: 100%;
    justify-content: center;
    padding: 0 10px;
  }
}

/* Standardized 48px Height Across All Hero Buttons */
.btn-hero-store {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 0 16px;
  background: var(--border-dark);
  color: #fff;
  border-radius: 4px;
  border: 1px solid var(--border-dark);
  text-decoration: none;
  box-sizing: border-box;
  transition: background 0.15s ease, opacity 0.15s ease;
}

.btn-hero-store:hover {
  background: #33363B;
}

.btn-hero-store svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}

.btn-hero-store-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: left;
}

.btn-hero-store-sub {
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #B0B0B0;
}

.btn-hero-store-main {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #FFFFFF;
}

.btn-hero-tg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 18px;
  background: var(--bg-panel);
  border: 1px solid var(--border-dark);
  color: var(--text-ink);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  box-sizing: border-box;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}

.btn-hero-tg:hover {
  background: #DFDCD3;
  color: var(--ochre);
}

.btn-hero-tg svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

.btn-hero-pricing {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 18px;
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-sizing: border-box;
  white-space: nowrap;
  transition: all 0.15s ease;
}

.btn-hero-pricing:hover {
  border-color: var(--border-dark);
  color: var(--text-ink);
  background: var(--bg-panel);
}

.hero-platform-note {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

/* Hero Telemetry Proof Strip */
.hero-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border-color);
  border: 1px solid var(--border-color);
  margin-top: 48px;
  border-radius: 4px;
  overflow: hidden;
}

@media (min-width: 600px) {
  .hero-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .hero-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

.strip-item {
  background: var(--bg-panel);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.strip-val {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-ink);
}

.strip-item:first-child .strip-val {
  color: var(--ochre);
}

.strip-lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
}

/* Sections Common Styles */
.section {
  padding: 72px 0;
  border-bottom: 1px solid var(--border-color);
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 780px;
  margin-bottom: 48px;
}

.section-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ochre);
}

.section-title {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1.18;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-ink);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 40px;
  }
}

.section-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Labels Section Grid */
.labels-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .labels-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.label-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  border-radius: 2px;
}

.label-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.label-card.card-green::before { background: var(--label-green); }
.label-card.card-yellow::before { background: var(--label-yellow); }
.label-card.card-red::before { background: var(--label-red); }

.card-badge-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
}

.status-badge.green {
  background: var(--label-green-bg);
  color: var(--label-green);
  border: 1px solid rgba(47, 107, 69, 0.3);
}

.status-badge.yellow {
  background: var(--label-yellow-bg);
  color: var(--label-yellow);
  border: 1px solid rgba(169, 103, 15, 0.3);
}

.status-badge.red {
  background: var(--label-red-bg);
  color: var(--label-red);
  border: 1px solid rgba(158, 59, 43, 0.3);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 1px;
}

.status-badge.green .status-dot { background: var(--label-green); }
.status-badge.yellow .status-dot { background: var(--label-yellow); }
.status-badge.red .status-dot { background: var(--label-red); }

.card-title {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-ink);
}

.card-body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  flex: 1;
}

.card-recommendation {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 12px;
  background: var(--bg-page);
  border: 1px solid var(--border-color);
  border-radius: 2px;
}

.card-green .card-recommendation { color: var(--label-green); }
.card-yellow .card-recommendation { color: var(--label-yellow); }
.card-red .card-recommendation { color: var(--label-red); }

/* Privacy Banner Law 133 */
.privacy-banner {
  margin-top: 32px;
  background: #E2DFD6;
  border: 1px solid var(--border-dark);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  border-radius: 2px;
}

@media (min-width: 768px) {
  .privacy-banner {
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 28px;
  }
}

.privacy-icon {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 700;
  width: 48px;
  height: 48px;
  background: var(--border-dark);
  color: var(--bg-page);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
}

.privacy-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.privacy-title {
  font-family: var(--font-display);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.privacy-text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
}

/* Market Metrics Section */
.metrics-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 600px) {
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .metrics-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.metric-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-radius: 2px;
}

.metric-value {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 600;
  line-height: 1;
  color: var(--text-ink);
}

.metric-value.accent {
  color: var(--ochre);
}

.metric-label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
}

.metric-desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-muted);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-item {
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: 2px;
}

.feature-number {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--ochre);
}

.feature-title {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}

.feature-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Pricing Section */
.pricing-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: var(--bg-panel);
  border: 1px solid var(--border-dark);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  overflow: hidden;
}

.pricing-header {
  padding: 36px 32px 28px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.pricing-num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 600;
  line-height: 1;
  color: var(--text-ink);
}

.pricing-period {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-secondary);
}

.pricing-tagline {
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-muted);
}

.pricing-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pricing-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.45;
}

.pricing-check {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--label-green);
  min-width: 18px;
}

.pricing-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  padding-top: 8px;
}

.pricing-buttons-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.pricing-help-link {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s ease;
}

.pricing-help-link:hover {
  color: var(--ochre);
}

/* FAQ Section */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 880px;
}

.faq-item {
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  overflow: hidden;
  border-radius: 2px;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-ink);
  min-height: 56px;
  transition: background 0.15s ease;
  cursor: pointer;
}

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

.faq-icon {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  color: var(--ochre);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

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

.faq-answer {
  display: none;
  padding: 0 24px 24px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  border-top: 1px solid var(--border-color);
  padding-top: 18px;
}

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

/* Footer */
.footer {
  background: #E6E4DC;
  border-top: 1px solid var(--border-dark);
  padding: 56px 0 40px;
  font-size: 14px;
  color: var(--text-secondary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-ink);
}

.footer-disclaimer {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 440px;
}

.footer-col-title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-ink);
  margin-bottom: 12px;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-link {
  color: var(--text-muted);
  transition: color 0.15s ease;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
}

.footer-nav-link:hover {
  color: var(--text-ink);
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}

@media (min-width: 600px) {
  .footer-bottom {
    flex-direction: row;
  }
}
