/* ==========================================================================
   Lioncure - Design System
   Koyu lacivert zemin + camgöbeği/mor/magenta gradyan aksan rengi.
   ========================================================================== */

:root {
  /* Yüzeyler */
  --bg-body: #080b16;
  --bg-body-alt: #0c1020;
  --bg-surface: #12172b;
  --bg-surface-2: #161d38;
  --border-subtle: rgba(148, 163, 210, 0.14);
  --border-glow: rgba(139, 92, 246, 0.35);

  /* Marka gradyanı */
  --color-cyan: #22d3ee;
  --color-purple: #8b5cf6;
  --color-magenta: #e879f9;
  --color-gold: #d4af37;
  --gradient-gold: linear-gradient(145deg, #bf953f 0%, #fcf6ba 25%, #b38728 50%, #fbf5b7 75%, #aa771c 100%);
  --gradient-brand: linear-gradient(90deg, var(--color-cyan) 0%, var(--color-purple) 55%, var(--color-magenta) 100%);
  --gradient-brand-soft: linear-gradient(135deg, rgba(34, 211, 238, 0.18), rgba(139, 92, 246, 0.18) 55%, rgba(232, 121, 249, 0.18));

  /* Metin */
  --text-primary: #f4f6ff;
  --text-secondary: #a7b0d1;
  --text-muted: #6b7398;

  /* Şekil / gölge */
  --radius-xl: 24px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow-glow: 0 0 50px -10px rgba(139, 92, 246, 0.35);
  --shadow-card: 0 20px 40px -20px rgba(0, 0, 0, 0.6);

  --container-width: 1240px;
  --header-height: 84px;
}

/* --------------------------------------------------------------------------
   Reset & base
   -------------------------------------------------------------------------- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg-body);
  color: var(--text-primary);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: "Manrope", "Inter", sans-serif;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 16px;
  color: var(--text-primary);
}

p {
  margin: 0 0 16px;
  color: var(--text-secondary);
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-cyan);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 3px;
  border-radius: 4px;
  background: var(--gradient-brand);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-brand);
  color: #08101f;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
}

.btn-outline:hover {
  border-color: var(--color-purple);
  color: var(--color-cyan);
}

/* --------------------------------------------------------------------------
   Header / Navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 20px;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  margin: 20px 24px 0;
  background: rgba(13, 17, 33, 0.9);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 48px -24px rgba(0, 0, 0, 0.65);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 32px;
}

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

.brand-logo {
  height: 34px;
  width: auto;
  flex-shrink: 0;
}

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

.main-nav a {
  position: relative;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--color-cyan);
}

.main-nav a.active {
  color: var(--color-cyan);
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 2px;
  height: 2px;
  border-radius: 2px;
  background: var(--color-cyan);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 72px;
  background:
    radial-gradient(circle at 85% 20%, rgba(139, 92, 246, 0.18), transparent 45%),
    radial-gradient(circle at 10% 80%, rgba(34, 211, 238, 0.12), transparent 40%),
    var(--bg-body);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 50%;
  background-image: url("/img/hero-pattern.jpg");
  background-size: cover;
  background-position: left top;
  background-repeat: no-repeat;
  opacity: 0.85;
  mask-image: linear-gradient(to right, black 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, black 60%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "content visual"
    "cards cards"
    "cta cta";
  column-gap: 20px;
  row-gap: 0;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  grid-area: content;
  align-self: center;
  padding: 24px 0;
}

.hero-visual {
  grid-area: visual;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  align-self: start;
  margin-right: -24px;
}

.hero-title {
  font-size: clamp(32px, 3.8vw, 50px);
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 18px;
  max-width: 460px;
  margin-bottom: 0;
}

.hero-visual img,
.hero-visual svg {
  width: 100%;
  max-width: 640px;
  height: auto;
  filter: drop-shadow(0 0 60px rgba(139, 92, 246, 0.35));
}

.feature-cards {
  grid-area: cards;
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background:
    linear-gradient(var(--bg-surface), var(--bg-surface)) padding-box,
    var(--gradient-brand) border-box;
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  padding: 26px;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 20px;
  align-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.feature-icon {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: center;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

.feature-icon svg {
  width: 68px;
  height: 68px;
  stroke: url(#iconGradient);
  filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.55));
}

.feature-card h3 {
  grid-column: 2;
  align-self: end;
  font-size: 18px;
  margin-bottom: 8px;
}

.feature-card p {
  grid-column: 2;
  align-self: start;
  font-size: 14.5px;
  margin-bottom: 0;
}

.hero-cta {
  grid-area: cta;
  margin-top: 44px;
  display: flex;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   Reklam / kampanya carousel'i
   -------------------------------------------------------------------------- */
.ad-carousel {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface);
  box-shadow: var(--shadow-card);
}

.ad-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.ad-slide {
  min-width: 100%;
  min-height: 360px;
  box-sizing: border-box;
  padding: 56px 72px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  background:
    radial-gradient(120% 130% at 100% 0%, rgba(var(--accent-rgb), 0.22), transparent 55%),
    radial-gradient(90% 120% at 0% 100%, rgba(var(--accent-rgb), 0.10), transparent 50%),
    linear-gradient(90deg, #0c1020, var(--bg-surface-2));
}

.ad-slide .eyebrow {
  color: rgb(var(--accent-rgb));
}

.ad-slide .eyebrow::before {
  background: rgb(var(--accent-rgb));
}

.ad-slide h2 {
  font-size: clamp(26px, 3.2vw, 40px);
  margin-bottom: 16px;
}

.ad-slide p {
  font-size: 16.5px;
  max-width: 500px;
  margin-bottom: 28px;
}

.ad-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ad-visual svg {
  width: 190px;
  height: 190px;
  stroke: rgb(var(--accent-rgb));
  filter: drop-shadow(0 0 36px rgba(var(--accent-rgb), 0.55));
}

.ad-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.ad-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.25);
  transition: background 0.2s ease, width 0.2s ease;
}

.ad-dot.active {
  width: 26px;
  border-radius: 5px;
  background: var(--gradient-brand);
}

.ad-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  background: rgba(8, 11, 22, 0.6);
  color: var(--text-primary);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.ad-arrow:hover {
  border-color: var(--color-purple);
  background: rgba(8, 11, 22, 0.85);
}

.ad-prev { left: 18px; }
.ad-next { right: 18px; }

@media (max-width: 760px) {
  .ad-slide {
    grid-template-columns: 1fr;
    padding: 40px 28px 52px;
    text-align: center;
  }
  .ad-slide .eyebrow { justify-content: center; }
  .ad-slide p { margin-left: auto; margin-right: auto; }
  .ad-visual { display: none; }
  .ad-arrow { display: none; }
}

/* --------------------------------------------------------------------------
   Generic sections
   -------------------------------------------------------------------------- */
.section {
  padding: 88px 0;
}

.section-alt {
  background: var(--bg-body-alt);
}

.section-header {
  max-width: 640px;
  margin: 0 0 48px;
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

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

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

.card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 30px;
}

/* Page header banner (inner pages) */
.page-banner {
  position: relative;
  overflow: hidden;
  padding: 64px 0;
  background:
    radial-gradient(circle at 80% 0%, rgba(139, 92, 246, 0.2), transparent 50%),
    var(--bg-body);
  border-bottom: 1px solid var(--border-subtle);
  text-align: center;
}

.page-banner h1 {
  font-size: clamp(30px, 3.6vw, 44px);
  margin-bottom: 12px;
}

.breadcrumb {
  display: inline-flex;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--color-cyan);
}

/* --------------------------------------------------------------------------
   Solutions (Çözümler) cards
   -------------------------------------------------------------------------- */
.solution-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.solution-media {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 22px;
  background: #0c1020;
  display: flex;
}

.solution-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.solution-card h3 {
  font-size: 19px;
  margin-bottom: 16px;
}

.solution-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  color: var(--text-secondary);
  font-size: 15px;
}

.solution-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient-brand);
}

/* --------------------------------------------------------------------------
   Service cards (Hizmetlerimiz)
   -------------------------------------------------------------------------- */
.service-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-card);
}

.service-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 56px;
  height: 56px;
  stroke: url(#iconGradient);
  filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.5));
}

.service-card h3 {
  font-size: 15.5px;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 14px;
  min-height: 42px;
}

.service-card p {
  font-size: 14.5px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-card .btn {
  margin-top: auto;
  padding: 11px 24px;
  font-size: 13.5px;
}

/* --------------------------------------------------------------------------
   Neden LionCure? (Windows & Mac)
   -------------------------------------------------------------------------- */
.why-section {
  background: var(--bg-body-alt);
}

.reason-card p {
  margin-bottom: 0;
}

.why-cta-box {
  max-width: 760px;
  margin: 44px auto 0;
  padding: 24px 28px;
  border-radius: var(--radius-md);
  background: var(--gradient-brand-soft);
  border: 1px solid var(--border-glow);
  text-align: center;
}

.why-cta-box strong {
  display: block;
  color: var(--text-primary);
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  margin-bottom: 8px;
}

.why-cta-box p {
  margin: 0;
  font-size: 14.5px;
}

/* --------------------------------------------------------------------------
   About (Hakkımızda)
   -------------------------------------------------------------------------- */
.about-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.about-portrait img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
  padding-top: 28px;
}

.timeline-track {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-brand);
  opacity: 0.6;
}

.timeline-item {
  position: relative;
}

.timeline-dot {
  position: absolute;
  top: -33px;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--bg-body), 0 0 16px 2px currentColor;
}

.timeline-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.timeline-item p {
  font-size: 14px;
}

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

.team-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}

.team-avatar {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--gradient-brand-soft);
  border: 1px solid var(--border-glow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-avatar svg {
  width: 34px;
  height: 34px;
}

.team-card h4 {
  font-size: 15px;
  margin: 0 0 10px;
}

.team-card p {
  font-size: 13.5px;
  margin: 0;
}

/* Vizyon & Misyon cards */
.vm-grid {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.vm-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 24px;
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
}

.vm-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-brand-soft);
  border: 1px solid var(--border-glow);
}

.vm-icon svg {
  width: 22px;
  height: 22px;
  stroke: url(#iconGradient);
}

.vm-card h3 {
  font-size: 16px;
  margin: 2px 0 6px;
}

.vm-card p {
  font-size: 14px;
  margin: 0;
}

/* Stats bar */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat {
  text-align: center;
  padding: 28px 18px;
  border-radius: var(--radius-lg);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
}

.stat-num {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 40px;
  line-height: 1;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 14.5px;
  color: var(--text-secondary);
}

/* Sectors (Hizmet verdiğimiz sektörler) */
.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.sector-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 26px 18px;
  border-radius: var(--radius-lg);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.sector-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-card);
}

.sector-ico {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-brand-soft);
  border: 1px solid var(--border-glow);
}

.sector-ico svg {
  width: 28px;
  height: 28px;
  stroke: url(#iconGradient);
}

.sector-card h4 {
  font-size: 15px;
  margin: 0;
}

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.testimonial-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.testimonial-stars {
  color: var(--color-cyan);
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-brand);
}

/* --------------------------------------------------------------------------
   Blog
   -------------------------------------------------------------------------- */
.blog-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.blog-card-media {
  background: #0c1020;
  overflow: hidden;
  display: flex;
}

.blog-card-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.blog-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-date {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.blog-card h3 {
  font-size: 19px;
}

.blog-card-link {
  margin-top: auto;
  font-weight: 700;
  color: var(--color-cyan);
}

/* --------------------------------------------------------------------------
   Contact form
   -------------------------------------------------------------------------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

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

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg-surface-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 15px;
  transition: border-color 0.2s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-purple);
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.field-validation-error {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: #fb7185;
}

.alert-success {
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  background: rgba(34, 211, 238, 0.12);
  border: 1px solid rgba(34, 211, 238, 0.35);
  color: var(--color-cyan);
  margin-bottom: 24px;
  font-weight: 600;
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 28px;
  border: 1px solid var(--border-subtle);
}

.contact-map img {
  width: 100%;
  display: block;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--gradient-brand-soft);
  border: 1px solid var(--border-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.social-links a {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.social-links a:hover {
  border-color: var(--color-purple);
  transform: translateY(-2px);
}

.social-links svg {
  width: 18px;
  height: 18px;
  stroke: url(#iconGradient);
}

/* Process steps (Teknolojiler) */
.step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-card {
  padding: 30px 24px;
  border-radius: var(--radius-lg);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
}

.step-num {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 15px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-brand-soft);
  border: 1px solid var(--border-glow);
  color: var(--color-cyan);
  margin-bottom: 18px;
}

.step-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 14px;
  margin: 0;
}

/* Blog categories + newsletter */
.blog-cats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 44px;
}

.chip {
  padding: 9px 20px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.chip:hover {
  color: var(--text-primary);
  border-color: var(--color-purple);
}

.chip.active {
  background: var(--gradient-brand);
  color: #08101f;
  border-color: transparent;
  font-weight: 700;
}

.newsletter {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 32px;
  border-radius: var(--radius-xl);
  background: var(--gradient-brand-soft);
  border: 1px solid var(--border-glow);
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 460px;
  margin: 22px auto 0;
}

.newsletter-form .form-control {
  background: rgba(8, 11, 22, 0.6);
}

@media (max-width: 560px) {
  .newsletter-form {
    flex-direction: column;
  }
}

/* --------------------------------------------------------------------------
   Lioncure Suite (premium ürün sayfası)
   -------------------------------------------------------------------------- */
.suite-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0 96px;
  background:
    linear-gradient(rgba(6, 7, 12, 0.5), rgba(6, 7, 12, 0.72)),
    url("/img/suite-bg.jpg");
  background-size: cover;
  background-position: center;
}

.suite-hero {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 8px;
}

.suite-frame {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 26px 52px 24px;
  border-radius: 20px;
  background: linear-gradient(158deg, #262c42 0%, #0c0f1a 58%, #171d30 100%);
  border: 1px solid rgba(196, 210, 245, 0.5);
  box-shadow:
    0 0 0 1px rgba(120, 145, 200, 0.18),
    0 0 55px -6px rgba(96, 134, 224, 0.5),
    inset 0 2px 0 rgba(255, 255, 255, 0.22),
    inset 0 -14px 34px -14px rgba(0, 0, 0, 0.65);
}

.suite-frame::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 15px;
  border: 1px solid rgba(150, 170, 215, 0.18);
  pointer-events: none;
}

.suite-frame img {
  height: 46px;
  width: auto;
}

.suite-frame .suite-sub {
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-left: 0.42em;
}

.suite-tag {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  padding: 7px 30px;
  border-radius: 8px;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: #2a1e02;
  background: var(--gradient-gold);
  border: 1px solid rgba(255, 240, 190, 0.6);
  box-shadow: 0 8px 22px -8px rgba(184, 134, 11, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.suite-exclusive {
  display: inline-block;
  margin: 34px 0 22px;
  padding: 10px 30px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2a1e02;
  background: var(--gradient-gold);
  border: 1px solid rgba(255, 240, 190, 0.6);
  box-shadow: 0 10px 30px -10px rgba(184, 134, 11, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.suite-hero h1 {
  font-size: clamp(30px, 4vw, 46px);
  margin-bottom: 20px;
}

.suite-hero > p {
  font-size: 17px;
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-secondary);
}

.suite-date {
  display: inline-block;
  margin-top: 26px;
  padding: 11px 28px;
  border-radius: 999px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
  background: #2b2b2f;
  border: 1px solid var(--color-gold);
  box-shadow: 0 0 22px -8px rgba(220, 192, 137, 0.6);
}

.suite-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 54px;
}

.suite-card {
  position: relative;
  padding: 42px 30px 32px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(130% 70% at 50% 0%, rgba(var(--accent-rgb), 0.12), transparent 68%),
    rgba(13, 16, 30, 0.82);
  border: 1px solid rgba(var(--accent-rgb), 0.42);
  box-shadow: 0 0 44px -20px rgba(var(--accent-rgb), 0.7);
  backdrop-filter: blur(4px);
}

.suite-label {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  border-radius: 999px;
  background: #0a0c16;
  border: 1px solid rgba(var(--accent-rgb), 0.6);
  color: rgb(var(--accent-rgb));
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.suite-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.suite-card > p {
  font-size: 14.5px;
  color: var(--text-secondary);
  margin-bottom: 22px;
}

.suite-features {
  display: flex;
  flex-direction: column;
  gap: 13px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 20px;
}

.suite-feature {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 14.5px;
  color: var(--text-secondary);
}

.suite-feature svg {
  width: 18px;
  height: 18px;
  stroke: rgb(var(--accent-rgb));
  flex-shrink: 0;
}

.suite-footer {
  text-align: center;
  margin-top: 52px;
}

.suite-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

.suite-note {
  max-width: 640px;
  margin: 0 auto 24px;
  color: var(--text-muted);
  font-size: 14.5px;
}

.btn-gold {
  background: var(--gradient-gold);
  color: #2a1e02;
  border: 1px solid rgba(255, 240, 190, 0.5);
  box-shadow: 0 10px 30px -10px rgba(184, 134, 11, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-gold:hover {
  transform: translateY(-2px);
  opacity: 0.94;
}

@media (max-width: 900px) {
  .suite-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  margin: 0 24px;
  padding: 48px 40px 28px;
  background: var(--bg-body-alt);
  border: 1px solid var(--border-subtle);
  border-bottom: none;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  box-shadow: 0 -24px 48px -32px rgba(0, 0, 0, 0.6);
}

.site-footer .container {
  padding: 0;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-subtle);
}

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

.footer-nav a {
  font-size: 14.5px;
  color: var(--text-primary);
}

.footer-nav a:hover,
.footer-nav a.active {
  color: var(--color-cyan);
}

.footer-bottom {
  padding-top: 20px;
  font-size: 13.5px;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-mail {
  color: var(--color-cyan);
  font-weight: 600;
}

.footer-mail:hover {
  color: var(--color-purple);
}

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

  .hero-visual {
    order: -1;
    max-width: 360px;
    margin: 0 auto 24px;
  }

  .feature-cards,
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  .contact-layout,
  .grid-2,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .grid-4,
  .stats-grid,
  .sector-grid,
  .step-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .main-nav {
    position: fixed;
    inset: var(--header-height) 0 0 0;
    background: var(--bg-body);
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    display: none;
    overflow-y: auto;
  }

  .main-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .feature-cards,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 56px 0 48px;
  }

  .section {
    padding: 56px 0;
  }
}
