:root {
  --primary: #6366F1;
  --primary-dark: #4338CA;
  --primary-light: #818CF8;
  --primary-50: #EEF2FF;
  --surface: #F8FAFC;
  --surface-alt: #FFFFFF;
  --text: #334155;
  --text-secondary: #64748B;
  --text-muted: #94A3B8;
  --gold: #C9A962;
  --teal: #0D9488;
  --border: #E2E8F0;
  --shadow: 0 4px 24px rgba(99, 102, 241, 0.12);
  --shadow-lg: 0 20px 60px rgba(67, 56, 202, 0.18);
  --radius: 16px;
  --radius-lg: 24px;
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  background: rgba(248, 250, 252, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.site-header.scrolled {
  border-color: var(--border);
  box-shadow: 0 2px 16px rgba(15, 23, 42, 0.06);
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  height: 100%;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary-dark);
  min-width: 0;
  flex-shrink: 0;
}

.nav-brand span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-brand img { border-radius: 10px; flex-shrink: 0; }

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.lang-globe-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--surface-alt);
  color: var(--primary);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.lang-globe-btn svg {
  width: 22px;
  height: 22px;
}

.lang-globe-btn:hover {
  background: var(--primary-50);
  border-color: var(--primary-light);
  transform: scale(1.04);
}

.lang-globe-btn:focus-visible {
  outline: 2px solid var(--primary-light);
  outline-offset: 2px;
}

/* Language modal */
.lang-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}

.lang-modal[hidden] { display: none; }

.lang-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
}

.lang-modal-panel {
  position: relative;
  width: min(420px, 100%);
  max-height: min(80vh, 560px);
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.lang-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 20px 12px;
  border-bottom: 1px solid var(--border);
}

.lang-modal-head h2 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1E293B;
}

.lang-modal-close {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: var(--surface);
  color: var(--text-secondary);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
}

.lang-modal-close:hover {
  background: var(--primary-50);
  color: var(--primary);
}

.lang-modal-list {
  list-style: none;
  margin: 0;
  padding: 12px;
  overflow-y: auto;
  display: grid;
  gap: 6px;
}

.lang-modal-option {
  width: 100%;
  text-align: start;
  padding: 14px 16px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}

.lang-modal-option:hover {
  background: var(--surface);
  border-color: var(--border);
}

.lang-modal-option.active {
  background: var(--primary-50);
  border-color: var(--primary-light);
  color: var(--primary-dark);
  font-weight: 700;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav-links a {
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--primary) !important;
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600 !important;
}

.nav-cta:hover { background: var(--primary-dark) !important; }

/* Hero */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 48px) 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(129, 140, 248, 0.25), transparent),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(99, 102, 241, 0.12), transparent),
    linear-gradient(180deg, var(--primary-50) 0%, var(--surface) 70%);
  z-index: -1;
}

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

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.badge-gold {
  background: linear-gradient(135deg, #FEF3C7, #FDE68A);
  color: #92400E;
}

.badge-light {
  background: rgba(255, 255, 255, 0.8);
  color: var(--primary-dark);
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: #1E293B;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin: 0 0 32px;
  max-width: 520px;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.store-buttons-center { justify-content: center; }

.store-badge {
  display: inline-block;
  line-height: 0;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s, opacity 0.2s;
}

.store-badge:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.store-badge img {
  display: block;
  height: 64px;
  width: auto;
}

.hero-note {
  margin: 20px 0 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Hero phone — real screenshots */
.hero-phone {
  justify-self: center;
  width: min(280px, 100%);
  padding: 12px;
  background: linear-gradient(145deg, #1E293B, #334155);
  border-radius: 36px;
  box-shadow: var(--shadow-lg);
}

.hero-carousel {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 9 / 19.5;
  background: #000;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hero-slide.active { opacity: 1; }

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

.hero-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.25);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.hero-dots button.active {
  background: var(--primary);
  transform: scale(1.2);
}

.hero-dots button:hover { background: var(--primary-light); }

/* Highlights */
.highlights {
  padding: 0 0 64px;
  margin-top: -24px;
}

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

.highlights-grid article {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.highlights-grid article:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.highlight-icon {
  font-size: 1.75rem;
  margin-bottom: 10px;
}

.highlights-grid h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 700;
  color: #1E293B;
}

.highlights-grid p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.highlight-lang-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.highlight-lang-list li {
  font-size: 0.72rem;
  font-weight: 500;
  padding: 4px 9px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-secondary);
  line-height: 1.3;
}

.highlights-grid article.highlight-lang {
  grid-column: 1 / -1;
}

@media (min-width: 961px) {
  .highlights-grid article.highlight-lang {
    grid-column: auto;
  }
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--surface-alt);
  border-block: 1px solid var(--border);
}

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

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-head h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: #1E293B;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

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

.feature-card {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: box-shadow 0.2s;
}

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

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 1.4rem;
  margin-bottom: 16px;
  background: var(--primary-50);
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1E293B;
}

.feature-card > p {
  margin: 0 0 16px;
  font-size: 0.925rem;
  color: var(--text-secondary);
}

.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

/* Screens */
.screens-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: start;
}

.screens-tabs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.screen-tab {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.screen-tab.active-tab {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-50);
  background: var(--surface-alt);
}

.tab-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 700;
}

.screen-tab h4 {
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 700;
  color: #1E293B;
}

.screen-tab p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.side-panel-card {
  background: linear-gradient(160deg, #1E293B, #334155);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.side-panel-card h4 {
  margin: 0 0 16px;
  font-size: 1.1rem;
  font-weight: 700;
}

.side-panel-card ul {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.side-panel-card li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.side-panel-card li:last-child { border-bottom: none; }

.side-panel-card strong { color: var(--gold); }

.side-note {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

/* Diyanet */
.diyanet-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #fff;
}

.diyanet-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.diyanet-section .section-tag {
  color: rgba(255, 255, 255, 0.75);
}

.diyanet-copy h2 {
  font-size: clamp(1.75rem, 3vw, 2.1rem);
  font-weight: 800;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.diyanet-copy p {
  margin: 0 0 24px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
}

.diyanet-points {
  margin: 0;
  padding: 0;
  list-style: none;
}

.diyanet-points li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.diyanet-points li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.compare-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.compare-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.compare-row strong {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}

.highlight-row {
  background: rgba(255, 255, 255, 0.1);
  margin: 0 -16px;
  padding: 14px 16px;
  border-radius: 12px;
  border-bottom: none;
}

.highlight-row span { color: var(--gold); font-weight: 600; }

.compare-caption {
  margin: 16px 0 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

/* Languages */
.lang-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.lang-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.lang-chip:hover {
  border-color: var(--primary-light);
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.12);
}

/* CTA */
.cta-section {
  padding-bottom: 100px;
}

.cta-inner {
  text-align: center;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px 32px;
  box-shadow: var(--shadow);
}

.cta-icon {
  margin: 0 auto 20px;
  border-radius: 20px;
}

.cta-inner h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #1E293B;
  margin: 0 0 12px;
}

.cta-inner p {
  margin: 0 auto 28px;
  max-width: 520px;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

/* Footer */
.site-footer {
  background: #1E293B;
  color: rgba(255, 255, 255, 0.7);
  padding: 32px 0;
}

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

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

.footer-brand img { border-radius: 8px; }

.footer-brand strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
}

.footer-brand span {
  font-size: 0.8rem;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: #fff; }

/* Gallery albums */
.gallery-section {
  background: var(--surface-alt);
  border-block: 1px solid var(--border);
}

.albums {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.album {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  overflow: hidden;
}

.album-head {
  margin-bottom: 20px;
}

.album-head h3 {
  margin: 0 0 6px;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1E293B;
}

.album-head p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.album-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 8px;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-light) transparent;
}

.album-track::-webkit-scrollbar { height: 6px; }
.album-track::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: 999px;
}

.shot {
  flex: 0 0 auto;
  scroll-snap-align: start;
  padding: 0;
  border: none;
  background: none;
  cursor: zoom-in;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.12);
  transition: transform 0.2s, box-shadow 0.2s;
}

.shot:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--shadow-lg);
}

.shot img {
  display: block;
  height: min(520px, 70vh);
  width: auto;
  max-width: none;
}

.album-track:not(.album-track-multi) .shot img {
  height: min(560px, 75vh);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(6px);
  padding: 24px;
}

.lightbox[hidden] { display: none; }

.lightbox-body {
  margin: 0;
  max-width: min(420px, 100%);
  text-align: center;
}

.lightbox-body img {
  max-height: calc(100vh - 120px);
  width: auto;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

.lightbox-body figcaption {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.22);
}

.lightbox-close {
  top: 16px;
  right: 16px;
  font-size: 2rem;
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

.lightbox-prev:disabled,
.lightbox-next:disabled {
  opacity: 0.25;
  cursor: default;
}

/* Responsive */
@media (max-width: 960px) {
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 0.875rem; }

  .hero-inner,
  .diyanet-inner,
  .screens-layout {
    grid-template-columns: 1fr;
  }

  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero-visual { order: -1; }

  .hero-phone { width: min(240px, 100%); }

  .side-panel-card { position: static; }
}

@media (max-width: 768px) {
  :root {
    --header-h: 56px;
    --radius: 12px;
    --radius-lg: 18px;
  }

  body {
    font-size: 14px;
    line-height: 1.55;
  }

  .container {
    width: min(1120px, calc(100% - 28px));
  }

  .nav {
    grid-template-columns: 1fr auto;
    gap: 10px;
  }

  .nav-links { display: none; }

  .nav-brand {
    font-size: 0.875rem;
    gap: 8px;
  }

  .nav-brand img {
    width: 30px !important;
    height: 30px !important;
    border-radius: 8px;
  }

  .lang-globe-btn {
    width: 36px;
    height: 36px;
  }

  .lang-globe-btn svg {
    width: 18px;
    height: 18px;
  }

  .lang-modal {
    padding: 16px 12px;
  }

  .lang-modal-head {
    padding: 14px 14px 10px;
  }

  .lang-modal-head h2 {
    font-size: 0.95rem;
  }

  .lang-modal-close {
    width: 32px;
    height: 32px;
    font-size: 1.25rem;
  }

  .lang-modal-list {
    padding: 8px;
    gap: 4px;
  }

  .lang-modal-option {
    padding: 11px 12px;
    font-size: 0.85rem;
    border-radius: 10px;
  }

  .hero {
    padding: calc(var(--header-h) + 20px) 0 36px;
  }

  .hero-inner {
    gap: 24px;
  }

  .hero-copy { text-align: center; }

  .badges {
    gap: 8px;
    margin-bottom: 14px;
    justify-content: center;
  }

  .badge {
    padding: 4px 10px;
    font-size: 0.65rem;
  }

  .hero h1 {
    font-size: clamp(1.35rem, 5.5vw, 1.65rem);
    margin-bottom: 12px;
    line-height: 1.2;
  }

  .hero-lead {
    font-size: 0.875rem;
    margin-bottom: 20px;
    margin-inline: auto;
  }

  .store-buttons {
    gap: 10px;
    justify-content: center;
  }

  .store-badge img { height: 56px; }

  .hero-note {
    margin-top: 14px;
    font-size: 0.75rem;
    text-align: center;
  }

  .hero-phone {
    width: min(200px, 78vw);
    padding: 8px;
    border-radius: 28px;
  }

  .hero-carousel { border-radius: 22px; }

  .hero-dots {
    gap: 5px;
    margin-top: 10px;
  }

  .hero-dots button {
    width: 6px;
    height: 6px;
  }

  .highlights {
    padding-bottom: 36px;
    margin-top: -12px;
  }

  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .highlights-grid article {
    padding: 14px 12px;
    border-radius: 12px;
  }

  .highlight-icon {
    font-size: 1.25rem;
    margin-bottom: 6px;
  }

  .highlights-grid h3 {
    font-size: 0.8rem;
    margin-bottom: 4px;
  }

  .highlight-lang-list {
    gap: 4px;
  }

  .highlight-lang-list li {
    font-size: 0.65rem;
    padding: 3px 7px;
  }

  .highlights-grid article.highlight-lang {
    grid-column: 1 / -1;
  }

  .section {
    padding: 40px 0;
  }

  .section-head {
    margin-bottom: 28px;
  }

  .section-tag {
    font-size: 0.65rem;
    margin-bottom: 8px;
    letter-spacing: 0.06em;
  }

  .section-head h2 {
    font-size: clamp(1.2rem, 4.5vw, 1.45rem);
    margin-bottom: 10px;
  }

  .section-head p {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .features-grid { gap: 14px; }

  .feature-card {
    padding: 16px;
    border-radius: var(--radius);
  }

  .feature-icon {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
    border-radius: 10px;
    margin-bottom: 10px;
  }

  .feature-card h3 {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }

  .feature-card > p {
    font-size: 0.8rem;
    margin-bottom: 10px;
    line-height: 1.45;
  }

  .feature-list li {
    font-size: 0.75rem;
    padding-left: 14px;
    margin-bottom: 4px;
  }

  .feature-list li::before {
    width: 5px;
    height: 5px;
  }

  .screens-layout { gap: 16px; }

  .screens-tabs { gap: 8px; }

  .screen-tab {
    gap: 10px;
    padding: 12px 14px;
    border-radius: 12px;
  }

  .tab-num {
    width: 26px;
    height: 26px;
    font-size: 0.75rem;
    border-radius: 8px;
  }

  .screen-tab h4 {
    font-size: 0.875rem;
  }

  .screen-tab p {
    font-size: 0.75rem;
    line-height: 1.45;
  }

  .side-panel-card {
    padding: 18px;
    border-radius: var(--radius);
  }

  .side-panel-card h4 {
    font-size: 0.95rem;
    margin-bottom: 10px;
  }

  .side-panel-card li {
    padding: 8px 0;
    font-size: 0.8rem;
  }

  .side-note {
    font-size: 0.72rem;
  }

  .diyanet-inner { gap: 24px; }

  .diyanet-copy h2 {
    font-size: clamp(1.2rem, 4.5vw, 1.45rem);
    margin-bottom: 10px;
  }

  .diyanet-copy p {
    font-size: 0.85rem;
    margin-bottom: 16px;
    line-height: 1.55;
  }

  .diyanet-points li {
    font-size: 0.8rem;
    padding-left: 18px;
    margin-bottom: 6px;
  }

  .compare-card {
    padding: 16px;
    border-radius: var(--radius);
  }

  .compare-row {
    padding: 10px 0;
    font-size: 0.8rem;
  }

  .compare-row strong {
    font-size: 1.2rem;
  }

  .highlight-row {
    margin: 0 -10px;
    padding: 10px;
    border-radius: 10px;
  }

  .compare-caption {
    margin-top: 10px;
    font-size: 0.75rem;
  }

  .lang-grid { gap: 8px; }

  .lang-chip {
    padding: 7px 12px;
    font-size: 0.78rem;
  }

  .cta-section { padding-bottom: 48px; }

  .cta-inner {
    padding: 28px 18px;
    border-radius: var(--radius);
  }

  .cta-icon {
    width: 56px !important;
    height: 56px !important;
    border-radius: 14px;
    margin-bottom: 14px;
  }

  .cta-inner h2 {
    font-size: clamp(1.15rem, 4vw, 1.35rem);
    margin-bottom: 8px;
  }

  .cta-inner p {
    font-size: 0.85rem;
    margin-bottom: 18px;
    line-height: 1.5;
  }

  .site-footer { padding: 22px 0; }

  .footer-brand img {
    width: 26px !important;
    height: 26px !important;
  }

  .footer-brand strong { font-size: 0.85rem; }

  .footer-brand span { font-size: 0.72rem; }

  .footer-links a { font-size: 0.78rem; }

  .footer-inner { gap: 14px; }
}

@media (max-width: 640px) {
  body { font-size: 13px; }

  :root { --header-h: 52px; }

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

  .nav-brand span { max-width: 110px; }

  .hero h1 { font-size: 1.3rem; }

  .hero-phone { width: min(180px, 72vw); }

  .store-badge img { height: 50px; }

  .section { padding: 32px 0; }

  .section-head { margin-bottom: 22px; }

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

  .footer-brand { justify-content: center; }
}

/* RTL */
html[dir="rtl"] .lang-modal-option { text-align: right; }

html[dir="rtl"] .feature-list li {
  padding-left: 0;
  padding-right: 20px;
}

html[dir="rtl"] .feature-list li::before {
  left: auto;
  right: 0;
}

html[dir="rtl"] .diyanet-points li {
  padding-left: 0;
  padding-right: 24px;
}

html[dir="rtl"] .diyanet-points li::before {
  left: auto;
  right: 0;
}

html[dir="rtl"] .lightbox-prev { left: auto; right: 8px; }
html[dir="rtl"] .lightbox-next { right: auto; left: 8px; }

@media (min-width: 641px) {
  html[dir="rtl"] .lightbox-prev { right: 16px; left: auto; }
  html[dir="rtl"] .lightbox-next { left: 16px; right: auto; }
}
