/*
 * Project Will - 2025 Premium Estate Planning
 * Trustworthy, Modern, Professional
 */

/* ============================================
   RESET & BASE
   ============================================ */

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

:root {
    /* Premium Color Palette */
    --primary: #0c1829;
    --primary-light: #1a2d47;
    --primary-soft: #2a4164;
    --accent: #b8860b;
    --accent-light: #daa520;
    --accent-soft: rgba(184, 134, 11, 0.1);

    --surface: #ffffff;
    --surface-warm: #fdfcfa;
    --surface-muted: #f8f7f5;
    --surface-alt: #f3f1ed;

    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-muted: #6b6b6b;
    --text-light: #8a8a8a;
    --text-inverse: #ffffff;

    --border: #e8e6e1;
    --border-light: #f0eeea;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
    --shadow-xl: 0 24px 60px rgba(0,0,0,0.12);

    /* Typography */
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.25s ease;
    --transition-slow: 0.4s ease;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--surface);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.2;
    color: var(--primary);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 500;
}

h4 {
    font-size: 1.125rem;
    font-weight: 600;
}

p {
    margin-bottom: 1.25em;
}

p:last-child {
    margin-bottom: 0;
}

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

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

/* ============================================
   LAYOUT
   ============================================ */

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.container--narrow {
    max-width: 800px;
}

.container--wide {
    max-width: 1440px;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-fast);
}

.btn--primary {
    background: var(--primary);
    color: var(--text-inverse);
    box-shadow: var(--shadow-md);
}

.btn--primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--primary:hover svg {
    transform: translateX(3px);
}

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

.btn--secondary:hover {
    background: var(--primary);
    color: var(--text-inverse);
}

.btn--accent {
    background: var(--accent);
    color: var(--text-inverse);
}

.btn--accent:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--light {
    background: var(--surface);
    color: var(--primary);
    box-shadow: var(--shadow-md);
}

.btn--light:hover {
    background: var(--surface-muted);
}

.btn--large {
    padding: 20px 44px;
    font-size: 16px;
}

.btn--small {
    padding: 12px 24px;
    font-size: 14px;
}

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

/* ============================================
   HEADER
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition-base);
}

.header--scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: var(--border-light);
    box-shadow: var(--shadow-sm);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.header__logo {
    display: flex;
    align-items: center;
}

.header__logo img {
    height: 42px;
    width: auto;
}

.header__right {
    display: flex;
    align-items: center;
    gap: 48px;
}

.header__nav {
    display: flex;
    gap: 40px;
}

.header__nav a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 4px 0;
}

.header__nav a:hover,
.header__nav a.active {
    color: var(--primary);
}

.header__nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition-base);
}

.header__nav a:hover::after,
.header__nav a.active::after {
    width: 100%;
}

.header__phone {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 15px;
    color: var(--primary);
    padding: 12px 24px;
    background: var(--surface-alt);
    border-radius: 50px;
    transition: all var(--transition-base);
}

.header__phone:hover {
    background: var(--primary);
    color: var(--text-inverse);
}

.header__phone svg {
    width: 18px;
    height: 18px;
}

/* Mobile Menu */
.header__mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.header__mobile-toggle svg {
    width: 26px;
    height: 26px;
    color: var(--primary);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 82px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--surface);
    padding: 32px 24px;
    z-index: 999;
    overflow-y: auto;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
}

.mobile-menu__nav a {
    display: block;
    padding: 20px 0;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-light);
}

.mobile-menu__phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
    padding: 20px;
    background: var(--primary);
    color: var(--text-inverse);
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
}

@media (max-width: 960px) {
    .header__nav {
        display: none;
    }

    .header__phone {
        display: none;
    }

    .header__mobile-toggle {
        display: block;
    }
}

/* ============================================
   HERO - PREMIUM STYLE
   ============================================ */

.hero {
    padding: 160px 0 100px;
    background: linear-gradient(to right, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 50%, rgba(255,255,255,0.4) 100%),
                url('/will-writing-consultation-uk-clients.png');
    background-size: cover;
    background-position: right center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at 100% 0%, rgba(184, 134, 11, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero__content {
    max-width: 720px;
    position: relative;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: var(--space-lg);
}

.hero__badge svg {
    width: 16px;
    height: 16px;
}

.hero__title {
    margin-bottom: var(--space-lg);
    line-height: 1.15;
}

.hero__title span {
    color: var(--accent);
}

.hero__subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-2xl);
    line-height: 1.7;
    max-width: 600px;
}

.hero__cta {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
    margin-bottom: var(--space-3xl);
}

.hero__trust {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--border);
}

.hero__trust-row {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-muted);
    font-size: 14px;
}

.hero__trust-item svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
}

@media (max-width: 768px) {
    .hero {
        padding: 130px 0 60px;
    }

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

    .hero__trust-row {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-md);
    }
}

/* ============================================
   TRUST BAR
   ============================================ */

.trust-bar {
    padding: var(--space-2xl) 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border-light);
}

.trust-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3xl);
    flex-wrap: wrap;
}

.trust-bar__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.trust-bar__number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--primary);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.trust-bar__label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

@media (max-width: 600px) {
    .trust-bar__inner {
        gap: var(--space-xl);
    }

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

/* ============================================
   SECTIONS
   ============================================ */

.section {
    padding: var(--space-4xl) 0;
}

.section--muted {
    background: var(--surface-muted);
}

.section--warm {
    background: var(--surface-warm);
}

.section--dark {
    background: var(--primary);
    color: var(--text-inverse);
}

.section--dark h2,
.section--dark h3 {
    color: var(--text-inverse);
}

.section--dark p {
    color: rgba(255, 255, 255, 0.75);
}

.section--bordered {
    border-bottom: 1px solid var(--border-light);
}

.section__header {
    margin-bottom: var(--space-3xl);
}

.section__header--centered {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section__eyebrow {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: var(--space-md);
}

.section__title {
    margin-bottom: var(--space-md);
}

.section__subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
}

.section__header--centered .section__subtitle {
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .section {
        padding: var(--space-3xl) 0;
    }

    .section__header {
        margin-bottom: var(--space-2xl);
    }
}

/* ============================================
   FOUNDER SECTION
   ============================================ */

.founder {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.founder__image {
    position: relative;
}

.founder__image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
}

.founder__image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--accent);
    border-radius: 12px;
    z-index: -1;
}

.founder__content h2 {
    margin-bottom: var(--space-lg);
}

.founder__content p {
    color: var(--text-secondary);
    font-size: 1.0625rem;
}

.founder__name {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--primary) !important;
    margin-top: var(--space-lg);
}

.founder__credentials {
    display: flex;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border);
}

.founder__credential {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 14px;
    color: var(--text-muted);
}

.founder__credential svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
}

@media (max-width: 900px) {
    .founder {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .founder__image {
        max-width: 360px;
    }
}

/* ============================================
   SERVICES - PREMIUM CARDS
   ============================================ */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.service-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: var(--space-2xl);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

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

.service-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

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

.service-card__icon {
    width: 56px;
    height: 56px;
    background: var(--accent-soft);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
}

.service-card__icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent);
}

.service-card__title {
    margin-bottom: var(--space-md);
}

.service-card__desc {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: var(--space-lg);
}

.service-card__price {
    display: flex;
    align-items: baseline;
    gap: var(--space-sm);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border-light);
}

.service-card__price-amount {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--primary);
}

.service-card__price-note {
    font-size: 14px;
    color: var(--text-muted);
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 14px;
    color: var(--accent);
    margin-top: var(--space-md);
}

.service-card__link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-fast);
}

.service-card__link:hover svg {
    transform: translateX(4px);
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Alternative service list style */
.services-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-xl);
    padding: var(--space-xl);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all var(--transition-base);
}

.service-item:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.service-item__content {
    flex: 1;
}

.service-item__title {
    margin-bottom: var(--space-sm);
}

.service-item__desc {
    color: var(--text-secondary);
    font-size: 15px;
}

.service-item__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 14px;
    color: var(--accent);
    margin-top: var(--space-md);
}

.service-item__link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-fast);
}

.service-item__link:hover svg {
    transform: translateX(4px);
}

.service-item__price {
    text-align: right;
    flex-shrink: 0;
}

.service-item__price-amount {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--primary);
}

.service-item__price-note {
    font-size: 13px;
    color: var(--text-muted);
}

@media (max-width: 700px) {
    .service-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-item__price {
        text-align: left;
        padding-top: var(--space-md);
        border-top: 1px solid var(--border-light);
        width: 100%;
    }
}

/* ============================================
   FEATURES GRID
   ============================================ */

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl) var(--space-3xl);
}

.feature {
    position: relative;
    padding-left: var(--space-xl);
}

.feature::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 3px;
    height: 24px;
    background: var(--accent);
    border-radius: 2px;
}

.feature__title {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
}

.feature__text {
    font-size: 15px;
    color: var(--text-secondary);
}

.section--dark .feature__text {
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 700px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonial {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial__quote {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.6;
    color: var(--primary);
    margin-bottom: var(--space-xl);
}

.testimonial__quote::before {
    content: '"';
    display: block;
    font-size: 4rem;
    line-height: 0.5;
    color: var(--accent);
    opacity: 0.5;
    margin-bottom: var(--space-md);
}

.testimonial__author {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.testimonial__location {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.testimonial__note {
    font-size: 13px;
    color: var(--text-light);
    font-style: italic;
}

/* Multiple testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.testimonial-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: var(--space-xl);
}

.testimonial-card__stars {
    display: flex;
    gap: 4px;
    margin-bottom: var(--space-md);
}

.testimonial-card__stars svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
    fill: var(--accent);
}

.testimonial-card__text {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.testimonial-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--surface-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--accent);
    font-size: 18px;
}

.testimonial-card__name {
    font-weight: 600;
    color: var(--text-primary);
}

.testimonial-card__location {
    font-size: 13px;
    color: var(--text-muted);
}

@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   TWO COLUMN LAYOUTS
   ============================================ */

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.two-col--reverse {
    direction: rtl;
}

.two-col--reverse > * {
    direction: ltr;
}

@media (max-width: 800px) {
    .two-col {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .two-col--reverse {
        direction: ltr;
    }
}

/* Question list styling */
.question-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.question-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: var(--space-lg) var(--space-xl);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--transition-base);
    cursor: default;
}

.question-item:hover {
    border-color: var(--accent);
    color: var(--primary);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -25%;
    width: 50%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(184, 134, 11, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta__title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-inverse);
    margin-bottom: var(--space-md);
}

.cta__text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-xl);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta__phone {
    display: inline-block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    color: var(--accent-light);
    margin-bottom: var(--space-md);
    transition: color var(--transition-fast);
}

.cta__phone:hover {
    color: var(--text-inverse);
}

.cta__hours {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.75);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer__brand {
    max-width: 300px;
}

.footer__brand-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-inverse);
    margin-bottom: var(--space-md);
}

.footer__brand p {
    font-size: 15px;
    line-height: 1.7;
}

.footer__heading {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-inverse);
    margin-bottom: var(--space-lg);
}

.footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.footer__links a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.footer__links a:hover {
    color: var(--text-inverse);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer__legal {
    display: flex;
    gap: var(--space-lg);
}

.footer__legal a {
    color: rgba(255, 255, 255, 0.5);
}

.footer__legal a:hover {
    color: var(--text-inverse);
}

@media (max-width: 900px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }

    .footer__brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .footer__grid {
        grid-template-columns: 1fr;
    }

    .footer__bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
}

/* ============================================
   UTILITIES
   ============================================ */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0 !important; }
.mb-md { margin-bottom: var(--space-md) !important; }
.mb-lg { margin-bottom: var(--space-lg) !important; }
.mb-xl { margin-bottom: var(--space-xl) !important; }
.mb-2xl { margin-bottom: var(--space-2xl) !important; }

.mt-lg { margin-top: var(--space-lg) !important; }
.mt-xl { margin-top: var(--space-xl) !important; }

.pt-lg { padding-top: var(--space-lg) !important; }

/* ============================================
   PAGE-SPECIFIC: LPA
   ============================================ */

.page-hero {
    padding: 160px 0 80px;
    background: linear-gradient(180deg, var(--surface-warm) 0%, var(--surface) 100%);
}

.page-hero__content {
    max-width: 700px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
}

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

.breadcrumb svg {
    width: 14px;
    height: 14px;
}

/* Video embed */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* PDF viewer */
.pdf-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--surface);
}

.pdf-wrapper iframe {
    width: 100%;
    height: 800px;
    border: none;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 130px 0 60px;
    }

    .pdf-wrapper iframe {
        height: 500px;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}
