/* =============================================
   SESHOST.NET — KURUMSAL TASARIM SİSTEMİ
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --navy:      #0a1628;
  --navy-mid:  #0f2040;
  --navy-soft: #1a3357;
  --blue:      #1d5fc4;
  --blue-lt:   #2c79e8;
  --accent:    #3b9eff;
  --accent-lt: #6bbdff;
  --white:     #ffffff;
  --off-white: #f7f9fc;
  --border:    #e4eaf2;
  --text:      #0f172a;
  --text-mid:  #3d5478;
  --text-muted:#6b7fa3;
  --card-bg:   #ffffff;
  --shadow-sm: 0 2px 8px rgba(10,22,40,0.06);
  --shadow-md: 0 8px 32px rgba(10,22,40,0.10);
  --shadow-lg: 0 20px 60px rgba(10,22,40,0.14);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

/* ── NAVBAR ─────────────────────────────── */
.sh-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,22,40,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.3s;
}

.sh-nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sh-nav__logo img { height: 38px; display: block; }

.sh-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.sh-nav__links a {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.72);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.02em;
  transition: color 0.2s, background 0.2s;
}

.sh-nav__links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}

.sh-nav__links a.active {
  color: var(--white);
}

.sh-nav__cta {
  background: var(--blue-lt);
  color: var(--white) !important;
  padding: 9px 18px !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s !important;
}
.sh-nav__cta:hover {
  background: var(--blue) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(29,95,196,0.35) !important;
}

/* mobile hamburger */
.sh-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  background: transparent;
  border: none;
}
.sh-nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.sh-nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.sh-nav__hamburger.open span:nth-child(2) { opacity: 0; }
.sh-nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile menu */
.sh-nav__mobile {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: rgba(10,22,40,0.99);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 20px 24px 28px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}
.sh-nav__mobile.open { display: flex; }
.sh-nav__mobile a {
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.sh-nav__mobile a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.sh-nav__mobile .sh-nav__cta { margin-top: 12px; text-align: center; }

/* ── PAGE OFFSET ────────────────────────── */
.page-wrap { padding-top: 70px; }

/* ── HERO ────────────────────────────────── */
.sh-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #0a1f3a 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
}

.sh-hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(44,121,232,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.sh-hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(59,158,255,0.10) 0%, transparent 70%);
  pointer-events: none;
}

/* subtle grid pattern */
.sh-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.sh-hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.sh-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(44,121,232,0.18);
  border: 1px solid rgba(44,121,232,0.35);
  color: var(--accent-lt);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.sh-hero__badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.sh-hero__title {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.sh-hero__title span {
  background: linear-gradient(135deg, var(--accent-lt), var(--blue-lt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sh-hero__sub {
  font-size: 17px;
  font-weight: 500;
  color: rgba(255,255,255,0.58);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.sh-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.sh-hero__img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sh-hero__img img {
  max-height: 320px;
  filter: drop-shadow(0 20px 60px rgba(44,121,232,0.35));
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* ── INNER PAGE HEADER ───────────────────── */
.sh-inner-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
}
.sh-inner-header::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(44,121,232,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.sh-inner-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}
.sh-inner-header__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.sh-inner-header__breadcrumb a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.sh-inner-header__breadcrumb a:hover { color: var(--white); }
.sh-inner-header__breadcrumb span { color: rgba(255,255,255,0.70); }
.sh-inner-header__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.sh-inner-header__title span {
  background: linear-gradient(135deg, var(--accent-lt), var(--blue-lt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sh-inner-header__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.52);
  margin-top: 10px;
  font-weight: 500;
}

/* ── BUTTONS ────────────────────────────── */
.sh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none !important;
  border-radius: var(--radius-md);
  padding: 13px 26px;
}
.sh-btn--primary {
  background: var(--blue-lt);
  color: var(--white) !important;
  box-shadow: 0 4px 20px rgba(29,95,196,0.3);
}
.sh-btn--primary:hover {
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(29,95,196,0.45);
}
.sh-btn--ghost {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85) !important;
  border: 1px solid rgba(255,255,255,0.14);
}
.sh-btn--ghost:hover {
  background: rgba(255,255,255,0.14);
  color: var(--white) !important;
  transform: translateY(-2px);
}
.sh-btn--outline-dark {
  background: transparent;
  color: var(--text) !important;
  border: 2px solid var(--border);
}
.sh-btn--outline-dark:hover {
  border-color: var(--blue-lt);
  color: var(--blue-lt) !important;
  transform: translateY(-2px);
}
.sh-btn--dark {
  background: var(--navy);
  color: var(--white) !important;
  box-shadow: 0 4px 20px rgba(10,22,40,0.2);
}
.sh-btn--dark:hover {
  background: var(--navy-soft);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(10,22,40,0.3);
}
.sh-btn--lg { padding: 16px 36px; font-size: 15px; border-radius: var(--radius-lg); }
.sh-btn--block { width: 100%; }

/* ── SECTION ────────────────────────────── */
.sh-section {
  padding: 96px 0;
}
.sh-section--alt {
  background: var(--off-white);
}
.sh-section--dark {
  background: var(--navy);
}
.sh-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── SECTION LABEL ──────────────────────── */
.sh-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-lt);
  margin-bottom: 14px;
}
.sh-heading {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1.12;
}
.sh-heading--white { color: var(--white); }
.sh-heading span {
  background: linear-gradient(135deg, var(--blue-lt), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sh-subheading {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.7;
  margin-top: 14px;
  max-width: 580px;
}
.sh-subheading--center { margin-left: auto; margin-right: auto; text-align: center; }
.sh-subheading--white { color: rgba(255,255,255,0.55); }

.sh-section-head { margin-bottom: 56px; }
.sh-section-head--center { text-align: center; }

/* ── FEATURES GRID ──────────────────────── */
.sh-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.sh-feat-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}
.sh-feat-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: rgba(44,121,232,0.2);
}
.sh-feat-card__icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, #e8f1fd, #d0e4fb);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--blue-lt);
  margin-bottom: 20px;
  transition: transform 0.3s;
}
.sh-feat-card:hover .sh-feat-card__icon { transform: scale(1.1) rotate(5deg); }
.sh-feat-card__title {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.sh-feat-card__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── PRICING CARDS ──────────────────────── */
.sh-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  align-items: start;
}

.sh-price-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px 32px;
  position: relative;
  transition: box-shadow 0.35s, transform 0.35s, border-color 0.35s;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.sh-price-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
  border-color: rgba(44,121,232,0.25);
}
.sh-price-card--popular {
  border-color: var(--blue-lt);
  box-shadow: 0 0 0 3px rgba(44,121,232,0.12), var(--shadow-md);
}
.sh-price-card--popular:hover {
  box-shadow: 0 0 0 3px rgba(44,121,232,0.2), var(--shadow-lg);
}

.sh-price-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue-lt), var(--accent));
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
  border: 3px solid var(--white);
  box-shadow: 0 4px 12px rgba(44,121,232,0.4);
}

.sh-price-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
}
.sh-price-card__icon {
  width: 56px; height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, #eef4fd, #dbeafb);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--blue-lt);
}
.sh-price-card__price-wrap { text-align: right; }
.sh-price-card__period {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2px;
  display: block;
}
.sh-price-card__amount {
  font-size: 38px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1;
}
.sh-price-card__currency {
  font-size: 18px;
  font-weight: 800;
  vertical-align: super;
  line-height: 1;
}

.sh-price-card__name {
  font-size: 22px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.sh-price-card__desc {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 24px;
}

.sh-price-card__divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 24px;
}

.sh-price-card__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.sh-price-card__feature {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sh-price-card__feat-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
}
.sh-price-card__feat-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--text-muted);
  flex-shrink: 0;
}
.sh-price-card__feat-val {
  font-size: 12px;
  font-weight: 700;
  background: #eef4fd;
  color: var(--blue);
  padding: 3px 10px;
  border-radius: 8px;
  white-space: nowrap;
}
.sh-price-card__feat-check {
  color: var(--blue-lt);
  font-size: 15px;
}

/* ── STATS BAR ──────────────────────────── */
.sh-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.sh-stat {
  background: var(--white);
  padding: 36px 28px;
  text-align: center;
}
.sh-stat__num {
  font-size: 40px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}
.sh-stat__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}
.sh-stat__sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ── FEATURE ROW ─────────────────────────── */
.sh-feat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sh-feat-row--reverse { }
.sh-feat-row__text .sh-label { margin-bottom: 12px; }
.sh-feat-row__list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sh-feat-row__list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mid);
}
.sh-feat-row__list-item i {
  color: var(--blue-lt);
  font-size: 16px;
  margin-top: 1px;
  flex-shrink: 0;
}
.sh-feat-row__img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  position: relative;
}
.sh-feat-row__img img {
  max-height: 280px;
  filter: drop-shadow(0 16px 48px rgba(44,121,232,0.35));
}

/* ── FAQ ─────────────────────────────────── */
.sh-faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 20px;
}
.sh-faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 28px;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.sh-faq-item:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(44,121,232,0.2);
}
.sh-faq-item__q {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.sh-faq-item__a {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.7;
}

/* ── CTA BANNER ─────────────────────────── */
.sh-cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--navy-soft) 100%);
  border-radius: var(--radius-xl);
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sh-cta-banner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(59,158,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.sh-cta-banner__title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.sh-cta-banner__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  margin-bottom: 32px;
}
.sh-cta-banner__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── FOOTER ──────────────────────────────── */
.sh-footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 64px 0 0;
}
.sh-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
}
.sh-footer__brand .sh-footer__logo { height: 36px; margin-bottom: 16px; display: block; }
.sh-footer__tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  line-height: 1.65;
  max-width: 260px;
  margin-bottom: 20px;
}
.sh-footer__contact {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}
.sh-footer__contact a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.sh-footer__contact a:hover { color: var(--white); }
.sh-footer__col-title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.sh-footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.sh-footer__col ul a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.sh-footer__col ul a:hover { color: var(--white); }
.sh-footer__bottom {
  max-width: 1280px;
  margin: 48px auto 0;
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.sh-footer__copy {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  font-weight: 500;
}
.sh-footer__copy a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.sh-footer__copy a:hover { color: var(--white); }

/* ── ABOUT / CONTACT CARDS ───────────────── */
.sh-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 40px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.sh-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.sh-card__icon {
  width: 60px; height: 60px;
  border-radius: 18px;
  background: linear-gradient(135deg, #e8f1fd, #d0e4fb);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--blue-lt);
  margin-bottom: 22px;
}
.sh-card__title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.sh-card__text {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.7;
}
.sh-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-lt);
  transition: gap 0.2s;
}
.sh-card__link:hover { gap: 10px; }

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 1024px) {
  .sh-feat-row { grid-template-columns: 1fr; gap: 40px; }
  .sh-footer__inner { grid-template-columns: 1fr 1fr; }
  .sh-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .sh-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .sh-hero__img { display: none; }
  .sh-hero { padding: 64px 0 60px; }
  .sh-section { padding: 64px 0; }
  .sh-nav__links { display: none; }
  .sh-nav__hamburger { display: flex; }
  .sh-pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .sh-footer__inner { grid-template-columns: 1fr; gap: 36px; }
  .sh-footer__bottom { flex-direction: column; text-align: center; }
  .sh-cta-banner { padding: 40px 24px; }
  .sh-stats { grid-template-columns: 1fr 1fr; }
  .sh-faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .sh-hero__actions { flex-direction: column; }
  .sh-cta-banner__actions { flex-direction: column; align-items: center; }
  .sh-stats { grid-template-columns: 1fr; }
}
