/* Fonts: Inter, Playfair Display */
:root {
  --bg: #0e0f11;
  --panel: #121418;
  --muted: #a9b0bd;
  --text: #e8edf2;
  --brand: #c7a35f; /* warm gold */
  --brand-600: #b38e49;
  --accent: #2f6a8e;
  --success: #3bb273;
  --danger: #d96a6a;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --elev-1: 0 6px 24px rgba(0, 0, 0, 0.25);
  --elev-2: 0 18px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  color: var(--text);
  background: linear-gradient(135deg, #121418 0%, #1a1d24 100%);
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}
.grid {
  display: grid;
  gap: 2rem;
}
.grid-2 {
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .grid-2 {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.btn {
  display: inline-block;
  background: var(--brand);
  color: #1b1d21;
  border-radius: 999px;
  padding: 0.8rem 1.2rem;
  font-weight: 600;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, background 0.2s ease;
}
.btn:hover {
  transform: translateY(-2px);
  background: var(--brand-600);
}
.btn-lg {
  padding: 1rem 1.4rem;
}
.btn-sm {
  padding: 0.5rem 0.9rem;
}
.link {
  color: var(--muted);
  margin-left: 1rem;
}
.link:hover {
  color: var(--text);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14, 15, 17, 0.7);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
  transition: padding 0.25s ease;
}
.site-header.shrink .header-inner {
  padding: 0.4rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(160deg, var(--brand), #e8c887);
  color: #15171b;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 1px;
}
.brand-text {
  display: grid;
  line-height: 1;
}
.brand-name {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  letter-spacing: 0.6px;
}
.brand-sub {
  font-size: 0.8rem;
  color: var(--muted);
}

.nav-toggle {
  display: inline-grid;
  gap: 4px;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.nav-toggle .bar {
  width: 26px;
  height: 2px;
  background: var(--text);
  display: block;
}

.primary-nav {
  position: fixed;
  inset: 60px 0 auto 0;
  background: rgba(10, 11, 13, 0.98);
  transform: translateY(-120%);
  transition: transform 0.25s ease;
}
.primary-nav ul {
  list-style: none;
  margin: 0;
  padding: 1rem 1.2rem;
  display: grid;
  gap: 0.6rem;
}
.primary-nav a {
  color: var(--muted);
  position: relative;
}
.primary-nav a.active {
  color: var(--text);
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--brand);
  transition: width 0.25s ease;
}
.primary-nav a:hover::after,
.primary-nav a.active::after {
  width: 100%;
}
.primary-nav a:hover {
  color: var(--text);
}
.primary-nav.open {
  transform: translateY(0);
}

@media (min-width: 960px) {
  .nav-toggle {
    display: none;
  }
  .primary-nav {
    position: static;
    inset: auto;
    background: transparent;
    transform: none;
  }
  .primary-nav ul {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 0;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: center;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("https://images.unsplash.com/photo-1555374018-13a8994ab246?q=80&w=1920&auto=format&fit=crop")
    center/cover no-repeat;
  filter: brightness(0.45) saturate(90%);
}
.hero-content {
  text-align: center;
  padding: 7rem 0 5rem;
}
.hero .hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw + 1rem, 3.2rem);
  margin: 0 0 0.8rem;
}
.hero p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 1.4rem;
}

/* Sections */
.section {
  padding: 4.6rem 0;
}
.section h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 2vw + 0.8rem, 2.2rem);
  margin: 0 0 1rem;
}
.kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--brand);
  background: linear-gradient(
    90deg,
    rgba(199, 163, 95, 0.15),
    rgba(199, 163, 95, 0)
  );
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  margin-bottom: 0.6rem;
  font-size: 0.78rem;
}
.list-check {
  padding-left: 1.1rem;
  margin: 1rem 0 0;
}
.list-check li {
  margin: 0.4rem 0;
  color: var(--muted);
}

.about-card {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  align-items: stretch;
}
.stat {
  background: linear-gradient(180deg, #15181d, #0d0f12);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
}
.stat-value {
  font-size: 1.6rem;
  font-weight: 700;
  color: #f1e4c5;
}
.stat-label {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Services */
#services {
  background: #0f1217;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

#services .kicker {
  display: block;
  text-align: center;
  color: var(--brand);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-size: 0.85rem;
}

#services h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 4rem 0;
  color: #fff;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

#services h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--brand);
}

#services .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

#services .card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-align: center;
}

#services .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

#services .card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

#services .card:hover::before {
  opacity: 1;
}

#services .icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: rgba(199, 163, 95, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  transition: all 0.3s ease;
}

#services .card:hover .icon {
  background: var(--brand);
  color: #0f1217;
  transform: rotate(8deg) scale(1.05);
}

#services .card h3 {
  font-size: 1.5rem;
  margin: 0 0 1rem 0;
  color: #fff;
  font-weight: 600;
  transition: color 0.3s ease;
}

#services .card p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  font-size: 1rem;
  transition: color 0.3s ease;
}

#services .card:hover h3,
#services .card:hover p {
  color: #fff;
}

/* Features (Why Choose) */
.features .cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1rem;
}
@media (min-width: 720px) {
  .features .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1100px) {
  .features .cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Practice Areas */
#practice {
  padding: 6rem 0;
  background: #0a0c0f;
  position: relative;
  overflow: hidden;
}

#practice .kicker {
  display: block;
  text-align: center;
  color: var(--brand);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-size: 0.85rem;
}

#practice h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 4rem 0;
  color: #fff;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

#practice h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--brand);
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.practice-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 1.8rem 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
  cursor: default;
}

.practice-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--brand);
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.practice-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.practice-item:hover::before {
  height: 100%;
}

.practice-item span {
  color: #fff;
  font-weight: 500;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.practice-item:hover span {
  color: var(--brand);
}

/* Team */
.team {
  background: linear-gradient(135deg, #121418 0%, #1a1d24 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.team::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(199, 163, 95, 0.3), transparent);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
  position: relative;
  z-index: 1;
}

.section-intro {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-top: 1.5rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.team-card {
  background: var(--panel);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--elev-1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--elev-2);
  border-color: rgba(199, 163, 95, 0.2);
}

.team-avatar {
  width: 130px;
  height: 130px;
  margin: 2.5rem auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #1b1d21;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.75rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(199, 163, 95, 0.2);
  border: 4px solid var(--panel);
  position: relative;
  z-index: 1;
}

.team-content {
  padding: 0 2.25rem 2.5rem;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.team-content h3 {
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 0.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.team-role {
  color: var(--brand);
  font-weight: 600;
  margin-bottom: 1.75rem;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.team-qualifications {
  text-align: left;
  margin-top: auto;
  background: rgba(255, 255, 255, 0.02);
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.team-qualifications p {
  color: var(--muted);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
  font-size: 0.95rem;
  line-height: 1.6;
}

.team-qualifications i {
  margin-right: 0.75rem;
  color: var(--brand);
  width: 20px;
  text-align: center;
  margin-top: 0.2em;
}

.team-credentials {
  background: rgba(199, 163, 95, 0.1);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin: 1.25rem 0 0 !important;
  font-size: 0.9rem !important;
  color: var(--brand) !important;
  font-weight: 500;
  display: flex;
  align-items: center;
  border-left: 3px solid var(--brand);
  backdrop-filter: blur(5px);
}

.team-credentials i {
  font-size: 1.1em;
  margin-right: 0.6rem;
  color: var(--brand);
}

/* Testimonials */
.testimonials .slider {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #14171c, #0f1216);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--elev-1);
}
.slides {
  display: flex;
  transition: transform 0.4s ease;
}
.slide {
  min-width: 100%;
  padding: 1rem;
}
.slide blockquote {
  margin: 0 0 0.8rem;
  font-size: 1.05rem;
  line-height: 1.6;
}
.slide figcaption {
  color: var(--muted);
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
}
.slider-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}
.slider-btn.prev {
  left: 8px;
}
.slider-btn.next {
  right: 8px;
}
.dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.8rem;
}
.dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
}
.dots button.active {
  background: var(--brand);
}

/* Contact */
.contact .map-wrap {
  display: grid;
  gap: 1rem;
}
.map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--panel);
}
.map iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
  filter: grayscale(10%) contrast(95%);
}
.contact-details {
  color: var(--muted);
  margin-top: 0.6rem;
}
.contact-form {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 1rem;
}
.form-row {
  display: grid;
  margin-bottom: 0.8rem;
}
label {
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
  color: var(--muted);
}
input,
textarea {
  background: #0c0e11;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 0.8rem;
  font: inherit;
}
input:focus,
textarea:focus {
  outline: 2px solid var(--brand);
  border-color: transparent;
}
.form-note {
  color: var(--success);
  margin-top: 0.6rem;
  min-height: 1.2rem;
}

@media (min-width: 900px) {
  .contact .map-wrap {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #0c0d10;
  margin-top: 2rem;
}
.footer-grid {
  display: grid;
  gap: 1rem;
  padding: 2rem 0 1rem;
  align-items: start;
}
.footer-links {
  display: grid;
  gap: 0.5rem;
}
.footer-links a {
  color: var(--muted);
}
.footer-links a:hover {
  color: var(--text);
}
.footer-copy {
  color: var(--muted);
  margin-top: 0.4rem;
}
.socials {
  display: flex;
  gap: 0.6rem;
}
.social svg {
  width: 26px;
  height: 26px;
  fill: var(--muted);
  transition: fill 0.2s ease;
}
.social:hover svg {
  fill: var(--brand);
}
.footer-bottom {
  padding: 0.8rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 0.9rem;
}

/* Utilities */
.section.services {
  padding-top: 3rem;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* About Section */
#about {
  padding: 6rem 0;
  background: #0f1217;
  position: relative;
  overflow: hidden;
}

#about .container {
  position: relative;
  z-index: 1;
}

#about .kicker {
  display: inline-block;
  color: var(--brand);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-size: 0.85rem;
  position: relative;
  padding-left: 1.5rem;
}

#about .kicker::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 2px;
  background: var(--brand);
}

#about h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 1.5rem 0;
  color: #fff;
  line-height: 1.2;
}

#about p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 1.05rem;
  max-width: 90%;
}

.about-content {
  position: relative;
  z-index: 2;
}

.about-highlight {
  color: var(--brand);
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.about-highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(199, 163, 95, 0.3);
  z-index: -1;
  transition: height 0.3s ease;
}

.about-highlight:hover::after {
  height: 10px;
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.list-check li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  color: #e0e0e0;
  font-size: 1.05rem;
  line-height: 1.6;
}

.list-check li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: bold;
  font-size: 1.1rem;
}

.about-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--brand);
  transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.about-card:hover::before {
  height: 100%;
}

.stat {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1.5rem;
}

.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.stat:last-child {
  margin-bottom: 0;
}

.stat-value {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: var(--brand);
  line-height: 1.2;
  margin-bottom: 0.3rem;
  font-family: 'Playfair Display', serif;
}

.stat-label {
  display: block;
  font-size: 1.1rem;
  color: #e0e0e0;
  font-weight: 500;
}

/* Grid Layout */
.grid-2 {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .grid-2 {
    gap: 3rem;
  }
  
  .about-card {
    padding: 2rem;
  }
  
  .stat-value {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  #about h2 {
    font-size: 2rem;
  }
  
  #about p {
    max-width: 100%;
  }
  
  .about-card {
    max-width: 400px;
    margin: 0 auto;
  }
}

/* Why Choose Us Section */
#why {
  background: #0a0c0f;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

#why .container {
  position: relative;
  z-index: 1;
}

#why .kicker {
  display: block;
  text-align: center;
  color: var(--brand);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-size: 0.85rem;
}

#why h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 4rem 0;
  color: #fff;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

#why h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--brand);
}

#why .cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

#why .card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

#why .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--brand);
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#why .card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

#why .card:hover::before {
  height: 100%;
}

#why .card-content {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

#why .icon {
  width: 60px;
  height: 60px;
  background: rgba(199, 163, 95, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--brand);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

#why .card:hover .icon {
  background: var(--brand);
  color: #0a0c0f;
  transform: rotate(5deg) scale(1.05);
}

#why .card-text {
  flex: 1;
}

#why .card h3 {
  font-size: 1.35rem;
  margin: 0 0 0.8rem 0;
  color: #fff;
  font-weight: 600;
  transition: color 0.3s ease;
}

#why .card p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  font-size: 1rem;
  transition: color 0.3s ease;
}

#why .card:hover h3,
#why .card:hover p {
  color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
  #why .cards {
    grid-template-columns: 1fr;
  }
  
  #why .card {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  #why h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
  
  #why .card-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  #why .icon {
    margin-bottom: 1rem;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .practice-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  #services h2,
  #practice h2 {
    font-size: 2rem;
  }
  
  #services .cards,
  .practice-grid {
    grid-template-columns: 1fr;
  }
  
  #services .card,
  .practice-item {
    padding: 1.8rem 1.5rem;
  }
}
