@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ══════════════════════════════════════
   RESET & ROOT
══════════════════════════════════════ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

:root {
  --bg: #F7F8FC;
  --bg-alt: #FFFFFF;
  --bg-mute: #EDF0F7;
  --bg-dark: #0A1628;
  --text-main: #0A1628;
  --text-muted: #4A5568;
  --text-light: #94A3B8;
  --border: #E2E8F0;
  --ac: #0A2463;
  --ac-hover: #061840;
  --ac-light: #EEF2FF;
  --ac-mute: #DBEAFE;
  --ac-gold: #C9A84C;
  --ac-gold-light: #FDF6E3;
  --font-body: 'Outfit', sans-serif;
  --font-title: 'Cormorant Garamond', serif;
  --font-display: 'Bebas Neue', sans-serif;
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  --shadow-sm: 0 1px 3px rgba(10,22,40,.06), 0 1px 2px rgba(10,22,40,.04);
  --shadow-md: 0 4px 12px rgba(10,22,40,.08), 0 2px 6px rgba(10,22,40,.04);
  --shadow-lg: 0 20px 48px rgba(10,22,40,.10), 0 8px 20px rgba(10,22,40,.06);
  --shadow-hover: 0 32px 64px rgba(10,22,40,.14), 0 16px 32px rgba(10,22,40,.08);
  --e-out: cubic-bezier(0.16,1,0.3,1);
  --e-in-out: cubic-bezier(0.65,0,0.35,1);
  --transition: all .4s var(--e-out);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-top: env(safe-area-inset-top);
}

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: var(--radius-pill); }
::-webkit-scrollbar-thumb:hover { background: var(--text-light); }

/* ── Scroll Progress Bar ── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--ac), var(--ac-gold));
  z-index: 9999;
  transition: width .1s linear;
}

/* ══════════════════════════════════════
   LAYOUT
══════════════════════════════════════ */
.container { max-width: 1240px; margin: 0 auto; padding: 0 40px; }
.py-sect { padding: 9rem 0; }

h1,h2,h3,h4 { color: var(--text-main); line-height: 1.1; letter-spacing: -.02em; }

/* ══════════════════════════════════════
   TYPOGRAPHY
══════════════════════════════════════ */
.section-title {
  font-family: var(--font-title);
  font-size: clamp(2.4rem,5.5vw,4.2rem);
  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: 1.08;
}
.section-title em { font-style: italic; color: var(--ac); }
.section-title strong { font-weight: 700; }

.eyebrow {
  font-size: .68rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ac);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 36px; height: 1px;
  background: currentColor;
  flex-shrink: 0;
}
.eyebrow-center { justify-content: center; }
.eyebrow-center::before { display: none; }

.body-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 24px;
  font-weight: 300;
}
.body-text strong { color: var(--text-main); font-weight: 500; }

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
.nav-wrap {
  position: fixed;
  top: 24px; left: 0; right: 0;
  z-index: 500;
  display: flex;
  justify-content: center;
  pointer-events: none;
  padding: 0 24px;
  transition: top .4s var(--e-out);
}

.nav {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  padding: 10px 10px 10px 28px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.5);
  width: 100%;
  max-width: 1100px;
  transition: var(--transition);
}

.nl {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.nl img {
  height: 40px; width: 40px;
  object-fit: contain;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
}
.nl-text { display: flex; flex-direction: column; }
.nl-n {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: .15em;
  color: var(--text-main);
  line-height: 1;
}
.nl-s {
  font-size: .52rem;
  letter-spacing: .2em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 600;
  line-height: 1;
}

.nlinks { display: flex; gap: 4px; align-items: center; }
.nlink {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .05em;
  color: var(--text-muted);
  text-decoration: none;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
}
.nlink:hover { color: var(--text-main); background: var(--bg-mute); }
.nlink.active {
  color: var(--ac);
  background: var(--ac-light);
  font-weight: 600;
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  flex-direction: column;
  gap: 5px;
  z-index: 100;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: .3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: var(--radius-pill);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--ac);
  color: #fff;
  box-shadow: 0 8px 24px rgba(10,36,99,.28);
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
}
.btn-primary:hover {
  background: var(--ac-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(10,36,99,.36);
}
.btn-primary:hover::after { opacity: 1; }
.btn-primary svg { transition: transform .4s var(--e-out); width: 14px; height: 14px; }
.btn-primary:hover svg { transform: translateX(5px); }

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  background: var(--bg-alt);
  border-color: var(--ac);
  color: var(--ac);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  background: var(--ac-gold);
  color: #fff;
  box-shadow: 0 8px 24px rgba(201,168,76,.3);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(201,168,76,.4);
  filter: brightness(1.05);
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--bg);
}

.hero-bg-accent {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg-accent::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10,36,99,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,36,99,.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 30%, transparent 100%);
  animation: gridMove 25s linear infinite;
}

.hero-bg-accent::after {
  content: '';
  position: absolute;
  inset: -100%;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 120px,
    rgba(10,36,99,.018) 120px,
    rgba(10,36,99,.018) 121px
  );
  animation: diagMove 30s linear infinite;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 14s ease-in-out infinite alternate;
}
.hero-shape.s1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(10,36,99,.14) 0%, transparent 70%);
  top: -160px; left: -140px;
  animation-duration: 14s;
}
.hero-shape.s2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,.12) 0%, transparent 70%);
  bottom: -120px; right: -100px;
  animation-duration: 18s;
  animation-delay: -5s;
}
.hero-shape.s3 {
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(10,36,99,.08) 0%, transparent 70%);
  top: 35%; left: 58%;
  animation-duration: 22s;
  animation-delay: -9s;
}

.hero-dot {
  position: absolute;
  border-radius: 50%;
  background: var(--ac);
  animation: dotPulse 4s ease-in-out infinite;
}
.hero-dot.d1 { width: 6px; height: 6px; top: 20%; left: 15%; opacity: .4; animation-delay: 0s; }
.hero-dot.d2 { width: 4px; height: 4px; top: 65%; left: 22%; opacity: .3; animation-delay: -1s; }
.hero-dot.d3 { width: 8px; height: 8px; top: 30%; right: 20%; opacity: .35; animation-delay: -2s; }
.hero-dot.d4 { width: 5px; height: 5px; bottom: 25%; right: 28%; opacity: .3; animation-delay: -3s; }

.hero-line {
  position: absolute;
  width: 1px;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(10,36,99,.12) 30%,
    rgba(10,36,99,.12) 70%,
    transparent 100%);
  animation: lineFade 6s ease-in-out infinite alternate;
}
.hero-line.l1 { height: 55%; top: 18%; left: 12%; animation-delay: 0s; }
.hero-line.l2 { height: 40%; top: 28%; right: 16%; animation-delay: -2s; }
.hero-line.l3 { height: 30%; top: 40%; left: 48%; animation-delay: -4s; opacity: .6; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
}

/* ── Hero Badge ── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ac);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ac-gold);
  animation: pulseDot 2s infinite;
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(3.2rem,7.5vw,6rem);
  font-weight: 400;
  line-height: 1.02;
  margin-bottom: 28px;
  color: var(--text-main);
  letter-spacing: -.03em;
}
.hero-title em { font-style: italic; color: var(--text-muted); font-weight: 300; }
.hero-title strong {
  display: block;
  font-weight: 700;
  color: var(--ac);
  position: relative;
}
.hero-title strong::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--ac-gold), transparent);
  border-radius: var(--radius-pill);
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 620px;
  margin-bottom: 48px;
  line-height: 1.8;
  font-weight: 300;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ── Hero Scroll Indicator ── */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  animation: fadeIn 2s .5s both;
  z-index: 2;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--ac), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

/* ══════════════════════════════════════
   STATS BANNER
══════════════════════════════════════ */
.stats-banner {
  background: var(--bg-dark);
  position: relative;
  z-index: 5;
  overflow: hidden;
}
.stats-banner::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(10,36,99,.6) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(201,168,76,.15) 0%, transparent 50%);
  pointer-events: none;
}
.stats-banner::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.stat-item {
  padding: 56px 32px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.07);
  transition: background .4s;
  position: relative;
}
.stat-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--ac-gold);
  transition: width .4s var(--e-out);
}
.stat-item:hover::before { width: 60%; }
.stat-item:hover { background: rgba(255,255,255,.03); }
.stat-item:last-child { border-right: none; }

.stat-val {
  font-family: var(--font-display);
  font-size: 3.8rem;
  line-height: .9;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: .02em;
}
.stat-val span { color: var(--ac-gold); font-size: 2.2rem; vertical-align: super; }
.stat-lbl {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  font-weight: 500;
}

/* ══════════════════════════════════════
   ABOUT
══════════════════════════════════════ */
.about-sec { position: relative; background: var(--bg); overflow: hidden; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.about-image-wrapper img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .9s var(--e-out);
}
.about-image-wrapper:hover img { transform: scale(1.06); }

.about-badge {
  position: absolute;
  bottom: 28px; right: 28px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  padding: 18px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 2;
  border: 1px solid rgba(255,255,255,.6);
}
.ab-title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--ac);
  letter-spacing: .1em;
  line-height: 1;
}
.ab-sub {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
  font-weight: 600;
}

/* ══════════════════════════════════════
   PRODUCTS
══════════════════════════════════════ */
.products-sec {
  background: var(--bg-alt);
  position: relative;
  border-top: 1px solid var(--border);
}
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 80px;
}
.section-header .eyebrow { justify-content: center; }
.section-header .eyebrow::before { display: none; }
.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-top: 20px;
  font-weight: 300;
}

.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px,1fr));
  gap: 24px;
}

.prod-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-top: 3px solid var(--ac);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.prod-card:nth-child(even) { border-top-color: var(--ac-gold); }
.prod-card:nth-child(3n) { border-top-color: #10b981; }
.prod-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.prod-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.prod-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  transition: transform .6s var(--e-out);
  mix-blend-mode: multiply;
}
.prod-card:hover .prod-img img { transform: scale(1.08) rotate(1deg); }

.prod-body { padding: 24px 20px; flex-grow: 1; display: flex; flex-direction: column; }
.prod-name {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.45rem;
  color: var(--text-main);
  margin-bottom: 8px;
  line-height: 1.1;
}
.prod-desc { font-size: .9rem; color: var(--text-muted); line-height: 1.65; font-weight: 300; }

/* ══════════════════════════════════════
   SERVICES — TİKİNTİ
══════════════════════════════════════ */
.services-sec-tk {
  background: var(--bg);
  position: relative;
}
.svc-header {
  max-width: 600px;
  margin-bottom: 72px;
}

/* ══════════════════════════════════════
   SERVICES — TİCARƏT
══════════════════════════════════════ */
.services-sec {
  background: var(--bg);
  position: relative;
  border-top: 1px solid var(--border);
}

.srv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.srv-item {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.srv-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ac), var(--ac-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--e-out);
}
.srv-item:hover::before { transform: scaleX(1); }
.srv-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--ac-mute);
}

.srv-num {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  -webkit-text-stroke: 1px var(--ac);
  color: transparent;
  margin-bottom: 4px;
}

.srv-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: var(--ac-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.srv-item:hover .srv-icon { background: var(--ac); }
.srv-icon svg {
  width: 22px; height: 22px;
  stroke: var(--ac);
  fill: none;
  stroke-width: 1.5;
  transition: stroke .3s;
}
.srv-item:hover .srv-icon svg { stroke: #fff; }

.srv-name {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.2;
  margin-bottom: 8px;
}
.srv-title {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.2;
  margin-bottom: 8px;
}

.srv-desc {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
  flex-grow: 1;
}

.srv-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.srv-tag {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: var(--ac-light);
  color: var(--ac);
  border: 1px solid var(--ac-mute);
}

/* ── Service Blocks (Tikinti) ── */
.svc-block {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 0;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--e-out), box-shadow .4s;
  align-items: stretch;
}
.svc-block:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.svc-block-reverse { grid-template-columns: 1fr 420px; }
.svc-block-reverse .svc-img-col { order: 2; }
.svc-block-reverse .svc-content-col { order: 1; }

.svc-img-col {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}
.svc-img-col > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--e-out);
}
.svc-block:hover .svc-img-col > img { transform: scale(1.05); }

.svc-img-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ac);
  border: 1px solid rgba(255,255,255,.6);
  box-shadow: var(--shadow-md);
  z-index: 20;
}

.svc-content-col {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--border);
}
.svc-block-reverse .svc-content-col {
  border-left: none;
  border-right: 1px solid var(--border);
}

.svc-eyebrow {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: .05em;
  -webkit-text-stroke: 1px var(--ac);
  color: transparent;
}

.svc-content-col h3 {
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--text-main);
}
.svc-content-col h3 em { font-style: italic; color: var(--ac); }
.svc-content-col > p {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 24px;
}

.svc-mini-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.svc-mini-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 600;
}
.svc-mini-stat span {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--ac);
  letter-spacing: .05em;
  line-height: 1;
}

.svc-items-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.svc-item { display: flex; gap: 12px; align-items: flex-start; }
.svc-item-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ac-gold);
  margin-top: 7px;
  flex-shrink: 0;
}
.svc-name {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 4px;
  letter-spacing: -.01em;
}
.svc-desc {
  font-size: .78rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
}

.svc-toggle { display: none; }

/* ── Slider ── */
.svc-img-col .svc-slider-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  user-select: none;
  background: #111;
}

.svc-slider-track {
  display: flex;
  width: 100%;          /* ← əlavə edildi */
  height: 100%;
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

.svc-slide {
  width: 100%;          /* ← min-width əvəzinə width */
  flex: 0 0 100%;       /* ← shrink və grow yox, həmişə 100% */
  height: 100%;
  position: relative;
  overflow: hidden;
}

.svc-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.svc-slider-wrap:hover .svc-slide img { transform: scale(1.05); }

.svc-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.45), transparent 55%);
  z-index: 5; pointer-events: none;
}
.svc-slide-label {
  position: absolute; bottom: 14px; left: 14px; right: 60px;
  color: rgba(255,255,255,.85); font-size: 12px; font-weight: 500;
  z-index: 10; text-shadow: 0 1px 6px rgba(0,0,0,.7);
}
.svc-slider-dots {
  position: absolute; bottom: 16px; right: 16px;
  display: flex; gap: 5px; z-index: 20; align-items: center;
}
.svc-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,.35); cursor: pointer;
  border: none; padding: 0; transition: .25s; flex-shrink: 0;
}
.svc-dot.active {
  background: #c9a84c; transform: scale(1.4);
  width: 18px; border-radius: 3px;
}
.svc-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 20; width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,.5); border: 1px solid rgba(255,255,255,.18);
  color: #fff; display: flex; align-items: center; justify-content: center;
  cursor: pointer; backdrop-filter: blur(8px); padding: 0;
  opacity: 0; transition: opacity .25s, background .25s, transform .2s;
  outline: none;
}
.svc-arrow svg {
  width: 15px; height: 15px; display: block; pointer-events: none;
}
.svc-slider-wrap:hover .svc-arrow { opacity: 1; }
.svc-arrow:hover {
  background: rgba(201,168,76,.55);
  border-color: rgba(201,168,76,.6);
}
.svc-arrow:active { transform: translateY(-50%) scale(0.93); }
.svc-arrow.prev { left: 12px; }
.svc-arrow.next { right: 12px; }
.svc-progress-bar {
  position: absolute; top: 0; left: 0;
  height: 2px; background: #c9a84c;
  z-index: 25; transition: width linear; opacity: .8;
}
/* ══════════════════════════════════════
   PROJECTS SLIDER
══════════════════════════════════════ */
.projects-sec {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
.projects-sec::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}

.projects-header-box {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 24px;
}
.projects-header-info .section-title { color: #fff; margin-bottom: 12px; }
.projects-header-info .section-title em { color: var(--ac-gold); }
.projects-header-info .eyebrow { color: var(--ac-gold); }
.projects-header-info .eyebrow::before { background: var(--ac-gold); }
.projects-header-info .body-text { color: rgba(255,255,255,.5); margin: 0; }

.projects-nav { display: flex; gap: 12px; }
.slider-btn {
  width: 52px; height: 52px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.06);
  display: flex; justify-content: center; align-items: center;
  cursor: pointer;
  transition: var(--transition);
  color: #fff;
}
.slider-btn:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.3);
  transform: scale(1.06);
}
.slider-btn svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; }

.proj-slider-wrap { width: 100%; position: relative; }
.proj-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 48px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-left: max(40px, calc((100vw - 1160px) / 2));
  padding-right: max(40px, calc((100vw - 1160px) / 2));
}
.proj-grid::-webkit-scrollbar { display: none; }

.proj-card {
  position: relative;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 300px;
  height: 380px;
  scroll-snap-align: start;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
  z-index: 1;
}
.proj-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-hover);
  z-index: 10;
}

.proj-img {
  position: absolute; inset: 0;
  z-index: 0; overflow: hidden;
  background: var(--bg-mute);
}
.proj-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .9s var(--e-out);
  position: absolute; inset: 0;
}
.proj-card:hover .proj-img img { transform: scale(1.1); }
.proj-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,22,40,.05) 0%, rgba(10,22,40,.7) 50%, rgba(10,22,40,.95) 100%);
  z-index: 1;
}

.proj-body {
  position: relative;
  padding: 24px 22px 20px;
  display: flex; flex-direction: column;
  color: #f8fafc;
  z-index: 2;
}
.proj-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.proj-tag {
  font-size: .55rem; letter-spacing: .12em; text-transform: uppercase;
  padding: 4px 10px; border-radius: var(--radius-pill);
  font-weight: 600; color: #fff;
  background: rgba(255,255,255,.14); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
}
.proj-title {
  font-family: var(--font-title);
  font-size: 1.3rem; font-weight: 600;
  margin-bottom: 6px; line-height: 1.1; color: #fff;
}
.proj-desc {
  font-size: .78rem; color: rgba(255,255,255,.8);
  line-height: 1.55; margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2; line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
  font-weight: 300;
}
.proj-stats {
  display: flex; gap: 14px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 12px; align-items: center;
}
.proj-stat { display: flex; flex-direction: column; }
.proj-stat-v {
  font-family: var(--font-display);
  font-size: 1.2rem; line-height: 1;
  color: var(--ac-gold); letter-spacing: .05em; margin-bottom: 3px;
}
.proj-stat-l {
  font-size: .52rem; color: rgba(255,255,255,.5);
  text-transform: uppercase; font-weight: 700; letter-spacing: .1em;
}

/* ══════════════════════════════════════
   PARTNERS
══════════════════════════════════════ */
.partners-sec {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.partners-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 56px;
}
.logo-marquee-container { display: flex; flex-direction: column; gap: 20px; }
.logo-marquee-row {
  display: flex;
  overflow: hidden;
  user-select: none;
  width: 100%;
}
.logo-marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: logo-marquee 40s linear infinite;
}
.logo-marquee-row.reverse .logo-marquee-track { animation-direction: reverse; }
.logo-marquee-row.r45 .logo-marquee-track { animation-duration: 45s; }
.logo-marquee-row.r60 .logo-marquee-track { animation-duration: 52s; }

.logo-card {
  width: 176px; height: 96px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.logo-card:hover {
  background: var(--bg-alt);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--ac-mute);
}
.logo-card img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  transition: all .4s;
  filter: grayscale(40%) opacity(.75);
}
.logo-card:hover img {
  transform: scale(1.05);
  filter: grayscale(0%) opacity(1);
}

/* ══════════════════════════════════════
   PROCESS (Tikinti + Ticarət)
══════════════════════════════════════ */
.process-sec {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
  padding: 9rem 0;
}
.process-sec::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}
.process-sec::after {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.08) 0%, transparent 70%);
  pointer-events: none;
}

.process-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 72px;
}
.process-header .section-title { color: #fff; }
.process-header .section-title em { color: var(--ac-gold); }
.process-header .eyebrow { color: var(--ac-gold); justify-content: center; }
.process-header .eyebrow::before { display: none; }
.process-header p {
  color: rgba(255,255,255,.5);
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 300;
  margin-top: 16px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
/* 4-column variant for ticaret */
.process-steps.cols-4 { grid-template-columns: repeat(4, 1fr); }

.process-steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(10% + 28px);
  right: calc(10% + 28px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.3), rgba(201,168,76,.3), transparent);
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.step-num-wrap {
  position: relative;
  width: 88px; height: 88px;
  margin-bottom: 28px;
}
.step-num-ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,.25);
  animation: ringPulse 3s ease-in-out infinite;
}
.process-step:nth-child(2) .step-num-ring { animation-delay: .6s; }
.process-step:nth-child(3) .step-num-ring { animation-delay: 1.2s; }
.process-step:nth-child(4) .step-num-ring { animation-delay: 1.8s; }
.process-step:nth-child(5) .step-num-ring { animation-delay: 2.4s; }

.step-num {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--ac-gold);
  letter-spacing: .05em;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.process-step:hover .step-num {
  background: rgba(201,168,76,.15);
  border-color: var(--ac-gold);
  transform: scale(1.1);
}

.step-title {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
}
.step-desc {
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  line-height: 1.65;
  font-weight: 300;
}

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testimonials-sec {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 9rem 0;
  position: relative;
  overflow: hidden;
}
.testimonials-sec::before {
  content: '';
  position: absolute;
  bottom: -120px; left: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10,36,99,.04) 0%, transparent 70%);
  pointer-events: none;
}

.testimonials-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 72px;
}
.testimonials-header .eyebrow { justify-content: center; }
.testimonials-header .eyebrow::before { display: none; }
.testimonials-header p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 300;
  margin-top: 16px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testi-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ac), var(--ac-gold));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--e-out);
}
.testi-card:hover::before { transform: scaleX(1); }
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.testi-quote {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--ac-gold);
  line-height: .8;
  opacity: .4;
}
.testi-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-style: italic;
  font-family: var(--font-title);
  font-weight: 400;
  flex-grow: 1;
}
.testi-stars { display: flex; gap: 4px; }
.testi-star { color: var(--ac-gold); font-size: 1rem; }

.testi-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.testi-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--ac-light);
  border: 2px solid var(--ac-mute);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ac);
  letter-spacing: .05em;
  flex-shrink: 0;
}
.testi-name {
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 3px;
}
.testi-role {
  font-size: .72rem;
  color: var(--text-light);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.faq-sec {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 9rem 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.faq-info { position: sticky; top: 120px; }
.faq-info .eyebrow { margin-bottom: 20px; }
.faq-info p {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
  margin-top: 20px;
  margin-bottom: 36px;
}

.faq-contact-cta {
  background: var(--bg-dark);
  border-radius: var(--radius-md);
  padding: 28px;
  color: rgba(255,255,255,.7);
  font-size: .88rem;
  line-height: 1.7;
  position: relative;
  overflow: hidden;
}
.faq-contact-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--ac), var(--ac-gold));
}
.faq-contact-cta strong {
  display: block;
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.faq-contact-cta a { color: var(--ac-gold); text-decoration: none; font-weight: 600; }

.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--ac-mute); box-shadow: var(--shadow-md); }
.faq-item.open { border-color: var(--ac); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  cursor: pointer;
  gap: 16px;
  user-select: none;
}
.faq-q-text {
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.4;
}
.faq-item.open .faq-q-text { color: var(--ac); }

.faq-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg-mute);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-icon {
  background: var(--ac);
  border-color: var(--ac);
  transform: rotate(45deg);
}
.faq-icon svg {
  width: 14px; height: 14px;
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 2;
  transition: stroke .3s;
}
.faq-item.open .faq-icon svg { stroke: #fff; }

.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--e-out); }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner {
  padding: 0 28px 24px;
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
.contact-sec {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  padding: 9rem 0;
}
.contact-sec::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10,36,99,.05) 0%, transparent 70%);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.c-info-list { display: flex; flex-direction: column; gap: 28px; }
.c-item { display: flex; gap: 20px; align-items: flex-start; }

.c-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-pill);
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.c-item:hover .c-icon { background: var(--ac); border-color: var(--ac); }
.c-icon svg {
  width: 18px; height: 18px;
  stroke: var(--ac);
  fill: none;
  stroke-width: 1.5;
  transition: stroke .3s;
}
.c-item:hover .c-icon svg { stroke: #fff; }

.c-label {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 6px;
}
.c-value { font-size: 1.05rem; color: var(--text-main); font-weight: 500; }
.c-value a { color: inherit; text-decoration: none; transition: color .3s; }
.c-value a:hover { color: var(--ac); }

/* ── Working Hours ── */
.working-hours {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-top: 8px;
}
.wh-title {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.wh-title::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #10b981;
  animation: pulseDot 2s infinite;
}
.wh-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: .88rem;
}
.wh-row:last-child { border-bottom: none; padding-bottom: 0; }
.wh-day { color: var(--text-muted); font-weight: 400; }
.wh-time { color: var(--text-main); font-weight: 600; }
.wh-closed { color: var(--text-light); font-weight: 400; font-style: italic; }

/* ── Form ── */
.form-box {
  background: var(--bg-alt);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.form-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ac), var(--ac-gold));
}
.form-title {
  font-family: var(--font-title);
  font-size: 1.9rem;
  margin-bottom: 36px;
  color: var(--text-main);
}
.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.f-grp {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}
.f-grp label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.f-ctrl {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text-main);
  transition: all .3s;
  outline: none;
  font-weight: 300;
}
.f-ctrl:focus {
  border-color: var(--ac);
  box-shadow: 0 0 0 3px rgba(10,36,99,.08);
  background: var(--bg-alt);
}
textarea.f-ctrl { min-height: 130px; resize: vertical; }
.f-ctrl::placeholder { color: var(--text-light); }
select.f-ctrl { cursor: pointer; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: var(--bg-dark);
  padding: 56px 0;
  color: rgba(255,255,255,.45);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(255,255,255,.1) 30%,
    rgba(201,168,76,.3) 50%,
    rgba(255,255,255,.1) 70%,
    transparent
  );
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.f-copy { font-size: .82rem; }
.f-copy a { color: rgba(255,255,255,.6); text-decoration: underline; font-weight: 500; transition: color .3s; }
.f-copy a:hover { color: #fff; }
.f-links { display: flex; gap: 28px; }
.f-links a {
  font-size: .82rem; font-weight: 500;
  color: rgba(255,255,255,.45);
  text-decoration: none;
  transition: color .3s;
  letter-spacing: .04em;
}
.f-links a:hover { color: #fff; }

/* ══════════════════════════════════════
   BACK TO TOP
══════════════════════════════════════ */
.back-top {
  position: fixed;
  bottom: 36px; right: 36px;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--ac);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(10,36,99,.3);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  z-index: 400;
}
.back-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-top:hover {
  background: var(--ac-hover);
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(10,36,99,.36);
}
.back-top svg { width: 20px; height: 20px; stroke: #fff; fill: none; stroke-width: 2; }

/* ══════════════════════════════════════
   REVEAL ANIMATIONS
══════════════════════════════════════ */
.rv {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .9s var(--e-out), transform .9s var(--e-out);
}
.rv.vis { opacity: 1; transform: translateY(0); }
.rv-l {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity .9s var(--e-out), transform .9s var(--e-out);
}
.rv-l.vis { opacity: 1; transform: translateX(0); }
.rv-r {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity .9s var(--e-out), transform .9s var(--e-out);
}
.rv-r.vis { opacity: 1; transform: translateX(0); }

.d-1 { transition-delay: .1s; }
.d-2 { transition-delay: .2s; }
.d-3 { transition-delay: .3s; }
.d-4 { transition-delay: .4s; }
.d-5 { transition-delay: .5s; }

/* ══════════════════════════════════════
   KEYFRAMES
══════════════════════════════════════ */
@keyframes gridMove {
  0%   { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}
@keyframes diagMove {
  0%   { transform: translateX(0) translateY(0); }
  100% { transform: translateX(121px) translateY(121px); }
}
@keyframes orbFloat {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(30px, -20px) scale(1.05); }
  66%  { transform: translate(-20px, 30px) scale(.95); }
  100% { transform: translate(20px, 10px) scale(1.02); }
}
@keyframes floatShape {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(30px, -20px) scale(1.05); }
  66%  { transform: translate(-20px, 15px) scale(0.97); }
  100% { transform: translate(10px, -10px) scale(1.02); }
}
@keyframes dotPulse {
  0%, 100% { transform: scale(1);   opacity: .3; }
  50%       { transform: scale(2.5); opacity: .6; }
}
@keyframes pulseDot {
  0%, 100% { transform: scale(1);   opacity: 1; }
  50%       { transform: scale(1.8); opacity: .5; }
}
@keyframes ringPulse {
  0%   { transform: scale(.9);  opacity: 0; }
  50%  { transform: scale(1.3); opacity: .4; }
  100% { transform: scale(1.6); opacity: 0; }
}
@keyframes pulseRing {
  0%   { transform: translate(-50%,-50%) scale(.8);  opacity: .6; }
  100% { transform: translate(-50%,-50%) scale(2.5); opacity: 0; }
}
@keyframes lineFade {
  0%, 100% { opacity: .3; transform: scaleY(.8); }
  50%       { opacity: .8; transform: scaleY(1); }
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1) translateY(0); opacity: 1; }
  50%       { transform: scaleY(.5) translateY(8px); opacity: .4; }
}
@keyframes dotFloat {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(12px, -16px); }
  50%  { transform: translate(-8px, -24px); }
  75%  { transform: translate(-14px, -10px); }
  100% { transform: translate(0, 0); }
}
@keyframes logo-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 10px)); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1200px) {
  .svc-block-inner { grid-template-columns: 300px 1fr; }
}

@media (max-width: 1024px) {
  .about-grid,
  .contact-grid,
  .faq-grid { grid-template-columns: 1fr; gap: 56px; }
  .faq-info { position: static; }
  .about-image-wrapper { max-width: 700px; margin: 0 auto; }

  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,.07); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) { border-bottom: none; }

  /* Services tikinti */
  .svc-block,
  .svc-block-reverse { grid-template-columns: 1fr; }
  .svc-block-reverse .svc-img-col { order: 0; }
  .svc-block-reverse .svc-content-col {
    order: 0;
    border-right: none;
    border-top: 1px solid var(--border);
  }
  .svc-img-col { min-height: 280px; }
  .svc-content-col {
    border-left: none;
    border-top: 1px solid var(--border);
    padding: 36px;
  }

  /* Process */
  .process-steps,
  .process-steps.cols-4 { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .process-steps::before { display: none; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .py-sect { padding: 5rem 0; }
  .process-sec,
  .testimonials-sec,
  .faq-sec,
  .contact-sec { padding: 5rem 0; }

  .nav-wrap { padding: 0 16px; top: 14px; }
  .nav { padding: 8px 8px 8px 18px; }
  .nl-s { display: none; }
  .hamburger { display: flex; }

  .nav-menu {
    position: fixed;
    top: 68px; left: 16px; right: 16px;
    background: var(--bg-alt);
    padding: 18px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all .3s var(--e-out);
    z-index: 490;
  }
  .nav-menu.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav-menu .nlinks { display: flex; flex-direction: column; gap: 8px; width: 100%; }
  .nav-menu .nlink { padding: 12px 16px; text-align: left; width: 100%; display: block; border-radius: var(--radius-sm); }

  /* Hero */
  .hero-title { font-size: clamp(2.8rem,10vw,4rem); }
  .hero-desc  { font-size: 1rem; }
  .hero-scroll { display: none; }

  /* Stats */
  .stat-item { padding: 28px 16px; }
  .stat-val  { font-size: 2.4rem; margin-bottom: 8px; }
  .stat-val span { font-size: 1.4rem; }
  .stat-lbl  { font-size: .62rem; }

  /* Products */
  .prod-grid { grid-template-columns: repeat(2,1fr); gap: 14px; }
  .prod-card { border-radius: var(--radius-sm); }
  .prod-img  { padding: 14px; }
  .prod-body { padding: 14px 12px; }
  .prod-name { font-size: 1.05rem; }
  .prod-desc { font-size: .82rem; }

  /* Services ticaret */
  .srv-grid { grid-template-columns: 1fr; gap: 16px; }
  .srv-item { padding: 24px 20px; }
  .srv-num  { font-size: 2.4rem; margin-bottom: 14px; }

  /* Services tikinti */
  .svc-items-grid { grid-template-columns: 1fr; }
  .svc-content-col { padding: 24px; }
  .svc-mini-stats  { gap: 16px; flex-wrap: wrap; }
  .svc-img-col     { min-height: 220px; }

  /* Process */
  .process-steps,
  .process-steps.cols-4 { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }
  .testi-card { padding: 28px 24px; }

  /* Projects */
  .projects-header-box { flex-direction: column; align-items: flex-start; margin-bottom: 28px; }
  .projects-nav { display: none; }
  .proj-grid { gap: 14px; padding-bottom: 24px; padding-left: 20px; padding-right: 20px; }
  .proj-card { min-width: calc(100vw - 40px); max-width: calc(100vw - 40px); height: 360px; }
  .proj-body  { padding: 20px 16px 16px; }
  .proj-title { font-size: 1.15rem; }
  .proj-desc  { font-size: .75rem; margin-bottom: 10px; }

  /* Contact */
  .form-box { padding: 28px 20px; }
  .f-row    { grid-template-columns: 1fr; gap: 0; }

  /* Footer */
  .footer-inner { flex-direction: column; text-align: center; justify-content: center; }
  .f-links { justify-content: center; }

  /* Logo marquee */
  .logo-card { width: 136px; height: 76px; padding: 14px; }

  /* Back to top */
  .back-top { bottom: 20px; right: 20px; width: 44px; height: 44px; }
}

@media (max-width: 480px) {
  .hero-title    { font-size: clamp(2.4rem,11vw,3.2rem); }
  .prod-grid     { grid-template-columns: 1fr; }
  .section-title { font-size: clamp(2rem,8vw,3rem); }
  .stats-grid    { grid-template-columns: repeat(2,1fr); }
  .process-steps,
  .process-steps.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .step-num-wrap,
  .step-num { width: 64px; height: 64px; }
  .step-num { font-size: 1.6rem; }
}
/* ══════════════════════════════════════
   MOBILE RESPONSIVE — Yalnız əlavə qaydalar
   Desktop-a heç bir toxunuş yoxdur.
   Bu kodu pages.css faylının sonuna əlavə edin.
══════════════════════════════════════ */

/* ── 1024px və altı ── */
@media (max-width: 1024px) {

  /* Slider — sütun üst-alta keçəndə şəkil hündürlüyü */
  .svc-img-col {
    min-height: 320px;
  }

  .svc-img-col .svc-slider-wrap {
    position: absolute;
    inset: 0;
  }

  /* Ok düymələri tablet-da da görünsün */
  .svc-arrow {
    opacity: 1;
  }
}

/* ── 768px və altı ── */
@media (max-width: 768px) {

  /* ── Slider ── */
  .svc-img-col {
    min-height: 260px;
  }

  .svc-img-col .svc-slider-wrap {
    position: absolute;
    inset: 0;
    border-radius: 0;
  }

  /* Ox düymələri kiçilsin, həmişə görünsün */
  .svc-arrow {
    opacity: 1;
    width: 30px;
    height: 30px;
  }

  .svc-arrow svg {
    width: 12px;
    height: 12px;
  }

  .svc-arrow.prev { left: 8px; }
  .svc-arrow.next { right: 8px; }

  /* Nöqtələr bir az kiçilsin */
  .svc-dot {
    width: 5px;
    height: 5px;
  }

  .svc-dot.active {
    width: 14px;
  }

  /* Slayd label font */
  .svc-slide-label {
    font-size: 11px;
    bottom: 10px;
    left: 10px;
  }

  /* Badge mövqeyi */
  .svc-img-badge {
    bottom: 12px;
    left: 12px;
    font-size: .6rem;
    padding: 6px 12px;
  }

  /* ── Hero ── */
  .hero-content {
    padding: 0 4px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  /* ── Stats ── */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* ── Nav ── */
  .nav {
    gap: 8px;
  }

  /* ── Svc content ── */
  .svc-eyebrow {
    font-size: 2.5rem;
  }

  .svc-mini-stats {
    flex-wrap: wrap;
    gap: 12px;
  }

  .svc-items-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* ── Process ── */
  .process-step {
    padding: 0 8px;
  }

  .step-desc {
    font-size: .72rem;
  }

  /* ── Testimonials ── */
  .testi-text {
    font-size: .9rem;
  }

  /* ── FAQ ── */
  .faq-q-text {
    font-size: .88rem;
  }

  .faq-a-inner {
    font-size: .82rem;
    padding: 0 20px 20px;
    padding-top: 16px;
  }

  /* ── Contact form ── */
  .f-row {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 0;
  }

  .f-grp {
    margin-bottom: 16px;
  }

  /* ── Footer ── */
  .f-links {
    flex-wrap: wrap;
    gap: 16px;
  }
}

/* ── 480px və altı ── */
@media (max-width: 480px) {

  /* ── Slider hündürlüyü ── */
  .svc-img-col {
    min-height: 220px;
  }

  /* ── Svc block padding ── */
  .svc-content-col {
    padding: 20px 16px;
  }

  /* ── Section title ── */
  .section-title {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }

  /* ── Hero title ── */
  .hero-title {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  /* ── Stat val ── */
  .stat-val {
    font-size: 2rem;
  }

  /* ── Process 2 sütun ── */
  .process-steps,
  .process-steps.cols-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .step-num-wrap,
  .step-num {
    width: 60px;
    height: 60px;
  }

  .step-num {
    font-size: 1.5rem;
  }

  /* ── Prod grid 1 sütun ── */
  .prod-grid {
    grid-template-columns: 1fr;
  }

  /* ── Form box ── */
  .form-box {
    padding: 24px 16px;
  }

  /* ── FAQ ── */
  .faq-q {
    padding: 18px 20px;
  }

  /* ── Logo marquee kiçilsin ── */
  .logo-card {
    width: 120px;
    height: 68px;
    padding: 12px;
  }

  /* ── Back to top ── */
  .back-top {
    bottom: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
  }

  /* ── Svc eyebrow ── */
  .svc-eyebrow {
    font-size: 2rem;
  }

  /* ── Testi card ── */
  .testi-card {
    padding: 24px 18px;
    gap: 14px;
  }

  .testi-quote {
    font-size: 3rem;
  }

  /* ── About badge ── */
  .about-badge {
    bottom: 14px;
    right: 14px;
    padding: 12px 18px;
  }

  .ab-title {
    font-size: 1.3rem;
  }
}