/* ========================================
   Юридическая консультация №1 — Main Stylesheet
   ======================================== */

:root {
    --accent: #c9a84c;
    --accent-dark: #a68a3a;
    --accent-light: #e0c96e;
    --dark: #0d1520;
    --dark-2: #152030;
    --dark-3: #1a2a40;
    --light: #f5f0e8;
    --light-2: #e8e0d0;
    --text: #c8c0b0;
    --text-light: #e0d8c8;
    --white: #ffffff;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Open Sans', 'Segoe UI', Arial, sans-serif;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --radius: 6px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--dark);
    color: var(--text);
    line-height: 1.7;
    font-size: 16px;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--accent-light);
}

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

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

.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 21, 32, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    padding: 0;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--light);
    flex-shrink: 0;
    margin-right: 40px;
}

.logo__icon {
    font-size: 2.2rem;
    color: var(--accent);
    line-height: 1;
}

.logo__img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    flex-shrink: 0;
}

.logo__text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--light);
    font-weight: 400;
}

.logo__title strong {
    color: var(--accent);
}

.logo__subtitle {
    font-size: 0.7rem;
    color: var(--text);
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

.nav__link {
    padding: 8px 12px;
    font-size: 0.85rem;
    color: var(--text);
    text-decoration: none;
    border-radius: var(--radius);
    transition: all var(--transition);
    white-space: nowrap;
}

.nav__link:hover,
.nav__link--active {
    color: var(--accent);
    background: rgba(201, 168, 76, 0.1);
}

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.burger span {
    width: 24px;
    height: 2px;
    background: var(--light);
    transition: all var(--transition);
    display: block;
}

.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all var(--transition);
    letter-spacing: 0.5px;
}

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

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

.btn--outline {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn--outline:hover {
    background: var(--accent);
    color: var(--dark);
}

.btn--full {
    width: 100%;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--dark);
    overflow: hidden;
    padding-top: 70px;
}

/* Animated background particles */
.hero__particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero__particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0;
    animation: particleFade 4s ease-in-out infinite;
}

@keyframes particleFade {
    0%, 100% { opacity: 0; transform: translateY(0) scale(0.5); }
    50% { opacity: 0.6; transform: translateY(-30px) scale(1); }
}

/* Glowing orbs */
.hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.hero__glow--1 {
    width: 500px;
    height: 500px;
    background: rgba(201, 168, 76, 0.07);
    top: 10%;
    left: -10%;
    animation: glowPulse 6s ease-in-out infinite;
}

.hero__glow--2 {
    width: 400px;
    height: 400px;
    background: rgba(201, 168, 76, 0.05);
    bottom: -10%;
    right: 10%;
    animation: glowPulse 8s ease-in-out 2s infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.15); }
}

/* Diagonal lines */
.hero__line {
    position: absolute;
    width: 1px;
    height: 200%;
    background: linear-gradient(180deg, transparent, rgba(201, 168, 76, 0.08), transparent);
    transform: rotate(-35deg);
    pointer-events: none;
    z-index: 0;
}

.hero__line--1 { left: 20%; top: -50%; animation: lineDrift 12s ease-in-out infinite; }
.hero__line--2 { left: 50%; top: -50%; animation: lineDrift 15s ease-in-out 3s infinite; }
.hero__line--3 { left: 75%; top: -50%; animation: lineDrift 10s ease-in-out 6s infinite; }

@keyframes lineDrift {
    0%, 100% { opacity: 0.3; transform: rotate(-35deg) translateX(0); }
    50% { opacity: 0.8; transform: rotate(-35deg) translateX(20px); }
}

/* Grid layout */
.hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: calc(100vh - 70px);
    padding-top: 40px;
    padding-bottom: 40px;
}

.hero__content {
    position: relative;
    z-index: 2;
}

/* Badge */
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 22px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 50px;
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease both;
    backdrop-filter: blur(8px);
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
}

/* Title */
.hero__title {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--light);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero__title-line {
    display: block;
    animation: fadeInUp 0.8s ease both;
    overflow: hidden;
}

.hero__title-line:nth-child(1) { animation-delay: 0.15s; }
.hero__title-line:nth-child(2) { animation-delay: 0.3s; }

.hero__title .text-accent {
    position: relative;
}

.hero__title .text-accent::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    animation: underlineGrow 1s ease 0.8s both;
}

@keyframes underlineGrow {
    from { transform: scaleX(0); transform-origin: left; }
    to { transform: scaleX(1); transform-origin: left; }
}

/* Subtitle */
.hero__subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 520px;
    animation: fadeInUp 0.8s ease 0.45s both;
}

/* Actions */
.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.55s both;
}

.btn--lg {
    padding: 16px 40px;
    font-size: 1.05rem;
}

/* Trust items */
.hero__trust {
    display: flex;
    gap: 24px;
    margin-top: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.7s both;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-size: 0.85rem;
    transition: color var(--transition);
}

.hero__trust-item:hover {
    color: var(--light);
}

.hero__trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.2);
    color: var(--accent);
    flex-shrink: 0;
    transition: all var(--transition);
}

.hero__trust-item:hover .hero__trust-icon {
    background: rgba(201, 168, 76, 0.2);
    border-color: var(--accent);
}

/* Glow button */
.btn--glow {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    overflow: hidden;
}

.btn--glow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn--glow:hover::before {
    width: 300px;
    height: 300px;
}

.btn--glow::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: calc(var(--radius) + 3px);
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.5), rgba(201, 168, 76, 0));
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition);
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.btn--glow:hover::after {
    opacity: 1;
    animation: none;
}

/* ========================================
   HERO VISUAL (right side)
   ======================================== */
.hero__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero__visual-inner {
    position: relative;
    width: 420px;
    height: 420px;
}

/* Rings backdrop SVG */
.hero__rings-svg {
    width: 100%;
    height: 100%;
    color: var(--accent);
    position: absolute;
    top: 0;
    left: 0;
}

/* Themis statue image */
.hero__themis {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 78%;
    height: auto;
    filter: drop-shadow(0 0 40px rgba(201, 168, 76, 0.25)) drop-shadow(0 20px 40px rgba(0,0,0,0.5));
    animation: themisGlow 5s ease-in-out infinite;
    z-index: 2;
}

@keyframes themisGlow {
    0%, 100% { filter: drop-shadow(0 0 30px rgba(201, 168, 76, 0.2)) drop-shadow(0 20px 40px rgba(0,0,0,0.5)); }
    50% { filter: drop-shadow(0 0 55px rgba(201, 168, 76, 0.45)) drop-shadow(0 20px 40px rgba(0,0,0,0.5)); }
}

.hero__ring--outer {
    opacity: 0.12;
    animation: ringRotate 30s linear infinite;
    transform-origin: 150px 150px;
}

.hero__ring--mid {
    opacity: 0.08;
    animation: ringRotate 20s linear infinite reverse;
    transform-origin: 150px 150px;
}

.hero__ring--inner {
    opacity: 0.15;
    stroke-dasharray: 8 12;
    animation: ringRotate 25s linear infinite;
    transform-origin: 150px 150px;
}

@keyframes ringRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Floating cards */
.hero__float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(21, 32, 48, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 10px;
    color: var(--light);
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 3;
}

.hero__float-card svg {
    color: var(--accent);
    flex-shrink: 0;
}

.hero__float-card--1 {
    top: 8%;
    right: 0;
    animation: floatCard 5s ease-in-out 0.5s infinite, fadeInUp 0.8s ease 0.8s both;
}

.hero__float-card--2 {
    top: 38%;
    left: -10%;
    animation: floatCard 6s ease-in-out 1s infinite, fadeInUp 0.8s ease 1s both;
}

.hero__float-card--3 {
    bottom: 5%;
    right: 5%;
    animation: floatCard 5.5s ease-in-out 1.5s infinite, fadeInUp 0.8s ease 1.2s both;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

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

/* ========================================
   STATS BAR
   ======================================== */
.stats-bar {
    background: var(--accent);
    padding: 0;
    position: relative;
    z-index: 2;
}

.stats-bar__grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 28px 0;
}

.stats-bar__item {
    flex: 1;
    text-align: center;
    padding: 8px 20px;
}

.stats-bar__number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.1;
}

.stats-bar__plus {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
}

.stats-bar__label {
    display: block;
    font-size: 0.85rem;
    color: rgba(13, 21, 32, 0.7);
    font-weight: 600;
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stats-bar__divider {
    width: 1px;
    height: 50px;
    background: rgba(13, 21, 32, 0.2);
    flex-shrink: 0;
}

/* ========================================
   PAGE HERO (inner pages)
   ======================================== */
.page-hero {
    background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
    padding: 140px 0 60px;
    border-bottom: 2px solid rgba(201, 168, 76, 0.3);
}

.page-hero__title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--light);
    margin-bottom: 0.5rem;
}

.page-hero__subtitle {
    font-size: 1.15rem;
    color: var(--text);
}

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

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

.section--accent {
    background: linear-gradient(135deg, var(--dark-3), var(--dark-2));
    border-top: 2px solid rgba(201, 168, 76, 0.2);
    border-bottom: 2px solid rgba(201, 168, 76, 0.2);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--light);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 16px auto 0;
    border-radius: 2px;
}

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

/* Section Header (new) */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header .section-title {
    margin-bottom: 1rem;
}

.section-header .section-title::after {
    margin: 16px auto 0;
}

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

.section-desc {
    font-size: 1.1rem;
    color: var(--text);
    max-width: 560px;
    margin: 1rem auto 0;
    line-height: 1.7;
}

/* ========================================
   ABOUT BRIEF (homepage)
   ======================================== */
.about-brief {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-brief__text p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.about-brief__text .btn {
    margin-top: 1rem;
}

.about-brief__features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 1.5rem 0;
}

.about-brief__feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.about-brief__feature svg {
    flex-shrink: 0;
}

.about-brief__visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-brief__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
}

.stat {
    text-align: center;
    padding: 30px 10px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.stat:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.1);
}

.stat--accent {
    background: rgba(201, 168, 76, 0.15);
    border-color: var(--accent);
}

.stat__number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent);
    font-weight: 700;
}

.stat__label {
    font-size: 0.9rem;
    color: var(--text);
    margin-top: 4px;
}

/* ========================================
   SERVICES GRID (homepage)
   ======================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    display: flex;
    flex-direction: column;
    padding: 40px 24px 32px;
    background: var(--dark-2);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: var(--radius);
    text-decoration: none;
    transition: all var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.service-card:hover {
    border-color: var(--accent);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    color: var(--text);
}

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

.service-card__icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 50%;
    color: var(--accent);
    transition: all var(--transition);
}

.service-card:hover .service-card__icon-wrap {
    background: var(--accent);
    color: var(--dark);
    transform: scale(1.1);
}

.service-card__icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.service-card__title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--light);
    margin-bottom: 12px;
}

.service-card__text {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.6;
    flex-grow: 1;
}

.service-card__link {
    display: inline-block;
    margin-top: 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    transition: all var(--transition);
}

.service-card:hover .service-card__link {
    letter-spacing: 1px;
}

/* ========================================
   LAWYER CARDS
   ======================================== */
.lawyers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.lawyer-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(201, 168, 76, 0.05);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: var(--radius);
}

.lawyer-card__photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent);
}

.lawyer-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lawyer-card__placeholder,
.lawyer-card__placeholder--lg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-3);
    font-size: 3rem;
    color: var(--accent);
}

.lawyer-card__placeholder--lg {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 3px solid var(--accent);
    font-size: 4rem;
}

.lawyer-card__name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--light);
    margin-bottom: 4px;
}

.lawyer-card__position {
    color: var(--accent);
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.lawyer-card__exp {
    font-size: 0.85rem;
    color: var(--text);
}

/* ========================================
   LAWYER PROFILE (about page)
   ======================================== */
.lawyer-profile {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 40px;
    padding: 40px 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    align-items: start;
}

.lawyer-profile__photo img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--accent);
}

.lawyer-profile__name {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--light);
    margin-bottom: 4px;
}

.lawyer-profile__position {
    color: var(--accent);
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.lawyer-profile__exp {
    margin-bottom: 12px;
}

.lawyer-profile__desc {
    margin-bottom: 16px;
    line-height: 1.7;
}

.lawyer-profile__contacts {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.lawyer-profile__contacts span {
    background: rgba(201, 168, 76, 0.1);
    padding: 6px 14px;
    border-radius: var(--radius);
    font-size: 0.9rem;
}

/* Diplomas */
.diplomas-section {
    padding: 30px 0;
}

.diplomas-section__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--light);
    margin-bottom: 16px;
}

.diplomas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.diploma-card {
    cursor: pointer;
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}

.diploma-card:hover {
    border-color: var(--accent);
    transform: scale(1.02);
}

.diploma-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.diploma-card__caption {
    padding: 8px 12px;
    font-size: 0.85rem;
    text-align: center;
    color: var(--text);
}

/* ========================================
   ABOUT INTRO / INTROS
   ======================================== */
.about-intro,
.consult-intro,
.court-intro,
.service-intro,
.practice-intro,
.prices-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-intro p,
.consult-intro p,
.court-intro p,
.service-intro p,
.practice-intro p,
.prices-intro p {
    margin-bottom: 1rem;
}

/* ========================================
   CONSULTATION GRID
   ======================================== */
.consult-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.consult-card {
    padding: 30px 24px;
    background: var(--dark-2);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.consult-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
}

.consult-card__icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.consult-card__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--light);
    margin-bottom: 10px;
}

.consult-card__text {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Conclusions */
.conclusions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.conclusion-card {
    padding: 30px;
    background: rgba(201, 168, 76, 0.05);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: var(--radius);
    text-align: center;
}

.conclusion-card__icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.conclusion-card__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--light);
    margin-bottom: 12px;
}

/* ========================================
   COURT GRID
   ======================================== */
.court-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 2rem;
}

.court-card {
    padding: 24px;
    background: rgba(201, 168, 76, 0.05);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: var(--radius);
    transition: border-color var(--transition);
}

.court-card:hover {
    border-color: var(--accent);
}

.court-card__title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--light);
    margin-bottom: 8px;
}

.court-services {
    margin-top: 2rem;
    padding: 30px;
    background: rgba(201, 168, 76, 0.05);
    border-radius: var(--radius);
}

.court-services h3 {
    font-family: var(--font-heading);
    color: var(--light);
    margin-bottom: 16px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 8px 0 8px 28px;
    position: relative;
}

.feature-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* ========================================
   SERVICES DETAIL (individuals/legal pages)
   ======================================== */
.services-grid-detail {
    display: grid;
    gap: 40px;
}

.service-detail {
    padding: 40px;
    background: var(--dark-2);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: var(--radius);
}

.service-detail__icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.service-detail__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--light);
    margin-bottom: 12px;
}

.service-detail__text {
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.service-detail__list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.service-detail__list li {
    padding: 6px 0 6px 24px;
    position: relative;
}

.service-detail__list li::before {
    content: '\2192';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.service-block {
    margin-bottom: 3rem;
}

.service-block__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--light);
    margin-bottom: 1.5rem;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(201, 168, 76, 0.2);
}

.services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.service-item {
    padding: 20px;
    background: rgba(201, 168, 76, 0.05);
    border-radius: var(--radius);
    border: 1px solid rgba(201, 168, 76, 0.1);
}

.service-item__name {
    font-size: 1rem;
    color: var(--light);
    margin-bottom: 6px;
}

/* Documents */
.documents-section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.doc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 1.5rem;
}

.doc-item {
    padding: 16px;
    background: rgba(201, 168, 76, 0.05);
    border-radius: var(--radius);
    border: 1px solid rgba(201, 168, 76, 0.1);
    font-size: 0.95rem;
}

/* ========================================
   PRACTICE / CASES
   ======================================== */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.case-card {
    padding: 30px;
    background: var(--dark-2);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: var(--radius);
    transition: border-color var(--transition);
}

.case-card:hover {
    border-color: var(--accent);
}

.case-card__category {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(201, 168, 76, 0.15);
    color: var(--accent);
    font-size: 0.8rem;
    border-radius: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.case-card__title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--light);
    margin-bottom: 12px;
}

.case-card__desc {
    font-size: 0.95rem;
    margin-bottom: 16px;
    line-height: 1.6;
}

.case-card__result {
    padding: 12px 16px;
    background: rgba(201, 168, 76, 0.08);
    border-left: 3px solid var(--accent);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: 0.95rem;
}

.case-card__date {
    display: inline-block;
    margin-top: 12px;
    color: var(--text);
    font-size: 0.85rem;
}

/* ========================================
   PRICES
   ======================================== */
.price-section {
    margin-bottom: 3rem;
}

.price-section__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--light);
    margin-bottom: 1rem;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(201, 168, 76, 0.2);
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}

.price-table th {
    text-align: left;
    padding: 14px 16px;
    background: rgba(201, 168, 76, 0.1);
    color: var(--light);
    font-weight: 600;
    font-size: 0.9rem;
    border-bottom: 2px solid rgba(201, 168, 76, 0.3);
}

.price-table td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

.price-table tr:hover td {
    background: rgba(201, 168, 76, 0.03);
}

.price-table__price {
    color: var(--accent);
    font-weight: 600;
    white-space: nowrap;
}

.prices-note {
    padding: 20px 24px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: var(--radius);
    font-size: 0.95rem;
}

/* ========================================
   ADVANTAGES
   ======================================== */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.advantage {
    text-align: center;
    padding: 30px 20px;
}

.advantage__icon {
    display: inline-flex;
    width: 60px;
    height: 60px;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--dark);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 16px;
}

.advantage h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--light);
    margin-bottom: 8px;
}

/* ========================================
   CTA
   ======================================== */
.cta__text {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: var(--text-light);
}

.cta__form-wrap {
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   CONTACTS PAGE
   ======================================== */
.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contacts-form-section h2,
.contacts-info-section h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--light);
    margin-bottom: 1rem;
}

.contact-blocks {
    display: grid;
    gap: 20px;
    margin-bottom: 2rem;
}

.contact-block {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    background: rgba(201, 168, 76, 0.05);
    border-radius: var(--radius);
    border: 1px solid rgba(201, 168, 76, 0.1);
}

.contact-block__icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 40px;
    text-align: center;
}

.contact-block__content {
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-block__content a {
    color: var(--accent);
}

.staff-contacts {
    margin-top: 2rem;
}

.staff-contacts h3 {
    font-family: var(--font-heading);
    color: var(--light);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.staff-contact {
    padding: 12px 16px;
    margin-bottom: 8px;
    background: rgba(201, 168, 76, 0.05);
    border-radius: var(--radius);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ========================================
   FORMS
   ======================================== */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-input,
.contact-form select {
    width: 100%;
    padding: 14px 18px;
    background: var(--dark-2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    color: var(--text-light);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: border-color var(--transition);
}

.form-input:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form-error {
    color: #e05555;
    font-size: 0.875rem;
    margin-top: 4px;
}

/* ========================================
   MESSAGES (flash)
   ======================================== */
.messages {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
}

.message {
    padding: 14px 20px;
    border-radius: var(--radius);
    margin-bottom: 8px;
    font-size: 0.95rem;
    box-shadow: var(--shadow);
}

.message--success {
    background: #1a4a2a;
    color: #6fcf97;
    border: 1px solid #6fcf97;
}

.message--error {
    background: #4a1a1a;
    color: #eb5757;
    border: 1px solid #eb5757;
}

.contact-form-success {
    padding: 24px 20px;
    border-radius: var(--radius);
    background: #1a4a2a;
    color: #6fcf97;
    border: 1px solid #6fcf97;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--dark);
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    padding: 60px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--light);
    margin-bottom: 16px;
}

.footer__text {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer__nav {
    list-style: none;
}

.footer__nav li {
    margin-bottom: 8px;
}

.footer__nav a {
    color: var(--text);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer__nav a:hover {
    color: var(--accent);
}

.footer__contacts {
    list-style: none;
}

.footer__contacts li {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.footer__icon {
    margin-right: 4px;
}

.footer__bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    color: var(--text);
}

/* ========================================
   LIGHTBOX
   ======================================== */
.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-overlay img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--radius);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

/* ========================================
   ADVANTAGES (homepage enhanced)
   ======================================== */
.advantages-grid--home {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.advantage-card {
    padding: 36px 28px;
    background: rgba(201, 168, 76, 0.04);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.advantage-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.advantage-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(201, 168, 76, 0.12);
    border-radius: 12px;
    color: var(--accent);
    margin-bottom: 20px;
    transition: all var(--transition);
}

.advantage-card:hover .advantage-card__icon {
    background: var(--accent);
    color: var(--dark);
}

.advantage-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--light);
    margin-bottom: 10px;
}

.advantage-card p {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.6;
}

/* ========================================
   LAW CARDS (photo background)
   ======================================== */
.law-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.law-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    cursor: default;
    transition: transform var(--transition), box-shadow var(--transition);
}

.law-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
}

.law-card__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.65s ease;
}

.law-card:hover .law-card__bg {
    transform: scale(1.07);
}

.law-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(13, 21, 32, 0.96) 30%,
        rgba(13, 21, 32, 0.45) 70%,
        rgba(13, 21, 32, 0.2) 100%
    );
}

.law-card__content {
    position: relative;
    z-index: 1;
    padding: 28px 32px;
}

.law-card__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
    margin: 0 0 10px;
    letter-spacing: 0.02em;
}

.law-card__text {
    font-size: 0.88rem;
    color: rgba(210, 200, 185, 0.92);
    line-height: 1.65;
    margin: 0;
}

/* ========================================
   PROCESS (How we work)
   ======================================== */
.process {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
}

.process__step {
    flex: 1;
    text-align: center;
    padding: 0 16px;
    position: relative;
}

.process__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.1);
    border: 2px solid var(--accent);
    color: var(--accent);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    transition: all var(--transition);
}

.process__step:hover .process__number {
    background: var(--accent);
    color: var(--dark);
    transform: scale(1.1);
}

.process__content h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--light);
    margin-bottom: 8px;
}

.process__content p {
    font-size: 0.88rem;
    color: var(--text);
    line-height: 1.6;
}

.process__connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), rgba(201, 168, 76, 0.2));
    margin-top: 32px;
    flex-shrink: 0;
}

/* ========================================
   FAQ
   ======================================== */
.faq {
    max-width: 750px;
    margin: 0 auto;
}

.faq__item {
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.faq__item:first-child {
    border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--light);
    font-weight: 600;
    transition: color var(--transition);
    gap: 16px;
}

.faq__question:hover {
    color: var(--accent);
}

.faq__question svg {
    flex-shrink: 0;
    color: var(--accent);
    transition: transform var(--transition);
}

.faq__item.active .faq__question svg {
    transform: rotate(180deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq__item.active .faq__answer {
    max-height: 300px;
    padding-bottom: 20px;
}

.faq__answer p {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.7;
}

/* ========================================
   CTA Enhanced
   ======================================== */
.section--cta {
    position: relative;
    overflow: hidden;
}

.section--cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.05);
    pointer-events: none;
}

.section--cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -5%;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.04);
    pointer-events: none;
}

.cta {
    position: relative;
    z-index: 1;
}

.cta__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.12);
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.cta__note {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: var(--text);
    opacity: 0.7;
}

.cta__note svg {
    color: var(--accent);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

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

    .service-detail__list {
        grid-template-columns: 1fr;
    }

    .advantages-grid--home {
        grid-template-columns: repeat(2, 1fr);
    }

    .process {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .process__step {
        display: flex;
        align-items: flex-start;
        text-align: left;
        gap: 20px;
        padding: 0;
        width: 100%;
        max-width: 500px;
    }

    .process__number {
        flex-shrink: 0;
    }

    .process__connector {
        width: 2px;
        height: 30px;
        margin: 0 0 0 31px;
        background: linear-gradient(180deg, var(--accent), rgba(201, 168, 76, 0.2));
    }

    .hero__grid {
        grid-template-columns: 1fr;
        gap: 40px;
        min-height: auto;
        padding-top: 80px;
        padding-bottom: 60px;
    }

    .hero__visual-inner {
        width: 320px;
        height: 320px;
    }

    .hero__float-card--2 {
        left: 0;
    }

    .stats-bar__grid {
        flex-wrap: wrap;
    }

    .stats-bar__item {
        flex: 1 1 45%;
        padding: 12px 10px;
    }

    .stats-bar__divider {
        display: none;
    }
}

@media (max-width: 768px) {
    .burger {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        padding: 80px 20px 20px;
        gap: 0;
        transition: right var(--transition);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
        overflow-y: auto;
    }

    .nav.open {
        right: 0;
    }

    .nav__link {
        padding: 12px 16px;
        font-size: 1rem;
        width: 100%;
        border-radius: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .hero__title {
        font-size: 2.4rem;
    }

    .hero__subtitle {
        font-size: 1rem;
    }

    .hero__visual {
        display: none;
    }

    .hero__grid {
        grid-template-columns: 1fr;
        min-height: calc(100vh - 70px);
        padding-top: 60px;
    }

    .hero__trust {
        flex-direction: column;
        gap: 12px;
    }

    .hero__glow--1 {
        width: 300px;
        height: 300px;
    }

    .hero__glow--2 {
        width: 250px;
        height: 250px;
    }

    .page-hero__title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

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

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

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

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

    .lawyer-profile {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .lawyer-profile__photo {
        display: flex;
        justify-content: center;
    }

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

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

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

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

    .advantages-grid,
    .advantages-grid--home {
        grid-template-columns: 1fr;
    }

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

    .price-table {
        font-size: 0.85rem;
    }

    .price-table th,
    .price-table td {
        padding: 10px 8px;
    }

    .hero__actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .stats-bar__number {
        font-size: 2rem;
    }

    .stats-bar__plus {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 1.8rem;
    }

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

    .stat {
        padding: 20px;
    }

    .logo__title {
        font-size: 0.95rem;
    }

    .logo__subtitle {
        font-size: 0.6rem;
    }
}

/* ===== Breadcrumbs ===== */
.breadcrumbs {
    background: var(--bg-dark);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    padding: 12px 0;
}
.breadcrumbs__list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
    font-size: 0.85rem;
}
.breadcrumbs__list li {
    display: flex;
    align-items: center;
    color: var(--text-muted);
}
.breadcrumbs__list li + li::before {
    content: '›';
    margin: 0 8px;
    color: var(--gold);
    font-size: 1rem;
}
.breadcrumbs__list a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.2s;
}
.breadcrumbs__list a:hover {
    color: var(--gold-light);
}
