/* ================================================
   LINGUA FRANCA — Design System
   Premium Dark Theme + Glassmorphism
   ================================================ */

:root {
    --color-dark: #0A0C1A;
    --color-dark-card: #111428;
    --color-dark-card2: #0F1225;
    --color-gold: #C9A227;
    --color-gold-light: #E5C760;
    --color-gold-dim: rgba(201, 162, 39, 0.15);
    --color-accent: #3D5AFE;
    --color-accent-light: #7B93FF;
    --color-accent-dim: rgba(61, 90, 254, 0.15);
    --color-muted: #94A3B8;
    --color-white: #ffffff;
    --color-border: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 16px;
    --radius-sm: 10px;
}

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

html { scroll-behavior: smooth; }

body {
    background-color: var(--color-dark);
    color: var(--color-white);
    font-family: 'DM Sans', system-ui, sans-serif;
    overflow-x: hidden;
    line-height: 1.65;
    font-optical-sizing: auto;
}

/* Cormorant Garamond — элегантные заголовки */
.font-display,
h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-feature-settings: 'kern' 1, 'liga' 1;
    letter-spacing: 0.01em;
}

/* Усиленный трекинг для отображения badge-лейблов */
.badge-label,
.footer-heading,
.price-lang-header {
    font-family: 'DM Sans', system-ui, sans-serif;
    letter-spacing: 1.5px;
}

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

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--color-dark); }
::-webkit-scrollbar-thumb { background: var(--color-gold); border-radius: 3px; }

/* ================================================
   PARTICLE CANVAS
   ================================================ */
#particles-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* ================================================
   HEADER
   ================================================ */
#header {
    background: transparent;
    transition: var(--transition);
}

#header.scrolled {
    background: rgba(10, 12, 26, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Logo */
.logo-emblem {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.4);
    flex-shrink: 0;
}

.logo-emblem-sm { width: 38px; height: 38px; border-radius: 8px; }

.logo-letters {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 800;
    font-size: 15px;
    color: var(--color-dark);
    letter-spacing: 1px;
    font-style: italic;
}

/* Nav Links */
.nav-link {
    color: var(--color-muted);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    padding-bottom: 2px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 1px;
    background: var(--color-gold);
    transition: var(--transition);
}

.nav-link:hover { color: var(--color-white); }
.nav-link:hover::after { width: 100%; }

/* Mobile Menu */
.mobile-menu {
    background: rgba(10, 12, 26, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open { transform: translateX(0); }

.nav-link-mobile {
    color: var(--color-muted);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    transition: var(--transition);
    font-family: 'Playfair Display', serif;
}

.nav-link-mobile:hover { color: var(--color-gold); }

/* Burger Lines */
.burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: var(--transition);
}

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

/* ================================================
   BUTTONS
   ================================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--color-gold), #A07B15);
    color: var(--color-dark);
    font-weight: 700;
    font-size: 14px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
    opacity: 0;
    transition: var(--transition);
}

.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201, 162, 39, 0.4); }

.btn-primary-lg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--color-gold), #A07B15);
    color: var(--color-dark);
    font-weight: 700;
    font-size: 16px;
    border-radius: var(--radius);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary-lg:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(201, 162, 39, 0.45);
}

.btn-outline-lg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    background: transparent;
    color: var(--color-white);
    font-weight: 600;
    font-size: 16px;
    border-radius: var(--radius);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}

.btn-outline-lg:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-gold);
    transform: translateY(-3px);
    color: var(--color-gold);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: transparent;
    color: var(--color-white);
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.btn-outline:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background: var(--color-gold-dim);
}

.btn-course {
    display: inline-block;
    color: var(--color-gold);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.btn-course:hover {
    color: var(--color-gold-light);
    transform: translateX(4px);
}

/* ================================================
   GLASS CARDS
   ================================================ */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.glass-card:hover {
    border-color: rgba(201, 162, 39, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(201, 162, 39, 0.05);
    transform: translateY(-4px);
}

.glass-card-sm {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
}

/* ================================================
   TYPOGRAPHY & UTILITIES
   ================================================ */
.text-gradient {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.badge-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: var(--color-gold-dim);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 50px;
    color: var(--color-gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ================================================
   SECTION DECORATIONS
   ================================================ */
.section-bg-glow { position: absolute; width: 600px; height: 600px; border-radius: 50%; pointer-events: none; z-index: 0; }
.left-glow { background: radial-gradient(circle, rgba(201, 162, 39, 0.06) 0%, transparent 70%); left: -200px; top: 50%; transform: translateY(-50%); }
.right-glow { background: radial-gradient(circle, rgba(61, 90, 254, 0.08) 0%, transparent 70%); right: -200px; top: 50%; transform: translateY(-50%); }

/* ================================================
   HERO SECTION
   ================================================ */
.hero-bg img { filter: brightness(0.5); }

.hero-overlay {
    background: linear-gradient(
        to bottom,
        rgba(10, 12, 26, 0.3) 0%,
        rgba(10, 12, 26, 0.2) 50%,
        rgba(10, 12, 26, 0.8) 100%
    );
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
    animation: float 8s ease-in-out infinite;
}

.orb-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.15) 0%, transparent 70%);
    top: -100px; right: -100px;
}

.orb-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(61, 90, 254, 0.12) 0%, transparent 70%);
    bottom: -50px; left: -50px;
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

/* Stat items */
.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
}

/* Scroll indicator */
.scroll-indicator { text-align: center; }

.scroll-mouse {
    width: 26px; height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 13px;
    margin: 0 auto 8px;
    position: relative;
}

.scroll-wheel {
    width: 3px; height: 8px;
    background: var(--color-gold);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%; transform: translateX(-50%);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(14px); opacity: 0; }
}

/* ================================================
   ABOUT SECTION
   ================================================ */
.about-img-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.about-img-badge {
    position: absolute;
    bottom: 20px;
    right: -20px;
    padding: 16px 20px;
    text-align: center;
    min-width: 120px;
}

.about-border-decor {
    position: absolute;
    bottom: -20px; left: -20px;
    width: 60%; height: 60%;
    border: 2px solid var(--color-gold);
    border-radius: var(--radius);
    opacity: 0.3;
    z-index: -1;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.feature-icon {
    font-size: 24px;
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    background: var(--color-gold-dim);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ================================================
   COURSES SECTION
   ================================================ */
.course-card { overflow: hidden; }

.course-img-block { position: relative; }

.course-flag {
    position: absolute;
    top: 12px; right: 12px;
    background: rgba(10, 12, 26, 0.8);
    backdrop-filter: blur(10px);
    padding: 8px;
    border-radius: var(--radius-sm);
    font-size: 24px;
    border: 1px solid var(--glass-border);
}

.course-tags { display: flex; flex-wrap: wrap; gap: 6px; }

.tag {
    display: inline-block;
    padding: 4px 10px;
    background: var(--color-accent-dim);
    border: 1px solid rgba(61, 90, 254, 0.3);
    border-radius: 50px;
    color: var(--color-accent-light);
    font-size: 11px;
    font-weight: 600;
}

.level-bar { display: flex; align-items: center; gap: 8px; }

.level-track {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.level-fill {
    height: 100%;
    background: linear-gradient(to right, var(--color-accent), var(--color-gold));
    border-radius: 2px;
    transition: width 1s ease-out;
}

/* Format cards */
.format-card { padding: 24px 20px; }

.format-icon {
    font-size: 32px;
    margin-bottom: 10px;
    display: block;
}

/* ================================================
   TRANSLATION SECTION
   ================================================ */
.translation-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-muted);
    font-size: 15px;
}

.translation-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--color-gold);
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(201, 162, 39, 0.6);
}

.lang-pairs-block { margin-top: 4px; }

.lang-pair-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 13px;
    color: var(--color-muted);
}

.translation-badge-1, .translation-badge-2 {
    position: absolute;
    padding: 12px 16px;
    min-width: 160px;
}

.translation-badge-1 { top: 20px; left: -20px; }
.translation-badge-2 { bottom: 30px; right: -20px; }

/* ================================================
   PRICES SECTION
   ================================================ */
.price-icon {
    width: 46px; height: 46px;
    background: var(--color-gold-dim);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.price-divider {
    height: 1px;
    background: var(--color-border);
}

.price-amount {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-gold);
}

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonials-carousel { position: relative; }

.testimonials-track {
    display: flex;
    gap: 24px;
    overflow: hidden;
}

.testimonial-card {
    flex: 0 0 100%;
    padding: 32px;
    transition: opacity 0.4s ease;
}

@media (min-width: 768px) {
    .testimonials-track { overflow: visible; }
    .testimonial-card {
        flex: 0 0 calc(50% - 12px);
        display: none;
    }
    .testimonial-card.active,
    .testimonial-card.next { display: block; }
}

.stars { color: var(--color-gold); font-size: 18px; letter-spacing: 2px; }

.testimonial-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: var(--color-white);
    flex-shrink: 0;
}

.testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.carousel-btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--color-white);
    font-size: 22px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--color-gold-dim);
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.testimonials-dots { display: flex; gap: 8px; }

.dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--color-gold);
    width: 24px;
    border-radius: 4px;
    box-shadow: 0 0 8px rgba(201, 162, 39, 0.6);
}

/* ================================================
   CONTACT SECTION
   ================================================ */
.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
}

.contact-info-icon {
    width: 46px; height: 46px;
    background: var(--color-gold-dim);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

/* Form */
.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-muted);
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: var(--color-white);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: var(--transition);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.form-input::placeholder { color: rgba(148, 163, 184, 0.5); }

.form-input:focus {
    border-color: var(--color-gold);
    background: rgba(201, 162, 39, 0.05);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

.form-input option { background: #111428; color: var(--color-white); }

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

/* Social Buttons */
.social-btn {
    width: 44px; height: 44px;
    border-radius: var(--radius-sm);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--color-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--color-gold-dim);
    border-color: var(--color-gold);
    color: var(--color-gold);
    transform: translateY(-3px);
}

/* ================================================
   FOOTER
   ================================================ */
.footer-heading {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-gold);
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a, .footer-links li {
    color: var(--color-muted);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover { color: var(--color-gold); }

/* ================================================
   BACK TO TOP
   ================================================ */
.back-to-top {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 46px; height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold), #A07B15);
    color: var(--color-dark);
    border: none;
    cursor: pointer;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.5);
}

/* ================================================
   ANIMATIONS
   ================================================ */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up.animate,
.reveal-left.animate,
.reveal-right.animate {
    opacity: 1;
    transform: translate(0, 0);
}

/* ================================================
   CONTAINER
   ================================================ */
.container { max-width: 1200px; margin: 0 auto; }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 768px) {
    .about-img-badge { right: 10px; bottom: 10px; }
    .about-border-decor { display: none; }
    .translation-badge-1 { left: 10px; top: 10px; }
    .translation-badge-2 { right: 10px; bottom: 10px; }

    .testimonial-card {
        flex: 0 0 100%;
        display: none;
    }
    .testimonial-card.active { display: block; }

    h1 { font-size: 2.8rem !important; }
}

@media (max-width: 480px) {
    .btn-primary-lg, .btn-outline-lg {
        padding: 14px 28px;
        font-size: 14px;
    }
    h1 { font-size: 2.2rem !important; }
}

/* Pulse glow animation */
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(201, 162, 39, 0.3); }
    50% { box-shadow: 0 0 40px rgba(201, 162, 39, 0.6); }
}

.logo-emblem { animation: pulseGlow 3s ease-in-out infinite; }

/* ================================================
   LOGO IMAGE (image.png)
   ================================================ */
.logo-img-main {
    height: 44px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(201, 162, 39, 0.4));
    transition: var(--transition);
}

.logo-img-main:hover {
    filter: drop-shadow(0 0 18px rgba(201, 162, 39, 0.7));
    transform: scale(1.05);
}

.logo-img-footer {
    height: 36px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(201, 162, 39, 0.3));
    opacity: 0.9;
}

/* ================================================
   PRICE TABLES — COURSES
   ================================================ */
.price-lang-header {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-gold);
    padding: 8px 0 10px;
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
    margin-bottom: 4px;
}

.price-table { display: flex; flex-direction: column; }

.price-table-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
}

.price-table-row:last-child { border-bottom: none; }

.price-table-name {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.price-table-detail {
    text-align: center;
    min-width: 60px;
    white-space: nowrap;
}

.price-table-amount {
    text-align: right;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-gold);
    white-space: nowrap;
    min-width: 110px;
}

/* ================================================
   PRICE TABLES — TRANSLATION (letters table)
   ================================================ */
.price-trans-table { border: 1px solid var(--glass-border); border-radius: var(--radius-sm); overflow: hidden; }

.price-trans-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(201, 162, 39, 0.08);
    font-size: 12px;
    font-weight: 700;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-trans-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    padding: 12px 14px;
    border-top: 1px solid var(--glass-border);
    font-size: 14px;
    color: var(--color-muted);
    align-items: center;
}

/* ================================================
   PRICE TABLE — NOTARY
   ================================================ */
.price-notary-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
}

.price-notary-row:last-child { border-bottom: none; }

.price-amount-sm {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--color-gold);
    white-space: nowrap;
    text-align: right;
    flex-shrink: 0;
}

/* Gold light color (used for prices) */
.text-gold-light { color: var(--color-gold-light); }
