/* ================================================================
   ALN TOZ BOYA — PRO WIDGETS CSS  v2.0
   Design Direction : "Industrial Chroma"
   Primary  : #22c55e (vivid green)
   Bg System: #03090a → #071410 → #0a1c15
   Fonts    : Outfit (display/heading) · Plus Jakarta Sans (body)
   ================================================================ */

/* ── TOKENS ── */
:root {
  --g:        #22c55e;   /* Ana yeşil                  */
  --g2:       #16a34a;   /* Koyu yeşil / hover         */
  --g3:       #4ade80;   /* Parlak yeşil               */
  --g4:       #86efac;   /* Soft yeşil                 */
  --bg:       #03090a;   /* En koyu zemin              */
  --bg2:      #050f0b;   /* Bölüm zemin                */
  --bg3:      #071410;   /* Alternatif zemin           */
  --surf:     #0a1c15;   /* Kart yüzeyi                */
  --surf2:    #0d2219;   /* Daha koyu kart             */
  --border:   rgba(34,197,94,.15);
  --borderM:  rgba(34,197,94,.28);
  --white:    #ffffff;
  --s1:       #e2f0e8;   /* Metin 1                    */
  --s2:       #8fb09a;   /* Metin 2 / subtitle         */
  --s3:       #4d7560;   /* Metin 3 / dim              */
  --head:     'Outfit', sans-serif;
  --body:     'Plus Jakarta Sans', sans-serif;
  /* Gradient yardımcılar */
  --grad:     linear-gradient(135deg, #22c55e, #16a34a);
  --glow:     radial-gradient(circle, rgba(34,197,94,.15) 0%, transparent 60%);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
::selection { background: var(--g); color: #fff; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--g); border-radius: 2px; }

/* ═══════════════════════════════════════
   LAYOUT & REUSABLE
═══════════════════════════════════════ */
.aln-section    { padding: 120px 0; position: relative; overflow: hidden; }
.aln-section-sm { padding: 80px 0; position: relative; overflow: hidden; }
.aln-wrap       { max-width: 1260px; margin: 0 auto; padding: 0 48px; }

/* Label pill */
.aln-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--body); font-size: 10px; font-weight: 700;
  letter-spacing: .25em; text-transform: uppercase; color: var(--g);
  padding: 6px 14px; border: 1px solid var(--border); border-radius: 20px;
  background: rgba(34,197,94,.07); margin-bottom: 20px;
}
.aln-label::before {
  content: ''; width: 6px; height: 6px; background: var(--g);
  border-radius: 50%; flex-shrink: 0;
  animation: aln-blink 2s infinite;
}
@keyframes aln-blink {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .3; transform: scale(.5); }
}

/* Headings */
.aln-h2 {
  font-family: var(--head); font-size: clamp(44px, 5vw, 68px);
  font-weight: 900; letter-spacing: -.02em; line-height: .95;
  text-transform: uppercase; color: var(--white); margin-bottom: 16px;
}
.aln-h2 em { color: var(--g); font-style: normal; }

/* Divider */
.aln-divider {
  width: 48px; height: 3px; background: var(--g);
  border-radius: 99px; margin: 20px 0;
  position: relative;
}
.aln-divider::after {
  content: ''; position: absolute; left: 56px; top: 0;
  width: 12px; height: 3px; background: var(--g); opacity: .35; border-radius: 99px;
}

/* Body */
.aln-desc { font-family: var(--body); font-size: 16.5px; color: var(--s2); line-height: 1.75; }

/* Checklist */
.aln-check-list { list-style: none; display: flex; flex-direction: column; gap: 11px; margin: 24px 0 32px; }
.aln-check-list li {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--body); font-size: 15px; color: var(--s1); font-weight: 500;
}
.aln-check-list li::before {
  content: ''; width: 20px; height: 20px; flex-shrink: 0; border-radius: 50%;
  background: var(--g);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='white' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 10px; background-repeat: no-repeat; background-position: center;
}

/* ── BUTTON ── */
.aln-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--body); font-size: 12px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; text-decoration: none;
  padding: 14px 32px; border-radius: 6px; border: 1.5px solid transparent;
  cursor: pointer; transition: all .25s ease; white-space: nowrap;
}
.aln-btn-primary { background: var(--g); color: #fff; border-color: var(--g); }
.aln-btn-primary:hover { background: var(--g2); border-color: var(--g2); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(34,197,94,.38); }
.aln-btn-outline  { background: transparent; color: var(--g); border-color: var(--g); }
.aln-btn-outline:hover { background: var(--g); color: #fff; transform: translateY(-2px); }
.aln-btn-white    { background: #fff; color: var(--bg); border-color: #fff; }
.aln-btn-white:hover { background: transparent; color: #fff; }
.aln-btn-ghost    { background: rgba(34,197,94,.08); color: var(--g); border-color: var(--border); }
.aln-btn-ghost:hover { background: var(--g); color: #fff; }

/* RAL renk chip dekor (global motif) */
.aln-ral-dots {
  position: absolute; pointer-events: none; display: flex; gap: 8px; flex-wrap: wrap;
}
.aln-ral-dot { width: 10px; height: 10px; border-radius: 50%; opacity: .18; }

/* ═══════════════════════════════════════
   NAV (HTML preview için)
═══════════════════════════════════════ */
.aln-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 76px; padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(3,9,10,.88); backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid rgba(34,197,94,.06);
  transition: background .3s;
}
.aln-nav-logo {
  font-family: var(--head); font-size: 26px; font-weight: 900;
  letter-spacing: -.02em; color: var(--white);
  display: flex; align-items: center; gap: 10px;
}
.aln-nav-logo .dot {
  width: 32px; height: 32px; background: var(--g); border-radius: 8px;
  display: grid; place-items: center; font-size: 16px; flex-shrink: 0;
}
.aln-nav-links { display: flex; gap: 32px; }
.aln-nav-links a { font-family: var(--body); font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--s2); transition: color .2s; text-decoration: none; }
.aln-nav-links a:hover { color: var(--g); }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.aln-hero {
  min-height: 100vh; display: flex; align-items: center;
  background: var(--bg); position: relative; overflow: hidden;
}
/* Grid mesh */
.aln-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(34,197,94,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,197,94,.045) 1px, transparent 1px);
  background-size: 52px 52px;
}
/* Glow blob top-right */
.aln-hero::after {
  content: ''; position: absolute; top: -20%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(34,197,94,.13) 0%, transparent 60%);
  pointer-events: none;
}
.aln-hero-glow-bl {
  position: absolute; bottom: -20%; left: -12%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(34,197,94,.06) 0%, transparent 60%);
  pointer-events: none;
}
/* RAL renk şeridi — dekoratif */
.aln-hero-ral-band {
  position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg,
    #e63946, #f4a261, #e9c46a, #2a9d8f,
    #22c55e, #0ea5e9, #8b5cf6, #ec4899, #e63946);
  opacity: .45;
}
/* Büyük dekor yazısı */
.aln-hero-deco {
  position: absolute; bottom: -8%; right: -2%;
  font-family: var(--head); font-size: min(26vw, 380px);
  font-weight: 900; letter-spacing: -.04em;
  color: rgba(34,197,94,.025); line-height: 1; user-select: none;
  pointer-events: none;
}
.aln-hero-inner {
  position: relative; z-index: 2; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 80px; padding: 80px 0;
}
/* Left */
.aln-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--body); font-size: 10px; font-weight: 700;
  letter-spacing: .25em; text-transform: uppercase; color: var(--g);
  padding: 6px 14px; border: 1px solid var(--border); border-radius: 20px;
  background: rgba(34,197,94,.07); margin-bottom: 28px;
  animation: aln-in .6s ease .2s both;
}
.aln-hero-badge::before { content: ''; width: 6px; height: 6px; background: var(--g); border-radius: 50%; animation: aln-blink 2s infinite; }

.aln-hero-h1 {
  font-family: var(--head); font-size: clamp(58px, 6.5vw, 90px);
  font-weight: 900; letter-spacing: -.03em; line-height: .92;
  text-transform: uppercase; color: var(--white); margin-bottom: 24px;
  animation: aln-in .7s ease .35s both;
}
.aln-hero-h1 em {
  font-style: normal; color: transparent;
  -webkit-text-stroke: 2px var(--g);
}
.aln-hero-desc {
  font-family: var(--body); font-size: 17px; color: var(--s2);
  line-height: 1.72; max-width: 460px; margin-bottom: 36px;
  animation: aln-in .7s ease .5s both;
}
.aln-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; animation: aln-in .7s ease .65s both; }
.aln-hero-certs { display: flex; gap: 12px; flex-wrap: wrap; animation: aln-in .7s ease .8s both; }

/* Cert chips */
.aln-cert {
  display: flex; align-items: center; gap: 10px;
  background: var(--surf); border: 1px solid var(--border);
  padding: 9px 14px; border-radius: 6px;
  transition: border-color .2s;
}
.aln-cert:hover { border-color: var(--borderM); }
.aln-cert .ci {
  font-family: var(--head); font-size: 20px; font-weight: 900;
  color: var(--g); min-width: 36px; line-height: 1;
}
.aln-cert .lines {
  font-family: var(--body); font-size: 11px; color: var(--s2); line-height: 1.4; font-weight: 500;
}
.aln-cert .lines strong { color: var(--s1); display: block; font-weight: 600; }

/* Hero right — stat grid */
.aln-hero-right { animation: aln-in .8s ease .5s both; }
.aln-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.aln-stat-card {
  background: var(--surf); border: 1px solid var(--border);
  border-radius: 10px; padding: 22px;
  position: relative; overflow: hidden;
  transition: border-color .3s, transform .3s;
}
.aln-stat-card:hover { border-color: var(--borderM); transform: translateY(-3px); }
.aln-stat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--g), transparent);
}
.aln-stat-card.wide { grid-column: 1 / -1; display: flex; align-items: center; gap: 28px; }
.aln-stat-num {
  font-family: var(--head); font-size: 48px; font-weight: 900;
  letter-spacing: -.02em; color: var(--g); line-height: 1;
}
.aln-stat-lbl {
  font-family: var(--body); font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--s2); margin-top: 4px;
}
.aln-stat-side {
  font-family: var(--body); font-size: 14px; color: var(--s3);
  line-height: 1.65; border-left: 2px solid var(--border); padding-left: 20px; flex: 1;
}
.aln-stat-icon { font-size: 26px; margin-bottom: 8px; display: block; }

@keyframes aln-in {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════
   HAKKIMIZDA — 5 RESİMLİ MOZAİK
═══════════════════════════════════════ */
.aln-about { background: var(--bg2); }
.aln-about::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.aln-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

/* Mosaic */
.aln-mosaic { display: flex; gap: 10px; height: 520px; }
.aln-mos-a  { display: flex; flex-direction: column; gap: 10px; flex: 1.2; }
.aln-mos-b  { display: flex; flex-direction: column; gap: 10px; flex: .8; }
.aln-mslot  {
  position: relative; overflow: hidden; border-radius: 10px;
  border: 1px solid var(--border); background: var(--surf); flex-shrink: 0;
}
.aln-mslot img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.aln-mslot:hover img { transform: scale(1.06); }
.aln-mslot::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(3,9,10,.75) 0%, transparent 48%);
  pointer-events: none;
}
.aln-mslot-main { flex: 1.6; }
.aln-mslot-sm   { flex: 1; }
.aln-mslot .aln-frame-tag {
  position: absolute; bottom: 10px; left: 10px; z-index: 2;
  background: rgba(3,9,10,.82); backdrop-filter: blur(6px);
  border: 1px solid var(--border); border-radius: 20px;
  font-family: var(--body); font-size: 9px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--s1); padding: 4px 10px;
}
.aln-ph { width: 100%; height: 100%; min-height: 80px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; }
.aln-ph-i { font-size: 30px; opacity: .18; }
.aln-ph-t { font-family: var(--body); font-size: 9px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--s3); }
.aln-mc { position: absolute; width: 18px; height: 18px; z-index: 3; }
.aln-mc.tl { top: 0; left: 0; border-top: 2px solid var(--g); border-left: 2px solid var(--g); }
.aln-mc.br { bottom: 0; right: 0; border-bottom: 2px solid var(--g); border-right: 2px solid var(--g); }

/* Pulse card */
.aln-pulse-card {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--surf2); border: 1px solid var(--borderM);
  padding: 8px 16px; border-radius: 6px;
  font-family: var(--body); font-size: 12px; font-weight: 600; color: var(--s1);
  position: absolute; top: -16px; left: 16px; z-index: 10;
}
.aln-pulse-dot { width: 8px; height: 8px; background: var(--g); border-radius: 50%; animation: aln-pulse-live 1.5s infinite; }
@keyframes aln-pulse-live {
  0%  { box-shadow: 0 0 0 0 rgba(34,197,94,.6); }
  70% { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100%{ box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

/* Float badges */
.aln-fbadge {
  position: absolute; padding: 14px 20px; border-radius: 8px;
  text-align: center; z-index: 5;
}
.aln-fbadge-primary {
  background: var(--g); color: #fff;
  box-shadow: 0 12px 36px rgba(34,197,94,.45);
}
.aln-fbadge-dark {
  background: var(--surf2); border: 1px solid var(--borderM); color: var(--white);
  box-shadow: 0 8px 28px rgba(0,0,0,.5);
}
.aln-fbadge .fn { font-family: var(--head); font-size: 36px; font-weight: 900; line-height: 1; }
.aln-fbadge-primary .fn { color: #fff; }
.aln-fbadge-dark .fn { color: var(--g); }
.aln-fbadge .ft { font-family: var(--body); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; line-height: 1.4; }
.aln-fbadge-primary .ft { opacity: .85; }
.aln-fbadge-dark .ft { color: var(--s2); }
.aln-about-visual { position: relative; padding: 24px 24px 28px 0; }

/* Tabs */
.aln-tabs-nav {
  display: flex; border-bottom: 1px solid var(--border); margin: 28px 0 22px;
}
.aln-tab-btn {
  font-family: var(--body); font-size: 13px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--s3); padding: 12px 20px;
  border: none; background: transparent; cursor: pointer;
  position: relative; transition: color .2s;
}
.aln-tab-btn.active { color: var(--g); }
.aln-tab-btn.active::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
  height: 2px; background: var(--g);
}
.aln-tab-body { display: none; font-family: var(--body); font-size: 15.5px; color: var(--s2); line-height: 1.72; }
.aln-tab-body.active { display: block; animation: aln-tab-in .3s ease; }
@keyframes aln-tab-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

/* ═══════════════════════════════════════
   HİZMETLER
═══════════════════════════════════════ */
.aln-svc-wrap { background: var(--bg3); }
.aln-svc-wrap::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(34,197,94,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,197,94,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
/* RAL dots row */
.aln-ral-row {
  display: flex; gap: 6px; margin-bottom: 52px; flex-wrap: wrap;
  justify-content: center;
}
.aln-ral-pill {
  width: 28px; height: 10px; border-radius: 99px; opacity: .55;
}
.aln-svc-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
  margin-top: 52px;
}
.aln-svc-card {
  background: var(--surf); border: 1px solid var(--border);
  border-radius: 12px; padding: 36px; position: relative; overflow: hidden;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.aln-svc-card:hover { border-color: var(--borderM); transform: translateY(-4px); box-shadow: 0 20px 48px rgba(0,0,0,.4); }
.aln-svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--g); transform: scaleX(0); transform-origin: left; transition: transform .4s;
}
.aln-svc-card:hover::before { transform: scaleX(1); }
.aln-svc-num {
  font-family: var(--head); font-size: 80px; font-weight: 900;
  color: rgba(34,197,94,.07); position: absolute; top: 12px; right: 20px;
  line-height: 1; pointer-events: none; transition: color .3s;
}
.aln-svc-card:hover .aln-svc-num { color: rgba(34,197,94,.12); }
.aln-svc-icon-wrap {
  width: 56px; height: 56px; background: rgba(34,197,94,.1);
  border: 1px solid var(--border); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px; transition: background .3s;
}
.aln-svc-card:hover .aln-svc-icon-wrap { background: rgba(34,197,94,.18); }
.aln-svc-title {
  font-family: var(--head); font-size: 24px; font-weight: 900;
  color: var(--white); margin-bottom: 12px; line-height: 1.1;
  letter-spacing: -.01em;
}
.aln-svc-desc { font-family: var(--body); font-size: 14.5px; color: var(--s2); line-height: 1.65; margin-bottom: 20px; }
.aln-svc-feats { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.aln-svc-feats li {
  font-family: var(--body); font-size: 13px; color: var(--s3);
  display: flex; align-items: center; gap: 8px; transition: color .2s;
}
.aln-svc-card:hover .aln-svc-feats li { color: var(--s2); }
.aln-svc-feats li::before { content: '—'; color: var(--g); font-weight: 900; }
.aln-svc-link {
  font-family: var(--body); font-size: 12px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--g); display: flex; align-items: center; gap: 8px;
  text-decoration: none; transition: gap .2s;
}
.aln-svc-card:hover .aln-svc-link { gap: 14px; }

/* ═══════════════════════════════════════
   ÜRÜNLER
═══════════════════════════════════════ */
.aln-prod-wrap { background: var(--bg2); }
.aln-prod-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 52px; flex-wrap: wrap; gap: 24px; }
/* RAL color swatch motif */
.aln-color-swatch {
  display: flex; gap: 5px; align-items: center;
}
.aln-swatch { width: 20px; height: 20px; border-radius: 50%; }
.aln-prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.aln-prod-card {
  background: var(--surf); border: 1px solid var(--border); border-radius: 12px;
  overflow: hidden; position: relative;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.aln-prod-card:hover { transform: translateY(-5px); border-color: var(--borderM); box-shadow: 0 24px 56px rgba(0,0,0,.5); }
.aln-prod-img {
  aspect-ratio: 4/3; background: var(--bg3);
  position: relative; overflow: hidden;
}
.aln-prod-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.aln-prod-card:hover .aln-prod-img img { transform: scale(1.06); }
.aln-prod-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, var(--surf) 0%, transparent 50%);
}
.aln-prod-ph {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px; min-height: 160px;
}
.aln-prod-ph span { font-size: 40px; opacity: .18; }
.aln-prod-ph div { font-family: var(--body); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--s3); }
/* Renk şeridi — ürün kartı üstü */
.aln-prod-color-bar {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--g);
}
.aln-prod-badge {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  background: var(--g); color: #fff;
  font-family: var(--head); font-size: 11px; font-weight: 900;
  padding: 3px 10px; border-radius: 20px; letter-spacing: .08em;
}
.aln-prod-body { padding: 22px 24px 26px; }
.aln-prod-cat {
  font-family: var(--body); font-size: 10px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--g); margin-bottom: 8px;
}
.aln-prod-title {
  font-family: var(--head); font-size: 20px; font-weight: 900;
  color: var(--white); margin-bottom: 10px; line-height: 1.2; letter-spacing: -.01em;
}
.aln-prod-desc { font-family: var(--body); font-size: 13.5px; color: var(--s2); line-height: 1.65; margin-bottom: 16px; }
.aln-prod-specs { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 18px; }
.aln-prod-spec {
  font-family: var(--body); font-size: 11px; font-weight: 600;
  color: var(--s2); background: rgba(34,197,94,.07);
  border: 1px solid rgba(34,197,94,.12); border-radius: 4px; padding: 3px 9px;
}
.aln-prod-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--body); font-size: 12px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; text-decoration: none;
  color: var(--g); padding-top: 14px;
  border-top: 1px solid var(--border); width: 100%;
  transition: gap .2s;
}
.aln-prod-link:hover { gap: 14px; }

/* ═══════════════════════════════════════
   RAKAMLAR / STATS BAR
═══════════════════════════════════════ */
.aln-stats-bar {
  background: var(--g); padding: 64px 0;
  position: relative; overflow: hidden;
}
.aln-stats-bar::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 40px 40px;
}
/* RAL band */
.aln-stats-bar::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: rgba(0,0,0,.25);
}
.aln-stats-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  position: relative; z-index: 1;
}
.aln-stats-item {
  text-align: center; padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,.2);
}
.aln-stats-item:last-child { border: none; }
.aln-stats-big {
  font-family: var(--head); font-size: clamp(48px, 5vw, 68px);
  font-weight: 900; letter-spacing: -.02em; color: #fff; line-height: 1; margin-bottom: 6px;
}
.aln-stats-lbl {
  font-family: var(--body); font-size: 12px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.75);
}

/* ═══════════════════════════════════════
   NEDEN BİZ
═══════════════════════════════════════ */
.aln-why-wrap { background: var(--bg3); overflow: hidden; }
.aln-why-wrap::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.aln-why-head-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-bottom: 72px; }
.aln-why-big {
  font-family: var(--head); font-size: clamp(80px, 10vw, 130px);
  font-weight: 900; color: transparent; -webkit-text-stroke: 2px var(--g);
  line-height: .9; opacity: .7;
}
.aln-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.aln-why-card {
  background: var(--surf); border: 1px solid var(--border);
  border-radius: 12px; padding: 30px;
  position: relative; overflow: hidden;
  transition: border-color .3s, transform .3s;
}
.aln-why-card:hover { border-color: var(--borderM); transform: translateY(-4px); }
.aln-why-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--g); transform: scaleX(0); transform-origin: left; transition: transform .4s;
}
.aln-why-card:hover::after { transform: scaleX(1); }
.aln-why-icon {
  width: 50px; height: 50px; background: rgba(34,197,94,.1);
  border: 1px solid var(--border); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 18px;
}
.aln-why-title { font-family: var(--head); font-size: 20px; font-weight: 900; color: var(--white); margin-bottom: 10px; letter-spacing: -.01em; }
.aln-why-desc  { font-family: var(--body); font-size: 14px; color: var(--s2); line-height: 1.65; }

/* ═══════════════════════════════════════
   CTA
═══════════════════════════════════════ */
.aln-cta-band {
  background: var(--bg2); padding: 100px 0;
  position: relative; overflow: hidden;
}
.aln-cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(34,197,94,.09) 0%, transparent 70%);
}
/* RAL top band */
.aln-cta-ral {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg,
    #e63946, #f4a261, #e9c46a, #2a9d8f,
    #22c55e, #0ea5e9, #8b5cf6, #ec4899, #e63946);
}
.aln-cta-inner { position: relative; z-index: 1; text-align: center; }
.aln-cta-title {
  font-family: var(--head); font-size: clamp(44px, 6vw, 76px);
  font-weight: 900; text-transform: uppercase; color: var(--white); line-height: .95;
  margin-bottom: 24px; letter-spacing: -.02em;
}
.aln-cta-title em { color: var(--g); font-style: normal; display: block; }
.aln-cta-sub { font-family: var(--body); font-size: 17px; color: var(--s2); max-width: 520px; margin: 0 auto 40px; line-height: 1.72; }
.aln-cta-feats { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; margin-bottom: 44px; }
.aln-cta-feat {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--body); font-size: 14px; font-weight: 500; color: var(--s1);
}
.aln-cta-feat::before {
  content: ''; width: 22px; height: 22px; flex-shrink: 0; border-radius: 50%;
  background: var(--g);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='white' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 10px; background-repeat: no-repeat; background-position: center;
}
.aln-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════
   İLETİŞİM
═══════════════════════════════════════ */
.aln-contact-wrap { background: var(--bg); }
.aln-contact-wrap::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(34,197,94,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,197,94,.04) 1px, transparent 1px);
  background-size: 52px 52px;
}
.aln-contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; position: relative; z-index: 1; }
.aln-contact-h2 {
  font-family: var(--head); font-size: clamp(40px, 4.5vw, 58px);
  font-weight: 900; text-transform: uppercase; color: var(--white); line-height: .95;
  margin-bottom: 20px; letter-spacing: -.02em;
}
.aln-contact-h2 em { color: var(--g); font-style: normal; display: block; }
.aln-ci-list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 36px; }
.aln-ci { display: flex; gap: 14px; align-items: flex-start; }
.aln-ci-icon {
  width: 42px; height: 42px; background: rgba(34,197,94,.1);
  border: 1px solid var(--border); border-radius: 8px;
  display: grid; place-items: center; font-size: 17px; flex-shrink: 0;
}
.aln-ci-lbl { font-family: var(--body); font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--s3); margin-bottom: 3px; }
.aln-ci-val { font-family: var(--body); font-size: 14.5px; font-weight: 500; color: var(--s1); line-height: 1.5; }
.aln-ci-val a { color: var(--g); text-decoration: none; transition: opacity .2s; }
.aln-ci-val a:hover { opacity: .7; }

/* Form */
.aln-form-box {
  background: var(--surf); border: 1px solid var(--border);
  border-radius: 12px; padding: 40px;
}
.aln-form-box::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad); border-radius: 12px 12px 0 0;
}
.aln-form-title { font-family: var(--head); font-size: 22px; font-weight: 900; color: var(--white); margin-bottom: 6px; letter-spacing: -.01em; }
.aln-form-sub   { font-family: var(--body); font-size: 13.5px; color: var(--s3); margin-bottom: 28px; }
.aln-form-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.aln-form-col   { grid-column: 1 / -1; }
.aln-field-label { display: block; font-family: var(--body); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--s3); margin-bottom: 7px; }
.aln-field-label span { color: var(--g); }
.aln-field {
  width: 100%; background: var(--bg2); border: 1px solid var(--border);
  border-radius: 7px; padding: 13px 16px;
  font-family: var(--body); font-size: 14.5px; color: var(--s1);
  transition: border-color .2s, box-shadow .2s; outline: none;
}
.aln-field:focus { border-color: var(--g); box-shadow: 0 0 0 3px rgba(34,197,94,.12); }
.aln-field::placeholder { color: var(--s3); }
select.aln-field { appearance: none; cursor: pointer; }
textarea.aln-field { resize: vertical; min-height: 110px; }
.aln-form-success {
  display: none; background: rgba(34,197,94,.1); border: 1px solid var(--border);
  border-radius: 8px; padding: 16px; text-align: center;
  font-family: var(--body); font-weight: 600; color: var(--g); margin-top: 12px;
  animation: aln-tab-in .4s ease;
}
.aln-form-success.visible { display: block; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.aln-footer {
  background: var(--bg3); border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.aln-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.aln-footer-brand .flogo {
  font-family: var(--head); font-size: 26px; font-weight: 900;
  color: var(--white); margin-bottom: 14px; display: flex; align-items: center; gap: 10px;
}
.aln-footer-brand .flogo .dot { width: 30px; height: 30px; background: var(--g); border-radius: 7px; display: grid; place-items: center; font-size: 14px; }
.aln-footer-brand p { font-family: var(--body); font-size: 13.5px; color: var(--s3); line-height: 1.7; max-width: 240px; margin-bottom: 20px; }
.aln-footer-social { display: flex; gap: 8px; }
.aln-footer-social a {
  width: 34px; height: 34px; background: var(--surf); border: 1px solid var(--border);
  border-radius: 6px; display: grid; place-items: center;
  font-family: var(--body); font-size: 12px; font-weight: 700; color: var(--s3);
  text-decoration: none; transition: all .2s;
}
.aln-footer-social a:hover { background: var(--g); border-color: var(--g); color: #fff; }
.aln-footer-col h4 { font-family: var(--head); font-size: 14px; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; color: var(--white); margin-bottom: 18px; }
.aln-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.aln-footer-col ul li a { font-family: var(--body); font-size: 13.5px; color: var(--s3); text-decoration: none; transition: color .2s; }
.aln-footer-col ul li a:hover { color: var(--g); }
/* RAL footer bar */
.aln-footer-ral { height: 3px; background: linear-gradient(90deg, #e63946,#f4a261,#e9c46a,#2a9d8f,#22c55e,#0ea5e9,#8b5cf6,#ec4899,#e63946); margin-bottom: 28px; border-radius: 2px; opacity: .5; }
.aln-footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--body); font-size: 12.5px; color: var(--s3);
  flex-wrap: wrap; gap: 12px;
}
.aln-footer-bottom em { color: var(--g); font-style: normal; }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .aln-hero-inner  { grid-template-columns: 1fr; }
  .aln-hero-right  { display: none; }
  .aln-about-grid  { grid-template-columns: 1fr; }
  .aln-svc-grid    { grid-template-columns: 1fr; }
  .aln-why-head-grid { grid-template-columns: 1fr; }
  .aln-why-grid    { grid-template-columns: repeat(2, 1fr); }
  .aln-contact-grid{ grid-template-columns: 1fr; gap: 48px; }
  .aln-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .aln-wrap    { padding: 0 24px; }
  .aln-section { padding: 80px 0; }
  .aln-prod-grid { grid-template-columns: 1fr; }
  .aln-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(255,255,255,.2); }
  .aln-stats-item { border: none; border-top: 1px solid rgba(255,255,255,.2); padding: 22px 16px; }
  .aln-why-grid    { grid-template-columns: 1fr; }
  .aln-form-grid   { grid-template-columns: 1fr; }
  .aln-footer-grid { grid-template-columns: 1fr; }
  .aln-mosaic { height: auto; flex-direction: column; }
  .aln-mos-a, .aln-mos-b { flex-direction: row; flex: none; height: 160px; }
  .aln-cta-feats { flex-direction: column; align-items: center; }
}
