/* AsyaCrm Landing — Ivory Flow template + product blue #1B6CA8 */
:root {
  --product: #1B6CA8;
  --product-hover: #155a8c;
  --product-soft: rgba(27, 108, 168, 0.12);
  --ink: #1c2422;
  --muted: #6b736f;
  --ivory: #f6f3ee;
  --ivory-deep: #ebe6de;
  --bg: var(--ivory);
  --card: #fffcf8;
  --line: #ddd6cb;
  --font: "Manrope", "Segoe UI", system-ui, sans-serif;
  --display: "Cormorant Garamond", Georgia, serif;
  --shadow: 0 18px 40px rgba(28, 36, 34, 0.08);
  --radius: 1.35rem;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(ellipse 70% 45% at 12% -5%, rgba(27, 108, 168, 0.14), transparent 55%),
    radial-gradient(ellipse 45% 30% at 92% 8%, rgba(27, 108, 168, 0.07), transparent 50%),
    linear-gradient(180deg, var(--ivory-deep) 0%, var(--ivory) 38%, #fffcf8 100%);
  min-height: 100vh;
}

/* —— Floating pill suite nav (Ivory Flow esintisi) —— */
.top.suite-nav {
  position: sticky;
  top: 0.85rem;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.65rem 1rem;
  margin: 0.85rem auto 0;
  max-width: calc(1040px + 2rem);
  width: calc(100% - 1.5rem);
  padding: 0.55rem 1rem 0.55rem 1.15rem;
  background: rgba(255, 252, 248, 0.82);
  border: 1px solid rgba(221, 214, 203, 0.9);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(28, 36, 34, 0.06);
  backdrop-filter: blur(14px);
}

.suite-hub {
  font-family: var(--display);
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  line-height: 1;
}

.suite-hub span { color: #E31C3D; }

.suite-apps, .suite-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.85rem;
}

.suite-apps-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.suite-apps a, .suite-actions a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 650;
  transition: color 0.35s var(--ease);
}

.suite-apps a.is-active,
.suite-apps a:hover,
.suite-actions a:hover { color: var(--product); }

.nav-cta {
  background: var(--product) !important;
  color: #fff !important;
  padding: 0.45rem 0.95rem !important;
  border-radius: 999px !important;
  transition: background 0.35s var(--ease), transform 0.35s var(--ease);
}

.nav-cta:hover {
  background: var(--product-hover) !important;
  transform: translateY(-1px);
}

.product-brand {
  margin: 0 0 0.45rem;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--product);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

main {
  max-width: 1040px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4.5rem;
}

.flow-section {
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

h1, h2 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.hero {
  display: grid;
  gap: 2rem;
  align-items: center;
  margin-bottom: 0.75rem;
  padding-top: 0.5rem;
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.75rem;
    min-height: 52vh;
  }
}

.hero-copy h1 {
  font-size: clamp(2.35rem, 5vw, 3.35rem);
  margin: 0.35rem 0 0.85rem;
  line-height: 1.05;
}

.eyebrow {
  color: var(--product);
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  text-transform: uppercase;
  margin: 0;
}

.eyebrow a { color: inherit; text-decoration: none; }
.eyebrow a:hover { text-decoration: underline; }

.lead {
  color: var(--muted);
  max-width: 34rem;
  line-height: 1.6;
  font-size: 1.05rem;
  margin: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.cta-note {
  margin: 0.95rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.btn {
  display: inline-block;
  padding: 0.78rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--card);
  font-size: 0.95rem;
  font-weight: 650;
  font-family: inherit;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn.primary {
  background: var(--product);
  border-color: var(--product);
  color: #fff;
}

.btn.primary:hover {
  background: var(--product-hover);
  border-color: var(--product-hover);
}

.hero-visual {
  position: relative;
  padding: 0.5rem;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 12% -6% -8% 14%;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(27, 108, 168, 0.22), rgba(28, 36, 34, 0.06));
  transform: rotate(2deg);
  z-index: 0;
}

.hero-panel {
  position: relative;
  z-index: 1;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-panel-bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 1.1rem;
  background: linear-gradient(90deg, #134e6f, var(--product));
  color: #eff6ff;
  font-size: 0.85rem;
}

.hero-panel-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #64748b;
}

.hero-panel-bar span:nth-child(1) { background: #f87171; }
.hero-panel-bar span:nth-child(2) { background: #fbbf24; }
.hero-panel-bar span:nth-child(3) { background: #34d399; }
.hero-panel-bar strong { margin-left: 0.45rem; font-weight: 700; }

.hero-tiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 1.1rem;
  background: linear-gradient(180deg, #f4f7fb, #fffcf8);
}

.hero-tile {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 0.9rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  box-shadow: 0 1px 2px rgba(28, 36, 34, 0.04);
}

.hero-tile .oi {
  color: var(--product);
  font-size: 1rem;
}

.section-head { margin-top: 3rem; margin-bottom: 1.25rem; max-width: 40rem; }
.section-head h2 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}
.section-head .lead { font-size: 0.98rem; }

.features {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.2rem 1.15rem;
  box-shadow: 0 1px 3px rgba(28, 36, 34, 0.04);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  height: 100%;
}

a.card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

a.card-link:hover .card {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card.app-tile {
  text-align: center;
  min-height: 10rem;
  border-top: 3px solid var(--product);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--product-soft);
  color: var(--product);
  margin-bottom: 0.75rem;
}

.card-icon .oi { font-size: 1.15rem; }

.card h3 {
  margin: 0 0 0.4rem;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 600;
}

.card p {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
  flex: 1;
}

.card .more {
  color: var(--product);
  font-weight: 700;
  font-size: 0.88rem;
  position: relative;
}

.card .more::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--product);
  transition: width 0.4s var(--ease);
}

a.card-link:hover .more::after { width: 100%; }

.feature-hero {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin: 0.75rem 0 1.25rem;
}

.feature-icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--product-soft);
  color: var(--product);
  flex-shrink: 0;
}

.feature-icon .oi { font-size: 1.35rem; }

.feature-hero h1 {
  margin: 0 0 0.4rem;
  font-size: clamp(2rem, 4vw, 2.6rem);
}

.feature-body {
  max-width: 40rem;
  margin-bottom: 0.5rem;
}

.feature-body .feature-h2 {
  font-family: var(--display);
  font-size: 1.25rem;
  margin: 1.15rem 0 0.5rem;
}

.feature-body ul {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.55;
}

.feature-siblings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0.75rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.sib-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 0.6rem;
  background: var(--card);
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
}

.sib-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.sib-icon {
  color: var(--product);
  font-size: 1.25rem;
}

.sib-card span:last-child {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
}

.bottom-cta {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.6rem 1.7rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.bottom-cta h2 {
  margin: 0 0 0.35rem;
  font-size: 1.65rem;
}

.bottom-cta p { margin: 0; color: var(--muted); max-width: 34rem; }

.form-card {
  max-width: 28rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow);
  margin-top: 1rem;
}

label { display: block; font-size: 0.9rem; margin-bottom: 0.25rem; font-weight: 600; }

/* Deneme formu: ek ürün — tek satır + aç/kapa switch */
.addon-product-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1rem;
  flex-wrap: nowrap;
  max-width: 100%;
}
.addon-product-row .addon-product-label {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
}
.addon-product-row .switch {
  position: relative;
  display: inline-block;
  width: 2.75rem;
  height: 1.5rem;
  flex: 0 0 auto;
  margin: 0;
  cursor: pointer;
}
.addon-product-row .switch input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
}
.addon-product-row .switch-slider {
  position: absolute;
  inset: 0;
  background: #c5cdd4;
  border-radius: 999px;
  transition: background 0.2s ease;
}
.addon-product-row .switch-slider::before {
  content: "";
  position: absolute;
  width: 1.15rem;
  height: 1.15rem;
  left: 0.18rem;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}
.addon-product-row .switch input:checked + .switch-slider {
  background: var(--product, #1B6CA8);
}
.addon-product-row .switch input:checked + .switch-slider::before {
  transform: translate(1.2rem, -50%);
}
.addon-product-row .switch input:focus-visible + .switch-slider {
  outline: 2px solid var(--product, #1B6CA8);
  outline-offset: 2px;
}
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

input {
  width: 100%;
  padding: 0.6rem 0.7rem;
  margin-bottom: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  background: #fff;
}

.alert { padding: 0.75rem; border-radius: 10px; margin-bottom: 1rem; }
.alert-danger { background: #fde8e8; color: #9b1c1c; }
.alert-success { background: #e6f6ef; color: var(--product); }

.why { margin-top: 3rem; }
.why h2 {
  margin: 0 0 1.1rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}
.why-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.why-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.2rem;
}
.why-item h3 {
  margin: 0 0 0.4rem;
  color: var(--product);
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 600;
}
.why-item p { margin: 0; color: var(--muted); font-size: 0.92rem; line-height: 1.5; }

.other-apps { margin-top: 2.5rem; }
.other-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.5rem 1.55rem;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.1), rgba(27, 108, 168, 0.05));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  border-left: 4px solid #0F766E;
}
.other-box h2 {
  margin: 0.15rem 0 0.35rem;
  font-size: 1.65rem;
}
.other-box p:last-of-type { margin: 0; color: var(--muted); max-width: 32rem; }

footer {
  text-align: center;
  padding: 1.75rem 1.5rem;
  color: var(--muted);
  font-size: 0.85rem;
  border-top: 1px solid var(--line);
  background: rgba(255, 252, 248, 0.7);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 1rem;
}

footer a {
  color: var(--product);
  font-weight: 600;
  text-decoration: none;
  margin-left: 0;
}

.egh-mark {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.egh-mark img {
  height: 28px;
  width: auto;
  display: block;
}

.egh-mark-lg img {
  height: 48px;
}

.contact-brand {
  margin: 0 0 1rem;
}

.brand-strip {
  margin-top: 2.5rem;
  padding: 1.4rem 1.5rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}

.brand-strip p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 36rem;
  line-height: 1.5;
}

.brand-strip h2 {
  margin: 0;
  font-size: 1.35rem;
}

@media (max-width: 720px) {
  .top.suite-nav {
    border-radius: 18px;
    top: 0.5rem;
  }
  .suite-apps-label { display: none; }
}

@media (max-width: 576px) {
  .hero-tiles { grid-template-columns: 1fr; }
  .cta-row .btn { width: 100%; text-align: center; }
}

/* Crm extras */
.other-box.other-box-att {
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.1), rgba(27, 108, 168, 0.05));
  border-left-color: #0F766E;
}
.section-head .lead a { color: var(--product); font-weight: 650; text-decoration: none; }
.section-head .lead a:hover { text-decoration: underline; }
.contact { margin-top: 2.5rem; }
.contact-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.contact-card {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem;
}
.contact-card .card-icon { margin-bottom: 0; flex-shrink: 0; }
.contact-card h3 {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
}
.contact-card p { margin: 0; color: var(--muted); font-size: 0.92rem; line-height: 1.5; }
.contact-card a { color: var(--product); text-decoration: none; font-weight: 650; }
.contact-card a:hover { text-decoration: underline; }
.feature-detail-gallery { display: grid; gap: 1rem; margin: 0 0 1.5rem; }
@media (min-width: 992px) {
  .feature-detail-gallery:has(.feature-detail-shot:nth-child(2)) { grid-template-columns: 1fr 1fr; }
}
.feature-detail-shot {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow); background: #fff; margin: 0;
}
.feature-detail-img { display: block; width: 100%; height: auto; }
.feature-detail-caption {
  margin: 0; padding: 0.55rem 0.9rem; font-size: 0.875rem; color: var(--muted);
  background: #f4f7fb; border-top: 1px solid var(--line);
}
/* Kurumsal iletişim banner */
.corp-banner {
  margin-top: 2.5rem;
  padding: 1.4rem 1.5rem;
  background: var(--card, #fffcf8);
  border: 1px solid var(--line, #ddd6cb);
  border-radius: var(--radius, 1.35rem);
  display: grid;
  gap: 1.15rem 2rem;
  align-items: center;
}

@media (min-width: 800px) {
  .corp-banner {
    grid-template-columns: minmax(12rem, 0.9fr) 1.4fr;
  }
}

.corp-banner-brand {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.corp-rights {
  margin: 0;
  color: var(--muted, #6b736f);
  font-size: 0.82rem;
  line-height: 1.4;
}

.corp-banner-meta p {
  margin: 0 0 0.45rem;
  color: var(--muted, #6b736f);
  font-size: 0.88rem;
  line-height: 1.45;
}

.corp-banner-meta p:last-child { margin-bottom: 0; }

.corp-label {
  display: inline-block;
  min-width: 3.4rem;
  margin-right: 0.35rem;
  color: var(--ink, #1c2422);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.corp-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.55rem;
}

.corp-links a {
  color: var(--product, var(--crm, #1B6CA8));
  font-weight: 650;
  text-decoration: none;
}

.corp-links a:hover { text-decoration: underline; }

.corp-links span { color: var(--line, #ddd6cb); }

/* eski brand-strip kaldırıldı; geriye dönük boş bırakma */
.brand-strip { display: none !important; }

/* Feature detail shot — CLS-safe, mevcut kart/tema stillerine uyumlu */
.feature-shot {
  margin: 1rem 0 1.5rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.feature-shot + .feature-shot { margin-top: 1rem; }
.feature-shot-media {
  aspect-ratio: 16 / 10;
  width: 100%;
  background: #e8ece9;
  overflow: hidden;
}
.feature-shot-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
}
.feature-shot-caption {
  margin: 0;
  padding: 0.55rem 0.95rem;
  font-size: 0.85rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: rgba(255, 252, 248, 0.9);
}
.feature-explain-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 800px) {
  .feature-explain-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
  }
}