/* ============================================
   ROOT VARIABLES — BBA Bilişim Brand System
   AKINSOFT Kurumsal Kimlik: Beyaz / Mavi / Yeşil
   ============================================ */
:root {
  /* AKINSOFT Mavi — Primary (logodan ölçüldü: #0053AB) */
  --primary: #0053AB;
  --primary-soft: #2870C4;
  --primary-deep: #003B7A;
  --primary-tint: #E6EDF6;

  /* AKINSOFT Yeşil — Accent (logodan ölçüldü: #00B449) */
  --accent: #00B449;
  --accent-soft: #2ECC68;
  --accent-deep: #008838;
  --accent-tint: #E1F5E8;

  /* Lacivert / Ink */
  --ink: #0A2540;
  --ink-soft: #1A3A5F;
  --ink-muted: #4A5E7A;
  --ink-light: #6B7B96;

  /* Backgrounds — Beyaz tabanlı */
  --cream: #FFFFFF;
  --cream-deep: #F5F8FB;
  --sand: #ECF1F6;
  --white: #FFFFFF;
  --line: #DCE4ED;
  --line-soft: #ECF1F6;

  /* Type */
  --display: 'Bricolage Grotesque', system-ui, sans-serif;
  --body: 'DM Sans', system-ui, sans-serif;
  --serif: 'Bricolage Grotesque', system-ui, sans-serif;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --container: 1280px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius: 14px;
  --radius-lg: 22px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: opacity 0.2s var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

::selection { background: var(--primary); color: var(--white); }

/* Global em styling — italik DEĞİL, mavi + bold vurgu */
em {
  font-style: normal;
  font-weight: 600;
  color: var(--primary);
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announce {
  background: var(--ink);
  color: var(--cream);
  font-size: 13px;
  font-weight: 400;
  padding: 10px var(--gutter);
  text-align: center;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}

.announce strong { color: var(--primary-soft); font-weight: 600; }
.announce a {
  text-decoration: underline;
  text-decoration-color: var(--primary);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  margin-left: 6px;
}
.announce a:hover { color: var(--primary-soft); }

/* ============================================
   HEADER / NAV
   ============================================ */
.header {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.94);
}

.nav {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.brand-mark {
  width: 54px;
  height: 54px;
  background: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 3px;
  border: 1.5px solid var(--primary-tint);
  box-shadow: 0 2px 8px rgba(0, 83, 171, 0.08);
  flex-shrink: 0;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-text { display: flex; flex-direction: column; line-height: 1.1; gap: 3px; }
.brand-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 19px;
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1;
}
.brand-name-region {
  color: var(--ink);
  font-weight: 700;
}
.brand-sub {
  font-size: 10.5px;
  color: var(--ink-muted);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.brand-sub strong {
  color: var(--ink);
  font-weight: 700;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-menu a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s var(--ease);
  position: relative;
}

.nav-menu a:hover { color: var(--primary-deep); background: var(--primary-tint); }

.nav-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 8px;
}
.nav-phone:hover { color: var(--primary-deep); }
.nav-phone svg { width: 16px; height: 16px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  font-family: var(--body);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: all 0.25s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  border: 1.5px solid transparent;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(0, 83, 171, 0.25);
}
.btn-primary:hover {
  background: var(--primary-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(0, 83, 171, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--white); }

.btn-light {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
}
.btn-light:hover { border-color: var(--ink); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--white);
  place-items: center;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding: clamp(60px, 8vw, 110px) var(--gutter) clamp(80px, 10vw, 140px);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 88% 12%, rgba(0, 83, 171, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 12% 88%, rgba(0, 180, 73, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid-deco {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(11, 13, 20, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, transparent 0%, black 30%, black 70%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 18px 6px 6px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 28px;
  box-shadow: 0 6px 18px rgba(0, 83, 171, 0.1);
}

.hero-badge-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--primary-tint);
  display: grid;
  place-items: center;
  overflow: hidden;
  flex-shrink: 0;
  padding: 3px;
}
.hero-badge-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-badge strong { color: var(--ink); font-weight: 600; }

.hero h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(40px, 5.6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 24px;
}

.hero h1 em {
  font-family: var(--display);
  font-style: normal;
  font-weight: 700;
  color: var(--primary);
  position: relative;
  display: inline-block;
}
.hero h1 em::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.1em;
  height: 0.18em;
  background: var(--accent);
  opacity: 0.35;
  z-index: -1;
  border-radius: 2px;
}

.hero-mark {
  display: inline-block;
  position: relative;
}
.hero-mark::after {
  content: '';
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: 4px;
  height: 14px;
  background: var(--primary);
  opacity: 0.25;
  z-index: -1;
  transform: skew(-8deg);
}

.hero p.lede {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--ink-muted);
  max-width: 540px;
  margin-bottom: 36px;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 40px;
}

.hero-btn-primary {
  padding: 16px 28px;
  font-size: 15.5px;
}

.hero-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  padding: 10px 4px;
}
.hero-phone-link:hover { color: var(--primary-deep); }
.hero-phone-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  display: grid;
  place-items: center;
}
.hero-phone-icon svg { width: 16px; height: 16px; }
.hero-phone-link small {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.hero-microproof {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.hero-mp {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ink-muted);
  font-weight: 500;
}
.hero-mp svg { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; }

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
  max-width: 560px;
  justify-self: end;
  width: 100%;
}

.hv-frame {
  position: absolute;
  inset: 0;
  background: var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 70px -20px rgba(11, 13, 20, 0.35);
}

.hv-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(0, 83, 171, 0.5) 0%, transparent 50%),
    radial-gradient(circle at 75% 85%, rgba(0, 180, 73, 0.6) 0%, transparent 55%);
}

.hv-dashboard {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 78%;
  background: var(--white);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 24px 50px -10px rgba(0,0,0,0.4);
  z-index: 3;
}

.hv-d-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-soft);
}
.hv-d-title { font-family: var(--display); font-size: 15px; font-weight: 700; color: var(--ink); }
.hv-d-badge {
  font-size: 10px;
  font-weight: 700;
  color: var(--accent-deep);
  background: var(--accent-tint);
  padding: 4px 8px;
  border-radius: 6px;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.hv-d-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: livedot 1.4s ease-in-out infinite;
}
@keyframes livedot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hv-d-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.hv-d-stat { background: var(--cream); padding: 12px; border-radius: 8px; }
.hv-d-stat small { font-size: 10px; color: var(--ink-light); text-transform: uppercase; letter-spacing: 0.04em; font-weight: 600; }
.hv-d-stat strong { display: block; font-family: var(--display); font-size: 20px; font-weight: 700; color: var(--ink); margin-top: 4px; }
.hv-d-stat span { font-size: 11px; color: var(--accent-deep); font-weight: 600; }

.hv-d-chart { height: 80px; position: relative; margin-top: 12px; }
.hv-d-chart svg { width: 100%; height: 100%; }

.hv-card-2 {
  position: absolute;
  bottom: 30px;
  left: 30px;
  width: 56%;
  background: var(--white);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 24px 50px -10px rgba(0,0,0,0.45);
  z-index: 4;
  border: 1px solid var(--line-soft);
}

.hv-c2-row { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.hv-c2-row:last-child { margin-bottom: 0; }
.hv-c2-ic {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--primary-tint);
  color: var(--primary-deep);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.hv-c2-ic svg { width: 16px; height: 16px; }
.hv-c2-txt { flex: 1; min-width: 0; }
.hv-c2-txt strong { font-size: 12px; font-weight: 600; color: var(--ink); display: block; }
.hv-c2-txt small { font-size: 10.5px; color: var(--ink-light); }
.hv-c2-amt { font-family: var(--display); font-weight: 700; font-size: 13px; color: var(--ink); }

.hv-tag {
  position: absolute;
  z-index: 5;
  background: var(--white);
  border-radius: 100px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: 0 14px 30px -8px rgba(0,0,0,0.3);
  border: 1px solid var(--line-soft);
}
.hv-tag-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(0, 180, 73, 0.2); }

.hv-tag-1 { top: 18%; left: -4%; animation: float 6s ease-in-out infinite; }
.hv-tag-2 { top: 58%; right: -2%; animation: float 6s ease-in-out infinite 2s; }

/* AKINSOFT Yetkili Bayi rozeti — hero visual sağ üst */
.hv-rozet {
  position: absolute;
  top: -22px;
  right: -22px;
  z-index: 6;
  width: 140px;
  height: 140px;
  background: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 24px 60px -10px rgba(0, 83, 171, 0.4);
  border: 3px solid var(--white);
  outline: 2px solid var(--primary);
  outline-offset: -1px;
  padding: 14px;
  animation: rozetPulse 4s ease-in-out infinite;
}
.hv-rozet img { width: 100%; height: 100%; object-fit: contain; }
.hv-rozet-label {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  font-family: var(--display);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: 100px;
  white-space: nowrap;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0, 83, 171, 0.35);
}

@keyframes rozetPulse {
  0%, 100% { box-shadow: 0 20px 50px -10px rgba(0, 83, 171, 0.35), 0 0 0 0 rgba(0, 83, 171, 0.4); }
  50% { box-shadow: 0 20px 50px -10px rgba(0, 83, 171, 0.35), 0 0 0 12px rgba(0, 83, 171, 0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ============================================
   TRUST STRIP
   ============================================ */
.trust {
  background: var(--ink);
  color: var(--cream);
  padding: 24px var(--gutter);
  overflow: hidden;
  border-top: 1px solid var(--ink-soft);
  border-bottom: 1px solid var(--ink-soft);
}

.trust-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.trust-item svg { width: 18px; height: 18px; color: var(--primary-soft); flex-shrink: 0; }
.trust-item strong { color: var(--white); font-weight: 600; }

.trust-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  display: grid;
  place-items: center;
  padding: 5px;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(0, 83, 171, 0.3);
}
.trust-logo img { width: 100%; height: 100%; object-fit: contain; }
.trust-item-akinsoft { gap: 14px; padding-right: 22px; border-right: 1px solid rgba(255, 255, 255, 0.12); margin-right: 6px; font-size: 14.5px; }
.trust-item-akinsoft strong { font-size: 15px; }
@media (max-width: 1024px) {
  .trust-item-akinsoft { border-right: none; padding-right: 0; }
}

/* ============================================
   SECTION BASE
   ============================================ */
.section { padding: clamp(80px, 10vw, 130px) var(--gutter); position: relative; }
.section-inner { max-width: var(--container); margin: 0 auto; position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-deep);
  margin-bottom: 20px;
}

.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--primary);
}

.section h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 20px;
  max-width: 900px;
}

.section h2 em {
  font-family: var(--display);
  font-style: normal;
  font-weight: 700;
  color: var(--primary);
}

.section-intro {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-muted);
  max-width: 620px;
  margin-bottom: 60px;
}

.section-header { margin-bottom: 60px; }

.section-header-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 70px;
}

/* ============================================
   POSITIONING STATEMENT
   ============================================ */
.position {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.position-quote {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: var(--ink);
  max-width: 1000px;
}

.position-quote em {
  font-family: var(--display);
  font-style: normal;
  font-weight: 700;
  color: var(--primary);
}

.position-quote .underline {
  position: relative;
  display: inline-block;
}
.position-quote .underline::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 10px;
  background: var(--primary);
  opacity: 0.22;
  z-index: -1;
}

.position-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 60px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.position-meta-item small {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 8px;
}
.position-meta-item strong {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.02em;
}

/* ============================================
   SECTORS GRID
   ============================================ */
.sectors { background: var(--cream-deep); }

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.sector-card {
  background: var(--white);
  padding: 40px 36px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  transition: all 0.4s var(--ease);
  cursor: pointer;
  overflow: hidden;
}

.sector-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.sector-card:hover { background: var(--cream); }
.sector-card:hover::before { transform: scaleX(1); }
.sector-card:hover .sector-icon { background: var(--ink); color: var(--primary-soft); }
.sector-card:hover .sector-arrow { transform: translate(4px, -4px); color: var(--primary-deep); }

.sector-num {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-light);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.sector-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--primary-tint);
  color: var(--primary-deep);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  transition: all 0.3s var(--ease);
}
.sector-icon svg { width: 28px; height: 28px; }

.sector-card h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 12px;
}

.sector-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-muted);
  margin-bottom: 20px;
  flex: 1;
}

.sector-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.sector-tag {
  font-size: 11.5px;
  font-weight: 500;
  padding: 4px 10px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--ink-muted);
}

.sector-arrow {
  position: absolute;
  top: 36px;
  right: 36px;
  width: 32px;
  height: 32px;
  color: var(--ink-light);
  transition: all 0.3s var(--ease);
}
.sector-arrow svg { width: 100%; height: 100%; }

/* ============================================
   WOLVOX 26 SPOTLIGHT
   ============================================ */
.spotlight {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.spotlight::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 30%, rgba(0, 83, 171, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 15% 80%, rgba(0, 180, 73, 0.2) 0%, transparent 55%);
  pointer-events: none;
}

.spotlight .eyebrow { color: var(--primary-soft); }
.spotlight .eyebrow::before { background: var(--primary-soft); }

.spotlight h2 { color: var(--cream); }
.spotlight h2 em { color: var(--accent-soft); font-weight: 700; }

.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.spotlight-left p {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 36px;
  max-width: 480px;
}

.spotlight-version {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--display);
  font-size: 96px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--primary-soft);
  line-height: 1;
  margin-bottom: 16px;
}
.spotlight-version sup {
  font-size: 24px;
  color: var(--cream);
  font-weight: 500;
  vertical-align: top;
  top: -0.5em;
  position: relative;
}

.spotlight-features {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sf-item {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.sf-item:last-child { border-bottom: none; }

.sf-num {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-soft);
  letter-spacing: 0.06em;
  min-width: 30px;
  padding-top: 4px;
}

.sf-content h4 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.015em;
  color: var(--cream);
  margin-bottom: 8px;
}
.sf-content p {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.spotlight-cta {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.spotlight .btn-light {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

.spotlight .btn-ghost {
  color: var(--cream);
  border-color: rgba(255, 255, 255, 0.3);
}
.spotlight .btn-ghost:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

/* ============================================
   WHY US — Antalya Advantage
   ============================================ */
.why { background: var(--cream-deep); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
}

.why-left { position: sticky; top: 100px; align-self: start; }

.why-list { display: flex; flex-direction: column; }

.why-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.why-item:last-child { border-bottom: 1px solid var(--line); }

.why-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 28px;
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1;
  padding-top: 4px;
}

.why-content h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 10px;
}

.why-content p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-muted);
}

.why-content p strong { color: var(--ink); font-weight: 600; }

/* ============================================
   PROCESS
   ============================================ */
.process {
  background: var(--ink);
  color: var(--cream);
}

.process .eyebrow { color: var(--primary-soft); }
.process .eyebrow::before { background: var(--primary-soft); }
.process h2 { color: var(--cream); }
.process h2 em { color: var(--accent-soft); font-weight: 700; }

.process-intro {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin-bottom: 70px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 7%;
  right: 7%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(250,246,240,0.2) 20%, rgba(250,246,240,0.2) 80%, transparent);
}

.process-step { position: relative; }

.ps-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  border: 4px solid var(--ink);
}

.process-step h4 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.015em;
  color: var(--cream);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
}

/* ============================================
   STATS
   ============================================ */
.stats {
  background: var(--cream-deep);
  padding: 70px var(--gutter);
}

.stats-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: center;
}

.stat { position: relative; }
.stat + .stat { padding-left: 40px; border-left: 1px solid var(--line); }

.stat-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(44px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 8px;
}

.stat-num sup {
  font-size: 0.45em;
  color: var(--primary);
  vertical-align: top;
  font-weight: 600;
}

.stat-label {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-muted);
  line-height: 1.4;
}

/* ============================================
   E-DÖNÜŞÜM + BULUT
   ============================================ */
.duo { background: var(--cream); }

.duo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.duo-card {
  padding: 50px 44px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.duo-card-1 {
  background: var(--white);
  border: 1px solid var(--line);
}

.duo-card-2 {
  background: var(--accent);
  color: var(--cream);
}

.duo-card-1 .eyebrow { color: var(--primary-deep); margin-bottom: 16px; }
.duo-card-2 .eyebrow { color: rgba(255, 255, 255, 0.7); margin-bottom: 16px; }
.duo-card-2 .eyebrow::before { background: rgba(255, 255, 255, 0.5); }

.duo-card h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.duo-card-1 h3 { color: var(--ink); }
.duo-card-2 h3 { color: var(--cream); }

.duo-card p {
  font-size: 15.5px;
  line-height: 1.6;
  margin-bottom: 28px;
}

.duo-card-1 p { color: var(--ink-muted); }
.duo-card-2 p { color: rgba(255, 255, 255, 0.85); }

.duo-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.duo-pill {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 100px;
  letter-spacing: -0.005em;
}

.duo-card-1 .duo-pill {
  background: var(--primary-tint);
  color: var(--primary-deep);
}

.duo-card-2 .duo-pill {
  background: rgba(255, 255, 255, 0.15);
  color: var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.duo-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  align-self: flex-start;
}

.duo-card-1 .duo-link { color: var(--primary-deep); }
.duo-card-1 .duo-link:hover { color: var(--ink); }
.duo-card-2 .duo-link { color: var(--cream); }

.duo-link svg { width: 16px; height: 16px; transition: transform 0.2s var(--ease); }
.duo-link:hover svg { transform: translateX(4px); }

.duo-deco {
  position: absolute;
  pointer-events: none;
}
.duo-deco-1 {
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--primary-tint), transparent 70%);
  opacity: 0.7;
}
.duo-deco-2 {
  bottom: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
.duo-deco-3 {
  bottom: -30px;
  right: -30px;
  width: 180px;
  height: 180px;
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}
/* ============================================
   BLOG
   ============================================ */
.blog { background: var(--cream-deep); }

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

.bcard {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}

.bcard:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -20px rgba(11, 13, 20, 0.15); }

.bcard-img {
  aspect-ratio: 16 / 10;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.bcard-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, var(--primary-deep), var(--primary) 40%, var(--ink) 100%);
  opacity: 0.95;
}
.bcard:nth-child(2) .bcard-img::before {
  background: linear-gradient(135deg, var(--accent-deep), var(--accent) 50%, var(--ink) 100%);
}
.bcard:nth-child(3) .bcard-img::before {
  background: linear-gradient(135deg, var(--ink), var(--ink-soft) 40%, var(--accent-deep) 100%);
}

.bcard-img-label {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(0,0,0,0.3);
  padding: 6px 12px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
  z-index: 2;
}

.bcard-img-deco {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 1;
}
.bcard-img-deco svg {
  width: 80px;
  height: 80px;
  color: rgba(255, 255, 255, 0.85);
}

.bcard-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }

.bcard-meta {
  font-size: 12px;
  color: var(--ink-light);
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.bcard h4 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 12px;
  flex: 1;
}

.bcard p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-muted);
  margin-bottom: 18px;
}

.bcard-link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--primary-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.bcard-link:hover { color: var(--ink); }

/* ============================================
   FINAL CTA
   ============================================ */
.cta {
  background: var(--ink);
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 10vw, 130px) var(--gutter);
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 30%, rgba(0, 83, 171, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.cta-left h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: 24px;
}

.cta-left h2 em {
  font-family: var(--display);
  font-style: normal;
  font-weight: 700;
  color: var(--accent-soft);
}

.cta-left p {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 36px;
}

.cta-points { display: flex; flex-direction: column; gap: 14px; }

.cta-point {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--cream);
  font-size: 15px;
  font-weight: 500;
}

.cta-point svg {
  width: 22px;
  height: 22px;
  color: var(--primary-soft);
  flex-shrink: 0;
}

/* Form */
.form-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: 0 30px 70px -20px rgba(0,0,0,0.5);
}

.form-card h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 8px;
}

.form-card-sub {
  font-size: 14.5px;
  color: var(--ink-muted);
  margin-bottom: 32px;
}

.form-row { margin-bottom: 18px; }

.form-row label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: var(--body);
  font-size: 14.5px;
  color: var(--ink);
  background: var(--white);
  transition: all 0.2s var(--ease);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-tint);
}

.form-row textarea { resize: vertical; min-height: 80px; }

.form-row-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--primary);
  color: var(--white);
  border-radius: 10px;
  font-family: var(--body);
  font-size: 15.5px;
  font-weight: 600;
  transition: all 0.2s var(--ease);
  box-shadow: 0 4px 14px rgba(0, 83, 171, 0.25);
  margin-top: 8px;
}
.form-submit:hover {
  background: var(--primary-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(0, 83, 171, 0.35);
}

.form-foot {
  text-align: center;
  font-size: 12.5px;
  color: var(--ink-light);
  margin-top: 20px;
}
.form-foot strong { color: var(--ink); font-weight: 600; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 80px var(--gutter) 30px;
  border-top: 1px solid var(--ink-soft);
}

.footer-inner { max-width: var(--container); margin: 0 auto; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .brand { margin-bottom: 20px; }
.footer-brand .brand-name { color: var(--white); }
.footer-brand .brand-name-region { color: rgba(255, 255, 255, 0.85); }
.footer-brand .brand-sub { color: rgba(255, 255, 255, 0.6); }
.footer-brand .brand-sub strong { color: var(--accent-soft); }
.footer-brand .brand-mark { border-color: rgba(255, 255, 255, 0.15); }

.footer-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 24px;
  max-width: 360px;
}

.footer-akinsoft-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  padding: 16px 22px;
  border-radius: 14px;
  margin-bottom: 26px;
  max-width: 360px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  position: relative;
}
.footer-akinsoft-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 50%, var(--accent) 50%);
  border-radius: 0 0 3px 3px;
}
.footer-akinsoft-logo {
  width: 68px;
  height: 68px;
  flex-shrink: 0;
  background: var(--white);
  border-radius: 50%;
  padding: 4px;
  display: grid;
  place-items: center;
}
.footer-akinsoft-logo img { width: 100%; height: 100%; object-fit: contain; }
.footer-akinsoft-text small {
  font-family: var(--display);
  font-size: 10.5px;
  font-weight: 700;
  color: var(--accent-deep);
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 4px;
}
.footer-akinsoft-text strong {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  letter-spacing: -0.015em;
  display: block;
}

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--ink-soft);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.2s var(--ease);
}
.footer-social a:hover { background: var(--primary); color: var(--white); }
.footer-social svg { width: 16px; height: 16px; }

.footer h5 {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s var(--ease);
}
.footer-links a:hover { color: var(--primary-soft); }

.footer-contact { display: flex; flex-direction: column; gap: 16px; }
.footer-contact-item {
  display: flex;
  gap: 12px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}
.footer-contact-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--primary-soft);
  margin-top: 2px;
}
.footer-contact-item a:hover { color: var(--primary-soft); }
.footer-contact-item strong { color: var(--cream); font-weight: 600; display: block; margin-bottom: 2px; }

.footer-hours { margin-top: 4px; max-width: 200px; }
.footer-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 3px 0;
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-hours-row:last-child { border-bottom: none; }
.footer-hours-row > span:first-child { color: rgba(255, 255, 255, 0.92); font-weight: 500; }
.footer-hours-row.closed > span:last-child { color: var(--accent-soft); font-weight: 600; }

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--ink-soft);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--primary-soft);
}

.footer-bottom-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 83, 171, 0.25);
}

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.float-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  z-index: 90;
  color: var(--white);
  transition: transform 0.2s var(--ease);
}
.float-wa:hover { transform: scale(1.08); }
.float-wa svg { width: 30px; height: 30px; }
.float-wa::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: pulse 2s ease-out infinite;
  z-index: -1;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .nav-menu { display: none; }
  .nav-toggle { display: grid; }
  .nav-phone { display: none; }

  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { max-width: 480px; margin: 0 auto; }

  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps::before { display: none; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .stat + .stat:nth-child(odd) { padding-left: 0; border-left: none; }
  .stat:nth-child(3), .stat:nth-child(4) { padding-top: 32px; border-top: 1px solid var(--line); }
  .stat:nth-child(3) { padding-left: 0; border-left: none; }

  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-left { position: static; }

  .spotlight-grid { grid-template-columns: 1fr; gap: 60px; }
  .duo-grid { grid-template-columns: 1fr; }

  .blog-grid { grid-template-columns: 1fr; }

  .cta-inner { grid-template-columns: 1fr; gap: 50px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }

  .section-header-split { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 640px) {
  .announce { font-size: 12px; padding: 8px 16px; }
  .brand-mark { width: 46px; height: 46px; }
  .brand-name { font-size: 16px; }
  .brand-sub { font-size: 9.5px; letter-spacing: 0.04em; }

  .hero { padding-top: 50px; padding-bottom: 60px; }
  .hero-microproof { gap: 14px; }
  .hero-mp { font-size: 12.5px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-phone-link { justify-content: center; }

  .trust-inner { gap: 14px; flex-direction: column; align-items: flex-start; }

  .sectors-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr; }
  .stat + .stat { padding-left: 0; border-left: none; padding-top: 32px; border-top: 1px solid var(--line); }

  .process-steps { grid-template-columns: 1fr; }
  .form-row-grid { grid-template-columns: 1fr; }
  .form-card { padding: 28px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .position-meta { gap: 24px; }

  .hv-dashboard, .hv-card-2 { width: 70%; }
  .hv-tag-1 { left: 2%; }
  .hv-tag-2 { right: 2%; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
