/* =====================================================================
   URAZ MOTO — Kurumsal Tanıtım Sitesi
   Tasarım Sistemi / Global Stylesheet
   Palet: Altın-Bronz gradyan + Derin Siyah + Lacivert aksan
   ===================================================================== */

/* ---------- 1. Design Tokens ---------- */
:root {
  /* Brand — gold / bronze */
  --gold-100: #F7D89B;
  --gold-200: #F2C572;
  --gold-300: #E5A949;
  --gold:     #E0A340;
  --gold-500: #C77B30;
  --copper:   #9C5A24;
  --bronze:   #6E3F1C;

  /* Neutrals — ink */
  --ink:    #0A0A0C;
  --ink-2:  #101116;
  --ink-3:  #16171E;
  --ink-4:  #1E2028;
  --navy:   #14203B;
  --navy-2: #0E1830;

  /* Text */
  --cream:  #F6F1E7;
  --text:   #E9E4DA;
  --muted:  #9A938A;
  --muted-2:#6F6A62;

  /* Utility */
  --line:      rgba(224,163,64,.16);
  --line-soft: rgba(255,255,255,.07);
  --glass:     rgba(255,255,255,.04);
  --glass-2:   rgba(255,255,255,.06);

  /* Gradients */
  --grad-gold: linear-gradient(135deg, #F7D89B 0%, #E0A340 38%, #C77B30 72%, #9C5A24 100%);
  --grad-gold-soft: linear-gradient(135deg, #F2C572, #C77B30);
  --grad-ink: linear-gradient(180deg, #0A0A0C 0%, #101116 100%);
  --grad-radial: radial-gradient(1200px 600px at 70% -10%, rgba(224,163,64,.18), transparent 60%);

  /* Typography */
  --font-display: "Sora", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Radius & shadow */
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --shadow-sm: 0 4px 16px rgba(0,0,0,.35);
  --shadow:    0 18px 50px rgba(0,0,0,.45);
  --shadow-gold: 0 20px 60px rgba(199,123,48,.30);

  /* Layout */
  --container: 1200px;
  --gap: clamp(1rem, 2.5vw, 2rem);
  --section-y: clamp(4.5rem, 9vw, 8rem);

  --ease: cubic-bezier(.22,.61,.36,1);
  --header-h: 76px;
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--text);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--gold); color: #1a1205; }

/* Scrollbar */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--copper), var(--bronze)); border-radius: 20px; border: 2px solid var(--ink); }

/* ---------- 3. Typography ---------- */
h1,h2,h3,h4,h5 { font-family: var(--font-display); font-weight: 700; line-height: 1.12; letter-spacing: -.02em; color: var(--cream); }
h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 4vw, 3.1rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }
p { color: var(--text); }
strong { color: var(--cream); font-weight: 600; }

.text-gold {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ---------- 4. Layout helpers ---------- */
.skip-link { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link:focus { position: fixed; left: 16px; top: 16px; width: auto; height: auto; clip: auto; background: var(--grad-gold); color: #1c1305; padding: .7rem 1.1rem; border-radius: 10px; z-index: 1000; font-family: var(--font-display); font-weight: 600; }
.container { width: min(100% - 2.4rem, var(--container)); margin-inline: auto; }
.container-wide { width: min(100% - clamp(2.4rem, 6vw, 6rem), 1320px); margin-inline: auto; }
.section { padding-block: var(--section-y); position: relative; overflow: hidden; }
.section-tight { padding-block: clamp(3rem, 6vw, 5rem); }
.center { text-align: center; }
.mt-1{margin-top:.5rem}.mt-2{margin-top:1rem}.mt-3{margin-top:1.5rem}.mt-4{margin-top:2rem}.mt-6{margin-top:3rem}

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-display);
  font-size: .8rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-200);
  padding: .45rem .9rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: var(--glass);
  backdrop-filter: blur(6px);
}
.eyebrow::before { content: ""; width: 18px; height: 2px; background: var(--grad-gold); border-radius: 2px; }

.section-head { max-width: 720px; }
.section-head.center { margin-inline: auto; }
.section-head h2 { margin-top: 1rem; }
.section-head p { color: var(--muted); margin-top: 1rem; font-size: 1.08rem; }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--muted); }

/* ---------- 5. Buttons ---------- */
.btn {
  --btn-bg: var(--grad-gold);
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: var(--font-display); font-weight: 600; font-size: .98rem;
  padding: .92rem 1.7rem;
  border-radius: 100px;
  color: #1c1305;
  background: var(--btn-bg);
  border: 1px solid transparent;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), filter .3s;
  box-shadow: 0 10px 30px rgba(199,123,48,.28);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-gold); filter: brightness(1.05); }
.btn:active { transform: translateY(-1px); }
.btn svg { width: 18px; height: 18px; }

.btn-ghost {
  background: transparent; color: var(--cream);
  border: 1px solid var(--line);
  box-shadow: none;
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: var(--gold); background: var(--glass); box-shadow: none; }

.btn-dark { background: var(--ink-3); color: var(--cream); border: 1px solid var(--line); box-shadow: none; }
.btn-dark:hover { background: var(--ink-4); border-color: var(--gold); }

.btn-lg { padding: 1.05rem 2.1rem; font-size: 1.05rem; }
.btn-block { display: flex; width: 100%; }

/* ---------- 6. Header / Nav ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background .4s var(--ease), border-color .4s, backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10,10,12,.78);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; width: 100%; max-width: 1320px; margin-inline: auto; gap: 1rem; padding-inline: clamp(1.4rem, 4vw, 3rem); }
.brand { display: flex; align-items: center; gap: .7rem; }
.brand img { width: 46px; height: 46px; border-radius: 10px; object-fit: cover; }
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 1.18rem; letter-spacing: .04em; color: var(--cream); line-height: 1; }
.brand-name small { display: block; font-size: .58rem; letter-spacing: .34em; font-weight: 500; color: var(--gold-200); margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: .35rem; }
.nav-links a {
  font-family: var(--font-display); font-weight: 500; font-size: .95rem;
  padding: .55rem .95rem; border-radius: 100px; color: var(--text);
  transition: color .25s, background .25s; position: relative;
}
.nav-links a:hover { color: var(--cream); background: var(--glass); }
.nav-links a.active { color: var(--gold-200); }
.nav-actions { display: flex; align-items: center; gap: .7rem; }

.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line); align-items: center; justify-content: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--cream); border-radius: 2px; position: relative; transition: .3s var(--ease);
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.open span::after { top: 0; transform: rotate(-45deg); }

/* ---------- 7. Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding-top: var(--header-h); overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; background: #07070A; }
/* banner videosu arka planda kalsın: soluk + dim, ön plandaki metni kapatmasın */
.hero-media video, .hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: .42; filter: brightness(.82) saturate(.9); }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(7,7,10,.62) 0%, rgba(7,7,10,.5) 38%, rgba(7,7,10,.95) 100%),
    radial-gradient(900px 500px at 75% 20%, rgba(224,163,64,.10), transparent 60%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; padding-block: clamp(3rem,8vh,6rem); }
.hero h1 { max-width: 16ch; }
.hero .lead { max-width: 54ch; margin-top: 1.4rem; color: #d8d2c7; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.2rem; }
.hero-tags { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 2.4rem; }
.hero-tag { font-size: .85rem; color: var(--text); padding: .45rem .9rem; border: 1px solid var(--line); border-radius: 100px; background: rgba(10,10,12,.4); backdrop-filter: blur(6px); }
.hero-tag b { color: var(--gold-200); font-weight: 600; }

.scroll-hint { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 2; color: var(--muted); display: flex; flex-direction: column; align-items: center; gap: .4rem; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; }
.scroll-hint .mouse { width: 24px; height: 38px; border: 2px solid var(--line); border-radius: 14px; display: flex; justify-content: center; padding-top: 7px; }
.scroll-hint .mouse i { width: 3px; height: 7px; background: var(--gold); border-radius: 3px; animation: scroll-dot 1.6s infinite; }
@keyframes scroll-dot { 0%{opacity:0;transform:translateY(-4px)} 40%{opacity:1} 80%,100%{opacity:0;transform:translateY(8px)} }

/* Page (inner) hero */
.page-hero { position: relative; padding-top: calc(var(--header-h) + clamp(3.5rem,8vw,6rem)); padding-bottom: clamp(3rem,6vw,5rem); overflow: hidden; background: var(--grad-ink); }
.page-hero::before { content:""; position:absolute; inset:0; background: var(--grad-radial); opacity:.9; z-index:0; }
.page-hero::after { content:""; position:absolute; inset:0; background: url("../img/grid.svg"); opacity:.5; z-index:0; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 18ch; }
.page-hero p { max-width: 60ch; margin-top: 1.2rem; }

.breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .85rem; color: var(--muted); margin-bottom: 1.4rem; }
.breadcrumb a:hover { color: var(--gold-200); }
.breadcrumb span { color: var(--muted-2); }
.breadcrumb .current { color: var(--gold-200); }

/* ---------- 8. Cards & grids ---------- */
.grid { display: grid; gap: var(--gap); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative;
  background: linear-gradient(180deg, var(--ink-3), var(--ink-2));
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: transform .4s var(--ease), border-color .4s, box-shadow .4s;
  overflow: hidden;
}
.card::before {
  content:""; position:absolute; inset:0; border-radius: inherit; padding:1px;
  background: linear-gradient(140deg, rgba(224,163,64,.5), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity:0; transition: opacity .4s;
}
.card:hover { transform: translateY(-6px); border-color: transparent; box-shadow: var(--shadow); }
.card:hover::before { opacity:1; }

.card-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 1.3rem;
  background: linear-gradient(140deg, rgba(224,163,64,.18), rgba(199,123,48,.05));
  border: 1px solid var(--line);
  color: var(--gold-200);
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: .6rem; }
.card p { color: var(--muted); font-size: .98rem; }

/* Numbered / feature list inside cards */
.card .tag-num { font-family: var(--font-display); font-size: 2.6rem; font-weight: 800; line-height: 1; background: var(--grad-gold); -webkit-background-clip: text; background-clip:text; -webkit-text-fill-color: transparent; opacity:.9; }

/* ---------- 9. Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); border-radius: var(--r-lg); overflow: hidden; }
.stat { background: var(--ink-2); padding: 2rem 1.5rem; text-align: center; }
.stat .num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.2rem,4vw,3.2rem); background: var(--grad-gold); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color: transparent; line-height:1; }
.stat .label { color: var(--muted); font-size: .92rem; margin-top: .5rem; }

/* ---------- 10. Brands ---------- */
.brand-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(1.5rem,5vw,4rem); }
.brand-chip { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.3rem,2.6vw,2rem); letter-spacing: .04em; color: var(--muted); transition: color .3s, transform .3s; }
.brand-chip span { color: var(--gold-200); }
.brand-chip:hover { color: var(--cream); transform: translateY(-3px); }

.brand-card { display: flex; flex-direction: column; }
.brand-card .brand-badge { width: 64px; height: 64px; border-radius: 16px; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color:#1c1305; background: var(--grad-gold); margin-bottom: 1.4rem; box-shadow: var(--shadow-sm); }
.brand-card ul.chips { display:flex; flex-wrap:wrap; gap:.5rem; margin-top:1.3rem; }
.chips li { font-size:.8rem; color: var(--gold-200); padding:.35rem .8rem; border:1px solid var(--line); border-radius:100px; background: var(--glass); }
.brand-card .models { margin-top:1.2rem; font-size:.92rem; color: var(--muted); line-height:1.55; }
.brand-card .models b { display:block; margin-bottom:.35rem; color: var(--gold-200); font-family: var(--font-display); font-weight:600; letter-spacing:.02em; font-size:.82rem; text-transform:uppercase; }

/* ---------- 11. Split / about ---------- */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; }
.split.reverse { direction: rtl; } .split.reverse > * { direction: ltr; }
.media-frame { position: relative; border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.media-frame img, .media-frame video { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.media-frame.tall img, .media-frame.tall video { aspect-ratio: 3/4; }
.media-badge { position: absolute; bottom: 18px; left: 18px; background: rgba(10,10,12,.7); backdrop-filter: blur(10px); border:1px solid var(--line); border-radius: var(--r); padding: .9rem 1.2rem; }
.media-badge .num { font-family: var(--font-display); font-weight:800; font-size:1.8rem; background: var(--grad-gold); -webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent; line-height:1; }
.media-badge .label { font-size:.8rem; color: var(--muted); }

.check-list li { display:flex; gap:.85rem; align-items:flex-start; padding:.55rem 0; color: var(--text); }
.check-list li svg { flex:0 0 22px; width:22px; height:22px; color: var(--gold-200); margin-top:2px; }

/* ---------- 12. Video CTA band ---------- */
.video-band { position: relative; overflow: hidden; border-radius: var(--r-xl); border:1px solid var(--line); }
/* portrait kaynak videoyu yatay banda yerleştirirken sol kenarı kırparız (duvardaki kutu görünmesin) */
.video-band video { width: 134%; max-width: none; height: 100%; object-fit: cover; object-position: center; position: absolute; top:0; left:-32%; z-index:0; }
.video-band .overlay { position: relative; z-index:2; padding: clamp(3rem,8vw,7rem) clamp(1.5rem,5vw,4rem); background: linear-gradient(90deg, rgba(10,10,12,.9) 0%, rgba(10,10,12,.55) 60%, rgba(10,10,12,.2) 100%); }
.video-band h2 { max-width: 18ch; }
.video-band p { max-width: 46ch; color:#d8d2c7; }

/* ---------- 13. Steps / process ---------- */
.steps { counter-reset: step; display: grid; gap: 1.2rem; }
.step { display:grid; grid-template-columns: auto 1fr; gap: 1.3rem; align-items:start; padding: 1.6rem; background: var(--ink-2); border:1px solid var(--line-soft); border-radius: var(--r); transition: border-color .3s, transform .3s; }
.step:hover { border-color: var(--line); transform: translateX(4px); }
.step .n { counter-increment: step; width:48px; height:48px; border-radius:50%; display:grid; place-items:center; font-family:var(--font-display); font-weight:800; color:#1c1305; background: var(--grad-gold); }
.step .n::before { content: counter(step,decimal-leading-zero); }
.step h3 { font-size: 1.15rem; }
.step p { color: var(--muted); margin-top:.3rem; font-size:.96rem; }

/* ---------- 14. FAQ (accordion) ---------- */
.faq { display: grid; gap: .8rem; max-width: 820px; margin-inline: auto; }
.faq-item { border:1px solid var(--line-soft); border-radius: var(--r); background: var(--ink-2); overflow: hidden; transition: border-color .3s; }
.faq-item[open] { border-color: var(--line); }
.faq-item summary { list-style: none; cursor: pointer; padding: 1.25rem 1.5rem; display:flex; justify-content: space-between; align-items:center; gap:1rem; font-family: var(--font-display); font-weight:600; color: var(--cream); font-size: 1.05rem; }
.faq-item summary::-webkit-details-marker { display:none; }
.faq-item summary .ico { flex:0 0 auto; width:26px; height:26px; border-radius:50%; border:1px solid var(--line); display:grid; place-items:center; transition: transform .3s, background .3s; color: var(--gold-200); }
.faq-item[open] summary .ico { transform: rotate(45deg); background: var(--grad-gold); color:#1c1305; border-color:transparent; }
.faq-item .faq-body { padding: 0 1.5rem 1.4rem; color: var(--muted); }

/* ---------- 15. Contact ---------- */
.contact-grid { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem,4vw,3rem); align-items:start; }
.info-card { display:flex; gap:1rem; padding:1.5rem; background: var(--ink-2); border:1px solid var(--line-soft); border-radius: var(--r); transition: border-color .3s, transform .3s; }
.info-card:hover { border-color: var(--line); transform: translateY(-3px); }
.info-card .ico { flex:0 0 auto; width:50px; height:50px; border-radius:13px; display:grid; place-items:center; background: linear-gradient(140deg, rgba(224,163,64,.18), rgba(199,123,48,.05)); border:1px solid var(--line); color: var(--gold-200); }
.info-card h3 { font-size:1.05rem; margin-bottom:.2rem; }
.info-card p, .info-card a { color: var(--muted); font-size:.96rem; }
.info-card a:hover { color: var(--gold-200); }

.form { background: linear-gradient(180deg, var(--ink-3), var(--ink-2)); border:1px solid var(--line-soft); border-radius: var(--r-lg); padding: clamp(1.5rem,3vw,2.4rem); }
.field { margin-bottom: 1.1rem; }
.field label { display:block; font-size:.86rem; color: var(--muted); margin-bottom:.45rem; font-family: var(--font-display); font-weight:500; }
.field label .req { color: var(--gold-300); }
.field input, .field textarea, .field select {
  width:100%; padding:.85rem 1rem; border-radius: var(--r-sm);
  background: var(--ink); border:1px solid var(--line-soft); color: var(--cream);
  transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline:none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(224,163,64,.14); }
.field textarea { resize: vertical; min-height: 130px; }
.form-row { display:grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { font-size:.82rem; color: var(--muted-2); margin-top:.8rem; }
.form-status { margin-top: 1rem; padding:.85rem 1rem; border-radius: var(--r-sm); font-size:.92rem; display:none; }
.form-status.ok { display:block; background: rgba(70,160,90,.12); border:1px solid rgba(70,160,90,.35); color:#9fe0ad; }

.map-frame { border-radius: var(--r-lg); overflow:hidden; border:1px solid var(--line); filter: grayscale(.25) contrast(1.05); }
.map-frame iframe { display:block; width:100%; height:100%; min-height: 360px; border:0; }

/* ---------- 16. CTA band ---------- */
.cta-band { position: relative; text-align:center; border-radius: var(--r-xl); padding: clamp(3rem,7vw,5.5rem) clamp(1.5rem,5vw,4rem); background: linear-gradient(140deg, var(--navy-2), var(--ink-2)); border:1px solid var(--line); overflow:hidden; }
.cta-band::before { content:""; position:absolute; inset:0; background: var(--grad-radial); }
.cta-band > * { position: relative; z-index:1; }
.cta-band h2 { max-width: 20ch; margin-inline:auto; }
.cta-band .hero-cta { justify-content:center; }

/* ---------- 17. Footer ---------- */
.site-footer { background: var(--ink-2); border-top:1px solid var(--line); padding-top: clamp(3.5rem,7vw,5rem); }
.footer-grid { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: clamp(1.6rem,4vw,3rem); padding-bottom: 3rem; }
.footer-brand img { width:54px; height:54px; border-radius:12px; }
.footer-brand p { color: var(--muted); font-size:.95rem; margin-top:1rem; max-width: 34ch; }
.footer-col h4 { font-family: var(--font-display); font-size:.95rem; letter-spacing:.04em; color: var(--cream); margin-bottom:1.1rem; text-transform:uppercase; }
.footer-col ul { display:grid; gap:.65rem; }
.footer-col a, .footer-col li { color: var(--muted); font-size:.95rem; transition: color .25s; }
.footer-col a:hover { color: var(--gold-200); }
.footer-contact li { display:flex; gap:.7rem; align-items:flex-start; }
.footer-contact svg { flex:0 0 18px; width:18px; height:18px; color: var(--gold-200); margin-top:3px; }
.socials { display:flex; gap:.6rem; margin-top:1.3rem; }
.socials a { width:42px; height:42px; border-radius:11px; border:1px solid var(--line); display:grid; place-items:center; color: var(--text); transition: .3s; }
.socials a:hover { background: var(--grad-gold); color:#1c1305; border-color:transparent; transform: translateY(-3px); }
.socials svg { width:19px; height:19px; }
.footer-bottom { border-top:1px solid var(--line-soft); padding-block: 1.5rem; display:flex; flex-wrap:wrap; gap:1rem; justify-content:space-between; align-items:center; color: var(--muted-2); font-size:.86rem; }
.footer-bottom a:hover { color: var(--gold-200); }

/* ---------- 18. Floating WhatsApp ---------- */
.float-wa { position: fixed; right: 22px; bottom: 22px; z-index: 90; width:58px; height:58px; border-radius:50%; background: linear-gradient(140deg,#34c75a,#1faa47); display:grid; place-items:center; box-shadow: 0 12px 30px rgba(31,170,71,.4); transition: transform .3s; }
.float-wa:hover { transform: scale(1.08); }
.float-wa svg { width:30px; height:30px; color:#fff; }

/* ---------- 19. Reveal animations ---------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"]{transition-delay:.08s}
[data-reveal][data-delay="2"]{transition-delay:.16s}
[data-reveal][data-delay="3"]{transition-delay:.24s}
[data-reveal][data-delay="4"]{transition-delay:.32s}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration:.001ms !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
  [data-reveal]{opacity:1;transform:none}
}

/* ---------- 20. Decorative ---------- */
.glow { position:absolute; border-radius:50%; filter: blur(90px); opacity:.4; z-index:0; pointer-events:none; }
.glow-gold { background: radial-gradient(circle, rgba(224,163,64,.5), transparent 70%); }
.divider-top { border-top:1px solid var(--line-soft); }

/* ---------- 21. Responsive ---------- */
@media (max-width: 992px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .stats { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .split.reverse { direction: ltr; }
  .media-frame.tall img, .media-frame.tall video { aspect-ratio: 16/10; }
}
@media (max-width: 920px) {
  .nav-links, .nav-actions .btn { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: flex; }
}
@media (max-width: 760px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align:center; }
}
@media (max-width: 460px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- 22. Mobile menu ---------- */
.mobile-menu {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 99;
  background: rgba(10,10,12,.97); backdrop-filter: blur(20px);
  display: none; flex-direction: column; padding: 1.5rem 1.4rem;
  transform: translateY(-12px); opacity:0; pointer-events:none; transition: .35s var(--ease);
  border-top:1px solid var(--line);
}
.mobile-menu.open { transform:none; opacity:1; pointer-events:auto; }
.mobile-menu a { font-family: var(--font-display); font-weight:600; font-size:1.4rem; padding:1rem 0; border-bottom:1px solid var(--line-soft); color: var(--cream); display:flex; justify-content:space-between; align-items:center; }
.mobile-menu a.active { color: var(--gold-200); }
.mobile-menu a svg { width:20px;height:20px;color:var(--muted); }
.mobile-menu .btn { margin-top:1.5rem; }
.mobile-contact { margin-top:auto; padding-top:1.5rem; color: var(--muted); font-size:.95rem; display:grid; gap:.6rem; }
.mobile-contact a { font-size:1rem; padding:0; border:0; font-family: var(--font-body); font-weight:500; color: var(--gold-200); justify-content:flex-start; gap:.6rem; }

/* Mobil menü görünürlüğü — taban .mobile-menu{display:none} kuralından SONRA gelmeli ki
   ≤920px'de display:flex kazansın (aksi halde menü açılınca da gizli kalıyor). */
@media (max-width: 920px) {
  .mobile-menu { display: flex; }
}
