/* isletmevitrini.com — Ana Stylesheet */
/* Mobile-first | Sistem fontları | Lighthouse 95+ */

:root {
  /* Ana marka — lacivert */
  --primary:       #071b35;
  --primary-dark:  #031122;
  --primary-light: #123a63;
  /* CTA / aksiyon — turuncu (sınırlı: buton, öne çıkan satış vurgusu) */
  --cta:           #c2410c;
  --cta-dark:      #9a3412;
  --cta-light:     #fff7ed;
  --cta-text:      #ffffff;
  /* Success / onay / Google / WhatsApp destek rengi — sınırlı kullanım */
  --success:       #16a34a;
  --success-dark:  #15803d;
  --success-light: #dcfce7;
  /* Rozet / eyebrow tag — nötr, CTA ile yarışmaz */
  --tag-bg:        #eef2f7;
  --tag-text:      #123a63;
  --white:         #fff;
  --gray-50:       #f8fafc;
  --gray-100:      #f1f5f9;
  --gray-200:      #e2e8f0;
  --gray-500:      #64748b;
  --gray-700:      #334155;
  --gray-900:      #0f172a;
  --text:          #1e293b;
  --text-muted:    #64748b;
  --border:        #e2e8f0;
  --radius:        8px;
  --radius-lg:     14px;
  --shadow:        0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:     0 4px 16px rgba(0,0,0,.11);
  --shadow-lg:     0 10px 40px rgba(0,0,0,.13);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  /* Uzun URL/e-posta/kod gibi boşluksuz metinler dar ekranda taşma yerine kırılsın */
  overflow-wrap: break-word;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* Tipografi */
h1 { font-size: clamp(1.9rem, 5vw, 3rem); font-weight: 800; line-height: 1.18; }
h2 { font-size: clamp(1.45rem, 4vw, 2.15rem); font-weight: 700; line-height: 1.3; }
h3 { font-size: clamp(1.05rem, 3vw, 1.35rem); font-weight: 600; line-height: 1.4; }
h4 { font-size: 1rem; font-weight: 600; }
p  { line-height: 1.75; }

/* Layout */
.container  { max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }
.section    { padding: 5rem 0; }
.section-sm { padding: 2.5rem 0; }

/* Butonlar */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: opacity .15s, transform .15s, box-shadow .15s;
  text-decoration: none;
  /* normal + max-width: uzun buton metinleri dar ekranda taşmak yerine
     kontrollü şekilde satır kırar (bkz. Ücretsiz Analiz CTA'ları) */
  white-space: normal;
  max-width: 100%;
  text-align: center;
  line-height: 1.3;
}
.btn:hover  { opacity: .9; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn-primary      { background: var(--primary); color: var(--white); }
.btn-accent       { background: var(--cta); color: var(--cta-text); }
.btn-accent:hover { background: var(--cta-dark); opacity: 1; }
.btn-outline      { background: transparent; border: 2px solid currentColor; color: var(--primary); }
.btn-outline-white { background: transparent; border: 2px solid rgba(255,255,255,.5); color: var(--white); }
.btn-whatsapp     { background: #25d366; color: var(--white); }
.btn-maps         { background: #4285f4; color: var(--white); }
.btn-instagram    { background: #e1306c; color: var(--white); }
.btn-lg           { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn-full         { width: 100%; justify-content: center; }

/* ─── Header ─── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end; /* mobilde hamburger sağa; logo absolute-center */
  height: 76px; /* mobil */
  position: relative;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.nav-links {
  display: none;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
}
.nav-links a {
  font-size: .88rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: color .15s;
}
.nav-links a:hover { color: var(--primary); }
/* .nav-links a rengini eziyor; nav CTA'nın .btn-accent rengini koruması için */
.nav-links a.btn-accent { color: var(--cta-text); }
.nav-links a.btn-accent:hover { color: var(--cta-text); background: var(--cta-dark); }
.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all .2s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: .75rem 1.25rem 1rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: .7rem 0;
  font-weight: 500;
  color: var(--gray-700);
  border-bottom: 1px solid var(--border);
  font-size: .95rem;
}
.mobile-menu a:last-child { border-bottom: none; color: var(--cta); font-weight: 700; }

/* ─── Hero ─── */
.hero {
  background: linear-gradient(140deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  color: var(--white);
  padding: 5rem 0 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Subtle dot pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
/* Bottom fade */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(7,27,53,.18));
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero h1 { color: var(--white); margin-bottom: 1.25rem; overflow-wrap: break-word; }
/* Başlıktaki satır kırma sadece geniş ekranda: dar ekranda <br> metni taşırıyor */
@media (max-width: 640px) {
  .br-desktop { display: none; }
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.85);
  max-width: 620px;
  margin: 0 auto 2.25rem;
  line-height: 1.75;
}
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50px;
  padding: .4rem 1.1rem;
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 1.75rem;
  color: rgba(255,255,255,.95);
  letter-spacing: .02em;
}
.hero-social-proof {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: .82rem;
  color: rgba(255,255,255,.6);
}
.hero-social-proof-item {
  display: flex;
  align-items: center;
  gap: .4rem;
}
.hero-social-proof-item strong { color: rgba(255,255,255,.9); }

/* ─── Trust bar ─── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 2rem;
  text-align: center;
}
.trust-bar-item { display: flex; flex-direction: column; align-items: center; }
.trust-bar-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}
.trust-bar-label { font-size: .78rem; color: var(--text-muted); margin-top: .2rem; font-weight: 500; }

/* ─── Section başlığı ─── */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header p {
  color: var(--text-muted);
  max-width: 580px;
  margin: .75rem auto 0;
  font-size: 1.05rem;
}
.section-tag {
  display: inline-block;
  background: var(--tag-bg);
  color: var(--tag-text);
  font-size: .72rem;
  font-weight: 700;
  padding: .3rem .9rem;
  border-radius: 50px;
  margin-bottom: .85rem;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.section-tag.blue   { background: #dbeafe; color: var(--primary); }
.section-tag.purple { background: #ede9fe; color: #6d28d9; }

/* ─── Kartlar ─── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  background: var(--success-light);
}
.card-icon.blue   { background: #dbeafe; }
.card-icon.purple { background: #ede9fe; }
.card-icon.orange { background: #ffedd5; }
.card-icon.pink   { background: #fce7f3; }
.card-icon.yellow { background: #fef9c3; }
.card-icon.red    { background: #fee2e2; }
.card-icon.teal   { background: #ccfbf1; }

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: box-shadow .22s, transform .22s, border-color .22s;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(30,58,95,.15);
}

/* Hizmet kartı liste öğeleri */
.service-feature-list {
  list-style: none;
  margin-top: 1rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.service-feature-list li {
  font-size: .85rem;
  color: var(--text-muted);
  padding: .3rem 0;
  display: flex;
  align-items: center;
  gap: .45rem;
}
.service-feature-list li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
}

/* ─── Grid ─── */
.grid-2 { display: grid; grid-template-columns: minmax(0, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: minmax(0, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 1rem; }

/* ─── Stats ─── */
.stats-bar { background: var(--primary); padding: 2.75rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2rem; text-align: center; }
.stat-number { font-size: 2.4rem; font-weight: 800; color: var(--white); display: block; line-height: 1; }
.stat-label  { font-size: .82rem; color: rgba(255,255,255,.65); margin-top: .35rem; font-weight: 500; }

/* ─── Adımlar ─── */
.steps { display: grid; grid-template-columns: minmax(0, 1fr); gap: 0; }
.step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
}
.step-num {
  width: 46px; height: 46px; min-width: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(30,58,95,.3);
}

/* ─── Neden biz — guarantee cards ─── */
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: box-shadow .2s, transform .2s;
}
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.why-icon {
  width: 48px; height: 48px; min-width: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: var(--success-light);
  flex-shrink: 0;
}
.why-icon.blue   { background: #dbeafe; }
.why-icon.purple { background: #ede9fe; }
.why-icon.orange { background: #ffedd5; }
.why-icon.yellow { background: #fef9c3; }

/* ─── FAQ ─── */
.faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: .75rem; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.faq-item summary {
  cursor: pointer;
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: .97rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
  transition: background .15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform .2s;
}
.faq-item[open] summary { background: var(--gray-50); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

/* ─── CTA Blok ─── */
.cta-block {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.cta-block > * { position: relative; z-index: 1; }
.cta-block h2 { color: var(--white); margin-bottom: .75rem; }
.cta-block p  { color: rgba(255,255,255,.8); margin-bottom: 2rem; font-size: 1.05rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-block .cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── Form ─── */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: .88rem;
  margin-bottom: .4rem;
  color: var(--gray-700);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color .15s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30,58,95,.08);
}
.form-group textarea { min-height: 100px; resize: vertical; }
.form-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 0; }
.form-note { font-size: .83rem; color: var(--text-muted); margin-top: .4rem; }

/* ─── Page hero (iç sayfalar) ─── */
.page-hero {
  background: linear-gradient(140deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  padding: 3.5rem 0;
  text-align: center;
}
.page-hero h1 { color: var(--white); font-size: clamp(1.6rem, 4vw, 2.4rem); }
.page-hero p  { color: rgba(255,255,255,.8); margin-top: .75rem; font-size: 1.05rem; max-width: 580px; margin-left: auto; margin-right: auto; }

/* ─── Fiyatlandırma ─── */
.pricing-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  background: var(--white);
  box-shadow: var(--shadow);
  position: relative;
}
.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--primary), var(--shadow-md);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  padding: .25rem .85rem;
  border-radius: 50px;
  white-space: nowrap;
}
.pricing-price { font-size: 2rem; font-weight: 800; color: var(--primary); }
.pricing-price sup { font-size: 1rem; vertical-align: super; }
.pricing-period { font-size: .85rem; color: var(--text-muted); }
.pricing-list { list-style: none; margin: 1.5rem 0; }
.pricing-list li {
  padding: .5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.pricing-list li:last-child { border-bottom: none; }
.pricing-list li::before { content: "✓"; color: var(--success); font-weight: 700; }

.pkg-scope { margin-top: .5rem; }
.pkg-scope summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  padding: .65rem .9rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-weight: 600;
  font-size: .85rem;
  color: var(--primary);
  background: var(--white);
  transition: border-color .2s ease, background .2s ease;
}
.pkg-scope summary::-webkit-details-marker { display: none; }
.pkg-scope summary::after {
  content: "+";
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform .2s ease;
}
.pkg-scope[open] summary::after { transform: rotate(45deg); }
.pkg-scope summary:hover { border-color: var(--primary-light); background: var(--gray-50); }
.pkg-scope-body { margin-top: 1rem; }
.pkg-scope-body strong {
  display: block;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--text-muted);
  margin: 1rem 0 .5rem;
}
.pkg-scope-body strong:first-child { margin-top: 0; }
.pkg-scope-body .benefit-list li { font-size: .87rem; }

/* ─── Demo sayfaları ─── */
.demo-header {
  padding: 2.5rem 0;
  text-align: center;
  color: var(--white);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.demo-header h1 { color: var(--white); font-size: clamp(1.75rem, 5vw, 2.5rem); }
.demo-header p  { color: rgba(255,255,255,.85); margin-top: .5rem; font-size: 1.05rem; }

/* Photo hero variant */
.demo-header--photo {
  padding: 4.5rem 0 3.5rem;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.demo-header--photo .container { width: 100%; }
.demo-header--photo .demo-header-emoji { display: none; }
.demo-actions {
  display: flex;
  gap: .75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
}
.gallery-placeholder {
  aspect-ratio: 4/3;
  background: var(--gray-100);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--gray-500);
  border: 1px solid var(--border);
}
.qr-box {
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  background: var(--gray-50);
}
.qr-placeholder {
  width: 120px; height: 120px;
  background: var(--gray-200);
  margin: 0 auto 1rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.info-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.info-row:last-child { border-bottom: none; }
.info-icon { font-size: 1.25rem; flex-shrink: 0; }
.info-text strong { display: block; font-size: .85rem; color: var(--text-muted); font-weight: 500; }
.info-text span   { font-size: .95rem; }
.demo-notice {
  background: var(--primary);
  color: rgba(255,255,255,.85);
  padding: 1.1rem 1.25rem;
  font-size: .87rem;
}
.demo-notice-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.demo-notice a { color: #93c5fd; font-weight: 600; }
.demo-notice-cta {
  background: var(--cta);
  color: #fff !important;
  padding: .4rem 1.1rem;
  border-radius: 6px;
  font-weight: 700 !important;
  font-size: .85rem;
  white-space: nowrap;
  text-decoration: none;
}

/* ─── Demo header badge strip ─── */
.demo-header-badges {
  display: flex;
  gap: .6rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.demo-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .3rem .85rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  background: rgba(255,255,255,.18);
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(6px);
}
.demo-badge.open  { background: rgba(22,163,74,.75); border-color: rgba(22,163,74,.5); }
.demo-badge.stars { background: rgba(234,179,8,.2); border-color: rgba(234,179,8,.4); }

/* ─── Demo stats strip ─── */
.demo-stats-strip {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border);
}
.demo-stat {
  text-align: center;
  padding: 1.5rem 2rem;
  flex: 1;
  min-width: 120px;
  border-right: 1px solid var(--border);
}
.demo-stat:last-child { border-right: none; }
.demo-stat-value { font-size: 1.55rem; font-weight: 800; color: var(--demo-primary, var(--primary)); line-height: 1.2; }
.demo-stat-label { font-size: .78rem; color: var(--text-muted); margin-top: .2rem; }

/* ─── Gallery foto tiles ─── */
.gallery-tile {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  overflow: hidden;
  position: relative;
  cursor: default;
  transition: transform .2s, box-shadow .2s;
}
.gallery-tile:hover { transform: scale(1.025); box-shadow: var(--shadow-lg); }
.gallery-tile-icon { font-size: 2.25rem; line-height: 1; }
.gallery-tile-label {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  opacity: .75;
}

/* ─── CSS QR Code ─── */
.css-qr {
  width: 120px;
  height: 120px;
  margin: 0 auto 1rem;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 2px;
  padding: 8px;
  background: #fff;
  border-radius: 10px;
  border: 2px solid var(--border);
  box-shadow: var(--shadow);
}
.css-qr span {
  display: block;
  border-radius: 1px;
}
.css-qr .q1 { background: #1e293b; }
.css-qr .q0 { background: transparent; }

/* ─── Demo kart listesi ─── */
.demo-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow .22s, transform .22s;
}
.demo-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.demo-card-header { padding: 2rem 1.75rem; text-align: center; color: var(--white); }
.demo-card-header h3 { color: var(--white); font-size: 1.2rem; }
.demo-card-header p  { color: rgba(255,255,255,.8); font-size: .9rem; margin-top: .4rem; }
.demo-card-body { padding: 1.5rem; }
.demo-card-tag {
  display: inline-block;
  background: var(--gray-100);
  color: var(--text-muted);
  font-size: .72rem;
  font-weight: 600;
  padding: .25rem .65rem;
  border-radius: 50px;
  margin-bottom: .75rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* ─── Sektör kartı ─── */
.sector-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  transition: box-shadow .2s, transform .2s;
  text-align: center;
}
.sector-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.sector-icon { font-size: 2.25rem; margin-bottom: .75rem; }

/* ─── İletişim ─── */
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.contact-info-icon {
  width: 44px; height: 44px; min-width: 44px;
  border-radius: var(--radius);
  background: var(--success-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

/* ─── Logo ─── */
.logo-img {
  height: 30px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}
/* Header nav logo — ikon + isletmevitrini.com (tagline yok, mobilde okunmuyordu) */
.logo-img-nav {
  height: 27px; /* mobil — ~175px görsel genişlik */
  width: auto;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
  transition: transform .18s ease, opacity .18s ease;
}
.nav-logo:hover .logo-img-nav {
  transform: scale(1.04);
  opacity: .85;
}
.logo-img-sm {
  height: 22px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}
/* Screen-reader only — erişilebilirlik için görünmez metin */
.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;
}

/* ─── Footer ─── */
.footer { background: var(--gray-900); color: rgba(255,255,255,.65); padding: 4rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-logo { font-size: 1.1rem; font-weight: 800; color: var(--white); margin-bottom: .75rem; display: flex; align-items: center; gap: .5rem; }
/* "isletmevitrini.com" tek blok: metin + .com aynı flex item içinde, aralarında gap boşluğu oluşmaz */
.footer-brand-text { display: inline-flex; align-items: baseline; }
/* Header'daki turuncu CTA sistemiyle tutarlı marka rengi (eski mor yerine) */
.footer-brand-dotcom { color: var(--cta); }
.footer-desc { font-size: .88rem; color: rgba(255,255,255,.5); max-width: 280px; line-height: 1.65; }
.footer h4 { color: var(--white); font-size: .9rem; margin-bottom: 1rem; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: .5rem; }
.footer ul a { font-size: .88rem; color: rgba(255,255,255,.5); transition: color .15s; }
.footer ul a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  font-size: .82rem;
  text-align: center;
  color: rgba(255,255,255,.35);
}

/* ─── Fayda listesi ─── */
.benefit-list { list-style: none; margin-top: 1rem; }
.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  padding: .45rem 0;
  font-size: .95rem;
  min-width: 0;
}
.benefit-list li code {
  min-width: 0;
  word-break: break-all;
}
.benefit-list li::before {
  content: "✓";
  color: var(--success);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: .05rem;
}

/* ─── Uyarı kutusu ─── */
.alert {
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: .9rem;
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.alert-success { background: var(--success-light); color: var(--success-dark); }
.alert-info    { background: #dbeafe; color: #1e40af; }

/* ─── Bölücü çizgi ─── */
hr { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }

/* ════════════════════════════════════════════
   VISUAL ENHANCEMENT — isletmevitrini.com
   ════════════════════════════════════════════ */

/* ─── Hero iki kolon düzeni ─── */
.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
.hero-content { width: 100%; }
.hero-visual {
  /* Mobil: yatay kaydırmalı kart strip — display:none DEĞİL */
  display: flex;
  overflow-x: auto;
  gap: .85rem;
  padding: .25rem 1.25rem .85rem;
  margin: 0 -1.25rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  position: relative;
  flex-shrink: 0;
  width: calc(100% + 2.5rem);
}
.hero-visual::-webkit-scrollbar { display: none; }
/* Mobil scroll ipucu: sağ kenar mask ile fade — kaydırılabilir hissi verir */
.hero-visual {
  -webkit-mask-image: linear-gradient(to right, #000 82%, transparent 100%);
  mask-image: linear-gradient(to right, #000 82%, transparent 100%);
}


/* ─── Hero feature pills ─── */
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  justify-content: center;
  margin-top: 1.25rem;
  margin-bottom: .5rem;
}
.hero-pill {
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 2rem;
  padding: .34rem .88rem;
  font-size: .83rem;
  color: rgba(255,255,255,.92);
}

/* ─── Feature icon strip ─── */
.feature-strip-wrap {
  padding: 2.25rem 0 2rem;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.feature-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2.25rem;
  justify-content: center;
  align-items: flex-start;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  text-align: center;
}
.feature-icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  box-shadow: var(--shadow-md);
  transition: transform .22s ease, box-shadow .22s ease;
}
.feature-icon-circle:hover {
  transform: translateY(-5px) scale(1.09);
  box-shadow: var(--shadow-lg);
}
.feature-label {
  font-size: .74rem;
  font-weight: 700;
  color: var(--gray-700);
  line-height: 1.3;
  max-width: 70px;
}

/* ─── Step icon ─── */
.step-icon-lg {
  font-size: 1.7rem;
  line-height: 1;
  margin-bottom: .4rem;
  display: block;
}
/* Steps 4-column grid */
.steps-4 { grid-template-columns: minmax(0, 1fr); }

/* ─── Card hover polish ─── */
.card {
  transition: box-shadow .24s ease, transform .24s ease;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

/* ─── Closing CTA (pre-footer) ─── */
.closing-cta {
  background: linear-gradient(140deg, var(--primary-dark) 0%, var(--primary) 45%, var(--primary-light) 100%);
  padding: 5.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}
.closing-cta::after {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(255,255,255,.055) 0%, transparent 68%);
  border-radius: 50%;
  pointer-events: none;
}
.closing-cta-blob {
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(194,65,12,.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.closing-cta .container { position: relative; z-index: 1; }
.closing-cta h2 {
  color: #fff;
  font-size: clamp(1.65rem, 4.5vw, 2.6rem);
  margin-bottom: .8rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.closing-cta-desc {
  color: rgba(255,255,255,.76);
  font-size: 1.08rem;
  max-width: 480px;
  margin: 0 auto 2.25rem;
  line-height: 1.72;
}
.closing-cta-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  justify-content: center;
  margin-bottom: 2.25rem;
}
.closing-cta-badge {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.88);
  border-radius: 50px;
  padding: .36rem .88rem;
  font-size: .76rem;
  font-weight: 600;
}
.closing-cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Demo card two CTA ─── */
.demo-card-ctas { display: flex; flex-direction: column; gap: .55rem; }
.btn-outline-accent {
  background: transparent;
  border: 2px solid var(--cta);
  color: var(--cta);
}
.btn-outline-accent:hover {
  background: var(--cta);
  color: var(--cta-text);
  opacity: 1;
}

/* ─── Tablet ─── */
@media (min-width: 640px) {
  .grid-2      { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-4      { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .form-grid   { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
  .stats-grid  { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .trust-bar-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .steps-4     { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }
}

/* ─── Desktop ─── */
@media (min-width: 900px) {
  .nav         { height: 84px; justify-content: space-between; position: static; }
  .nav-logo    { position: static; transform: none; }
  .logo-img-nav { height: 37px; width: auto; } /* ~240px görsel genişlik */
  .nav-links   { display: flex; }
  .nav-toggle  { display: none; }
  .grid-3      { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr); }
  .steps       { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; }
  .steps-4     { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.5rem; }
  .two-col     { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 4rem; align-items: center; }
  .two-col-narrow { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); gap: 3rem; align-items: flex-start; }
  .why-grid    { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  /* Hero iki kolon */
  .hero-inner {
    flex-direction: row;
    text-align: left;
    gap: 4.5rem;
    justify-content: center;
    align-items: center;
  }
  .hero-content { flex: 1; max-width: 580px; }
  .hero-inner .hero-sub { margin-left: 0; margin-right: 0; }
  .hero-inner .hero-ctas { justify-content: flex-start; }
  .hero-inner .hero-social-proof { justify-content: flex-start; }
  .hero-inner .hero-pills { justify-content: flex-start; }
  .hero-visual {
    display: block;
    position: relative;
    width: 390px;
    height: 420px;
    overflow: visible;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
    /* mask kaldır — desktop collage'da gereksiz */
    -webkit-mask-image: none;
    mask-image: none;
  }

  /* Demo card CTAs yan yana büyük ekranda */
  .demo-card-ctas { flex-direction: column; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   VISUAL UPGRADE — Photo gallery tiles & demo card photo headers
   ═══════════════════════════════════════════════════════════════════════════ */

/* Photo gallery tile (replaces emoji gradient tiles) */
.gallery-tile--photo {
  background: #0f172a;
}
.gallery-tile--photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .72;
  transition: opacity .3s ease, transform .4s ease;
}
.gallery-tile--photo:hover img {
  opacity: .90;
  transform: scale(1.06);
}
.gallery-tile--photo .gallery-tile-label {
  color: #fff;
  opacity: 1;
  text-shadow: 0 1px 5px rgba(0,0,0,.75);
  background: rgba(0,0,0,.38);
  padding: .22rem .55rem;
  border-radius: 4px;
  position: relative;
  z-index: 1;
}

/* Photo demo showcase card header (main page) */
.demo-card-header {
  position: relative;
  overflow: hidden;
  min-height: 168px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
}
.demo-card-header-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .30;
  transition: opacity .3s ease;
}
.demo-card:hover .demo-card-header-bg { opacity: .45; }
.demo-card-header-content {
  position: relative;
  z-index: 1;
  padding: 1.5rem 1.75rem;
  text-align: center;
}
.demo-card-header-content h3 { color: #fff; font-size: 1.2rem; }
.demo-card-header-content p  { color: rgba(255,255,255,.82); font-size: .9rem; margin-top: .4rem; }

/* SVG icon sizing inside icon containers */
.card-icon svg, .why-icon svg { width: 28px; height: 28px; display: block; }
.feature-icon-circle svg       { width: 30px; height: 30px; display: block; }
.step-icon-lg svg               { width: 32px; height: 32px; display: block; }

/* SVG currentColor mapping — card-icon */
.card-icon         { color: #2563eb; }
.card-icon.blue    { color: #1d4ed8; }
.card-icon.purple  { color: #6d28d9; }
.card-icon.orange  { color: #c2410c; }
.card-icon.pink    { color: #9d174d; }
.card-icon.yellow  { color: #92400e; }
.card-icon.red     { color: #b91c1c; }
.card-icon.teal    { color: #0f766e; }

/* SVG currentColor mapping — why-icon */
.why-icon          { color: #2563eb; }
.why-icon.blue     { background: #dbeafe; color: #1d4ed8; }
.why-icon.orange   { background: #ffedd5; color: #c2410c; }
.why-icon.yellow   { background: #fef9c3; color: #92400e; }
.why-icon.purple   { background: #ede9fe; color: #6d28d9; }

/* feature-icon-circle text color for SVG */
.feature-icon-circle { color: #374151; }

/* ═══════════════════════════════════════════════════════════════════════════
   HERO TAGLINE — güven cümlesi hero altında
   ═══════════════════════════════════════════════════════════════════════════ */
.hero-tagline {
  margin-top: .9rem;
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  line-height: 1.55;
}

/* Outline-white buton — hero üzerindeki ikincil CTA */
.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,.5);
  color: #fff;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.85);
  color: #fff;
}

/* ═══════════════════════════════════════════════════════════════════════════
   VITRIN FEATURES — "Vitrin Sayfanızda neler olur?" bölümü
   ═══════════════════════════════════════════════════════════════════════════ */
.vitrin-feat-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: .85rem 3rem;
  margin-top: 2rem;
}
.vitrin-feat-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .95rem;
  color: var(--text);
}
.vitrin-feat-ico {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: #dbeafe;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.vitrin-feat-ico.green  { background: #dcfce7; }
.vitrin-feat-ico.yellow { background: #fef9c3; }
.vitrin-feat-ico.pink   { background: #fce7f3; }
.vitrin-feat-ico.orange { background: #ffedd5; }
.vitrin-feat-ico.purple { background: #ede9fe; }
.vitrin-feat-ico.teal   { background: #ccfbf1; }
@media (max-width: 640px) {
  .vitrin-feat-grid { grid-template-columns: minmax(0, 1fr); gap: .7rem; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECTOR GRID — "Kimler için uygun?" bölümü
   ═══════════════════════════════════════════════════════════════════════════ */
.sector-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.25rem;
}
.sector-item {
  background: var(--white);
  border-radius: 12px;
  padding: 1.25rem 1rem;
  text-align: center;
  border: 1.5px solid var(--gray-200);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.sector-item:hover {
  border-color: var(--primary-light);
  box-shadow: 0 4px 16px rgba(30,58,95,.1);
}
.sector-ico  { font-size: 1.9rem; display: block; margin-bottom: .45rem; }
.sector-name { font-weight: 700; font-size: .9rem; color: var(--text); display: block; }
.sector-desc { font-size: .76rem; color: var(--text-muted); margin-top: .2rem; display: block; }

@media (max-width: 900px) {
  .sector-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 480px) {
  .sector-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.sector-more { margin-top: 1.5rem; }
.sector-more summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  max-width: 260px;
  margin: 0 auto;
  padding: .8rem 1.5rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 999px;
  font-weight: 600;
  font-size: .92rem;
  color: var(--primary);
  background: var(--white);
  transition: border-color .2s ease, background .2s ease;
}
.sector-more summary::-webkit-details-marker { display: none; }
.sector-more summary:hover { border-color: var(--primary-light); background: var(--gray-50); }
.sector-more summary .chevron { transition: transform .2s ease; flex-shrink: 0; }
.sector-more[open] summary .chevron { transform: rotate(180deg); }
.sector-more summary .less-label { display: none; }
.sector-more[open] summary .more-label { display: none; }
.sector-more[open] summary .less-label { display: inline; }
.sector-more .sector-grid-more { margin-top: 1.5rem; }

/* ═══════════════════════════════════════════════════════════════════════════
   PLATFORM REPOSITIONING — premium marketplace/platform surface
   ═══════════════════════════════════════════════════════════════════════════ */
.hero {
  background:
    radial-gradient(circle at 12% 18%, rgba(194,65,12,.18) 0, transparent 28%),
    radial-gradient(circle at 82% 8%, rgba(18,58,99,.35) 0, transparent 30%),
    linear-gradient(138deg, var(--primary-dark) 0%, var(--primary) 46%, var(--primary-light) 100%);
  padding: 5.75rem 0 4.75rem;
}
.hero::before {
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent 86%);
}
.hero-content {
  max-width: 650px;
}
.hero h1 {
  font-size: clamp(2.15rem, 5vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: 0;
}
.hero-sub {
  max-width: 660px;
  color: rgba(255,255,255,.84);
}
.hero-tagline {
  color: rgba(255,255,255,.72);
  margin: -1.25rem auto 1.35rem;
  max-width: 580px;
}
.hero-ctas .btn {
  min-height: 54px;
  box-shadow: 0 12px 28px rgba(0,0,0,.14);
}
.hero-ctas .btn-accent {
  background: var(--cta);
}
.hero-pill {
  background: rgba(255,255,255,.105);
  border-color: rgba(255,255,255,.18);
}

.hero-visual {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: visible;
  -webkit-mask-image: none;
  mask-image: none;
}
.platform-panel {
  width: min(100%, 560px);
  margin: 0 auto;
  background: rgba(255,255,255,.96);
  color: var(--text);
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 28px 80px rgba(0,0,0,.34),
    0 1px 0 rgba(255,255,255,.7) inset;
}
.platform-topbar {
  height: 46px;
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: 0 1rem;
  background: linear-gradient(180deg, #f8fafc, #eef2f7);
  border-bottom: 1px solid #dbe3ee;
}
.platform-window-dots {
  display: flex;
  gap: .35rem;
}
.platform-window-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.platform-window-dots span:nth-child(1) { background: #ff6b63; }
.platform-window-dots span:nth-child(2) { background: #fbbf24; }
.platform-window-dots span:nth-child(3) { background: #22c55e; }
.platform-address {
  flex: 1;
  border: 1px solid #d6dee9;
  border-radius: 999px;
  background: #fff;
  color: #64748b;
  font-size: .78rem;
  padding: .35rem .8rem;
  text-align: left;
}
.platform-body {
  padding: 1.35rem;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.platform-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}
.platform-label {
  display: block;
  color: var(--tag-text);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .2rem;
}
.platform-header-row h2 {
  color: var(--gray-900);
  font-size: 1.2rem;
  line-height: 1.2;
}
.platform-count {
  flex-shrink: 0;
  border-radius: 999px;
  background: #ecfdf5;
  color: #166534;
  font-size: .72rem;
  font-weight: 800;
  padding: .34rem .65rem;
}
.platform-search {
  display: flex;
  align-items: center;
  gap: .65rem;
  border: 1px solid #dbe3ee;
  border-radius: 14px;
  background: #fff;
  color: #64748b;
  font-size: .88rem;
  padding: .78rem .9rem;
  box-shadow: 0 8px 24px rgba(15,23,42,.05);
}
.platform-search-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #e0f2fe;
  color: #0369a1;
  display: grid;
  place-items: center;
  font-size: 1rem;
  font-weight: 800;
}
.platform-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin: .9rem 0 1rem;
}
.platform-chips span {
  border: 1px solid #dbe3ee;
  background: #fff;
  color: #475569;
  border-radius: 999px;
  font-size: .73rem;
  font-weight: 700;
  padding: .32rem .62rem;
}
.platform-list {
  display: grid;
  gap: .7rem;
}
.platform-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: .75rem;
  align-items: center;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: .82rem;
  box-shadow: 0 10px 28px rgba(15,23,42,.07);
}
.platform-card-muted {
  opacity: .92;
}
.platform-card-media {
  min-height: 64px;
  border-radius: 13px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: .58rem .64rem;
  box-shadow: 0 8px 18px rgba(15,23,42,.14);
  overflow: hidden;
  position: relative;
}
.platform-card-media::after {
  content: '';
  position: absolute;
  width: 58px;
  height: 58px;
  right: -18px;
  bottom: -22px;
  border-radius: 50%;
  background: rgba(255,255,255,.22);
}
.platform-card-media span {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  padding: .12rem .38rem;
  font-size: .62rem;
  font-weight: 800;
}
.platform-card-media strong {
  position: relative;
  z-index: 1;
  font-size: .78rem;
  line-height: 1.12;
  letter-spacing: 0;
}
.platform-card-media.coffee { background: linear-gradient(135deg, #5b3419, #b7791f); }
.platform-card-media.clinic { background: linear-gradient(135deg, #0f6096, #38bdf8); }
.platform-card-media.beauty { background: linear-gradient(135deg, #9d174d, #f472b6); }
.platform-card-media.vet    { background: linear-gradient(135deg, #0f766e, #34d399); }
.platform-card-main {
  min-width: 0;
}
.platform-card-title {
  color: #0f172a;
  font-weight: 850;
  font-size: .95rem;
  line-height: 1.25;
}
.platform-card-meta {
  color: #64748b;
  font-size: .78rem;
  margin-top: .08rem;
}
.platform-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .32rem;
  margin-top: .42rem;
}
.platform-card-tags span {
  background: #f1f5f9;
  border-radius: 999px;
  color: #475569;
  font-size: .68rem;
  font-weight: 700;
  padding: .2rem .45rem;
}
.platform-card-actions {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .38rem;
}
.platform-card-actions span,
.platform-card-actions strong {
  text-align: center;
  border-radius: 9px;
  padding: .42rem .25rem;
  font-size: .7rem;
  font-weight: 800;
  line-height: 1.1;
  color: #334155;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}
.platform-card-actions strong {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
}

.pricing-section {
  background:
    radial-gradient(circle at 16% 12%, rgba(30, 58, 95, .10), transparent 34%),
    radial-gradient(circle at 86% 18%, rgba(34, 197, 94, .13), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.pricing-grid {
  display: grid;
  gap: 1.35rem;
  align-items: stretch;
}
.pricing-section .pricing-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid #dbe3ee;
  border-radius: 24px;
  padding: 1.65rem;
  box-shadow: 0 18px 46px rgba(15, 23, 42, .08);
  overflow: hidden;
}
.pricing-card-main {
  background:
    linear-gradient(145deg, rgba(255,255,255,.96) 0%, rgba(239,246,255,.94) 100%);
  border-color: rgba(30, 58, 95, .34);
  box-shadow: 0 24px 60px rgba(30, 58, 95, .15);
}
.pricing-card-upgrade {
  background:
    linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
}
.pricing-card-head {
  display: grid;
  gap: 1.1rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid #e2e8f0;
}
.pricing-card-head h3 {
  color: #0f172a;
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  line-height: 1.2;
}
.pricing-card-head p {
  color: #526173;
  margin-top: .55rem;
  line-height: 1.65;
  font-size: .95rem;
}
.pricing-price-block {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .45rem;
}
.pricing-section .pricing-price {
  color: var(--primary);
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1;
  letter-spacing: 0;
}
.pricing-tax {
  color: #0f766e;
  font-size: .95rem;
  font-weight: 900;
}
.pricing-section .pricing-badge {
  position: static;
  align-self: flex-start;
  transform: none;
  margin-bottom: 1.15rem;
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.pricing-badge-muted {
  background: #e2e8f0 !important;
  color: #334155 !important;
}
.pricing-section .pricing-list {
  display: grid;
  gap: .7rem;
  margin: 1.25rem 0 1.5rem;
}
.pricing-section .pricing-list li {
  align-items: flex-start;
  border-bottom: 0;
  color: #334155;
  font-size: .93rem;
  line-height: 1.55;
  padding: 0;
}
.pricing-section .pricing-list li::before {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin-top: .08rem;
  border-radius: 999px;
  background: var(--success-light);
  color: var(--success-dark);
  font-size: .72rem;
  flex: 0 0 20px;
}
.pricing-section .btn-full {
  margin-top: auto;
}
.pricing-note {
  max-width: 780px;
  margin: 1.35rem auto 0;
  color: #64748b;
  font-size: .92rem;
  line-height: 1.7;
  text-align: center;
}

.benefit-grid {
  align-items: stretch;
}
.benefit-card {
  position: relative;
  overflow: hidden;
  border-color: #dbe3ee;
  background:
    linear-gradient(180deg, #fff 0%, #fbfdff 100%);
}
.benefit-card::after {
  content: '';
  position: absolute;
  inset: auto 1rem 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cta), var(--primary-light));
  border-radius: 999px 999px 0 0;
  opacity: .65;
}
.benefit-kicker {
  display: inline-block;
  margin-top: .9rem;
  color: var(--tag-text);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.vitrin-profile-layout {
  display: grid;
  gap: 2rem;
  align-items: center;
}
.vitrin-profile-card {
  background: #fff;
  border: 1px solid #dbe3ee;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 460px;
  margin: 0 auto;
}
.vitrin-cover {
  height: 120px;
  background:
    linear-gradient(135deg, rgba(30,58,95,.82), rgba(22,163,74,.45)),
    linear-gradient(90deg, #dbeafe 0 24%, #bfdbfe 24% 46%, #dcfce7 46% 70%, #fef3c7 70% 100%);
}
.vitrin-profile-body {
  padding: 0 1.2rem 1.2rem;
}
.vitrin-avatar {
  width: 82px;
  height: 62px;
  border-radius: 16px;
  background: linear-gradient(135deg, #5b3419, #b7791f);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: .86rem;
  font-weight: 900;
  border: 4px solid #fff;
  box-shadow: 0 8px 22px rgba(15,23,42,.18);
  margin-top: -31px;
}
.vitrin-profile-title {
  margin-top: .7rem;
}
.vitrin-profile-title h3 {
  color: var(--gray-900);
}
.vitrin-profile-title p {
  color: var(--text-muted);
  font-size: .9rem;
}
.vitrin-rating {
  display: flex;
  align-items: baseline;
  gap: .45rem;
  margin-top: .65rem;
  color: #b45309;
}
.vitrin-rating span {
  color: var(--text-muted);
  font-size: .82rem;
}
.vitrin-services,
.vitrin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: .85rem;
}
.vitrin-services span {
  background: #f1f5f9;
  color: #475569;
  border-radius: 999px;
  padding: .3rem .6rem;
  font-size: .75rem;
  font-weight: 700;
}
.vitrin-actions span {
  background: #ecfdf5;
  color: #166534;
  border-radius: 9px;
  padding: .48rem .62rem;
  font-size: .78rem;
  font-weight: 800;
}
.vitrin-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .5rem;
  margin-top: 1rem;
}
.vitrin-gallery span {
  min-height: 64px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e0f2fe, #dbeafe);
}
.vitrin-gallery span:nth-child(2) { background: linear-gradient(135deg, #dcfce7, #bbf7d0); }
.vitrin-gallery span:nth-child(3) { background: linear-gradient(135deg, #fef3c7, #fed7aa); }
.vitrin-qr-row {
  display: flex;
  align-items: center;
  gap: .85rem;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  border-radius: 14px;
  padding: .8rem;
  margin-top: 1rem;
}
.vitrin-qr {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, #0f172a 50%, transparent 0) 0 0/12px 12px,
    linear-gradient(#0f172a 50%, transparent 0) 0 0/12px 12px,
    #fff;
  border: 6px solid #fff;
  box-shadow: 0 0 0 1px #cbd5e1;
  flex-shrink: 0;
}
.vitrin-qr-row strong {
  color: var(--gray-900);
  font-size: .9rem;
}
.vitrin-qr-row p {
  color: var(--text-muted);
  font-size: .78rem;
  line-height: 1.45;
}

.demo-card {
  border: 1px solid #dbe3ee;
  box-shadow: 0 12px 34px rgba(15,23,42,.08);
}
.demo-card-tag {
  border-radius: 999px;
}
.sector-item {
  box-shadow: 0 8px 24px rgba(15,23,42,.045);
}
.sector-grid-expanded {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.sector-ico {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin: 0 auto .6rem;
  background: #f1f5f9;
  border-radius: 14px;
}

@media (min-width: 900px) {
  .hero-inner {
    gap: 4rem;
  }
  .hero-content {
    max-width: 560px;
  }
  .hero-visual {
    width: 540px;
    height: auto;
  }
  .platform-panel {
    transform: perspective(1200px) rotateY(-4deg) rotateX(1.5deg);
  }
  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .pricing-card-main {
    transform: translateY(-8px);
  }
  .vitrin-profile-layout {
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    gap: 3rem;
  }
}

@media (max-width: 640px) {
  .btn-lg {
    padding: .85rem 1.5rem;
    font-size: .95rem;
  }
  .hero {
    padding: 3.65rem 0 3.15rem;
  }
  .hero h1 {
    font-size: clamp(2rem, 10vw, 2.55rem);
  }
  .hero-sub {
    font-size: .98rem;
    line-height: 1.72;
  }
  .hero-tagline {
    margin: -.75rem 0 1.1rem;
    font-size: .92rem;
  }
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-social-proof {
    gap: .7rem;
    justify-content: flex-start;
    text-align: left;
  }
  .platform-body {
    padding: 1rem;
  }
  .platform-header-row {
    align-items: center;
  }
  .platform-card {
    grid-template-columns: minmax(0, 1fr);
    gap: .65rem;
    padding: .72rem;
  }
  .platform-card-media {
    min-height: 54px;
  }
  .platform-card-media strong {
    font-size: .82rem;
  }
  .platform-card-actions {
    grid-template-columns: minmax(0, 1fr);
  }
  .platform-chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: .15rem;
    scrollbar-width: none;
  }
  .platform-chips::-webkit-scrollbar { display: none; }
  .pricing-section .pricing-card {
    border-radius: 18px;
    padding: 1.25rem;
  }
  .pricing-section .pricing-price {
    font-size: 2rem;
  }
  .pricing-section .pricing-badge {
    margin-bottom: .9rem;
  }
  .sector-grid-expanded {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem;
  }
  .sector-grid-expanded .sector-item {
    padding: .9rem .55rem;
  }
  .sector-grid-expanded .sector-name {
    font-size: .86rem;
  }
  .sector-grid-expanded .sector-desc {
    font-size: .72rem;
    line-height: 1.35;
  }
  .steps-4 .step {
    padding: 1rem;
    gap: .8rem;
  }
  .vitrin-profile-card {
    border-radius: 18px;
  }
}
