/* ==========================================================================
   Av. Şafak Yılmaz Hukuk Bürosu — Tasarım Sistemi
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0b1d39;
  --navy-soft: #15315a;
  --navy-deep: #050f1f;
  --gold: #b8923a;
  --gold-light: #d4b066;
  --gold-soft: #f0e6cc;
  --light: #f7f4ed;
  --cream: #faf8f3;
  --gray: #6b7280;
  --gray-dark: #374151;
  --gray-light: #9ca3af;
  --border: #e5e0d3;
  --border-soft: #efebe1;
  --bg: #ffffff;
  --text: #111827;
  --shadow-sm: 0 1px 2px rgba(11, 29, 57, 0.04), 0 1px 3px rgba(11, 29, 57, 0.06);
  --shadow-md: 0 4px 6px rgba(11, 29, 57, 0.05), 0 10px 25px rgba(11, 29, 57, 0.08);
  --shadow-lg: 0 10px 15px rgba(11, 29, 57, 0.08), 0 20px 40px rgba(11, 29, 57, 0.12);
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --transition: 220ms cubic-bezier(.4, 0, .2, 1);
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  line-height: 1.7;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  padding-top: 72px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--gold); color: var(--navy); }

/* === Layout helpers === */
.container { max-width: 1180px; margin: auto; padding: 0 1.5rem; }
section { padding: 6rem 1.5rem; position: relative; }

.tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: .9rem;
}
.tag::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--gold);
  display: inline-block;
}

.sec-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  color: var(--navy);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.01em;
  margin-bottom: 1rem;
}
.sec-sub {
  color: var(--gray);
  font-family: var(--font-sans);
  font-size: 1rem;
  max-width: 620px;
  line-height: 1.7;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  text-decoration: none;
  padding: .95rem 1.9rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
  line-height: 1.2;
  position: relative;
  overflow: hidden;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  box-shadow: 0 4px 14px rgba(184, 146, 58, .3);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(184, 146, 58, .45);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .35);
}
.btn-outline:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  background: rgba(212, 176, 102, .08);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--cream);
}
.btn-block { display: flex; width: 100%; }

/* === Navigation === */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(11, 29, 57, .98);
  backdrop-filter: saturate(160%) blur(8px);
  -webkit-backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid rgba(184, 146, 58, .2);
  transition: background var(--transition);
}
nav.site-nav.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
}
.nav-inner {
  max-width: 1180px; margin: auto;
  padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo { display: flex; align-items: center; gap: .75rem; }
.logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  box-shadow: 0 4px 12px rgba(184, 146, 58, .3);
  flex-shrink: 0;
}
.logo-icon svg { width: 22px; height: 22px; }
.logo-text {
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .01em;
}
.logo-text span {
  display: block;
  font-family: var(--font-sans);
  font-size: .65rem;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-links {
  display: flex; gap: 2rem; list-style: none;
  align-items: center;
}
.nav-links a {
  color: rgba(255, 255, 255, .82);
  font-family: var(--font-sans);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .03em;
  transition: color var(--transition);
  position: relative;
  padding: .25rem 0;
}
.nav-links a:not(.cta)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy) !important;
  padding: .6rem 1.2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(184, 146, 58, .25);
}
.nav-links a.cta::after { display: none; }
.nav-links a.cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(184, 146, 58, .4);
}

.nav-toggle {
  display: none;
  background: none; border: none;
  width: 36px; height: 36px;
  flex-direction: column; justify-content: center; gap: 5px;
  align-items: center;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: #fff; transition: transform .25s, opacity .25s;
  border-radius: 2px;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === Hero === */
.hero {
  min-height: 88vh;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(184, 146, 58, .12) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(212, 176, 102, .08) 0%, transparent 50%),
    linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-soft) 100%);
  display: flex; align-items: center;
  padding: 6rem 1.5rem 5rem;
  position: relative;
  overflow: hidden;
}
.hero::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: 60px 60px;
  pointer-events: none;
}
.hero-inner {
  max-width: 1180px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-content { max-width: 640px; }
.hero .tag { color: var(--gold-light); margin-bottom: 1.2rem; }
.hero .tag::before { background: var(--gold-light); }
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: #fff;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 1.4rem;
}
.hero h1 em {
  color: var(--gold-light);
  font-style: italic;
  position: relative;
}
.hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .78);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 540px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}
.hero .stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--gold-light);
  font-weight: 600;
  line-height: 1;
  margin-bottom: .35rem;
}
.stat-lbl {
  font-size: .78rem;
  color: rgba(255, 255, 255, .55);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .1em;
  line-height: 1.4;
}

/* Hero visual side */
.hero-visual {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 420px;
}
.hero-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, .06) 0%, rgba(255, 255, 255, .02) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 176, 102, .25);
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: #fff;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .35);
}
.hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(212, 176, 102, .5), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.hero-card-head {
  display: flex; align-items: center; gap: .75rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  margin-bottom: 1.2rem;
}
.hero-card-head svg { width: 22px; height: 22px; color: var(--gold-light); flex-shrink: 0; }
.hero-card-head h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
}
.hero-card ul { list-style: none; }
.hero-card li {
  display: flex;
  gap: .75rem;
  padding: .65rem 0;
  font-size: .9rem;
  color: rgba(255, 255, 255, .82);
}
.hero-card li svg {
  width: 18px; height: 18px;
  color: var(--gold-light);
  flex-shrink: 0;
  margin-top: 2px;
}
.hero-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  font-family: var(--font-serif);
  text-align: center;
  box-shadow: 0 12px 30px rgba(184, 146, 58, .4);
  line-height: 1.1;
}
.hero-badge strong { font-size: 1.4rem; display: block; font-weight: 700; }
.hero-badge span {
  font-family: var(--font-sans);
  font-size: .65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  display: block;
  margin-top: 2px;
}

/* === Page header (inner pages) === */
.page-header {
  background:
    radial-gradient(ellipse at top right, rgba(184, 146, 58, .12) 0%, transparent 60%),
    linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-soft) 100%);
  color: #fff;
  padding: 6rem 1.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::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: 50px 50px;
  pointer-events: none;
}
.page-header > * { position: relative; z-index: 1; }
.page-header .tag {
  color: var(--gold-light);
  justify-content: center;
}
.page-header .tag::before { background: var(--gold-light); }
.page-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.01em;
  margin-bottom: .8rem;
}
.page-header p {
  color: rgba(255, 255, 255, .75);
  font-size: 1.02rem;
  max-width: 660px;
  margin: 0 auto;
  line-height: 1.7;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .55rem;
  font-size: .8rem;
  color: rgba(255, 255, 255, .5);
  margin-top: 1.2rem;
}
.breadcrumb a { color: rgba(255, 255, 255, .7); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold-light); }

/* === Section header row === */
.sec-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 3rem;
}
.sec-head.center { justify-content: center; text-align: center; flex-direction: column; align-items: center; }
.sec-head .more-link {
  font-family: var(--font-sans);
  font-size: .88rem;
  color: var(--gold);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  transition: gap var(--transition);
}
.sec-head .more-link:hover { gap: .65rem; color: var(--navy); }

/* === Cards & Grids === */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
}
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.card:hover {
  border-color: rgba(184, 146, 58, .35);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.card:hover::before { transform: scaleX(1); }
.card-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--gold-soft) 0%, #fff 100%);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--gold);
  transition: all var(--transition);
}
.card-icon svg { width: 28px; height: 28px; }
.card:hover .card-icon {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #fff;
  transform: rotate(-4deg) scale(1.06);
}
.card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .55rem;
  letter-spacing: -.005em;
}
.card p {
  font-size: .9rem;
  color: var(--gray);
  line-height: 1.65;
}
.card a.card-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: 1.2rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gold);
  transition: gap var(--transition);
}
.card a.card-link:hover { gap: .65rem; color: var(--navy); }

.section-light { background: var(--light); }
.section-cream { background: var(--cream); }

/* === About / Profile === */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
}
.profile-box {
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: var(--radius-lg);
  padding: 3rem 2.2rem;
  text-align: center;
  color: #fff;
  position: relative;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.profile-box::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(184, 146, 58, .25) 0%, transparent 70%);
  border-radius: 50%;
}
.profile-box > * { position: relative; }
.avatar {
  width: 110px; height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  margin: 0 auto 1.4rem;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 2.2rem; color: var(--navy); font-weight: 700;
  box-shadow: 0 8px 24px rgba(184, 146, 58, .3);
  border: 3px solid rgba(255, 255, 255, .1);
}
.profile-box h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
}
.profile-box > p {
  color: var(--gold-light);
  font-size: .82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: .35rem;
}
.baro-badge {
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(184, 146, 58, .12);
  border: 1px solid rgba(184, 146, 58, .25);
  border-radius: var(--radius-sm);
  font-size: .8rem;
  color: rgba(255, 255, 255, .82);
  line-height: 1.7;
}
.about-text > p {
  font-size: 1rem;
  color: var(--gray-dark);
  margin-bottom: 1.2rem;
  line-height: 1.8;
}
.feat-list { list-style: none; margin-bottom: 2rem; }
.feat-list li {
  display: flex; gap: .8rem; align-items: flex-start;
  padding: .75rem 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: .92rem;
  color: var(--gray-dark);
}
.feat-list li:last-child { border: none; }
.chk {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--gold-soft);
  color: var(--gold);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .7rem;
  margin-top: 2px;
}

/* === Process timeline (homepage) === */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  position: relative;
}
.process-step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  transition: all var(--transition);
}
.process-step:hover {
  border-color: rgba(184, 146, 58, .4);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.process-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 8px 18px rgba(11, 29, 57, .15);
}
.process-step h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .5rem;
}
.process-step p {
  font-size: .87rem;
  color: var(--gray);
  line-height: 1.65;
}

/* === Testimonials === */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testi-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  position: relative;
  transition: all var(--transition);
}
.testi-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.testi-quote {
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 3rem;
  line-height: 1;
  margin-bottom: -.5rem;
  opacity: .55;
}
.testi-stars {
  display: flex;
  gap: 2px;
  margin-bottom: .9rem;
  color: var(--gold);
}
.testi-stars svg { width: 16px; height: 16px; }
.testi-card p {
  font-size: .95rem;
  color: var(--gray-dark);
  line-height: 1.75;
  margin-bottom: 1.4rem;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border-soft);
}
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1rem;
  flex-shrink: 0;
}
.testi-author div h5 {
  font-size: .92rem;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 1px;
}
.testi-author div span {
  font-size: .78rem;
  color: var(--gray);
}

/* === FAQ === */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: .8rem;
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item[open] {
  border-color: rgba(184, 146, 58, .4);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.3rem 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  transition: background var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  width: 28px; height: 28px;
  background: var(--gold-soft);
  color: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}
.faq-item[open] summary::after {
  content: '−';
  background: var(--gold);
  color: #fff;
  transform: rotate(180deg);
}
.faq-item summary:hover { background: var(--cream); }
.faq-body {
  padding: 0 1.6rem 1.4rem;
  color: var(--gray-dark);
  font-size: .95rem;
  line-height: 1.75;
}

/* === CTA Section === */
.cta-section {
  background:
    radial-gradient(ellipse at center, rgba(184, 146, 58, .12) 0%, transparent 70%),
    linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::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: 40px 40px;
}
.cta-section > * { position: relative; z-index: 1; }
.cta-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: -.01em;
}
.cta-section p {
  color: rgba(255, 255, 255, .75);
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.02rem;
}
.cta-section .btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .3);
}
.cta-section .btn-ghost:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  background: rgba(212, 176, 102, .08);
}

/* === Trust strip === */
.trust-strip {
  background: var(--cream);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 2.5rem 1.5rem;
}
.trust-grid {
  max-width: 1180px; margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .9rem;
  font-size: .88rem;
  color: var(--gray-dark);
  line-height: 1.4;
}
.trust-item svg {
  width: 28px; height: 28px;
  color: var(--gold);
  flex-shrink: 0;
}
.trust-item strong {
  display: block;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: 1rem;
  margin-bottom: 1px;
}

/* === Contact === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}
.cinfo h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .8rem;
}
.cinfo p.sub {
  font-size: .95rem;
  color: var(--gray);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.cdetail {
  display: flex; gap: 1rem;
  margin-bottom: 1.2rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.cdetail:hover { background: var(--cream); }
.cicon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--gold-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(11, 29, 57, .15);
}
.cicon svg { width: 20px; height: 20px; }
.cdetail h5 {
  font-size: .68rem;
  color: var(--gold);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .3rem;
  font-weight: 600;
}
.cdetail p {
  font-size: .95rem;
  color: var(--gray-dark);
  margin: 0;
  line-height: 1.5;
}

/* === Forms === */
.cform, .form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  box-shadow: var(--shadow-md);
}
.cform h3, .form-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1.6rem;
}
.fg { margin-bottom: 1.1rem; }
.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
label {
  display: block;
  font-size: .8rem;
  color: var(--gray-dark);
  margin-bottom: .4rem;
  font-weight: 500;
}
input, select, textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: .92rem;
  color: var(--text);
  background: #fff;
  transition: all var(--transition);
}
input:hover, select:hover, textarea:hover { border-color: var(--gray-light); }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 146, 58, .12);
}
textarea { resize: vertical; min-height: 120px; }
.fnote {
  font-size: .8rem;
  color: var(--gray);
  margin-top: 1rem;
}
.ok-msg, .err-msg {
  display: none;
  border-radius: var(--radius-sm);
  padding: 1rem;
  margin-top: 1rem;
  font-size: .88rem;
}
.ok-msg {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
}
.err-msg {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
}

/* === Map === */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
  min-height: 320px;
  background: var(--light);
  border: 1px solid var(--border);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; min-height: 320px; }

/* === Footer === */
footer.site-footer {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: rgba(255, 255, 255, .55);
  padding: 4rem 1.5rem 2rem;
  position: relative;
}
footer.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 146, 58, .4), transparent);
}
.footer-grid {
  max-width: 1180px;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-col h5 {
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .6rem; }
.footer-col a {
  color: rgba(255, 255, 255, .55);
  font-size: .88rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold-light); }
.footer-about p {
  font-size: .88rem;
  line-height: 1.7;
  margin: 1.2rem 0;
  color: rgba(255, 255, 255, .55);
}
.footer-social {
  display: flex; gap: .6rem;
}
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255, 255, 255, .65);
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom {
  max-width: 1180px;
  margin: auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .82rem;
  color: rgba(255, 255, 255, .4);
}
.footer-bottom-links {
  display: flex; gap: 1.5rem; list-style: none;
}
.footer-bottom-links a { color: rgba(255, 255, 255, .4); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--gold-light); }

/* === WhatsApp Float button === */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .4);
  z-index: 99;
  transition: all var(--transition);
  animation: pulse-ring 2.4s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(37, 211, 102, .55);
}
.whatsapp-float svg { width: 28px; height: 28px; }
@keyframes pulse-ring {
  0% { box-shadow: 0 8px 24px rgba(37, 211, 102, .4), 0 0 0 0 rgba(37, 211, 102, .5); }
  70% { box-shadow: 0 8px 24px rgba(37, 211, 102, .4), 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 8px 24px rgba(37, 211, 102, .4), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* === Scroll progress bar === */
.scroll-progress {
  position: fixed;
  top: 72px; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  width: 0%;
  z-index: 99;
  transition: width 80ms linear;
}

/* === Reveal animations === */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.4, 0, .2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === Responsive === */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { justify-self: stretch; max-width: none; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid .footer-col:last-child { grid-column: 1 / -1; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  body { padding-top: 64px; }
  .nav-inner { height: 64px; }
  .scroll-progress { top: 64px; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; top: 64px; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column; align-items: stretch;
    gap: 0; padding: 1rem 1.5rem 1.5rem;
    border-bottom: 1px solid rgba(184, 146, 58, .2);
    transform: translateY(-130%);
    transition: transform .25s ease;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block; padding: .9rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
  }
  .nav-links a::after { display: none; }
  .nav-links a.cta { text-align: center; margin-top: .6rem; }
  .hero { min-height: auto; padding: 4rem 1.2rem 3.5rem; }
  .hero .stats { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .stat-num { font-size: 1.7rem; }
  .stat-lbl { font-size: .68rem; }
  section { padding: 4rem 1.2rem; }
  .frow { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-badge { display: none; }
  .whatsapp-float { width: 50px; height: 50px; bottom: 16px; right: 16px; }
  .whatsapp-float svg { width: 24px; height: 24px; }
  .cform, .form-card { padding: 1.6rem; }
}
