/* ══════════════════════════════════════════════════════════════
   SSB AJANS — Elevate-style White Editorial Design
   ══════════════════════════════════════════════════════════════ */

:root {
  /* ── Brand palette ── */
  --yellow:   #CDDC00;   /* fıstık yeşili / lime */
  --red:      #E63946;   /* ateş kırmızısı       */
  --orange:   #F4844A;   /* turuncu              */
  --purple:   #9B5DE5;   /* mor                  */
  --teal:     #2A9D8F;   /* yeşil-teal           */
  --pink:     #F15BB5;   /* pembe                */
  --blue:     #00B4D8;   /* mavi                 */

  /* ── Neutrals ── */
  --black:    #111111;
  --white:    #FFFFFF;
  --bg:       #F0F0ED;
  --border:   #DEDEDE;
  --gray:     #888888;
  --card-bg:  #FFFFFF;

  /* ── Layout ── */
  --nav-h:    68px;
  --r:        16px;
  --fh: 'Plus Jakarta Sans', sans-serif;
  --fb: 'Inter', sans-serif;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--fb);
  background: var(--bg);
  color: var(--black);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ══ NAVBAR ═══════════════════════════════════════════════════ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}
#header.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}

.navbar {
  display: flex;
  align-items: stretch;
  height: var(--nav-h);
  max-width: 1440px;
  margin: 0 auto;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

/* Logo box */
.logo-box {
  width: 68px; height: var(--nav-h);
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--red) 0%, var(--orange) 50%, var(--yellow) 100%);
  border-right: 1px solid var(--border);
  flex-shrink: 0;
  transition: opacity 0.25s ease;
}
.logo-box:hover { opacity: 0.88; }
.logo-box img {
  width: 38px; height: 38px;
  object-fit: contain;
  filter: brightness(0);
}
.logo-box--sm { width: 52px; height: 52px; border-radius: 10px; border: none; }
.logo-box--sm img { width: 28px; height: 28px; }

.nav-logo { display: flex; align-items: center; text-decoration: none; }

/* Nav items */
.nav-items {
  display: flex;
  align-items: stretch;
  flex: 1;
}
.nav-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 28px;
  border-right: 1px solid var(--border);
  text-decoration: none;
  transition: background 0.2s ease;
  gap: 2px;
  cursor: pointer;
  min-width: 120px;
}
.nav-item:hover { background: var(--bg); }
.nav-item.active { background: var(--black); border-bottom: 3px solid var(--red); }
.nav-item.active .ni-name { color: var(--white); }
.nav-item.active .ni-num  { color: rgba(255,255,255,0.45); }
.ni-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--black);
  font-family: var(--fb);
  letter-spacing: 0.1px;
}
.ni-num {
  font-size: 0.68rem;
  color: var(--gray);
  font-family: var(--fb);
  font-weight: 500;
}

/* Burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  width: 68px;
  background: none;
  border: none;
  border-right: 1px solid var(--border);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.nav-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Right: socials + admin */
.nav-right {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.nav-socials {
  display: flex;
  align-items: center;
  height: 100%;
  border-left: 1px solid var(--border);
}
.nsoc {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 100%;
  border-right: 1px solid var(--border);
  text-decoration: none;
  font-size: 0.85rem;
  color: var(--black);
  transition: background 0.2s ease;
}
.nsoc:hover { background: var(--bg); }
.nav-lang {
  display: flex; align-items: center; justify-content: center;
  height: 100%; padding: 0 20px;
  font-size: 0.75rem; font-weight: 700;
  background: var(--black); color: var(--white);
  text-decoration: none;
  letter-spacing: 1px;
  border-left: 1px solid var(--border);
  transition: background 0.2s ease;
}
.nav-lang:hover { background: #333; }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-item {
  border-right: none;
  border-bottom: 1px solid var(--border);
  padding: 14px 28px;
  min-width: auto;
}

/* ══ HERO ═════════════════════════════════════════════════════ */
.hero-section {
  background: var(--white);
  padding-top: var(--nav-h);
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
}

.hero-layout {
  max-width: 1440px;
  margin: 0 auto;
  padding: 72px 48px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;  /* iki kolon aynı yükseklikte */
  width: 100%;
  min-height: calc(100vh - var(--nav-h));
}

/* ── Left ─────────────── */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: space-between;
}

.hero-headline {
  font-family: var(--fh);
  font-size: clamp(3.2rem, 5.5vw, 5.8rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -2px;
  color: var(--black);
  margin-bottom: 28px;
}
.hh-line { display: block; }
.hh-sub {
  font-size: 0.5em;
  font-weight: 600;
  color: var(--black);
  margin-top: 12px;
  letter-spacing: -0.5px;
}

/* The oval-border highlight word */
.oval-word {
  display: inline-block;
  border: 2.5px solid var(--red);
  border-radius: 100px;
  padding: 2px 22px 6px;
  font-style: italic;
  line-height: 1.1;
  color: var(--red);
}
.oval-word--sm  { font-size: 0.85em; border-width: 2px; padding: 1px 16px 4px; }
.oval-word--lg  { border-width: 3px; }

.hero-desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.75;
  max-width: 380px;
  margin-bottom: 28px;
}

/* Circular arrow button */
.hero-arrow-btn {
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  text-decoration: none;
  font-size: 1.2rem;
  color: var(--black);
  margin-top: 24px;
  margin-bottom: 0;
  transition: all 0.25s ease;
  flex-shrink: 0;
  align-self: flex-start;
}
.hero-arrow-btn:hover {
  background: var(--black); color: var(--white); border-color: var(--black);
}

/* Üst grup: başlık + desc + ok — birlikte üstte kalır */
.hero-top-group {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* CTA Cards — margin-top: auto ile sol kolonun en altına yapışır */
.hero-cta-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: auto;
}

.cta-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  background: var(--white);
  text-decoration: none;
  color: var(--black);
  padding: 0;
  overflow: hidden;
  transition: all 0.28s var(--ease);
  min-height: 160px;
}
.cta-card:hover {
  border-color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.09);
}

/* Art area */
.cta-card-art {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--bg);
}
.cta-dot-ring {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 1px dashed #aaa;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.cta-dot-ring::before {
  content: '';
  position: absolute;
  top: -5px; right: 4px;
  width: 10px; height: 10px;
  background: var(--red);
  border-radius: 50%;
}
.cta-dot-inner {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--orange));
}

.cta-card--text .cta-card-big-text {
  font-family: var(--fh);
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.2;
  padding: 24px 20px 16px;
  letter-spacing: -0.5px;
}

.cta-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  border-top: 1px solid var(--border);
}
.cta-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--black);
}
.cta-arrow {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  transition: all 0.25s ease;
}
.cta-card:hover .cta-arrow { border-color: var(--black); }
.cta-arrow--filled {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

/* ── Bento Grid ───────── */
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);  /* px yerine 1fr: yüksekliği dolduracak */
  gap: 10px;
  width: 100%;
  flex: 1;           /* sağ kolonun tamamını kapla */
  min-height: 460px; /* minimum boyut garantisi */
}

.bt {
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border);
  background: var(--white);
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
  cursor: default;
}
.bt:hover { transform: translateY(-3px) scale(1.01); box-shadow: 0 10px 28px rgba(0,0,0,0.09); }

/* Tile 1: Dot-grid background + arrow */
.bt-dotgrid { background: var(--white); }
.bt-dots-svg {
  position: absolute; inset: 0;
  opacity: 1;
}
.bt-arr-down {
  font-size: 4.2rem;
  font-weight: 900;
  color: var(--black);
  line-height: 1;
  position: relative;
  z-index: 1;
}
.bt-corner-bracket {
  position: absolute;
  bottom: 12px; left: 14px;
  width: 20px; height: 20px;
  border-left: 2.5px solid #999;
  border-bottom: 2.5px solid #999;
  border-radius: 0 0 0 4px;
}

/* Tile 2: SVG eyes */
.bt-eyes { background: var(--white); padding: 16px; }
.bt-eyes svg { display: block; }

/* Tile 3: Yellow 25+ */
.bt-yellow-count {
  background: var(--yellow);
  border-color: var(--yellow);
  gap: 5px;
}
.bt-count-num {
  font-family: var(--fh);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2.5px;
  color: var(--black);
}
.bt-count-num sup { font-size: 0.48em; vertical-align: super; letter-spacing: 0; }
.bt-count-lbl {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(0,0,0,0.55);
}

/* Tile 4: Red wide shape */
.bt-shape-wide {
  background: var(--red);
  border-color: var(--red);
  flex-direction: row;
  justify-content: flex-start;
  padding: 0 20px;
  gap: 14px;
  align-items: center;
}
.bt-quarter-svg {
  flex-shrink: 0;
  margin-left: -8px;
}
.bt-big-down-arr {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--black);
  line-height: 1;
  flex-shrink: 0;
}
.bt-wide-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: rgba(0,0,0,0.55);
  text-transform: uppercase;
  position: absolute;
  bottom: 12px; right: 14px;
}

/* Tile 5: SVG smiley */
.bt-smiley { background: var(--white); }
.bt-smiley svg { display: block; }

/* Tile 6: Dark SSB brand */
.bt-dark-brand {
  background: var(--black);
  border-color: var(--black);
}
.bt-brand-word {
  font-family: var(--fh);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1px;
  text-align: center;
}

/* Tile 7: SVG speech bubble */
.bt-speech { background: var(--purple); border-color: var(--purple); gap: 8px; }
.bt-speech svg { display: block; }
.bt-speech-lbl {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.8);
}

/* Tile 8: Logo mark */
.bt-logo-mark { background: var(--teal); border-color: var(--teal); gap: 8px; }
.bt-logo-mark svg { display: block; }
.bt-mark-lbl {
  font-family: var(--fh);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.9);
}

/* ══ SECTION COMMON ═══════════════════════════════════════════ */
.section {
  padding: 88px 0;
  background: var(--white);
}
.section--gray { background: var(--bg); }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

/* Section header row */
.sec-header-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 52px;
}
.shr-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gray);
}
.shr-badge {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: 0;
  flex-shrink: 0;
}
/* Her bölüm farklı renk */
#hakkimizda .shr-badge  { background: var(--red);    }
#hizmetler  .shr-badge  { background: var(--orange);  }
#hedef      .shr-badge  { background: var(--purple);  }
#referanslar .shr-badge { background: var(--teal);    }
#iletisim   .shr-badge  { background: var(--pink);    }
.shr-tag {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 1px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 4px 16px;
}

/* ══ ABOUT ════════════════════════════════════════════════════ */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-big {
  font-family: var(--fh);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.2px;
  margin-bottom: 28px;
  color: var(--black);
}
.body-text {
  font-size: 0.98rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 16px;
}
.body-text--muted { color: var(--gray); }
.sec-desc { margin-bottom: 36px; }

/* Stats */
.about-stats-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.stat-card {
  padding: 36px 28px;
  text-align: center;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.25s ease;
  cursor: default;
}
.stat-card:nth-child(even)   { border-right: none; }
.stat-card:nth-last-child(-n+2) { border-bottom: none; }
.stat-card:hover { background: var(--black); }
.stat-card:hover .stat-value { color: var(--yellow); }
.stat-card:hover .stat-label { color: rgba(255,255,255,0.6); }
/* Her stat farklı renk */
.stat-card:nth-child(1):hover { background: var(--red);    }
.stat-card:nth-child(2):hover { background: var(--orange);  }
.stat-card:nth-child(3):hover { background: var(--teal);   }
.stat-card:nth-child(4):hover { background: var(--purple); }
.stat-value {
  font-family: var(--fh);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--black);
  line-height: 1;
  letter-spacing: -1.5px;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--gray);
  font-weight: 500;
}

/* ══ SERVICES ═════════════════════════════════════════════════ */
.services-desc-row {
  margin-bottom: 40px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-card {
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  background: var(--white);
  overflow: hidden;
  transition: all 0.28s var(--ease);
  display: flex;
  flex-direction: column;
  cursor: default;
}
.service-card:hover {
  border-color: var(--black);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.service-img-wrap {
  position: relative;
  width: 100%; height: 200px;
  overflow: hidden;
  background: var(--bg);
}
.service-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  display: block;
}
.service-card:hover .service-img-wrap img { transform: scale(1.05); }
.service-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(17,17,17,0.5) 100%);
}
.service-icon {
  position: absolute;
  top: 12px; right: 12px;
  font-size: 1.2rem;
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.9);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.service-img-fallback {
  width: 100%; height: 200px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.8rem;
  background: var(--bg);
}
.service-body { padding: 20px; flex: 1; }
.service-cat {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  background: var(--svc-color, var(--yellow));
  color: var(--black);
  border-radius: 100px;
  padding: 3px 12px;
  margin-bottom: 10px;
}
/* Servis hover rengi kendi rengini kullansın */
.service-card:hover {
  border-color: var(--svc-color, var(--yellow)) !important;
}
.service-card:hover .service-arr {
  background: var(--svc-color, var(--yellow));
  color: var(--black);
  border-color: var(--svc-color, var(--yellow));
}
.service-title {
  font-family: var(--fh);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.3;
}
.service-desc {
  font-size: 0.83rem;
  color: var(--gray);
  line-height: 1.7;
}
.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-top: 1px solid var(--border);
}
.service-num {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gray);
  letter-spacing: 1px;
}
.service-arr {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  transition: all 0.22s ease;
}
.service-card:hover .service-arr {
  background: var(--black); color: var(--white); border-color: var(--black);
}

/* ══ TARGET ═══════════════════════════════════════════════════ */
.target-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.target-card {
  display: flex;
  gap: 24px;
  padding: 36px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.25s ease;
  cursor: default;
}
.target-card:nth-child(even)       { border-right: none; }
.target-card:nth-last-child(-n+2)  { border-bottom: none; }
.target-card:nth-child(1):hover { background: var(--red);    }
.target-card:nth-child(2):hover { background: var(--orange);  }
.target-card:nth-child(3):hover { background: var(--teal);   }
.target-card:nth-child(4):hover { background: var(--purple); }
.target-card:hover { }
.target-num {
  font-family: var(--fh);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  min-width: 48px;
  transition: color 0.25s ease;
}
.target-card:hover .target-num { color: rgba(0,0,0,0.2); }
.tc-title {
  font-family: var(--fh);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}
.tc-desc { font-size: 0.875rem; color: #555; line-height: 1.7; }

/* ══ REFERENCES ═══════════════════════════════════════════════ */
/* Filter pills */
.pill-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.filter-btn {
  padding: 9px 22px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: #555;
  font-size: 0.83rem;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--fb);
  transition: all 0.22s ease;
}
.filter-btn:hover { border-color: var(--black); color: var(--black); }
.filter-btn.active {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
  font-weight: 700;
}

.refs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.ref-card {
  border: 1.5px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  padding: 20px;
  text-align: center;
  transition: all 0.22s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  text-decoration: none;
}
.ref-card:hover {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--white);
  transform: translateY(-3px);
}
.ref-card:hover .ref-name { color: var(--white); text-decoration: none; }
.ref-card:hover .ref-category { color: rgba(255,255,255,0.7); }
.ref-logo-wrap {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  background: #f9f9f9;
  border-radius: 8px;
  padding: 10px;
}
.ref-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  width: auto;
  height: auto;
}
.ref-name { font-size: 0.9rem; font-weight: 600; color: var(--black); margin-bottom: 4px; }
.ref-category { font-size: 0.72rem; color: var(--gray); }

/* ══ CONTACT ══════════════════════════════════════════════════ */
.contact-big-title {
  font-family: var(--fh);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -3px;
  color: var(--black);
  margin-bottom: 60px;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}
.contact-info-col {
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.contact-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  transition: background 0.22s ease;
  cursor: default;
}
.contact-item:last-child { border-bottom: none; }
.contact-item:nth-child(1):hover { background: var(--red);    }
.contact-item:nth-child(2):hover { background: var(--orange);  }
.contact-item:nth-child(3):hover { background: var(--teal);   }
.contact-item:nth-child(4):hover { background: var(--purple); }
.contact-item:hover .ci-lbl  { color: rgba(255,255,255,0.7); }
.contact-item:hover .ci-val  { color: var(--white); }
.ci-lbl {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.ci-val { font-size: 0.95rem; color: var(--black); font-weight: 500; }

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 12px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  color: var(--black);
  font-family: var(--fb);
  font-size: 0.92rem;
  transition: all 0.22s ease;
  outline: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #aaa; }
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--black);
  background: var(--white);
}
.contact-form textarea { resize: vertical; }
.cf-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: 100px;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--fb);
  align-self: flex-start;
  transition: all 0.25s ease;
}
.cf-submit:hover { background: var(--red); color: var(--white); }

/* ══ FOOTER ═══════════════════════════════════════════════════ */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 60px 0 0;
}
.footer-top-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  align-items: start;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo-block {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-brand-name {
  font-family: var(--fh);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
}
.footer-tagline {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  margin-top: 3px;
}
.footer-nav-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-col h5 {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.22s ease;
}
.footer-col ul li a:hover { color: var(--orange); }
.footer-contact-item {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 8px;
  line-height: 1.6;
}
.social-links { display: flex; flex-wrap: wrap; gap: 8px; }
.social-link {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  transition: all 0.22s ease;
}
.social-link:nth-child(1):hover { border-color: var(--red);    color: var(--red);    }
.social-link:nth-child(2):hover { border-color: var(--pink);   color: var(--pink);   }
.social-link:nth-child(3):hover { border-color: var(--blue);   color: var(--blue);   }
.social-link:nth-child(4):hover { border-color: var(--purple); color: var(--purple); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.28); }

/* ══ SCROLL REVEAL ════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: 0.06s !important; }
.stagger-2 { transition-delay: 0.12s !important; }
.stagger-3 { transition-delay: 0.18s !important; }
.stagger-4 { transition-delay: 0.24s !important; }
.stagger-5 { transition-delay: 0.30s !important; }
.stagger-6 { transition-delay: 0.36s !important; }

/* ══ TOAST ════════════════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 24px; right: 24px;
  padding: 14px 24px;
  background: var(--teal);
  color: var(--white);
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 700;
  z-index: 9999;
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ══ RESPONSIVE ═══════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-grid { min-height: 400px; }
}

@media (max-width: 1024px) {
  .hero-layout   { grid-template-columns: 1fr; padding: 48px 32px; }
  .hero-right    { display: none; }
  .about-layout  { grid-template-columns: 1fr; gap: 40px; }
  .contact-layout{ grid-template-columns: 1fr; gap: 40px; }
  .footer-top-row{ grid-template-columns: 1fr; gap: 40px; }
  .footer-nav-cols { grid-template-columns: repeat(2, 1fr); }
  .nav-socials   { display: none; }
}

@media (max-width: 768px) {
  .navbar { border-left: none; border-right: none; }
  .nav-items { display: none; }
  .nav-burger { display: flex; }
  .nav-cta { display: none; }
  .hero-layout { padding: 36px 20px; }
  .hero-headline { letter-spacing: -1.5px; }
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .target-grid { grid-template-columns: 1fr; }
  .target-card:nth-child(even) { border-right: none; }
  .target-card:nth-child(odd)  { border-right: none; }
  .target-card:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .target-card:last-child { border-bottom: none; }
  .hero-cta-cards { grid-template-columns: 1fr; }
  .cf-row { grid-template-columns: 1fr; }
  .footer-nav-cols { grid-template-columns: 1fr; }
  .contact-big-title { letter-spacing: -2px; }
}

@media (max-width: 480px) {
  .about-stats-col { grid-template-columns: 1fr 1fr; }
  .refs-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
