:root {
  --navy: #10224f;
  --navy-dark: #0a1636;
  --blue: #2f6fed;
  --text: #10224f;
  --text-muted: #5b6b8c;
  --bg: #f4f8fd;
  --card-bg: #ffffff;
  --card-bg-green: #ecf5e8;
  --border: #e2e8f4;
  --radius: 16px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --text: #eef2fb;
    --text-muted: #a7b2cc;
    --bg: #0b1226;
    --card-bg: #131b36;
    --border: #24304f;
  }
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #eaf3fd 0%, var(--bg) 420px);
  -webkit-font-smoothing: antialiased;
}

@media (prefers-color-scheme: dark) {
  body {
    background: linear-gradient(180deg, #101c3d 0%, var(--bg) 420px);
  }
}

.site-header {
  display: flex;
  justify-content: center;
  padding: 24px 20px 0;
}

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

.brand-logo {
  border-radius: 50%;
  display: block;
}

.brand-name {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

main {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero {
  text-align: center;
  padding: 32px 0 0px;
}

.hero-icon {
  border-radius: 24%;
  box-shadow: 0 8px 24px rgba(16, 34, 79, 0.18);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  line-height: 1.25;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.hero h1 span {
  color: var(--blue);
}

.hero-sub {
  color: var(--text-muted);
  font-size: 1.02rem;
  max-width: 440px;
  margin: 0 auto 28px;
  line-height: 1.5;
}

.usefull-links {
  color: grey;
}

.store-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 12px;
  min-width: 168px;
  transition: transform 0.15s ease, background 0.15s ease;
}

.store-btn:hover {
  background: var(--navy-dark);
  transform: translateY(-1px);
}

.store-btn-web {
  background: #1a9c5c;
  color: #fff;
}

.store-btn-web:hover {
  background: #157d49;
}

.store-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.store-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.15;
}

.store-text small {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  opacity: 0.85;
}

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

@media (max-width: 420px) {
  .qr-row {
    display: none;
  }
}
@media (max-width: 420px) {
  .qr-row-spacer {
    display: none;
  }
}

.qr-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 172px;
}

.qr-card img {
  width: 140px;
  height: 140px;
  border-radius: 8px;
}

.qr-card span {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.feature {
  padding: 8px 0 44px;
}

.feature-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(16, 34, 79, 0.14);
}

.infografil-img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 2s ease;
}

.infografil-img-wipe {
  position: relative;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
  z-index: 2;
}

.feature-title-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 14px 18px;
  background: linear-gradient(to bottom, rgba(16, 24, 48, 0.72), rgba(16, 24, 48, 0));
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  pointer-events: none;
}

.feature-title-overlay[hidden] {
  display: none;
}

.feature-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.feature-dots[hidden] {
  display: none;
}

.feature-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--border);
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.feature-dot:hover {
  transform: scale(1.2);
}

.feature-dot.active {
  background: var(--blue);
  transform: scale(1.15);
}

.pro-cta {
  text-align: center;
  padding-bottom: 44px;
}
.pro-cta-2 {
  text-align: center;
  padding: 20px 16px 20px;
  margin-bottom: 44px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.business-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.business-icon-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 70px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 8px 8px;
  cursor: pointer;
  color: var(--text);
  font-size: 0.5rem;
  text-align: center;
  line-height: 1.2;
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.business-icon-btn:hover,
.business-icon-btn:focus-visible {
  transform: translateY(-2px);
  border-color: var(--blue);
  box-shadow: 0 8px 20px rgba(16, 34, 79, 0.12);
}

.business-icon-btn svg {
  width: 30px;
  height: 30px;
  color: var(--blue);
}

.business-icon-btn.active {
  border-color: var(--blue);
  background: rgba(47, 111, 237, 0.08);
}

.pro-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: #fff;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.pro-btn:hover {
  background: var(--navy);
  transform: translateY(-1px);
}

.pro-toggle-text {
  display: block;
  background: none;
  text-align: center;
  border: none;
  color: var(--white);
  font-size: 1rem;
  font-weight: 300;
  text-underline-offset: 3px;
  cursor: pointer;
  padding: 8px;
}

.pro-btn-demo {
  background: var(--navy);
  gap: 8px;
  margin-top: 12px;
  text-decoration: none;
}

.pro-btn-demo:hover {
  background: var(--navy-dark);
}

.pro-btn-demo svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.pro-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 24px;
  text-align: left;
}

.pro-cards[hidden] {
  display: none;
}

.pro-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
}

.pro-card h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  color: var(--text);
}

.pro-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.pro-card li {
  margin-bottom: 6px;
}

.help-categories {
  text-align: center;
  padding: 8px 0 44px;
}

.help-categories h2 {
  font-size: 1.3rem;
  margin: 0 0 20px;
  color: var(--text);
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  text-align: left;
}

.help-card {
  display: flex;
  flex-direction: column;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.help-card:hover,
.help-card:focus-visible {
  transform: translateY(-2px);
  border-color: var(--blue);
  box-shadow: 0 8px 20px rgba(16, 34, 79, 0.12);
}

.help-card-img {
  width: 56px;
  height: 56px;
  margin-bottom: 14px;
  border-radius: 12px;
}

.help-card h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  color: var(--text);
}

.help-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.share {
  text-align: center;
  padding-bottom: 56px;
}

.share h2 {
  font-size: 1.1rem;
  margin: 0 0 18px;
  color: var(--text-muted);
  font-weight: 600;
}

.share-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.share-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--border);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
  padding: 0;
}

@media (prefers-color-scheme: dark) {
  .share-btn { color: #eef2fb; }
}

.share-btn:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px);
  border-color: var(--blue);
}

.share-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.copy-feedback {
  min-height: 20px;
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--blue);
}

.site-footer {
  text-align: center;
  padding: 24px 20px 32px;
  color: var(--text-muted);
  font-size: 0.85rem;
}
