/* Landing page — vizecrmai.com */

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

:root {
  --blue:    #1a56db;
  --blue-dk: #1040b0;
  --dark:    #0f172a;
  --mid:     #1e293b;
  --muted:   #64748b;
  --light:   #f1f5f9;
  --white:   #ffffff;
  --green:   #16a34a;
  --radius:  10px;
}

body { font-family: system-ui, -apple-system, sans-serif; background: var(--white); color: var(--dark); line-height: 1.6; }

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

/* ── NAV ─────────────────────────────────────────────────────────────── */
.lp-nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e2e8f0;
}
.lp-nav .logo { font-weight: 700; font-size: 1.25rem; color: var(--blue); }
.lp-nav .logo span { color: var(--dark); }
.lp-nav-links { display: flex; gap: 2rem; font-size: .9rem; color: var(--muted); }
.lp-nav-links a:hover { color: var(--dark); }
.lp-nav-actions { display: flex; gap: .75rem; }
.btn { display: inline-flex; align-items: center; padding: .55rem 1.25rem; border-radius: var(--radius); font-size: .9rem; font-weight: 600; cursor: pointer; border: none; transition: opacity .15s; }
.btn:hover { opacity: .88; }
.btn-ghost { background: transparent; border: 1.5px solid #cbd5e1; color: var(--dark); }
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary-lg { background: var(--blue); color: var(--white); padding: .8rem 2rem; font-size: 1rem; }
.btn-outline-lg { background: transparent; border: 2px solid rgba(255,255,255,.6); color: var(--white); padding: .8rem 2rem; font-size: 1rem; }

/* ── HERO ─────────────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, #1e3a5f 60%, #1a56db 100%);
  color: var(--white);
  text-align: center;
  padding: 6rem 1.5rem 5rem;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  padding: .3rem 1rem;
  font-size: .8rem;
  letter-spacing: .05em;
  margin-bottom: 1.5rem;
}
.hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; line-height: 1.2; max-width: 700px; margin: 0 auto 1.25rem; }
.hero h1 em { font-style: normal; color: #93c5fd; }
.hero p { font-size: 1.1rem; color: rgba(255,255,255,.75); max-width: 520px; margin: 0 auto 2.5rem; }
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 3rem; justify-content: center; margin-top: 4rem; flex-wrap: wrap; }
.hero-stats .stat strong { display: block; font-size: 1.8rem; font-weight: 700; }
.hero-stats .stat span { font-size: .85rem; color: rgba(255,255,255,.6); }

/* ── SECTIONS ──────────────────────────────────────────────────────────── */
section { padding: 5rem 1.5rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label { font-size: .8rem; font-weight: 600; letter-spacing: .1em; color: var(--blue); text-transform: uppercase; margin-bottom: .5rem; }
.section-title { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 1rem; }
.section-sub { color: var(--muted); max-width: 540px; }

/* ── FEATURES ─────────────────────────────────────────────────────────── */
.features { background: var(--light); }
.features-header { text-align: center; margin-bottom: 3.5rem; }
.features-header .section-sub { margin: 0 auto; }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid #e2e8f0;
  transition: box-shadow .2s;
}
.feature-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.07); }
.feature-icon { font-size: 1.75rem; margin-bottom: 1rem; }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .5rem; }
.feature-card p { font-size: .9rem; color: var(--muted); }

/* ── OTOMASYON BANDI ──────────────────────────────────────────────────── */
.auto-band {
  background: linear-gradient(135deg, #0f172a 0%, #15264a 100%);
  color: var(--white);
}
.auto-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1rem;
}
.auto-item {
  display: flex; align-items: center; gap: .85rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  font-size: .95rem; color: rgba(255,255,255,.9);
}
.auto-item span { font-size: 1.4rem; flex-shrink: 0; }

/* ── PRICING ──────────────────────────────────────────────────────────── */
.pricing { background: var(--white); }
.pricing-header { text-align: center; margin-bottom: 3.5rem; }
.pricing-header .section-sub { margin: 0 auto; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; align-items: start; }
.pricing-card {
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
}
.pricing-card.popular {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(26,86,219,.08);
}
.popular-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: var(--white);
  font-size: .75rem; font-weight: 700;
  padding: .25rem .9rem; border-radius: 999px;
}
.plan-name { font-size: .85rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .5rem; }
.plan-price { font-size: 2.4rem; font-weight: 800; line-height: 1; margin-bottom: .25rem; }
.plan-price sup { font-size: 1.1rem; font-weight: 600; vertical-align: super; }
.plan-price sub { font-size: .95rem; font-weight: 400; color: var(--muted); }
.plan-desc { font-size: .88rem; color: var(--muted); margin-bottom: 1.5rem; }
.plan-features { list-style: none; margin-bottom: 2rem; display: flex; flex-direction: column; gap: .6rem; }
.plan-features li { font-size: .9rem; display: flex; gap: .5rem; align-items: flex-start; }
.plan-features li::before { content: "✓"; color: var(--green); font-weight: 700; flex-shrink: 0; }
.plan-cta { width: 100%; text-align: center; justify-content: center; }
.plan-cta.ghost { background: transparent; border: 1.5px solid #cbd5e1; color: var(--dark); }
.plan-cta.ghost:hover { background: var(--light); }

/* ── CONTACT ──────────────────────────────────────────────────────────── */
.contact { background: var(--light); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; max-width: 1000px; margin: 0 auto; }
@media (max-width: 680px) { .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; } }
.contact-copy p { color: var(--muted); margin-top: .75rem; line-height: 1.7; }
.contact-copy .contact-email { margin-top: 1.5rem; font-size: .95rem; color: var(--blue); }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: .7rem 1rem;
  border: 1.5px solid #cbd5e1;
  border-radius: var(--radius);
  font-size: .95rem;
  font-family: inherit;
  background: var(--white);
  color: var(--dark);
  transition: border-color .15s;
}
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--blue); }
.contact-form textarea { resize: vertical; min-height: 110px; }
.contact-success { background: #dcfce7; border: 1px solid #bbf7d0; color: #15803d; padding: .9rem 1.2rem; border-radius: var(--radius); font-size: .9rem; }
.contact-error { background: #fee2e2; border: 1px solid #fecaca; color: #b91c1c; padding: .9rem 1.2rem; border-radius: var(--radius); font-size: .9rem; }

/* ── FOOTER ──────────────────────────────────────────────────────────── */
footer {
  background: var(--dark); color: rgba(255,255,255,.5);
  text-align: center; padding: 2rem 1.5rem;
  font-size: .85rem;
}
footer a { color: rgba(255,255,255,.7); }
footer a:hover { color: var(--white); }

/* ── RESPONSIVE ────────────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .lp-nav-links { display: none; }
  .hero-stats { gap: 2rem; }
}
