/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #0f2044;
  --navy-mid: #162f5e;
  --navy-light: #1e3f7a;
  --accent: #c9a84c;
  --accent-light: #e4c473;
  --accent-dark: #a8872e;
  --white: #ffffff;
  --off-white: #f5f7fc;
  --light-bg: #eef1f8;
  --text-dark: #0f1e38;
  --text-med: #3a4a65;
  --text-light: #8090b0;
  --border: #dde3ef;
  --shadow-sm: 0 2px 12px rgba(15, 32, 68, .08);
  --shadow-md: 0 8px 32px rgba(15, 32, 68, .14);
  --shadow-lg: 0 20px 60px rgba(15, 32, 68, .18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: .25s cubic-bezier(.4, 0, .2, 1);
  --header-h: 72px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TOPBAR ===== */
.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, .85);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .01em;
  padding: 8px 0;
  position: relative;
  z-index: 100;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar-badge {
  background: rgba(201, 168, 76, .15);
  border: 1px solid rgba(201, 168, 76, .3);
  color: var(--accent-light);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: .75rem;
}

.topbar-sep {
  opacity: .4;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, .9);
  transition: color var(--transition);
}

.topbar-phone:hover {
  color: var(--accent-light);
}

.topbar-cta-btn {
  background: var(--accent);
  color: var(--navy);
  padding: 4px 14px;
  border-radius: 20px;
  font-weight: 700;
  font-size: .78rem;
  transition: background var(--transition), transform var(--transition);
}

.topbar-cta-btn:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  height: var(--header-h);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  transition: opacity var(--transition);
}

.brand:hover {
  opacity: .85;
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand-text strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.01em;
  line-height: 1.2;
}

.brand-text span {
  display: block;
  font-size: .7rem;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-med);
  padding: 6px 12px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}

.main-nav a:hover {
  color: var(--navy);
  background: var(--light-bg);
}

.nav-cta-btn {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 8px 20px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  margin-left: 8px;
  transition: background var(--transition) !important, transform var(--transition) !important;
}

.nav-cta-btn:hover {
  background: var(--navy-light) !important;
  transform: translateY(-1px) !important;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background var(--transition);
}

.burger:hover {
  background: var(--light-bg);
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  z-index: 98;
  padding: 12px 0;
  transform: translateY(-110%);
  transition: transform var(--transition);
}

.mobile-nav.open {
  transform: translateY(0);
}

.mob-link {
  display: block;
  padding: 13px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.mob-link:hover {
  background: var(--light-bg);
}

.mob-cta {
  background: var(--navy);
  color: var(--white) !important;
  text-align: center;
  margin: 12px 24px 4px;
  border-radius: var(--radius);
  border-bottom: none !important;
}

.mob-phone {
  text-align: center;
  color: var(--accent-dark) !important;
  border-bottom: none !important;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--navy);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, .4);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .5);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, .12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 15px 32px;
  font-size: 1rem;
  border-radius: 14px;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, rgba(15, 32, 68, 0.79) 0%, rgba(22, 47, 94, 0.5) 50%, rgba(26, 53, 103, 0) 100%), url('img/lawyer.png') center/cover no-repeat;
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  /*background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,168,76,.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 20%, rgba(255,255,255,.03) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");*/
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, .15);
  border: 1px solid rgba(201, 168, 76, .35);
  color: var(--accent-light);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .02em;
  margin-bottom: 24px;
  animation: fadeInDown .6s ease both;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-light);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .5;
    transform: scale(.7);
  }
}

.hero-content h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 20px;
  animation: fadeInUp .7s ease .1s both;
}

.hero-accent {
  color: var(--accent-light);
  position: relative;
}

.hero-accent::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  opacity: .5;
}

.hero-sub {
  color: rgba(255, 255, 255, .8);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 520px;
  animation: fadeInUp .7s ease .2s both;
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
  animation: fadeInUp .7s ease .3s both;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, .85);
  font-size: .88rem;
  font-weight: 500;
}

.trust-icon {
  width: 16px;
  height: 16px;
  fill: var(--accent);
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: fadeInUp .7s ease .4s both;
}

/* LEAD CARD */
.lead-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  animation: fadeInRight .7s ease .2s both;
}

.lead-card-header {
  text-align: center;
  margin-bottom: 28px;
}

.lead-card-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  display: block;
}

.lead-card-header h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.lead-card-header p {
  font-size: .88rem;
  color: var(--text-med);
  line-height: 1.5;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-med);
  margin-bottom: 5px;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .95rem;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy-light);
  box-shadow: 0 0 0 3px rgba(30, 63, 122, .12);
  background: var(--white);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238090b0' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-disclaimer {
  font-size: .72rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 10px;
  line-height: 1.4;
}

/* SCROLL INDICATOR */
.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, .5);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: fadeIn 1s ease 1s both;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255, 255, 255, .4);
  border-bottom: 2px solid rgba(255, 255, 255, .4);
  transform: rotate(45deg);
  animation: bounceDown 1.5s infinite;
}

@keyframes bounceDown {

  0%,
  100% {
    transform: rotate(45deg) translateY(0);
  }

  50% {
    transform: rotate(45deg) translateY(5px);
  }
}

/* ===== STATS BAND ===== */
.stats-band {
  background: var(--navy);
  padding: 15px 0;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  color: var(--white);
}

.stat-num {
  display: inline-block;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--accent-light);
  line-height: 1;
  font-family: 'Playfair Display', serif;
}

.stat-plus {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent-light);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: .82rem;
  color: rgba(255, 255, 255, .6);
  margin-top: 6px;
  font-weight: 500;
  /*max-width: 120px;*/
  margin-left: auto;
  margin-right: auto;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, .15);
}

/* ===== QUICK FORM BAND ===== */
.quick-form-band {
  background: var(--navy-mid);
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.quick-form-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

.quick-form-text {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  flex-shrink: 0;
}

.quick-form-text svg {
  width: 24px;
  height: 24px;
  fill: var(--accent);
}

.quick-form-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
}

.quick-form-text span {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
}

.quick-form {
  display: flex;
  gap: 12px;
  flex: 1;
}

.quick-form input,
.quick-form select {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--white);
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: all var(--transition);
}

.quick-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.quick-form select {
  color: rgba(255, 255, 255, 0.5);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  appearance: none;
}

.quick-form select option {
  color: var(--text-dark);
  background: var(--white);
}

.quick-form input:focus,
.quick-form select:focus {
  border-color: var(--accent-light);
  background: rgba(255, 255, 255, 0.1);
}

.quick-form button {
  white-space: nowrap;
  background: var(--accent);
  color: var(--navy);
  border: none;
  border-radius: 8px;
  padding: 15px 24px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all var(--transition);
}

.quick-form button:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.3);
}

@media (max-width: 1024px) {
  .quick-form-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .quick-form {
    width: 100%;
    flex-wrap: wrap;
  }

  .quick-form input,
  .quick-form select,
  .quick-form button {
    flex: 1 1 200px;
  }
}

@media (max-width: 600px) {
  .quick-form {
    flex-direction: column;
  }

  .quick-form input,
  .quick-form select,
  .quick-form button {
    flex: none;
    width: 100%;
  }

  .quick-form button {
    padding: 12px 24px;
  }
}

/* ===== SECTIONS ===== */
.section {
  padding: 96px 0;
}

.section-dark {
  background: var(--navy);
}

#about {
  background: linear-gradient(135deg, rgba(15, 32, 68, 0.9) 0%, rgba(22, 47, 94, 0.75) 100%), url('img/strategy.png') center/cover no-repeat;
}

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

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header.light .section-label {
  color: var(--accent-light);
}

.section-header.light h2 {
  color: var(--white);
}

.section-header.light p {
  color: rgba(255, 255, 255, .7);
}

.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 12px;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  letter-spacing: -.01em;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1rem;
  color: var(--text-med);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--accent) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(30, 63, 122, .2);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--color) 10%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform var(--transition);
}

.service-card:hover .service-icon-wrap {
  transform: scale(1.08);
}

.service-icon {
  width: 26px;
  height: 26px;
  color: var(--color, var(--navy));
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -.01em;
}

.service-card p {
  font-size: .88rem;
  color: var(--text-med);
  line-height: 1.65;
  margin-bottom: 18px;
}

.service-link {
  font-size: .85rem;
  font-weight: 700;
  color: var(--navy-light);
  transition: color var(--transition), gap var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.service-link:hover {
  color: var(--accent-dark);
}

/* ===== ABOUT / WHY US ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}

.about-lead {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .85);
  line-height: 1.7;
  margin-bottom: 32px;
}

.about-lead strong {
  color: var(--accent-light);
  font-weight: 700;
}

.advantages-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.adv-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.adv-check {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: var(--accent);
  color: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: .9rem;
  margin-top: 2px;
  box-shadow: 0 4px 12px rgba(201, 168, 76, .35);
}

.adv-item strong {
  display: block;
  color: var(--white);
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.adv-item span {
  font-size: .85rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.5;
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-card-item {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: background var(--transition), transform var(--transition);
}

.about-card-item:hover {
  background: rgba(255, 255, 255, .1);
  transform: translateY(-3px);
}

.aci-num {
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .1em;
  color: var(--accent);
  margin-bottom: 10px;
}

.about-card-item strong {
  display: block;
  color: var(--white);
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.about-card-item span {
  font-size: .78rem;
  color: rgba(255, 255, 255, .55);
}

/* ===== HOW WE WORK ===== */
.steps-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.step-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  animation: fadeInUp .6s ease both;
}

.step-item:nth-child(1) {
  animation-delay: .1s;
}

.step-item:nth-child(3) {
  animation-delay: .2s;
}

.step-item:nth-child(5) {
  animation-delay: .3s;
}

.step-item:nth-child(7) {
  animation-delay: .4s;
}

.step-icon {
  position: relative;
  width: 140px;
  height: 140px;
  /*border-radius: 50%;*/
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
}

.step-png-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* border-radius: 50%;*/
  /*box-shadow: 0 8px 24px rgba(15, 32, 68, .15);*/
  border: 4px solid var(--white);
}

.step-icon svg {
  display: none;
}

.step-num {
  position: absolute;
  top: -4px;
  left: -4px;
  background: radial-gradient(circle at top left, #f3da97 0%, #c9a84c 80%);
  color: var(--white);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.step-content h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.step-content p {
  font-size: .85rem;
  color: var(--text-med);
  line-height: 1.6;
}

.step-connector {
  flex-shrink: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, rgba(201, 168, 76, 0.3) 0%, var(--accent) 50%, rgba(201, 168, 76, 0.3) 100%);
  margin-top: 70px;
}

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 5rem;
  color: var(--light-bg);
  font-family: 'Playfair Display', serif;
  line-height: 1;
  pointer-events: none;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review-stars {
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review-card p {
  font-size: .9rem;
  color: var(--text-med);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}

.review-card cite {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-style: normal;
}

.review-card cite strong {
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
}

.review-card cite span {
  font-size: .78rem;
  color: var(--text-light);
}

/* ===== FAQ ===== */
.faq-container {
  max-width: 820px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-item[open] {
  border-color: var(--navy-light);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 700;
  font-size: .95rem;
  color: var(--navy);
  list-style: none;
  user-select: none;
  transition: background var(--transition);
  gap: 16px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--navy-light);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover {
  background: var(--off-white);
}

.faq-body {
  padding: 0 24px 20px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.faq-body p {
  font-size: .9rem;
  color: var(--text-med);
  line-height: 1.7;
}

.faq-body strong {
  color: var(--navy);
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--navy);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  align-items: start;
}

.cta-text .section-label {
  color: var(--accent-light);
}

.cta-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  margin: 12px 0 16px;
}

.cta-text>p {
  color: rgba(255, 255, 255, .7);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 36px;
}

.cta-contacts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
}

.cta-contact-item:hover {
  background: rgba(255, 255, 255, .1);
  transform: translateX(4px);
}

.cta-contact-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 44px;
  text-align: center;
}

.cta-contact-item strong {
  display: block;
  color: var(--white);
  font-size: .95rem;
  font-weight: 700;
}

.cta-contact-item span {
  font-size: .8rem;
  color: rgba(255, 255, 255, .55);
}

.cta-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
}

.cta-form-wrap h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 24px;
  text-align: center;
}

/* ===== FOOTER ===== */
.footer {
  background: #070e1f;
  padding: 60px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-brand-link {
  margin-bottom: 16px;
}

.footer-brand-link .brand-text strong {
  color: var(--white);
}

.footer-brand-link .brand-text span {
  color: rgba(255, 255, 255, .4);
}

.footer-brand>p {
  font-size: .85rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-messengers {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.messenger-btn {
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 20px;
  color: rgba(255, 255, 255, .7);
  font-size: .8rem;
  font-weight: 600;
  transition: all var(--transition);
}

.messenger-btn:hover {
  background: rgba(255, 255, 255, .1);
  color: var(--white);
  border-color: rgba(255, 255, 255, .3);
}

.footer-col h4 {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col li a {
  font-size: .88rem;
  color: rgba(255, 255, 255, .6);
  transition: color var(--transition);
}

.footer-col li a:hover {
  color: var(--white);
}

.footer-col li:not(:has(a)) {
  font-size: .88rem;
  color: rgba(255, 255, 255, .5);
}

.footer-bottom {
  padding: 20px 0;
  background: rgba(0, 0, 0, .2);
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .78rem;
  color: rgba(255, 255, 255, .35);
}

/* ===== FAB CALL ===== */
.fab-call {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--navy);
  padding: 14px 22px;
  border-radius: 50px;
  font-weight: 800;
  font-size: .95rem;
  box-shadow: 0 8px 30px rgba(201, 168, 76, .5);
  transition: all var(--transition);
  animation: fabPulse 3s ease infinite;
}

.fab-call:hover {
  background: var(--accent-light);
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 40px rgba(201, 168, 76, .6);
  animation: none;
}

.fab-call svg {
  width: 20px;
  height: 20px;
  fill: var(--navy);
  flex-shrink: 0;
}

@keyframes fabPulse {

  0%,
  100% {
    box-shadow: 0 8px 30px rgba(201, 168, 76, .5);
  }

  50% {
    box-shadow: 0 8px 50px rgba(201, 168, 76, .75);
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lead-card {
    max-width: 540px;
    margin: 0 auto;
  }

  .hero {
    min-height: auto;
    padding: 60px 0 40px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .scroll-indicator {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-cards {
    grid-template-columns: repeat(4, 1fr);
  }

  .cta-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .cta-form-wrap {
    max-width: 560px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .topbar-left {
    display: none;
  }

  .topbar-right {
    width: 100%;
    justify-content: space-between;
  }

  .main-nav {
    display: none;
  }

  .burger {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }

  .stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .stat-divider {
    display: none;
  }

  .section {
    padding: 64px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .steps-wrap {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .step-connector {
    width: 2px;
    height: 40px;
  }

  .step-item {
    flex-direction: row;
    text-align: left;
    gap: 20px;
    padding: 0;
  }

  .step-icon {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .about-cards {
    grid-template-columns: 1fr 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .fab-call span {
    display: none;
  }

  .fab-call {
    padding: 16px;
    border-radius: 50%;
  }

  .fab-call svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .btn-lg {
    width: 100%;
    justify-content: center;
  }

  .about-cards {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .lead-card {
    padding: 24px 20px;
  }

  .cta-form-wrap {
    padding: 24px 20px;
  }

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== LAWYER / ABOUT SECTION ===== */
.section-lawyer {
  background: linear-gradient(135deg, var(--off-white) 0%, var(--light-bg) 100%);
  position: relative;
  overflow: hidden;
}

.section-lawyer::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 168, 76, .08) 0%, transparent 70%);
  pointer-events: none;
}

.lawyer-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 72px;
  align-items: center;
}

.lawyer-photo-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lawyer-photo-placeholder {
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 60%, #1a3a6e 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.lawyer-photo-placeholder::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(15, 32, 68, .8), transparent);
}

.lawyer-photo-inner {
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, .1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, .2);
}

.lawyer-photo-inner svg {
  width: 64px;
  height: 64px;
  stroke: rgba(255, 255, 255, .5);
}

.lawyer-photo-badge {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  background: var(--accent);
  color: var(--navy);
  padding: 6px 20px;
  border-radius: 50px;
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.lawyer-credentials {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-sm);
}

.credential-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .88rem;
  color: var(--text-med);
  font-weight: 500;
}

.cred-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

.lawyer-text .section-label {
  margin-bottom: 8px;
}

.lawyer-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  letter-spacing: -.01em;
  margin-bottom: 20px;
}

.lawyer-lead {
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 14px;
}

.lawyer-sub {
  font-size: .92rem;
  color: var(--text-med);
  line-height: 1.7;
  margin-bottom: 28px;
}

.lawyer-sub strong {
  color: var(--navy);
  font-weight: 700;
}

.lawyer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.lawyer-tags span {
  background: rgba(15, 32, 68, .07);
  color: var(--navy);
  border: 1px solid rgba(15, 32, 68, .12);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: background var(--transition), color var(--transition);
}

.lawyer-tags span:hover {
  background: var(--navy);
  color: var(--white);
}

/* Responsive lawyer section */
@media (max-width: 1024px) {
  .lawyer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lawyer-photo-wrap {
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
  }

  .lawyer-photo-placeholder {
    width: 200px;
    flex-shrink: 0;
    aspect-ratio: auto;
    height: 260px;
  }

  .lawyer-credentials {
    flex: 1;
  }
}

@media (max-width: 600px) {
  .lawyer-photo-wrap {
    flex-direction: column;
  }

  .lawyer-photo-placeholder {
    width: 100%;
    height: 240px;
  }
}

/* ===== STICKY MOBILE CTA BAR ===== */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9990;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 24px rgba(15, 32, 68, .12);
  padding: 10px 16px;
}

.mobile-sticky-cta-inner {
  display: flex;
  gap: 10px;
}

.mobile-sticky-cta .btn {
  flex: 1;
  padding: 12px 8px;
  font-size: .88rem;
}

@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: block;
  }

  .fab-call {
    bottom: 80px;
  }

  body {
    padding-bottom: 70px;
  }
}