/* ===== Variables ===== */
:root {
  --primary: #2563EB;
  --primary-dark: #1D4ED8;
  --primary-light: #DBEAFE;
  --primary-bg: #EFF6FF;
  --success-bg: #EFF6FF;
  --footer-bg: #EFF6FF;
  --footer-border: rgba(37, 99, 235, 0.14);
  --error-bg: #FEF2F2;
  --error-light: #FEE2E2;
  --text: #111827;
  --text-secondary: #4B5563;
  --text-muted: #6B7280;
  --border: #E5E7EB;
  --bg-gray: #F3F4F6;
  --bg-light: #F9FAFB;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
  --radius: 12px;
  --radius-sm: 8px;
  --container: 1200px;
  --header-height: 72px;
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul { list-style: none; }

address { font-style: normal; }

/* ===== Utilities ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.text-primary { color: var(--primary); }

/* ===== Top Bar / Promo ===== */
.top-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  font-size: 0.8125rem;
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 0;
}

.promo-bar {
  display: grid;
  grid-template-areas: "stack";
  width: 100%;
  align-items: center;
}

.promo-bar__item {
  grid-area: stack;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-secondary);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
  line-height: 1.4;
}

.promo-bar__item--active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.promo-bar__dot {
  color: var(--primary);
  margin-right: 8px;
  flex-shrink: 0;
}

.promo-bar__item strong {
  color: var(--text);
  font-weight: 700;
  margin-left: 4px;
}

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo__img {
  height: 42px;
  width: auto;
  display: block;
}

.logo__img--footer {
  height: 42px;
}

.hero__badge-icon {
  border-radius: 8px;
  flex-shrink: 0;
}

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

.nav__link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
  white-space: nowrap;
}

.nav__link:hover,
.nav__link--active {
  color: var(--primary);
}

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

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

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

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

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

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: inherit;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn--primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn--outline {
  background: var(--primary-light);
  color: var(--primary);
  border-color: transparent;
}

.btn--outline:hover {
  background: #BFDBFE;
}

.btn--ghost {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn--ghost:hover {
  background: var(--primary-bg);
}

.btn--white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.btn--white:hover {
  background: var(--primary-bg);
}

.btn--sm {
  padding: 8px 16px;
  font-size: 0.875rem;
}

.btn--block {
  width: 100%;
}

/* ===== Hero ===== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  overflow: hidden;
}

.hero--home {
  min-height: 600px;
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 48px 64px max(24px, calc((100vw - var(--container)) / 2 + 24px));
  background: var(--primary-bg) url('https://vizite.co/wp-content/uploads/2025/11/Acik-Mavi-Vizite.svg') center / cover no-repeat;
  position: relative;
  z-index: 2;
}

.hero--status .hero__content {
  background: var(--success-bg);
}

.hero--error .hero__content {
  background: var(--error-bg);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  padding: 8px 16px 8px 8px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  width: fit-content;
}

.hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--text);
}

.hero__title--status {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

.hero__desc {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.7;
}

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

.hero__visual {
  position: relative;
  overflow: hidden;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.hero__pixel-edge {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 48px;
  z-index: 2;
  background: var(--primary-bg);
  clip-path: polygon(
    0 0, 100% 0, 100% 8%, 75% 8%, 75% 16%, 100% 16%, 100% 24%,
    50% 24%, 50% 32%, 100% 32%, 100% 40%, 75% 40%, 75% 48%, 100% 48%,
    100% 56%, 50% 56%, 50% 64%, 100% 64%, 100% 72%, 75% 72%, 75% 80%,
    100% 80%, 100% 88%, 50% 88%, 50% 96%, 100% 96%, 100% 100%, 0 100%
  );
}

.hero__pixel-edge--error {
  background: var(--error-bg);
}

.hero__status-icon {
  margin-bottom: 24px;
}

/* ===== Features ===== */
.features {
  padding: 80px 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.0625rem;
}

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

.feature-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: box-shadow var(--transition), transform var(--transition);
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  background: var(--primary-bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
}

.feature-card__icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* ===== Stats ===== */
.stats {
  padding: 80px 0;
  background: var(--bg-light);
}

.stats__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.stats__content h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.stats__content p {
  color: var(--text-secondary);
  font-size: 1.0625rem;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.stat-item {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.stat-item__value {
  display: block;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.stat-item__label {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== CTA Banner ===== */
.cta-banner {
  padding: 64px 0;
  background: var(--primary);
}

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

.cta-banner h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
}

/* ===== Page Hero ===== */
.page-hero {
  padding: 64px 0;
  background: var(--primary-bg);
  text-align: center;
}

.page-hero--legal {
  background: var(--bg-light);
}

.page-hero__title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-hero--with-image {
  text-align: left;
  padding: 48px 0;
}

.page-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.page-hero__image-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.page-hero__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.contact-form-section__image {
  width: 100%;
  max-width: 360px;
  border-radius: var(--radius);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.contact-card__icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.page-hero__desc {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
}

.page-hero--with-image .page-hero__desc {
  margin: 0;
}

/* ===== Contact Section ===== */
.contact-section {
  padding: 64px 0;
  background: var(--white);
}

.contact-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-section__info h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.contact-section__info > p {
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.7;
}

.office-info {
  background: var(--bg-light);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 24px;
}

.office-info--support {
  margin-bottom: 0;
}

.office-info h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.office-info p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin-bottom: 10px;
  line-height: 1.65;
}

.office-info__note {
  font-size: 0.875rem !important;
  color: var(--text-muted) !important;
}

.office-info address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.5;
}

.office-info address svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== Contact Cards ===== */
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-cards--inline {
  flex-direction: row;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.contact-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.contact-card__icon--whatsapp {
  background: var(--primary-bg);
  color: var(--primary);
}

.contact-card__icon--mail {
  background: var(--primary-bg);
  color: var(--primary);
}

.contact-card__label {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.contact-card__hint {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.contact-card__value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  transition: opacity var(--transition);
}

.contact-card__value:hover {
  opacity: 0.8;
}

/* ===== Contact Form ===== */
.contact-form-section {
  padding: 64px 0;
  background: var(--bg-gray);
}

.contact-form-section__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.contact-form-section__text h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.contact-form-section__text p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.contact-form {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

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

/* ===== Legal Content ===== */
.legal-content {
  padding: 64px 0;
}

.legal-content__inner {
  max-width: 800px;
}

.legal-article h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin: 32px 0 12px;
}

.legal-article h2:first-child {
  margin-top: 0;
}

.legal-article p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.75;
  margin-bottom: 12px;
}

.legal-notice {
  margin-top: 40px;
  padding: 24px;
  background: var(--primary-bg);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.legal-notice p {
  color: var(--text);
  font-size: 0.875rem;
  line-height: 1.7;
  margin: 0;
}

.legal-list {
  margin: 0 0 20px;
  padding-left: 1.25rem;
  color: var(--text-secondary);
}

.legal-list li {
  margin-bottom: 8px;
  line-height: 1.65;
  font-size: 0.9375rem;
}

.legal-list a,
.legal-article a {
  color: var(--primary);
}

/* ===== About Page ===== */
.page-hero--about {
  background: var(--primary-bg);
}

.about-section {
  padding: 64px 0;
  background: var(--white);
}

.about-section--company {
  background: var(--bg-light);
}

.about-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.about-section__inner {
  max-width: 760px;
}

.about-block h2,
.about-company h2 {
  font-size: 1.375rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.about-block p,
.about-company > p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

.about-company__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.about-company .office-info {
  margin-top: 28px;
}

/* ===== Support Section ===== */
.support-section {
  padding: 64px 0;
  background: var(--bg-gray);
}

.support-section__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: center;
}

.support-section__text h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.support-section__text p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== Footer ===== */
.footer {
  background: var(--footer-bg);
  color: var(--text-secondary);
  border-top: 3px solid var(--primary);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  padding: 56px 24px;
}

.footer__brand p {
  margin-top: 16px;
  font-size: 0.9375rem;
  line-height: 1.6;
  max-width: 320px;
  color: var(--text-muted);
}

.footer__links {
  display: flex;
  gap: 64px;
}

.footer__col h4 {
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.footer__col a {
  display: block;
  font-size: 0.9375rem;
  margin-bottom: 10px;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.footer__col a:hover {
  color: var(--primary);
}

.footer__bottom {
  border-top: 1px solid var(--footer-border);
  padding: 20px 0;
}

.footer__bottom p {
  font-size: 0.875rem;
  text-align: center;
  color: var(--text-muted);
}

.footer__bottom a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

.footer__bottom a:hover {
  color: var(--primary-dark);
}

/* ===== Toast ===== */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--text);
  color: var(--white);
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.35s ease;
}

.toast--visible {
  transform: translateY(0);
  opacity: 1;
}

/* ===== Trust Box ===== */
.trust-section {
  padding: 48px 0;
  background: var(--white);
}

.trust-section--compact {
  padding: 32px 0;
}

.trust-box {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 24px;
  margin-bottom: 24px;
}

.trust-box__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

.trust-box__item:last-child {
  border-bottom: none;
}

.trust-box__emoji {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.trust-box__item strong {
  color: var(--text);
}

.value-highlight {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--primary-bg);
  border: 1px solid var(--primary-light);
  border-radius: var(--radius);
  padding: 20px 24px;
}

.value-highlight__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.value-highlight p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

.value-highlight strong {
  color: var(--primary);
}

/* ===== Premium Section ===== */
.premium-section {
  padding: 64px 0;
  background: var(--bg-light);
}

.premium-list {
  list-style: none;
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 0;
  box-shadow: var(--shadow-sm);
}

.premium-list__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.premium-list__item:last-child {
  border-bottom: none;
}

.premium-list__check {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--primary);
  background: var(--primary-bg);
  border-radius: 50%;
  padding: 3px;
}

/* ===== Modules Grid ===== */
.modules-section {
  padding: 64px 0;
  background: var(--white);
}

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

.module-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  transition: box-shadow var(--transition);
}

.module-card:hover {
  box-shadow: var(--shadow-md);
}

.module-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary);
}

.module-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ===== Compare Table — removed ===== */

/* ===== Download Page ===== */
.download-top {
  padding: 56px 0 64px;
  background: linear-gradient(180deg, var(--primary-bg) 0%, var(--white) 100%);
}

.download-top__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 40px;
}

.download-top__header .download-hero__icon {
  margin: 0 auto 20px;
}

.download-top__header .download-hero__desc {
  margin-bottom: 0;
}

.download-top__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.download-top__panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 100%;
}

.download-top__panel .trust-box {
  margin-bottom: 0;
  flex: 1;
}

.download-top__advantages {
  display: flex;
  flex-direction: column;
}

.download-top__advantages .vizite-advantages {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.download-top__advantages .premium-list {
  flex: 1;
}

.vizite-advantages {
  width: 100%;
}

.vizite-advantages__title {
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.vizite-advantages__desc {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.vizite-advantages .premium-list {
  max-width: none;
  margin: 0;
}

.download-cta-bottom__inner {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}

.download-hero__icon {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  box-shadow: var(--shadow-md);
}

.download-hero__title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.download-hero__desc {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 28px;
}

.download-cta-bottom {
  padding: 56px 0 72px;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.download-cta-bottom h2 {
  font-size: 1.375rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.download-cta-bottom p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-size: 0.9375rem;
}

.download-minimal__buttons,
.download-cta-bottom__inner .download-minimal__buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.store-badge {
  display: inline-block;
  transition: transform var(--transition), opacity var(--transition);
}

.store-badge:hover {
  transform: scale(1.03);
  opacity: 0.9;
}

.store-badge img {
  height: 50px;
  width: auto;
  display: block;
  border-radius: 6px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: var(--text);
  color: var(--white);
  border-radius: var(--radius-sm);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  min-width: 200px;
}

.store-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: #0f172a;
}

.store-btn--google {
  background: var(--white);
  color: var(--text);
  border: 2px solid var(--border);
}

.store-btn--google:hover {
  background: var(--bg-light);
}

.store-btn--lg {
  min-width: 240px;
  padding: 16px 24px;
}

.store-btn__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.store-btn--lg .store-btn__icon {
  width: 32px;
  height: 32px;
}

.store-btn__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.store-btn__text small {
  font-size: 0.6875rem;
  font-weight: 500;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.store-btn__text strong {
  font-size: 1rem;
  font-weight: 700;
}

.store-btn--lg .store-btn__text strong {
  font-size: 1.0625rem;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero__content {
    padding: 48px 24px;
    background-color: var(--primary-bg);
    background-image: none;
  }

  .hero--home {
    min-height: auto;
  }

  .hero__visual {
    order: -1;
    max-height: 360px;
  }

  .hero__pixel-edge {
    display: none;
  }

  .hero__image {
    min-height: 280px;
    max-height: 360px;
  }

  .features__grid {
    grid-template-columns: 1fr;
  }

  .modules-grid {
    grid-template-columns: 1fr;
  }

  .stats__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-section__inner,
  .contact-form-section__inner,
  .support-section__inner,
  .page-hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-cards--inline {
    flex-direction: column;
  }

  .download-top__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-section__grid {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr;
  }

  .footer__links {
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .promo-bar__item {
    font-size: 0.75rem;
    padding: 0 4px;
  }

  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 24px;
    gap: 0;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
  }

  .nav--open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav__link {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
  }

  .nav__link:last-child {
    border-bottom: none;
  }

  .menu-toggle {
    display: flex;
  }

  .header__actions .btn--outline {
    display: none;
  }

  .cta-banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .stats__grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero--home .hero__content {
    text-align: center;
    align-items: center;
    padding: 32px 16px 40px;
    background-color: var(--white);
    background-image: none;
  }

  .logo__img--footer {
    height: 34px;
  }

  .footer__inner {
    padding: 40px 16px;
  }

  .footer__links {
    flex-wrap: wrap;
    gap: 24px 32px;
  }

  .hero__badge {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__desc {
    max-width: none;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .stats__grid {
    grid-template-columns: 1fr;
  }
}
