/* Mehmet Ulusoy Hukuk — Premium Vanilla CSS */

:root {
  --navy: #081c3a;
  --navy-2: #0f2b4d;
  --navy-3: #163a66;
  --gold: #c8a24b;
  --gold-2: #d4b05f;
  --gold-soft: rgba(200, 162, 75, 0.15);
  --white: #ffffff;
  --light: #f8f9fa;
  --dark: #222222;
  --muted: rgba(34, 34, 34, 0.62);
  --radius: 1.25rem;
  --radius-lg: 1.75rem;
  --shadow: 0 4px 24px rgba(8, 28, 58, 0.06);
  --shadow-lg: 0 16px 48px rgba(8, 28, 58, 0.12);
  --container: 1120px;
  --header-h: 80px;
  --font-body: "Inter", system-ui, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

::selection {
  background: rgba(200, 162, 75, 0.28);
  color: var(--navy);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.narrow {
  max-width: 760px;
}

/* Loader */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 1rem;
  background: var(--navy);
  transition: opacity 0.5s var(--ease), visibility 0.5s;
}

.loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__mark {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 1.25rem;
  background: var(--gold-soft);
  border: 1px solid rgba(200, 162, 75, 0.35);
}

.loader__text {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.35rem;
}

.loader__bar {
  width: 160px;
  height: 3px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.loader__bar span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--gold);
  animation: loadBar 0.45s var(--ease) forwards;
}

@keyframes loadBar {
  to {
    width: 100%;
  }
}

/* Header */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  transition: background 0.35s, box-shadow 0.35s, padding 0.35s;
  padding: 1.15rem 0;
}

.header.is-scrolled {
  background: rgba(8, 28, 58, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-lg);
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
}

.logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 0.65rem;
  background: rgba(8, 28, 58, 0.35);
  flex-shrink: 0;
}

.logo strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.2;
}

.logo small {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.15rem;
}

.nav {
  display: none;
  align-items: center;
  gap: 0.15rem;
}

.nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  font-weight: 500;
  padding: 0.55rem 0.7rem;
  border-radius: 0.75rem;
  transition: color 0.25s;
}

.nav a:hover,
.nav a.is-active {
  color: var(--gold);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header__phone {
  display: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.55rem 0.9rem;
  border-radius: 1rem;
  transition: border-color 0.25s, color 0.25s;
}

.header__phone:hover {
  border-color: rgba(200, 162, 75, 0.5);
  color: var(--gold);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-content: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.9rem;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
  transition: 0.3s;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.2s, background 0.25s, border-color 0.25s, color 0.25s, box-shadow 0.25s;
  padding: 0.75rem 1.25rem;
  font-size: 0.9rem;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn--sm {
  padding: 0.55rem 1rem;
  font-size: 0.82rem;
}

.btn--lg {
  padding: 0.95rem 1.6rem;
  font-size: 1rem;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--navy);
  box-shadow: 0 8px 28px rgba(200, 162, 75, 0.28);
}

.btn--gold:hover {
  background: linear-gradient(135deg, var(--gold-2), #e0c37b);
}

.btn--outline {
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.35);
  background: transparent;
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--blue {
  background: linear-gradient(135deg, #1e4f8f, #2a6bb5);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 28px rgba(30, 79, 143, 0.35);
}

.btn--blue:hover {
  background: linear-gradient(135deg, #2563a8, #3b82c4);
}

.btn--ghost {
  color: var(--navy);
  background: transparent;
}

.btn--danger {
  width: 100%;
  background: #c62828;
  color: var(--white);
  margin-top: 0.5rem;
}

.btn--danger:hover {
  background: #b71c1c;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 0 5rem;
  color: var(--white);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(8, 28, 58, 0.92), rgba(8, 28, 58, 0.72)),
    url("https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1600&h=900&fit=crop&q=75")
      center / cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  to {
    transform: scale(1.12);
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(200, 162, 75, 0.12), transparent 45%),
    linear-gradient(to top, rgba(8, 28, 58, 0.95), transparent 45%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero h1,
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.15;
  max-width: 20ch;
  margin-bottom: 1rem;
}

.hero__quote {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.8vw, 1.65rem);
  font-weight: 500;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.88);
  max-width: 22ch;
  margin-bottom: 1.25rem;
}

.hero__quote span {
  color: var(--gold);
}

.hero__lead {
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero__stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.stat {
  text-align: center;
  padding: 0.5rem;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  color: var(--gold);
  font-weight: 600;
  line-height: 1.1;
}

.stat span {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

/* Sections */
.section {
  padding: 5.5rem 0;
}

.section--light {
  background: var(--light);
}

.section--navy {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.section--process {
  overflow: visible;
  padding-bottom: 6.5rem;
}

.section--navy::before {
  content: "";
  position: absolute;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  background: rgba(200, 162, 75, 0.06);
  filter: blur(60px);
  top: -8rem;
  right: -6rem;
  pointer-events: none;
}

.section-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3.25rem;
}

.section-head h2,
.about__content h2,
.attorney__info h2,
.contact__form h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 0.85rem;
}

.section-head p:not(.eyebrow) {
  color: var(--muted);
}

.section-head::after {
  content: "";
  display: block;
  width: 3.5rem;
  height: 2px;
  background: var(--gold);
  margin: 1.25rem auto 0;
}

.section-head--light h2 {
  color: var(--white);
}

.section-head--light p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.62);
}

/* Trust */
.trust-grid {
  display: grid;
  gap: 1.25rem;
}

.trust-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(8, 28, 58, 0.05);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}

.trust-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.icon-box {
  width: 3.25rem;
  height: 3.25rem;
  display: grid;
  place-items: center;
  border-radius: 1rem;
  background: var(--navy);
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.icon-box svg {
  width: 1.35rem;
  height: 1.35rem;
}

.trust-card h3,
.why-card h3,
.practice-card h3,
.blog-card h3,
.process__item h3,
.timeline__card h4,
.attorney__cols h4,
.footer h4,
.mvv h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.55rem;
}

.trust-card h3 {
  font-size: 1.4rem;
}

.trust-card p,
.why-card p,
.practice-card p,
.blog-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* About */
.about {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 4.5rem;
}

.about__media {
  position: relative;
}

.about__image {
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__image--brand {
  aspect-ratio: 1;
  background: var(--navy);
  display: grid;
  place-items: center;
  padding: 2rem;
}

.about__image--brand img {
  object-fit: contain;
  width: 85%;
  height: 85%;
}

.about__location {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold);
  margin: -0.35rem 0 1rem !important;
}

.about__content > p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.mvv {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.mvv > div {
  background: var(--light);
  border-radius: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(8, 28, 58, 0.05);
}

.mvv p {
  font-size: 0.85rem;
  color: var(--muted);
}

.value-list li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.65rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.value-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.value-list strong {
  color: var(--navy);
}

/* Timeline */
.timeline {
  position: relative;
  display: grid;
  gap: 1.25rem;
  max-width: 720px;
  margin: 0 auto;
  padding-left: 1.25rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0.35rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.timeline__item {
  position: relative;
  padding-left: 1.5rem;
}

.timeline__item::before {
  content: "";
  position: absolute;
  left: -1.05rem;
  top: 1.35rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid var(--gold);
}

.timeline__year {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 600;
  display: block;
  line-height: 1.3;
}

.timeline__card {
  margin-top: 0.4rem;
  background: var(--light);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  border: 1px solid rgba(8, 28, 58, 0.05);
}

.timeline__card p {
  color: var(--muted);
  font-size: 0.92rem;
}

/* Practice */
.practice-grid {
  display: grid;
  gap: 1rem;
}

.practice-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
}

.practice-card:hover {
  transform: translateY(-5px);
  border-color: rgba(200, 162, 75, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.practice-card h3 {
  color: var(--white);
  font-size: 1.25rem;
}

.practice-card p {
  color: rgba(255, 255, 255, 0.55);
}

/* Why */
.why-grid {
  display: grid;
  gap: 1rem;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid rgba(8, 28, 58, 0.05);
  box-shadow: var(--shadow);
  transition: transform 0.3s, border-color 0.3s;
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 162, 75, 0.3);
}

.why-card h3 {
  font-size: 1.2rem;
}

/* Attorney */
.attorney {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.attorney__photo {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3 / 4;
  max-width: 420px;
  margin-inline: auto;
}

.attorney__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  background: #f3f4f6;
}

.attorney__caption {
  position: absolute;
  inset: auto 0 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(8, 28, 58, 0.85), transparent);
  color: var(--white);
}

.attorney__caption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.attorney__caption span {
  color: var(--gold);
  font-size: 0.9rem;
}

.attorney__info > p {
  color: var(--muted);
  margin-bottom: 1.75rem;
}

.attorney__cols {
  display: grid;
  gap: 1rem;
}

.attorney__cols > div {
  background: var(--light);
  border-radius: var(--radius);
  padding: 1.15rem;
  border: 1px solid rgba(8, 28, 58, 0.05);
}

.attorney__cols > div:first-child ul {
  max-height: none;
}

.attorney__cols li {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
  padding-left: 0.75rem;
  position: relative;
}

.attorney__cols li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* Process */
.process {
  display: grid;
  gap: 1rem;
  max-width: 820px;
  margin: 0 auto;
  padding-bottom: 0.5rem;
}

.process__item:last-child {
  margin-bottom: 0.25rem;
}

.process__item {
  display: flex;
  gap: 1.15rem;
  align-items: flex-start;
  padding: 1.25rem 1.4rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.3s;
}

.process__item:hover {
  border-color: rgba(200, 162, 75, 0.4);
}

.process__item span {
  flex-shrink: 0;
  width: 3.25rem;
  height: 3.25rem;
  display: grid;
  place-items: center;
  border-radius: 1rem;
  border: 1px solid rgba(200, 162, 75, 0.4);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 600;
  background: rgba(8, 28, 58, 0.4);
}

.process__item h3 {
  color: var(--white);
  font-size: 1.2rem;
}

.process__item p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.92rem;
}

/* Numbers */
.numbers {
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.numbers::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(200, 162, 75, 0.14), transparent 50%);
  pointer-events: none;
}

.numbers__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.numbers__item {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.numbers__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: var(--gold);
  font-weight: 600;
}

.numbers__item span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Testimonials */
.slider {
  max-width: 720px;
  margin: 0 auto;
}

.slider__track {
  position: relative;
  min-height: 280px;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(24px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease), visibility 0.45s;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 2rem;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.stars {
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.slide blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  color: var(--navy);
  line-height: 1.45;
  margin-bottom: 1.5rem;
}

.slide__author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.slide__author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(200, 162, 75, 0.35);
}

.slide__author strong {
  display: block;
  color: var(--navy);
}

.slide__author span {
  font-size: 0.85rem;
  color: var(--muted);
}

.slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.slider__btn {
  width: 44px;
  height: 44px;
  border-radius: 0.9rem;
  border: 1px solid rgba(8, 28, 58, 0.12);
  background: var(--white);
  color: var(--navy);
  font-size: 1.4rem;
  line-height: 1;
  transition: border-color 0.25s, color 0.25s;
}

.slider__btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.slider__dots {
  display: flex;
  gap: 0.4rem;
}

.slider__dots button {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: rgba(8, 28, 58, 0.2);
  transition: width 0.3s, background 0.3s;
}

.slider__dots button.is-active {
  width: 28px;
  background: var(--gold);
}

/* Blog */
.blog-grid {
  display: grid;
  gap: 1.35rem;
}

.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--light);
  border: 1px solid rgba(8, 28, 58, 0.05);
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.blog-card__img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.blog-card:hover .blog-card__img img {
  transform: scale(1.06);
}

.blog-card__img span {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(8, 28, 58, 0.9);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 99px;
}

.blog-card__body {
  padding: 1.35rem 1.4rem 1.6rem;
}

.blog-card .meta {
  font-size: 0.78rem;
  color: rgba(34, 34, 34, 0.45);
  margin-bottom: 0.55rem;
}

.blog-card h3 {
  font-size: 1.2rem;
  line-height: 1.35;
  margin-bottom: 0.55rem;
}

/* FAQ */
.accordion {
  display: grid;
  gap: 0.75rem;
}

.accordion__item {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(8, 28, 58, 0.08);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.accordion__item.is-open {
  border-color: rgba(200, 162, 75, 0.35);
  box-shadow: var(--shadow);
  background: var(--white);
}

.accordion__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  padding: 1.15rem 1.25rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 500;
}

.accordion__btn span {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(8, 28, 58, 0.06);
  position: relative;
  transition: background 0.3s, transform 0.3s;
}

.accordion__btn span::before,
.accordion__btn span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--navy);
  transition: transform 0.3s;
}

.accordion__btn span::before {
  width: 12px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.accordion__btn span::after {
  width: 2px;
  height: 12px;
  transform: translate(-50%, -50%);
}

.accordion__item.is-open .accordion__btn span {
  background: var(--gold);
  transform: rotate(180deg);
}

.accordion__item.is-open .accordion__btn span::after {
  transform: translate(-50%, -50%) scaleY(0);
}

.accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.accordion__item.is-open .accordion__panel {
  max-height: 420px;
}

.accordion__panel p {
  padding: 0 1.25rem 1.25rem;
  color: var(--muted);
  border-top: 1px solid rgba(8, 28, 58, 0.05);
  padding-top: 1rem;
  margin-top: 0;
}

/* Contact */
.contact {
  display: grid;
  gap: 1.5rem;
}

.contact__card {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid rgba(8, 28, 58, 0.05);
  margin-bottom: 1rem;
}

.contact__row {
  margin-bottom: 1.15rem;
}

.contact__row strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(34, 34, 34, 0.4);
  margin-bottom: 0.25rem;
}

.contact__row a,
.contact__row p {
  color: var(--navy);
  font-weight: 500;
}

.contact__row a:hover {
  color: var(--gold);
}

.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(8, 28, 58, 0.05);
  box-shadow: var(--shadow);
  height: 240px;
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.25) contrast(1.05);
}

.contact__form {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid rgba(8, 28, 58, 0.05);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(8, 28, 58, 0.12);
  background: var(--white);
  border-radius: 0.9rem;
  padding: 0.8rem 1rem;
  color: var(--dark);
  transition: border-color 0.25s, box-shadow 0.25s;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(200, 162, 75, 0.55);
  box-shadow: 0 0 0 3px rgba(200, 162, 75, 0.15);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  gap: 0;
}

.form-success {
  margin-top: 1rem;
  color: #1b5e20;
  font-size: 0.9rem;
  font-weight: 500;
}

.form-hint {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.45;
}

/* Footer */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 4.5rem 0 1.5rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: rgba(200, 162, 75, 0.05);
  filter: blur(50px);
  top: -6rem;
  left: -6rem;
  pointer-events: none;
}

.footer__grid {
  position: relative;
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer a {
  display: block;
  margin-bottom: 0.45rem;
  transition: color 0.25s;
}

.footer a:hover {
  color: var(--gold);
}

.footer h4 {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.logo--footer {
  margin-bottom: 1rem;
}

.logo--footer + p {
  max-width: 18rem;
  line-height: 1.6;
}

.footer__bottom {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Float buttons */
.float-wa,
.float-top {
  position: fixed;
  z-index: 900;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-lg);
  transition: transform 0.25s, opacity 0.3s;
}

.float-wa {
  right: 1.25rem;
  bottom: 1.25rem;
  background: #25d366;
  color: var(--white);
}

.float-wa svg {
  width: 28px;
  height: 28px;
}

.float-wa:hover {
  transform: scale(1.08);
}

.float-top {
  left: 1.25rem;
  bottom: 1.25rem;
  background: var(--navy);
  color: var(--gold);
  font-size: 1.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.float-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Cookie */
.cookie {
  position: fixed;
  z-index: 950;
  left: 1rem;
  right: 1rem;
  bottom: 5.5rem;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(8, 28, 58, 0.1);
  border-radius: 1.25rem;
  padding: 1.15rem;
  box-shadow: var(--shadow-lg);
  animation: slideUp 0.45s var(--ease);
}

.cookie p {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 0.9rem;
}

.cookie strong {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.cookie > div {
  display: flex;
  gap: 0.5rem;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Modal */
.modal[hidden] {
  display: none !important;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 28, 58, 0.7);
  backdrop-filter: blur(6px);
}

.modal__dialog {
  position: relative;
  width: min(100%, 480px);
  background: var(--white);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  animation: slideUp 0.35s var(--ease);
}

.modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 1.35rem;
  border-bottom: 1px solid rgba(8, 28, 58, 0.06);
}

.modal__head h3 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.35rem;
}

.modal__close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--light);
  color: var(--navy);
  font-size: 1.4rem;
  line-height: 1;
}

.modal__form {
  padding: 1.35rem;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.18s;
}
.delay-3 {
  transition-delay: 0.26s;
}
.delay-4 {
  transition-delay: 0.34s;
}

/* Mobile nav open */
body.nav-open {
  overflow: hidden;
}

@media (max-width: 1023px) {
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(100%, 340px);
    background: var(--navy);
    flex-direction: column;
    align-items: stretch;
    padding: 5.5rem 1.5rem 2rem;
    gap: 0.25rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    box-shadow: var(--shadow-lg);
    display: flex;
    z-index: 999;
  }

  .nav.is-open {
    transform: translateX(0);
  }

  .nav a {
    font-size: 1.05rem;
    padding: 0.9rem 1rem;
  }

  .nav::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(8, 28, 58, 0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: -1;
  }
}

/* Desktop */
@media (min-width: 640px) {
  .hero__stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 1.5rem 0.5rem;
  }

  .stat {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .stat:last-child {
    border-right: none;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
  }

  .numbers__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .cookie {
    left: 1.25rem;
    right: auto;
    bottom: 1.25rem;
  }
}

@media (min-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .practice-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .mvv {
    grid-template-columns: repeat(3, 1fr);
  }

  .attorney__cols {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .header__actions .btn--gold {
    display: inline-flex;
  }
}

@media (min-width: 1024px) {
  .nav {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .about {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 4rem;
  }

  .attorney {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
  }

  .attorney__photo {
    margin-inline: 0;
  }

  .contact {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 2rem;
  }

  .practice-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .header__phone {
    display: inline-flex;
  }

}

@media (min-width: 1200px) {
  .header__actions .btn--gold {
    display: inline-flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .hero__bg,
  .loader__bar span,
  .slide {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
