/* ============================================================
   PsykoLink — Eylem Raporları Sayfası
   Design System: Psiko Mavi & Mint Paleti
   Fonts: Poppins (headers) + Inter (body)
   ============================================================ */

:root {
  --primary-green: #10B981;
  --primary-blue: #3B82F6;
  --accent-purple: #6C63FF;
  --success-green: #22C55E;
  --warning-orange: #F59E0B;
  --gradient-blue-green: linear-gradient(135deg, #27AE60, #3498DB);
  --soft-gray: #F9FAFB;
  --dark-navy: #0C0F1A;
  --text-black: #1F2937;
  --text-light-gray: #9CA3AF;
  --white: #FFFFFF;
  --surface: rgba(255, 255, 255, 0.65);
  --border: rgba(59, 130, 246, 0.3);
  --shadow: 0 25px 60px -30px rgba(14, 22, 40, 0.6);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: clamp(16rem, 90vw, 1200px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text-black);
  background: var(--soft-gray);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.2;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

.inner {
  width: min(var(--container), 100%);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(59, 130, 246, 0.15);
}

.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.logo-img {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.65rem;
  object-fit: cover;
}

.logo-text {
  font-size: 1.1rem;
  color: var(--text-black);
  font-family: "Poppins", sans-serif;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  letter-spacing: 0.01em;
  color: var(--text-black);
  transition: color 0.25s ease, background-color 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background-color: rgba(59, 130, 246, 0.1);
  color: var(--primary-blue);
}

.site-nav a.active {
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--primary-green);
  font-weight: 600;
}

.nav-cta {
  background: var(--primary-green) !important;
  color: white !important;
  box-shadow: 0 12px 30px -18px var(--primary-green);
}

.nav-cta:hover { background: var(--success-green) !important; color: white !important; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.4rem;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-black);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Nav backdrop (mobile drawer overlay) */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 500;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.nav-backdrop.is-open { display: block; }

/* ============================================================
   BADGE & TAG
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #059669;
}

.tag {
  display: inline-block;
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.25);
  white-space: nowrap;
}

.tag.blue   { background: rgba(59,130,246,0.1); color: #2563EB; border-color: rgba(59,130,246,0.25); }
.tag.purple { background: rgba(108,99,255,0.1); color: var(--accent-purple); border-color: rgba(108,99,255,0.25); }
.tag.orange { background: rgba(245,158,11,0.1); color: #D97706; border-color: rgba(245,158,11,0.25); }
.tag.red    { background: rgba(239,68,68,0.1);  color: #DC2626; border-color: rgba(239,68,68,0.25); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn.primary {
  background: linear-gradient(135deg, var(--primary-green), #0EA5E9);
  color: white;
  box-shadow: 0 12px 30px -18px var(--primary-green);
}
.btn.primary:hover { transform: translateY(-1px); box-shadow: 0 16px 40px -20px rgba(16,185,129,0.55); }

.btn.ghost {
  background: transparent;
  color: var(--text-black);
  border: 1.5px solid rgba(59, 130, 246, 0.3);
}
.btn.ghost:hover { background: rgba(59,130,246,0.06); border-color: var(--primary-blue); color: var(--primary-blue); }

/* ============================================================
   HERO
   ============================================================ */
.ar-hero {
  background: linear-gradient(160deg, #0C0F1A 0%, #0F1E3A 55%, #0C1A2E 100%);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.ar-hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(16,185,129,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.ar-hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59,130,246,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.ar-hero .inner { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #34D399;
  margin-bottom: 1.5rem;
}

.ar-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: white;
  margin-bottom: 1.5rem;
  max-width: 700px;
}

.ar-hero .gradient-text {
  background: linear-gradient(135deg, var(--primary-green), #0EA5E9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ar-hero .hero-quote {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.72);
  max-width: 640px;
  line-height: 1.75;
  margin-bottom: 0.75rem;
  font-style: italic;
  border-left: 3px solid var(--primary-green);
  padding-left: 1.25rem;
}

.ar-hero .hero-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  max-width: 600px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.hero-micro {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  margin-top: 1rem;
}

/* ============================================================
   INTRO BÖLÜM
   ============================================================ */
.ar-intro {
  padding: 4rem 0 2.5rem;
  background: var(--white);
}

.ar-intro .inner {
  max-width: 820px;
  text-align: center;
}

.ar-intro h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
}

.ar-intro .lead {
  font-size: 1.05rem;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.ar-intro .trust-note {
  font-size: 0.9rem;
  color: var(--text-light-gray);
  background: rgba(16,185,129,0.06);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.2rem;
  display: inline-block;
  margin-top: 0.5rem;
}

/* ============================================================
   İSTATİSTİK ŞERITTE
   ============================================================ */
.ar-stats {
  background: linear-gradient(135deg, #0C0F1A 0%, #0F1E3A 100%);
  padding: 2rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.5rem;
}

.stat-item {
  text-align: center;
  padding: 1.25rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  transition: background 0.2s;
}

.stat-item:hover { background: rgba(255,255,255,0.08); }

.stat-item .stat-num {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-green);
  display: block;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-item .stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

/* ============================================================
   ARAMA & FİLTRE
   ============================================================ */
.ar-filter {
  background: var(--white);
  padding: 2rem 0;
  border-bottom: 1px solid rgba(59,130,246,0.1);
  position: sticky;
  top: 72px;
  z-index: 100;
  box-shadow: 0 4px 20px -8px rgba(14,22,40,0.08);
}

.filter-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.filter-search {
  flex: 1;
  min-width: 220px;
  position: relative;
}

.filter-search i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light-gray);
  font-size: 0.9rem;
  pointer-events: none;
}

.filter-search input {
  width: 100%;
  padding: 0.65rem 1rem 0.65rem 2.6rem;
  border: 1.5px solid rgba(59,130,246,0.2);
  border-radius: 999px;
  font-size: 0.9rem;
  font-family: "Inter", sans-serif;
  color: var(--text-black);
  background: var(--soft-gray);
  outline: none;
  transition: border-color 0.2s;
}

.filter-search input:focus { border-color: var(--primary-blue); background: white; }

.filter-select {
  padding: 0.65rem 1.1rem;
  border: 1.5px solid rgba(59,130,246,0.2);
  border-radius: 999px;
  font-size: 0.88rem;
  font-family: "Inter", sans-serif;
  color: var(--text-black);
  background: var(--soft-gray);
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s;
  min-width: 140px;
}

.filter-select:focus { border-color: var(--primary-blue); }

.filter-btn {
  padding: 0.65rem 1.4rem;
  background: linear-gradient(135deg, var(--primary-green), #0EA5E9);
  color: white;
  border: none;
  border-radius: 999px;
  font-size: 0.88rem;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}

.filter-btn:hover { opacity: 0.9; }

.filter-reset {
  font-size: 0.82rem;
  color: var(--text-light-gray);
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  font-family: "Inter", sans-serif;
}

/* ============================================================
   ÖNE ÇIKAN RAPORLAR
   ============================================================ */
.ar-featured {
  padding: 3.5rem 0 2rem;
  background: var(--soft-gray);
}

.section-header {
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  margin-bottom: 0.4rem;
}

.section-header p {
  color: var(--text-light-gray);
  font-size: 0.9rem;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}

/* ============================================================
   RAPOR KARTLARI
   ============================================================ */
.ar-reports {
  padding: 3rem 0 5rem;
  background: var(--soft-gray);
}

.reports-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

/* Kart — temel */
.report-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(59,130,246,0.1);
  box-shadow: 0 4px 24px -10px rgba(14,22,40,0.07);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.report-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px -20px rgba(59,130,246,0.2);
}

/* Öne çıkan kart modifier */
.report-card--featured {
  border-color: rgba(16,185,129,0.3);
  background: linear-gradient(160deg, rgba(16,185,129,0.04), var(--white));
}

/* Kapak görseli */
.report-card__cover {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
  display: block;
}

.report-card__cover-placeholder {
  width: 100%;
  aspect-ratio: 16/7;
  background: linear-gradient(135deg, rgba(16,185,129,0.08), rgba(59,130,246,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
}

.report-card__cover-placeholder i {
  font-size: 2.5rem;
  color: rgba(59,130,246,0.3);
}

/* Kart gövdesi */
.report-card__body {
  padding: 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.report-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.report-card__date {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-light-gray);
  font-weight: 500;
}

.report-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.report-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-black);
  line-height: 1.35;
  flex-shrink: 0;
}

.report-card__excerpt {
  font-size: 0.88rem;
  color: #4B5563;
  line-height: 1.65;
  flex: 1;
}

/* Durum badge */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  border: 1px solid transparent;
}

.status-badge--tamamlandi  { background: rgba(34,197,94,0.1);  color: #15803D; border-color: rgba(34,197,94,0.25); }
.status-badge--gelistiriliyor { background: rgba(59,130,246,0.1); color: #1D4ED8; border-color: rgba(59,130,246,0.25); }
.status-badge--test        { background: rgba(245,158,11,0.1); color: #B45309; border-color: rgba(245,158,11,0.25); }
.status-badge--planlandı   { background: rgba(156,163,175,0.15); color: #6B7280; border-color: rgba(156,163,175,0.3); }

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

/* Kart alt satır */
.report-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(59,130,246,0.08);
  margin-top: auto;
}

.report-card__read-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-blue);
  transition: gap 0.2s;
}

.report-card__read-btn:hover { gap: 0.65rem; }

.report-card__share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.82rem;
  color: var(--text-light-gray);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  font-family: "Inter", sans-serif;
}

.report-card__share-btn:hover { color: var(--primary-green); background: rgba(16,185,129,0.07); }

/* ============================================================
   PAYLAŞIM MODALİ
   ============================================================ */
.share-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.share-modal-overlay.open { display: flex; }

.share-modal {
  background: white;
  border-radius: var(--radius-md);
  padding: 1.75rem;
  width: min(420px, 90vw);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.3);
}

.share-modal h3 {
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}

.share-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.share-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(59,130,246,0.15);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  background: white;
  font-family: "Inter", sans-serif;
  color: var(--text-black);
  text-decoration: none;
}

.share-option:hover { border-color: var(--primary-blue); background: rgba(59,130,246,0.04); }
.share-option--copy { grid-column: 1 / -1; }

.share-modal__close {
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.6rem;
  background: none;
  border: none;
  color: var(--text-light-gray);
  font-size: 0.85rem;
  cursor: pointer;
  font-family: "Inter", sans-serif;
}

/* ============================================================
   PAGİNATİON
   ============================================================ */
.ar-pagination {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.ar-pagination a,
.ar-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2.25rem;
  padding: 0 0.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  border: 1.5px solid rgba(59,130,246,0.18);
  color: var(--text-black);
  transition: all 0.2s;
}

.ar-pagination a:hover { border-color: var(--primary-blue); color: var(--primary-blue); background: rgba(59,130,246,0.04); }
.ar-pagination .active span { background: var(--primary-blue); color: white; border-color: var(--primary-blue); }

/* ============================================================
   BOŞ DURUM
   ============================================================ */
.ar-empty {
  text-align: center;
  padding: 4rem 1.5rem;
  grid-column: 1 / -1;
}

.ar-empty i { font-size: 3rem; color: rgba(59,130,246,0.2); margin-bottom: 1rem; display: block; }
.ar-empty h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.ar-empty p  { font-size: 0.9rem; color: var(--text-light-gray); }

/* ============================================================
   ETİK NOT
   ============================================================ */
.ethics-note {
  background: rgba(59, 130, 246, 0.04);
  border-top: 1px solid rgba(59, 130, 246, 0.12);
  padding: 1.1rem 0;
}

.ethics-note .inner {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.ethics-note i { color: var(--primary-blue); margin-top: 0.15rem; flex-shrink: 0; }
.ethics-note p { font-size: 0.82rem; color: #374151; margin: 0; line-height: 1.6; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark-navy);
  color: rgba(255, 255, 255, 0.78);
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.65;
  margin-top: 0.75rem;
  color: rgba(255,255,255,0.55);
}

.site-footer h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
  font-family: "Poppins", sans-serif;
}

.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.site-footer ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.site-footer ul li a:hover { color: var(--primary-green); }

.logo-text-footer {
  font-size: 1.1rem;
  color: white;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

.footer-note {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .reports-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .menu-toggle { display: flex; }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem;
    gap: 0.25rem;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(59,130,246,0.15);
    z-index: 999;
  }

  .site-header.nav-open .site-nav { display: flex; }
  .site-header .inner { position: relative; }
  .site-nav a { padding: 0.65rem 1rem; border-radius: var(--radius-sm); }

  .ar-hero { padding: 3.5rem 0 3rem; }
  .ar-hero h1 { font-size: clamp(1.7rem, 5vw, 2.2rem); }

  .reports-grid { grid-template-columns: 1fr; }
  .featured-grid { grid-template-columns: 1fr; }

  .filter-inner { gap: 0.5rem; }
  .filter-select { min-width: 0; flex: 1; }
  .filter-search { min-width: 100%; }

  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  .share-options { grid-template-columns: 1fr; }
  .share-option--copy { grid-column: 1; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
