/* ============================================================
   ŞEKER CNC — Hassas İmalat / Precision Manufacturing
   Palette mapping (from Automec template):
   orange #eb3300 -> #0a3d7a | dark #171717 -> #0e213b
   light/white bg -> #f0ece3 | gold accent -> #c8a84b
   ============================================================ */

:root {
  --blue:        #0a3d7a;
  --blue-hi:     #0f4e99;   /* hover lift */
  --navy:        #0e213b;
  --navy-deep:   #08142a;
  --cream:       #f0ece3;
  --gray-bg:     #f2f4f8;
  --ink:         #171c26;
  --body:        #5e6878;
  --border:      #d8dde6;
  --gold:        #c8a84b;
  --white:       #ffffff;
  --muted-light: #b8c0cc;

  --shadow-sm: 0 6px 24px rgba(14, 33, 59, 0.06);
  --shadow-md: 0 14px 40px rgba(14, 33, 59, 0.10);
  --shadow-lg: 0 24px 60px rgba(14, 33, 59, 0.16);

  --container: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 124px;

  /* Tipografi */
  --font-head: "Montserrat", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4, h5 {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.container { max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding-block: 110px; position: relative; }
.center { text-align: center; }

/* ---------- Eyebrow label: —— LABEL —— ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-mono);
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--blue); margin-bottom: 18px;
}
.eyebrow::before, .eyebrow::after { content: ""; width: 34px; height: 2px; background: var(--blue); opacity: 0.55; }
.eyebrow.solo::before { display: none; }
.eyebrow.gold { color: var(--gold); }
.eyebrow.gold::before, .eyebrow.gold::after { background: var(--gold); }
.eyebrow.on-dark { color: var(--gold); }

.section-head { max-width: 680px; }
.section-head.center { margin-inline: auto; }
.h2 { font-size: 40px; line-height: 1.18; }
.lede { font-size: 17px; margin-top: 16px; color: var(--body); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  padding: 15px 28px; border-radius: 6px; border: 2px solid transparent;
  cursor: pointer; transition: all 0.3s var(--ease); white-space: nowrap;
  font-family: inherit;
}
.btn i { font-size: 13px; }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-hi); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(10, 61, 122, 0.35); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: #d8bb63; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(200, 168, 75, 0.4); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--border); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-outline-light:hover { background: #fff; color: var(--navy); transform: translateY(-2px); }
.btn-block { width: 100%; justify-content: center; }
.link-more { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--blue); transition: gap 0.25s var(--ease); }
.link-more:hover { gap: 13px; }

/* ---------- Image placeholder (industrial) ---------- */
.ph {
  position: relative; overflow: hidden;
  background:
    radial-gradient(circle at 30% 25%, rgba(10,61,122,0.55), transparent 60%),
    linear-gradient(135deg, #13294a, #0e213b 70%);
  display: grid; place-items: center;
}
.ph::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 35%, transparent 80%);
  mask-image: radial-gradient(ellipse at center, #000 35%, transparent 80%);
}
.ph i { font-size: 40px; color: rgba(255,255,255,0.28); position: relative; z-index: 1; }
.ph .ph-tag { position: absolute; bottom: 14px; left: 16px; z-index: 1; font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.4); }

/* ============================================================
   1. TOP INFO BAR
   ============================================================ */
.topbar { background: var(--navy); color: var(--muted-light); font-size: 13.5px; }
.topbar .container { display: flex; align-items: center; justify-content: space-between; min-height: 44px; gap: 16px; }
.topbar-left { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.topbar-item { display: inline-flex; align-items: center; gap: 8px; }
.topbar-item i { color: var(--gold); font-size: 12px; }
.topbar-mail { color: inherit; text-decoration: none; transition: color .2s ease; }
.topbar-mail:hover { color: var(--gold); }
.topbar-right { display: flex; align-items: center; gap: 18px; }
.topbar-social { display: flex; gap: 14px; }
.topbar-social a { color: var(--muted-light); transition: color 0.25s; }
.topbar-social a:hover { color: var(--gold); }
.topbar-phone { color: var(--gold); font-weight: 700; display: inline-flex; align-items: center; gap: 8px; }
@media (max-width: 900px) { .topbar { display: none; } }

/* ============================================================
   2. NAVBAR
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100; background: #fff;
  transition: box-shadow 0.3s, background 0.3s;
}
.nav.scrolled { box-shadow: 0 6px 24px rgba(14,33,59,0.08); }
.nav .container { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }
.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo-img { height: 96px; width: auto; display: block; }
.footer-logo .logo-img { height: 96px; }
.logo-mark { width: 44px; height: 44px; display: grid; place-items: center; background: var(--blue); color: #fff; border-radius: 8px; font-size: 20px; }
.logo-text { font-weight: 900; font-size: 22px; color: var(--ink); letter-spacing: -0.02em; line-height: 1; }
.logo-text span { color: var(--blue); }
.logo-sub { display: block; font-size: 10.5px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--body); margin-top: 3px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-link { font-weight: 700; font-size: 15px; color: var(--ink); position: relative; transition: color 0.25s; padding: 6px 0; }
.nav-link::after { content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--blue); transition: width 0.25s var(--ease); }
.nav-link:hover, .nav-link.active { color: var(--blue); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-toggle { display: none; background: none; border: 0; font-size: 24px; color: var(--ink); cursor: pointer; }
@media (max-width: 1080px) {
  .nav-links { position: fixed; inset: 0 0 0 auto; width: min(320px, 82vw); flex-direction: column; align-items: flex-start;
    background: #fff; padding: 100px 32px 32px; gap: 6px; transform: translateX(100%); transition: transform 0.35s var(--ease); box-shadow: var(--shadow-lg); }
  .nav-links.open { transform: translateX(0); }
  .nav-links .nav-link { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 17px; }
  .nav-toggle { display: block; }
  .nav .btn { display: none; }
}

/* ============================================================
   3. HERO
   ============================================================ */
.hero { position: relative; min-height: calc(100vh - var(--header-h) - 44px); display: flex; align-items: center; padding: 110px 0 180px; overflow: hidden;
  background: #0b1a30;
  text-align: left;
}
/* Hero background photo — zoomed slightly and anchored left so the subject sits further right while still fully covering the area */
.hero-bg { position: absolute; inset: 0; z-index: 0;
  background-image: image-set(url('hero.webp') type('image/webp'), url('hero.jpg') type('image/jpeg'));
  background-image: -webkit-image-set(url('hero.webp') type('image/webp'), url('hero.jpg') type('image/jpeg'));
  background-repeat: no-repeat;
  background-size: 125% auto;
  background-position: left center;
}
/* Subtle grid texture above the photo */
.hero-bg::after { content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 90%);
  mask-image: linear-gradient(180deg, #000, transparent 90%);
  pointer-events: none;
}
/* Strong scrim on the LEFT, fades on the right so the person stays visible */
.hero-overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7,16,30,0.92) 0%, rgba(7,16,30,0.82) 25%, rgba(7,16,30,0.55) 45%, rgba(7,16,30,0.2) 65%, rgba(7,16,30,0) 85%),
    linear-gradient(180deg, rgba(7,16,30,0.45) 0%, rgba(7,16,30,0) 30%, rgba(7,16,30,0) 70%, rgba(7,16,30,0.55) 100%);
}
.hero .container { position: relative; z-index: 2; width: 100%; }
.hero-content { max-width: 620px; margin-left: 0; margin-right: auto; text-align: left; }
.hero h1 { color: #fff; font-size: 68px; line-height: 1.05; letter-spacing: -0.02em; text-align: left; text-wrap: balance; }
.hero h1 .gold { color: var(--gold); }
.hero p { color: rgba(255,255,255,0.9); font-size: 18px; margin: 24px 0 36px; max-width: 540px; text-align: left; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; justify-content: flex-start; }

/* Stats card overlapping hero bottom */
.hero-stats { position: relative; z-index: 3; margin-top: -90px; }
.stats-card { background: var(--blue); border-radius: 10px; padding: 38px; box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.stat { display: flex; align-items: center; gap: 16px; }
.stat + .stat { border-left: 1px solid rgba(255,255,255,0.18); padding-left: 28px; }
.stat-ico { flex: none; width: 54px; height: 54px; border-radius: 50%; background: var(--navy); color: var(--gold); display: grid; place-items: center; font-size: 20px; }
.stat > span:last-child { display: flex; flex-direction: column; justify-content: center; }
.stat-num { font-family: var(--font-mono); font-size: 23px; font-weight: 700; color: #fff; line-height: 1.1; letter-spacing: -0.3px; white-space: nowrap; }
.stat-label { font-size: 13.5px; color: rgba(255,255,255,0.82); line-height: 1.25; margin-top: 5px; }
@media (max-width: 1100px) {
  .hero-bg { background-size: 140% auto; background-position: 30% center; }
  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7,16,30,0.94) 0%, rgba(7,16,30,0.88) 35%, rgba(7,16,30,0.7) 55%, rgba(7,16,30,0.4) 75%, rgba(7,16,30,0.15) 100%),
      linear-gradient(180deg, rgba(7,16,30,0.5) 0%, rgba(7,16,30,0) 35%, rgba(7,16,30,0.6) 100%);
  }
}
@media (max-width: 900px) {
  .hero { min-height: auto; padding: 80px 0 160px; }
  .hero-bg { background-size: 180% auto; background-position: 40% center; }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(7,16,30,0.6) 0%, rgba(7,16,30,0.8) 50%, rgba(7,16,30,0.92) 100%);
  }
  .hero-content { max-width: 100%; }
  .hero h1 { font-size: 44px; }
  .stats-card { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .stat:nth-child(3) { border-left: 0; padding-left: 0; }
  .stat + .stat { padding-left: 28px; }
  .stat:nth-child(odd) { border-left: 0; padding-left: 0; }
}
@media (max-width: 520px) { .stat:nth-child(even) { border-left: 0; padding-left: 0; } .stats-card { grid-template-columns: 1fr; } }

/* ============================================================
   4. SERVICES CAROUSEL
   ============================================================ */
.services { background: var(--white); }
.svc-head-center { text-align: center; margin: 0 auto; }

/* Öne çıkan / imza hizmet bandı */
.svc-feature { margin-top: 54px; background: var(--blue); border-radius: 12px; padding: 38px 40px;
  display: flex; align-items: center; gap: 26px; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.svc-feature::before { content: ""; position: absolute; top: 0; left: 0; bottom: 0; width: 5px; background: var(--gold); }
.svc-feature-ico { flex: none; width: 64px; height: 64px; border-radius: 50%; background: var(--navy); color: var(--gold); display: grid; place-items: center; font-size: 26px; }
.svc-feature-body h3 { font-size: 23px; color: #fff; margin-bottom: 8px; }
.svc-feature-body p { font-size: 15.5px; color: rgba(255,255,255,0.85); line-height: 1.55; max-width: 760px; }

/* Kategori grupları */
.svc-group { margin-top: 48px; }
.svc-group-title { font-size: 14px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue);
  display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.svc-group-title::after { content: ""; flex: 1; height: 1px; background: var(--border); }

.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 28px; }

/* Görsel medya başlıklı hizmet kartı */
.svc-card2 { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.svc-card2:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.svc-card2-media { position: relative; height: 130px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%); }
.svc-card2-media > i { font-size: 58px; color: rgba(255,255,255,0.13); transition: transform 0.5s var(--ease); }
.svc-card2:hover .svc-card2-media > i { transform: scale(1.12) rotate(-4deg); }
.svc-card2-badge { position: absolute; right: 22px; bottom: -26px; width: 56px; height: 56px; border-radius: 50%;
  background: var(--gold); color: var(--navy); display: grid; place-items: center; font-size: 21px;
  border: 3px solid #fff; box-shadow: 0 8px 20px rgba(14, 33, 59, 0.22); transition: transform 0.35s var(--ease); }
.svc-card2:hover .svc-card2-badge { transform: scale(1.08); }

.svc-card2-body { flex: 1; display: flex; flex-direction: column; padding: 36px 26px 26px; }
.svc-card2-body h4 { font-size: 18px; line-height: 1.3; color: var(--ink); margin-bottom: 10px; }
.svc-card2-body p { flex: 1; font-size: 14.5px; line-height: 1.6; color: var(--body); margin-bottom: 22px; }
.svc-card2-link { align-self: flex-start; display: inline-flex; align-items: center; gap: 9px;
  font-weight: 700; font-size: 12.5px; text-transform: uppercase; letter-spacing: 1px; color: var(--blue);
  border: 1px solid var(--border); border-radius: 8px; padding: 10px 18px; transition: all 0.3s var(--ease); }
.svc-card2-link i { transition: transform 0.3s var(--ease); }
.svc-card2-link:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.svc-card2-link:hover i { transform: translateX(4px); }

@media (max-width: 600px) { .svc-feature { flex-direction: column; align-items: flex-start; gap: 18px; padding: 30px 26px; } }

/* ============================================================
   5. MARQUEE
   ============================================================ */
.marquee { background: var(--navy); padding: 22px 0; overflow: hidden; white-space: nowrap; }
.marquee-track { display: inline-flex; align-items: center; gap: 0; animation: marquee 28s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { display: inline-flex; align-items: center; gap: 30px; padding-right: 30px; color: var(--cream); font-weight: 700; text-transform: uppercase; font-size: 17px; letter-spacing: 0.5px; }
.marquee-item i { color: var(--gold); font-size: 16px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ============================================================
   6. CLIENT LOGOS
   ============================================================ */
.clients { background: #fff; padding-block: 60px; }
.clients-track { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.client-logo { display: inline-flex; align-items: center; gap: 10px; color: #aab2bf; font-weight: 900; font-size: 20px; letter-spacing: 0.5px; transition: color 0.3s; filter: grayscale(1); opacity: 0.7; }
.client-logo i { font-size: 24px; }
.client-logo:hover { color: var(--blue); filter: grayscale(0); opacity: 1; }

/* ============================================================
   7. ABOUT
   ============================================================ */
/* ============================================================
   7. ABOUT — mesh band + grunge panel + photo card composition
   ============================================================ */
.about { background: var(--cream); overflow: hidden; position: relative; padding-block: 0; }

/* Top accent band with subtle triangulated mesh pattern (navy + faint white lines) */
.about-band { position: relative; height: clamp(260px, 32vw, 420px);
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.06), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(201,162,74,0.10), transparent 60%),
    linear-gradient(120deg, #0a1830 0%, #0e213b 55%, #122d52 100%);
}
.about-mesh { position: absolute; inset: 0; width: 100%; height: 100%; display: block; opacity: 0.9; }

/* Container pulls the shell UP into the band, creating the asymmetric overlap */
.about > .container { margin-top: clamp(-220px, -22vw, -160px); padding-bottom: 120px; position: relative; z-index: 2; }

.about-shell { display: block; }

/* TOP — full-width 16:9 video card with deep shadow */
.about-photo { position: relative; z-index: 3; }
.about-photo-frame { position: relative; overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: 0 30px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(0,0,0,0.06);
  border-radius: 2px;
  background: #0a1422;
}
.about-photo-frame img,
.about-photo-frame video { width: 100%; height: 100%; object-fit: cover; display: block;
  filter: contrast(1.05) saturate(0.95) brightness(0.92);
}
/* Dark navy scrim over the video — bottom-weighted + light overall tone (hero-matched color) */
.about-scrim { position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(7,16,30,0.30) 0%,
      rgba(7,16,30,0) 24%,
      rgba(7,16,30,0) 55%,
      rgba(7,16,30,0.62) 100%),
    rgba(7,16,30,0.16);
}
/* Gold corner accent on photo */
.about-photo-frame::before { content: ""; position: absolute; top: 0; left: 0; width: 64px; height: 4px; background: var(--gold); z-index: 2; }
.about-photo-frame::after { content: ""; position: absolute; top: 0; left: 0; width: 4px; height: 64px; background: var(--gold); z-index: 2; }

/* Floating experience badge */
.about-badge { position: absolute; left: 24px; bottom: 24px; z-index: 4;
  background: var(--gold); color: #0e213b;
  padding: 18px 22px; border-radius: 2px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.45);
}
.ab-num { font-family: var(--font-mono); font-weight: 700; font-size: 44px; line-height: 1; letter-spacing: -0.02em; }
.ab-plus { font-size: 24px; vertical-align: top; margin-left: 2px; }
.ab-label { font-family: var(--font-mono); font-weight: 700; font-size: 11px; line-height: 1.25; text-transform: uppercase; letter-spacing: 0.04em; }

/* RIGHT — dark grunge panel */
.about-panel { position: relative; z-index: 2; padding: 64px 56px 60px;
  background-color: #15171c;
  /* Layered grunge: static noise tile + soft splotches + vignette */
  background-image:
    url('grunge.webp'),
    radial-gradient(ellipse at 18% 30%, rgba(255,255,255,0.05), transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(0,0,0,0.55), transparent 60%),
    radial-gradient(ellipse at 60% 20%, rgba(201,162,74,0.05), transparent 60%);
  background-repeat: repeat, no-repeat, no-repeat, no-repeat;
  background-size: 256px 256px, auto, auto, auto;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  color: rgba(255,255,255,0.78);
}
/* Inner edge highlight for that worn-metal feel */
.about-panel::before { content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), transparent 18%),
    linear-gradient(0deg, rgba(0,0,0,0.35), transparent 30%);
}

.about-eyebrow { display: inline-flex; align-items: center; gap: 14px; margin-bottom: 18px; position: relative; }
.aeb-text { color: var(--gold); font-weight: 800; font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; }
.aeb-line { width: 40px; height: 2px; background: var(--gold); display: block; }

.about-title { color: #fff; font-size: clamp(32px, 3.4vw, 46px); line-height: 1.12; letter-spacing: -0.01em; margin: 0 0 22px; text-wrap: balance; }
.about-title .gold { color: var(--gold); }
.about-lede { color: rgba(255,255,255,0.78); font-size: 16.5px; line-height: 1.65; margin: 0 0 20px; max-width: 56ch; }
.about-text { color: rgba(255,255,255,0.72); font-size: 15.5px; line-height: 1.7; margin: 0 0 18px; max-width: 58ch; }
.about-text:last-of-type { margin-bottom: 30px; }

.about-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin: 8px 0 36px; }
.about-feature { display: flex; gap: 16px; align-items: flex-start; }
.about-feature .fi { flex: none; width: 56px; height: 56px; border-radius: 2px;
  background: var(--gold); color: #15171c;
  display: grid; place-items: center; font-size: 22px;
  box-shadow: 0 8px 20px rgba(201,162,74,0.25);
}
.about-feature h4 { color: #fff; font-size: 18px; margin: 2px 0 6px; font-weight: 800; }
.about-feature p { color: rgba(255,255,255,0.7); font-size: 14.5px; margin: 0; line-height: 1.55; }

.about-cta { align-self: flex-start; }

@media (max-width: 900px) {
  .about-features { grid-template-columns: 1fr; gap: 22px; }
  .about-panel { padding: 56px 32px 48px; }
  .about-badge { left: 16px; bottom: 16px; }
}
@media (max-width: 600px) {
  .about-panel { padding: 44px 22px 40px; }
  .about-feature { gap: 14px; }
  .about-feature .fi { width: 48px; height: 48px; font-size: 18px; }
}

/* ============================================================
   8. PORTFOLIO
   ============================================================ */
.portfolio { background: var(--gray-bg); }
.filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin: 34px 0 44px; }
.filter { background: #fff; border: 1px solid var(--border); color: var(--ink); font-weight: 700; font-size: 14px; padding: 11px 24px; border-radius: 6px; cursor: pointer; transition: all 0.25s; font-family: inherit; }
.filter:hover { border-color: var(--blue); color: var(--blue); }
.filter.active { background: var(--blue); color: #fff; border-color: var(--blue); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.pf-item { position: relative; border-radius: 8px; overflow: hidden; transition: opacity 0.4s, transform 0.4s; }
.pf-item.hide { display: none; }
.pf-item img { display: block; width: 100%; height: 100%; aspect-ratio: 4 / 3.2; object-fit: cover; filter: contrast(1.04) saturate(0.97) brightness(0.95); }
.pf-scrim { position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(7,16,30,0.30) 0%,
      rgba(7,16,30,0) 24%,
      rgba(7,16,30,0) 55%,
      rgba(7,16,30,0.62) 100%),
    rgba(7,16,30,0.16); }
.pf-overlay { position: absolute; inset: 0; z-index: 2; background: rgba(14,33,59,0.88); display: flex; flex-direction: column; justify-content: flex-end; padding: 26px; transform: translateY(101%); transition: transform 0.4s var(--ease); }
.pf-item:hover .pf-overlay { transform: translateY(0); }
.pf-cat { font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.pf-overlay h3 { color: #fff; font-size: 22px; }
.pf-link { position: absolute; top: 18px; right: 18px; z-index: 3; width: 44px; height: 44px; border-radius: 50%; background: var(--gold); color: var(--navy); display: grid; place-items: center; font-size: 16px; opacity: 0; transform: scale(0.6); transition: all 0.35s var(--ease); }
.pf-item:hover .pf-link { opacity: 1; transform: scale(1); }
@media (max-width: 900px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .portfolio-grid { grid-template-columns: 1fr; } }

/* ============================================================
   9. PRICING
   ============================================================ */
.pricing { background: #fff; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 54px; align-items: stretch; }
.price-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 42px 36px; display: flex; flex-direction: column; position: relative; transition: transform 0.3s var(--ease), box-shadow 0.3s; }
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price-card.featured { background: var(--navy); border-color: var(--navy); transform: scale(1.04); }
.price-card.featured:hover { transform: scale(1.04) translateY(-6px); }
.price-badge { position: absolute; top: 22px; right: 22px; background: var(--gold); color: var(--navy); font-family: var(--font-mono); font-size: 10.5px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; padding: 6px 12px; border-radius: 5px; white-space: nowrap; }
.price-ico { width: 60px; height: 60px; border-radius: 50%; background: var(--navy); color: var(--gold); display: grid; place-items: center; font-size: 24px; margin-bottom: 22px; }
.price-card.featured .price-ico { background: var(--blue); color: #fff; }
.price-name { font-size: 22px; margin-bottom: 6px; }
.price-card.featured .price-name, .price-card.featured .price-desc { color: #fff; }
.price-desc { font-size: 14px; margin-bottom: 22px; }
.price-card.featured .price-desc { color: rgba(255,255,255,0.7); }
.price-amount { font-family: var(--font-mono); font-size: 44px; font-weight: 700; color: var(--blue); line-height: 1.05; }
.price-card.featured .price-amount { color: #6fa8e0; }
.price-amount small { display: block; font-size: 14px; font-weight: 700; color: var(--body); margin-top: 4px; }
.price-card.featured .price-amount small { color: rgba(255,255,255,0.6); }
.price-feats { margin: 28px 0; display: grid; gap: 14px; }
.price-feats li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--body); }
.price-card.featured .price-feats li { color: rgba(255,255,255,0.85); }
.price-feats li i { font-size: 13px; }
.price-feats li .ok { color: var(--blue); }
.price-card.featured .price-feats li .ok { color: var(--gold); }
.price-feats li .no { color: var(--border); }
.price-feats li.off { color: #aab2bf; }
.price-card .btn { margin-top: auto; }
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; } .price-card.featured { transform: none; } .price-card.featured:hover { transform: translateY(-6px); } }

/* ============================================================
   10. TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--cream); }
.tst-viewport { overflow: hidden; margin-top: 50px; }
.tst-track { display: flex; gap: 28px; transition: transform 0.6s var(--ease); }
.tst-card { flex: 0 0 calc((100% - 28px) / 2); background: #fff; border-radius: 10px; padding: 40px; box-shadow: var(--shadow-sm); }
.tst-top { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.tst-avatar { width: 60px; height: 60px; border-radius: 50%; background: var(--blue); color: #fff; display: grid; place-items: center; font-weight: 900; font-size: 22px; flex: none; }
.tst-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; }
.tst-quote { font-size: 16.5px; color: var(--ink); line-height: 1.65; margin-bottom: 20px; }
.tst-name { font-size: 18px; font-weight: 900; color: var(--ink); }
.tst-role { font-size: 14px; color: var(--body); }
.tst-controls { display: flex; gap: 12px; margin-top: 34px; justify-content: center; }
.tst-arrow { width: 50px; height: 50px; border-radius: 50%; background: var(--gray-bg); color: var(--ink); border: 0; cursor: pointer; display: grid; place-items: center; transition: all 0.25s; }
.tst-arrow:hover { background: var(--blue); color: #fff; }
@media (max-width: 760px) { .tst-card { flex-basis: 100%; } }

/* ============================================================
   11. PROCESS
   ============================================================ */
.process { background: #fff; }
.proc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 64px; }
.proc-card { background: var(--gray-bg); border-radius: 12px; padding: 56px 28px 32px; position: relative; text-align: center; transition: transform 0.3s var(--ease); }
.proc-card:hover { transform: translateY(-6px); }
.proc-bgnum { position: absolute; top: 10px; right: 22px; font-family: var(--font-mono); font-size: 64px; font-weight: 700; color: #e3e7ef; line-height: 1; z-index: 0; }
.proc-ico { position: relative; z-index: 1; width: 66px; height: 66px; border-radius: 50%; background: var(--blue); color: #fff; display: grid; place-items: center; font-size: 26px; margin: 0 auto 22px; box-shadow: 0 10px 24px rgba(10,61,122,0.3); }
.proc-card h3 { font-size: 21px; margin-bottom: 12px; position: relative; z-index: 1; }
.proc-card p { font-size: 14.5px; margin-bottom: 16px; }
.proc-card:not(:last-child)::after { content: "\f061"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; top: 50%; right: -22px; transform: translateY(-50%); color: var(--border); font-size: 16px; z-index: 2; }
@media (max-width: 980px) { .proc-grid { grid-template-columns: repeat(2, 1fr); } .proc-card::after { display: none; } }
@media (max-width: 540px) { .proc-grid { grid-template-columns: 1fr; } }

/* ============================================================
   12. FAQ
   ============================================================ */
.faq { background: var(--cream); }
.faq-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: start; }
.faq-cta { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.acc-item { background: var(--gray-bg); border-radius: 8px; margin-bottom: 14px; overflow: hidden; border: 1px solid transparent; }
.acc-head { width: 100%; text-align: left; background: none; border: 0; font-family: inherit; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 26px; font-size: 17px; font-weight: 700; color: var(--ink); transition: all 0.25s; }
.acc-head .ai { color: var(--blue); font-size: 16px; transition: transform 0.3s; flex: none; }
.acc-item.open .acc-head { background: var(--blue); color: #fff; }
.acc-item.open .acc-head .ai { color: #fff; }
.acc-body { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.acc-body p { padding: 4px 26px 22px; font-size: 15px; margin: 0; }
@media (max-width: 900px) { .faq-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ============================================================
   13. TEAM
   ============================================================ */
.team { background: #fff; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-top: 54px; }
.team-card { border-radius: 10px; overflow: hidden; border: 1px solid var(--border); background: #fff; transition: transform 0.3s var(--ease), box-shadow 0.3s; }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-photo { position: relative; aspect-ratio: 1 / 1; overflow: hidden; }
.team-photo .ph { position: absolute; inset: 0; filter: grayscale(1); transition: filter 0.3s; }
.team-card:hover .team-photo .ph { filter: grayscale(0); }
.team-social { position: absolute; left: 0; right: 0; bottom: 0; background: var(--blue); display: flex; justify-content: center; gap: 18px; padding: 12px; transform: translateY(100%); transition: transform 0.3s var(--ease); }
.team-card:hover .team-social { transform: translateY(0); }
.team-social a { color: #fff; font-size: 15px; transition: color 0.2s; }
.team-social a:hover { color: var(--gold); }
.team-body { padding: 20px; text-align: center; }
.team-body h4 { font-size: 19px; margin-bottom: 3px; }
.team-body span { font-size: 14px; color: var(--body); }
@media (max-width: 980px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .team-grid { grid-template-columns: 1fr; max-width: 320px; margin-inline: auto; } }

/* ============================================================
   14. QUOTE CTA BANNER
   ============================================================ */
.quote { position: relative; overflow: hidden; }
.quote-bg { position: absolute; inset: 0; background: linear-gradient(120deg, #0b1a30, #0e213b 60%, #103057); z-index: 0; }
.quote-bg::after { content: ""; position: absolute; inset: 0; background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.03) 0 2px, transparent 2px 26px); }
.quote .container { position: relative; z-index: 1; }
.quote-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.quote h2 { color: #fff; font-size: 40px; }
.quote h2 .gold { color: var(--gold); }
.quote p { color: rgba(255,255,255,0.8); margin-top: 14px; }
.quote-phone { margin-top: 28px; display: inline-flex; align-items: center; gap: 14px; text-decoration: none; transition: transform .2s ease; }
.quote-phone:hover { transform: translateY(-2px); }
.quote-phone:hover .pi { background: #25D366; }
.quote-phone .pi { width: 56px; height: 56px; border-radius: 50%; background: var(--blue); color: #fff; display: grid; place-items: center; font-size: 22px; transition: background .2s ease; }
.quote-phone .pn { font-size: 28px; font-weight: 900; color: var(--gold); line-height: 1; }
.quote-phone .pl { font-size: 13px; color: rgba(255,255,255,0.7); }
.quote-form { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 12px; padding: 34px; display: grid; gap: 14px; backdrop-filter: blur(6px); }
.field { width: 100%; background: rgba(255,255,255,0.95); border: 0; border-radius: 6px; padding: 15px 18px; font-family: inherit; font-size: 15px; color: var(--ink); }
.field::placeholder { color: #8a93a3; }
textarea.field { resize: vertical; min-height: 110px; }
@media (max-width: 900px) { .quote-grid { grid-template-columns: 1fr; gap: 36px; } .quote h2 { font-size: 30px; } }

/* ============================================================
   17. FOOTER
   ============================================================ */
.footer { background: var(--navy); color: var(--muted-light); padding-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 50px; }
.footer h4 { color: #fff; font-size: 18px; margin-bottom: 22px; }
.footer p { font-size: 14.5px; line-height: 1.7; margin: 16px 0 22px; }
.footer-logo { display: inline-flex; align-items: center; gap: 12px; }
.footer-logo .logo-mark { background: var(--blue); }
.footer-logo .logo-text { color: #fff; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.08); color: #fff; display: grid; place-items: center; transition: all 0.25s; }
.footer-social a:hover { background: var(--gold); color: var(--navy); transform: translateY(-3px); }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 14.5px; transition: color 0.2s, padding 0.2s; display: inline-flex; align-items: center; gap: 8px; }
.footer-links a::before { content: "\f105"; font-family: "Font Awesome 6 Free"; font-weight: 900; font-size: 12px; color: var(--gold); }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 16px; font-size: 14.5px; }
.footer-contact li i { color: var(--gold); margin-top: 4px; flex: none; }
.footer-phone { display: flex; gap: 12px; color: inherit; text-decoration: none; transition: color .2s ease; }
.footer-phone:hover { color: var(--gold); }
.footer-bottom { background: var(--navy-deep); padding: 20px 0; }
.footer-bottom .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13.5px; }
.footer-bottom a:hover { color: var(--gold); }
.footer-bottom-links { display: flex; gap: 22px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Scroll reveal (base = visible; .in adds entrance) ---------- */
.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  .reveal.in { animation: revealUp 0.6s var(--ease) forwards; }
}
@keyframes revealUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }

/* back to top */
.totop { position: fixed; right: 22px; bottom: 22px; width: 48px; height: 48px; border-radius: 50%; background: var(--blue); color: #fff; border: 0; display: grid; place-items: center; cursor: pointer; opacity: 0; pointer-events: none; transform: translateY(10px); transition: all 0.3s; z-index: 90; box-shadow: var(--shadow-md); }
.totop.show { opacity: 1; pointer-events: auto; transform: none; }
.totop:hover { background: var(--blue-hi); }
