@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
  --black:   #0A0A0A;
  --dark:    #111111;
  --dark2:   #1A1A1A;
  --dark3:   #222222;
  --gold:    #C8A84B;
  --gold2:   #E2C06A;
  --white:   #FFFFFF;
  --off:     #F5F5F3;
  --gray:    #E8E8E6;
  --muted:   #888888;
  --border:  rgba(255,255,255,0.08);
  --border2: rgba(200,168,75,0.2);
  --max:     1200px;
  --font:    'Inter', Arial, sans-serif;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow-soft: 0 10px 30px rgba(0,0,0,0.08);
  --shadow-strong: 0 20px 50px rgba(0,0,0,0.18);
}

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* ── TOPBAR ── */
.topbar {
  background: rgba(7,7,7,0.78);
  padding: 10px clamp(20px,5vw,60px);
  display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap;
  font-size: 13px; letter-spacing: 0.3px; color: rgba(255,255,255,0.62);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
}
.topbar a { color: var(--gold2); text-decoration: none; font-weight: 600; }
.tb-right { display: flex; gap: 20px; align-items: center; }
.tb-right span { display: flex; align-items: center; gap: 6px; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,10,0.74);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.16);
}
.nav-in {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(20px,5vw,60px); height: 88px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
}
.nav-logo img {
  height: clamp(56px, 6vw, 72px);
  width: 200px;
  height: 150px;
  max-width: min(280px, 42vw);
  display: block;
}
.nav-links { list-style: none; display: flex; gap: 2px; }
.nav-links a {
  font-size: 14px; font-weight: 600; letter-spacing: 0.2px;
  color: rgba(255,255,255,0.55); text-decoration: none;
  padding: 8px 14px; border-radius: 6px; transition: color .2s, background .2s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nav-right { display: flex; gap: 10px; align-items: center; }
.nav-wa {
  display: flex; align-items: center; gap: 8px;
  background: #1FAD4E; color: #fff;
  padding: 10px 18px; border-radius: 7px;
  font-size: 14px; font-weight: 600; text-decoration: none;
  transition: opacity .2s, transform .2s;
}
.nav-wa:hover { opacity: .9; transform: translateY(-1px); }
.nav-call {
  background: var(--gold); color: var(--black);
  padding: 10px 20px; border-radius: 7px;
  font-size: 14px; font-weight: 700; text-decoration: none; letter-spacing: 0.2px;
  transition: background .2s, transform .2s;
}
.nav-call:hover { background: var(--gold2); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 8px; }
.hamburger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; display: block; transition: .3s; }
.mob { display: none; position: fixed; inset: 0; background: var(--black); z-index: 200; flex-direction: column; align-items: center; justify-content: center; gap: 24px; }
.mob.open { display: flex; }
.mob a { font-size: 26px; font-weight: 700; color: #fff; text-decoration: none; letter-spacing: -0.5px; }
.mob a:hover { color: var(--gold2); }
.mob-x { position: absolute; top: 20px; right: 20px; background: none; border: none; color: #fff; font-size: 28px; cursor: pointer; }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  background: var(--black);
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 35%;
  opacity: 0.5;
  filter: saturate(0.9);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,10,10,0.96) 32%, rgba(10,10,10,0.52) 68%, rgba(10,10,10,0.28) 100%),
              linear-gradient(to top, rgba(10,10,10,0.94) 0%, transparent 58%);
}
.hero-in {
  position: relative; z-index: 1;
  max-width: var(--max); margin: 0 auto; width: 100%;
  padding: clamp(80px,10vw,120px) clamp(20px,5vw,60px);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 28px;
  font-size: 11px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--gold);
}
.hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
.hero h1 {
  font-size: clamp(44px, 7vw, 82px); font-weight: 900;
  letter-spacing: -3px; line-height: 0.95;
  color: #fff; margin-bottom: 24px; max-width: 680px;
}
/* Span'ları görsel olarak ayrı satıra kır — Google metni doğru okur */
.hero h1 span { display: block; }
.hero h1 .gold { color: var(--gold); display: block; }
.hero-sub {
  font-size: clamp(15px,2vw,18px); font-weight: 400; line-height: 1.7;
  color: rgba(255,255,255,0.55); max-width: 480px; margin-bottom: 44px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 64px; }
.btn-primary {
  background: var(--gold); color: var(--black);
  padding: 15px 36px; border-radius: 10px;
  font-size: 15px; font-weight: 700; letter-spacing: 0.3px; text-decoration: none;
  transition: background .2s, transform .2s, box-shadow .2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(200,168,75,0.3); }
.btn-outline {
  background: transparent; border: 1px solid rgba(255,255,255,0.25);
  color: #fff; padding: 15px 32px; border-radius: 10px;
  font-size: 15px; font-weight: 500; text-decoration: none;
  transition: border-color .2s, background .2s;
  display: inline-block;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }
.hero-stats {
  display: flex; gap: clamp(24px,5vw,56px);
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1);
}
.hs { }
.hs-num {
  font-size: clamp(26px,4vw,36px); font-weight: 800; color: #fff;
  letter-spacing: -1px; line-height: 1;
}
.hs-num span { color: var(--gold); }
.hs-label { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.4); letter-spacing: 1px; margin-top: 5px; text-transform: uppercase; }

/* ── SECTION COMMON ── */
.section { padding: clamp(82px,9vw,132px) clamp(20px,5vw,60px); }
.section.bg-dark { background: var(--dark); }
.section.bg-off { background: var(--off); }
.wrap { max-width: var(--max); margin: 0 auto; }
.eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
h2.title {
  font-size: clamp(28px,4vw,50px); font-weight: 800;
  letter-spacing: -2px; line-height: 1.05; color: var(--black);
  margin-bottom: 16px;
}
.section.bg-dark h2.title { color: #fff; }
p.sub {
  font-size: 16px; font-weight: 400; color: var(--muted); line-height: 1.75;
  max-width: 500px;
}
.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.center p.sub { margin: 0 auto; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--off); border-top: 1px solid var(--gray); border-bottom: 1px solid var(--gray);
  padding: 0 clamp(20px,5vw,60px);
}
.trust-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  divide: 1px solid var(--gray);
}
.trust-item {
  padding: 34px 28px;
  border-right: 1px solid var(--gray);
  display: flex; flex-direction: column; gap: 8px;
  transition: background .25s;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: #fff; }
.trust-icon { font-size: 28px; margin-bottom: 4px; }
.trust-icon svg { width: 26px; height: 26px; display: block; color: var(--gold); }
.trust-item strong { font-size: 16px; font-weight: 700; color: var(--black); }
.trust-item span { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ── ABOUT ── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px,7vw,96px); align-items: center;
}
.about-img {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-strong);
}
.about-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.about-img-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--black); border: 1px solid var(--gold);
  border-radius: 10px; padding: 16px 22px;
  color: #fff;
}
.aib-num { font-size: 32px; font-weight: 800; color: var(--gold); line-height: 1; }
.aib-txt { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 2px; letter-spacing: 0.5px; }
.about-line { width: 40px; height: 3px; background: var(--gold); border-radius: 2px; margin-bottom: 24px; }
.about-checks { display: flex; flex-direction: column; gap: 16px; margin: 28px 0 36px; }
.ac {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 18px; background: #fff; border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.06);
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow-soft);
}
.ac-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.ac-icon svg { width: 20px; height: 20px; display: block; color: var(--black); }
.ac h4 { font-size: 14px; font-weight: 700; color: var(--black); margin-bottom: 3px; }
.ac p { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ── SERVICES ── */
.svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.svc-card {
  background: var(--dark2);
  padding: 36px 32px; cursor: pointer;
  transition: background .25s, transform .25s, border-color .25s;
  position: relative; overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
}
.svc-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}
.svc-card:hover { background: var(--dark3); transform: translateY(-4px); border-color: rgba(200,168,75,0.35); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-num {
  font-size: 11px; font-weight: 700; letter-spacing: 3px; color: rgba(255,255,255,0.2);
  text-transform: uppercase; margin-bottom: 24px;
}
.svc-icon { font-size: 36px; margin-bottom: 16px; display: block; }
.svc-icon svg { width: 34px; height: 34px; display: block; color: var(--gold2); }
.svc-card h3 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.svc-card p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.65; margin-bottom: 20px; }
.svc-arrow {
  font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  display: flex; align-items: center; gap: 6px;
  transition: gap .2s;
}
.svc-card:hover .svc-arrow { gap: 10px; }

/* ── PRICING ── */
.price-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 56px;
}
.pc {
  border-radius: 14px; padding: 40px 36px;
  background: #fff; border: 1.5px solid #e7e7e3;
  position: relative; overflow: hidden;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  box-shadow: var(--shadow-soft);
}
.pc:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 52px rgba(0,0,0,0.14);
  border-color: #d0d0cc;
}
.pc.featured {
  background: linear-gradient(160deg, #0c0c0c 0%, #121212 100%);
  border-color: var(--gold);
  box-shadow: 0 12px 48px rgba(0,0,0,0.2);
}
.pc.featured:hover {
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
  border-color: var(--gold2);
}
.pc-tag {
  font-size: 10px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.pc h3 { font-size: 20px; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.pc.featured h3 { color: #fff; }
.pc-price {
  display: flex; align-items: baseline; gap: 3px;
  margin: 20px 0 6px;
}
.pc-price .amt { font-size: 52px; font-weight: 800; color: var(--black); line-height: 1; letter-spacing: -2px; }
.pc.featured .pc-price .amt { color: #fff; }
.pc-price .cur { font-size: 20px; font-weight: 600; color: var(--muted); }
.pc.featured .pc-price .cur { color: rgba(255,255,255,0.4); }
.pc-note { font-size: 12px; color: var(--muted); margin-bottom: 28px; }
.pc.featured .pc-note { color: rgba(255,255,255,0.35); }
.pc-divider { height: 1px; background: var(--gray); margin-bottom: 24px; }
.pc.featured .pc-divider { background: rgba(255,255,255,0.1); }
.pc-list { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 32px; }
.pc-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--black); }
.pc.featured .pc-list li { color: rgba(255,255,255,0.7); }
.pc-list li.no { color: #bbb; text-decoration: line-through; }
.pc-list .ck {
  width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0;
  background: #E8F5ED; font-size: 10px; font-weight: 800; color: #1F9B52;
  display: flex; align-items: center; justify-content: center;
}
.pc.featured .pc-list .ck { background: rgba(200,168,75,0.2); color: var(--gold2); }
.pc-list li.no .ck { background: #f0f0f0; color: #bbb; }
.btn-price {
  display: block; text-align: center; text-decoration: none;
  padding: 14px; border-radius: 8px;
  font-size: 14px; font-weight: 700; letter-spacing: 0.3px;
  background: var(--black); color: #fff;
  transition: background .15s;
}
.btn-price:hover { background: #333; }
.pc.featured .btn-price {
  background: var(--gold); color: var(--black);
}
.pc.featured .btn-price:hover { background: var(--gold2); }

/* ── PROCESS ── */
.proc-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 64px; position: relative;
}
.proc-grid::before {
  content: ''; position: absolute;
  top: 28px; left: 10%; right: 10%; height: 1px;
  background: var(--gray);
}
.proc-step { text-align: center; padding: 0 24px; }
.proc-n {
  width: 56px; height: 56px; border-radius: 50%;
  background: #fff; border: 1.5px solid var(--gray);
  margin: 0 auto 20px; display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800; color: var(--black);
  position: relative; z-index: 1;
  transition: background .2s, border-color .2s, color .2s;
}
.proc-step:hover .proc-n {
  background: var(--black); border-color: var(--black); color: #fff;
}
.proc-step h3 { font-size: 15px; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.proc-step p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── BEFORE/AFTER ── */
.ba-outer {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px,6vw,80px); align-items: center;
}
.ba-wrap {
  position: relative; border-radius: 14px; overflow: hidden;
  aspect-ratio: 4/3; background: #1a1a1a;
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
  cursor: ew-resize; user-select: none;
}
.ba-img {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.ba-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.ba-img.before { background: #111; }
.ba-img.after {
  background: #111;
  clip-path: inset(0 50% 0 0);
}
.ba-img.after img { filter: none; }
.ba-line {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 2px; background: #fff; transform: translateX(-50%); z-index: 10;
}
.ba-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff; box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; color: var(--black);
  cursor: ew-resize;
}
.ba-lbl {
  position: absolute; bottom: 14px;
  background: rgba(0,0,0,0.65); color: #fff; backdrop-filter: blur(4px);
  padding: 5px 12px; border-radius: 5px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
}
.ba-lbl.l { left: 14px; }
.ba-lbl.r { right: 14px; }
.ba-points { display: flex; flex-direction: column; gap: 14px; margin: 28px 0 36px; }
.bp {
  display: flex; gap: 14px; align-items: center;
  padding: 14px 18px; border-radius: 10px;
  border: 1px solid #e5e5e2; background: #fff;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.bp:hover { border-color: var(--gold); box-shadow: 0 8px 20px rgba(200,168,75,0.14); transform: translateY(-2px); }
.bp-icon { font-size: 22px; flex-shrink: 0; }
.bp-icon svg { width: 21px; height: 21px; display: block; color: var(--black); }
.bp strong { font-size: 14px; font-weight: 700; color: var(--black); display: block; margin-bottom: 2px; }
.bp span { font-size: 12px; color: var(--muted); }

/* ── TESTIMONIALS ── */
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 56px;
}
.tc {
  padding: 32px; background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  transition: border-color .2s, transform .2s;
}
.tc:hover { border-color: rgba(200,168,75,0.3); transform: translateY(-3px); }
.tc-stars { display: flex; gap: 3px; margin-bottom: 18px; }
.tc-stars span { color: var(--gold); font-size: 16px; }
.tc-text {
  font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.75;
  font-style: italic; margin-bottom: 24px;
  border-left: 2px solid var(--gold); padding-left: 16px;
}
.tc-author { display: flex; align-items: center; gap: 12px; }
.tc-av {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); color: var(--black);
  font-size: 15px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.tc-name { font-size: 14px; font-weight: 700; color: #fff; }
.tc-car { font-size: 12px; color: rgba(255,255,255,0.3); margin-top: 2px; }

/* ── CTA ── */
.cta {
  background: var(--black); padding: clamp(64px,8vw,100px) clamp(20px,5vw,60px);
  text-align: center;
  background-image: radial-gradient(ellipse at 50% 50%, rgba(200,168,75,0.08) 0%, transparent 65%);
}
.cta h2 {
  font-size: clamp(30px,5vw,56px); font-weight: 800;
  letter-spacing: -2px; color: #fff; margin-bottom: 12px; line-height: 1.05;
}
.cta h2 span { color: var(--gold); }
.cta p { font-size: 17px; color: rgba(255,255,255,0.45); margin-bottom: 44px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-cta-call {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--black);
  padding: 18px 44px; border-radius: 9px;
  font-size: 17px; font-weight: 700; text-decoration: none;
  transition: background .15s, transform .15s;
}
.btn-cta-call:hover { background: var(--gold2); transform: translateY(-2px); }
.btn-cta-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: #1FAD4E; color: #fff;
  padding: 18px 40px; border-radius: 9px;
  font-size: 17px; font-weight: 700; text-decoration: none;
  transition: opacity .15s, transform .15s;
}
.btn-cta-wa:hover { opacity: .9; transform: translateY(-2px); }

/* ── CONTACT ── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px,6vw,80px); align-items: start;
}
.ci-list { display: flex; flex-direction: column; gap: 12px; margin-top: 36px; }
.ci {
  display: flex; gap: 14px; align-items: center;
  padding: 18px 20px;
  background: var(--off); border-radius: 10px;
  border: 1px solid var(--gray);
  transition: border-color .2s;
}
.ci:hover { border-color: var(--gold); }
.ci-icon {
  width: 40px; height: 40px; border-radius: 8px; flex-shrink: 0;
  background: var(--black); display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.ci-icon svg { width: 18px; height: 18px; display: block; color: #fff; }
.ci h4 { font-size: 13px; font-weight: 700; color: var(--black); margin-bottom: 2px; }
.ci p { font-size: 13px; color: var(--muted); }
.form-box {
  background: linear-gradient(160deg, #0d0d0d 0%, #161616 100%);
  border-radius: 14px; padding: 40px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-strong);
}
.form-box h3 { font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 28px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.fg label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.fg input, .fg select, .fg textarea {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 12px 14px;
  font-size: 14px; color: #fff; font-family: var(--font); outline: none;
  transition: border-color .15s, background .15s;
  -webkit-appearance: none;
}
.fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,0.2); }
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--gold); background: rgba(200,168,75,0.05);
}
.fg select option { background: var(--dark); color: #fff; }
.fg textarea { resize: vertical; min-height: 100px; }
.btn-submit {
  width: 100%; background: var(--gold); color: var(--black);
  padding: 15px; border-radius: 10px; border: none;
  font-family: var(--font); font-size: 15px; font-weight: 700;
  cursor: pointer; letter-spacing: 0.3px;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.btn-submit:hover { background: var(--gold2); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(200,168,75,0.28); }

/* ── FOOTER ── */
footer {
  background: var(--black); border-top: 1px solid rgba(255,255,255,0.06);
  padding: clamp(48px,7vw,80px) clamp(20px,5vw,60px) 28px;
}
.footer-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 28px;
}
.fb-logo { margin-bottom: 16px; }
.fb-logo img { height: clamp(62px, 6vw, 84px); width: auto; }
.fb p { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 260px; margin-bottom: 24px; }
.socials { display: flex; gap: 8px; }
.soc {
  width: 36px; height: 36px; border-radius: 7px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.4);
  text-decoration: none; transition: all .15s;
}
.soc:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.fc h4 {
  font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-bottom: 16px;
}
.fc ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.fc ul a {
  font-size: 14px; color: rgba(255,255,255,0.5); text-decoration: none;
  transition: color .15s; display: block;
}
.fc ul a:hover { color: var(--gold2); }
.footer-bottom {
  max-width: var(--max); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
  font-size: 12px; color: rgba(255,255,255,0.2);
}
.footer-bottom a { color: var(--gold); text-decoration: none; }

/* ── FLOAT WA ── */
.fwa {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #1FAD4E;
  box-shadow: 0 4px 20px rgba(31,173,78,0.45);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: #fff;
  animation: fwab 3s ease-in-out infinite;
}
.fwa:hover { transform: scale(1.1); }
@keyframes fwab { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

/* ── REVEAL ── */
.rev { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.rev.on { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media(max-width: 960px) {
  .about-grid, .contact-grid, .ba-outer { grid-template-columns: 1fr; }
  .about-img { max-width: 500px; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .price-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .testi-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
  .proc-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .proc-grid::before { display: none; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .topbar { font-size: 12px; }
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }
}
@media(max-width: 600px) {
  .svc-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .frow { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-btns { flex-direction: column; align-items: center; }
  .proc-grid { grid-template-columns: 1fr; }
}

