/*
 * Project Will - Main Stylesheet
 * Professional estate planning industry support
 * -------------------------------------------
 */

/* ==========================================
   CSS VARIABLES & FOUNDATIONS
   ========================================== */

:root {
    /* Colors - Warm, trustworthy palette */
    --navy: #1a2b47;
    --navy-light: #2d4263;
    --navy-dark: #0f1a2e;

    --sage: #4a7c6f;
    --sage-light: #5d9485;
    --sage-dark: #3a6358;

    --cream: #faf8f5;
    --cream-dark: #f0ede7;

    --warm-white: #fffefa;
    --text: #2c3e50;
    --text-light: #5a6a7a;
    --text-muted: #8896a6;

    --gold: #c9a55c;
    --gold-light: #ddc68a;

    --border: #e4e1dc;
    --border-light: #f0ede8;

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

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;

    /* Other */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --shadow-sm: 0 1px 3px rgba(26, 43, 71, 0.08);
    --shadow-md: 0 4px 12px rgba(26, 43, 71, 0.1);
    --shadow-lg: 0 8px 30px rgba(26, 43, 71, 0.12);
    --transition: 0.2s ease;

    --container-width: 1200px;
    --container-narrow: 900px;
}

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

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

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);
    background: var(--warm-white);
}

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

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

a:hover {
    color: var(--sage-dark);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--navy);
    line-height: 1.25;
}

h1 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    letter-spacing: -0.01em;
}

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

h4 {
    font-size: 1.125rem;
    font-family: var(--font-body);
    font-weight: 600;
}

p {
    margin-bottom: 1em;
}

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

.lead {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.6;
}

.eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--sage);
    margin-bottom: var(--space-sm);
    display: block;
}

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

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.container--narrow {
    max-width: var(--container-narrow);
}

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

.section--cream {
    background: var(--cream);
}

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

.section--navy h2,
.section--navy h3 {
    color: var(--warm-white);
}

.section--navy .eyebrow {
    color: var(--gold-light);
}

.section-header {
    max-width: 680px;
    margin-bottom: var(--space-xl);
}

.section-header--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: var(--space-lg);
}

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

.grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

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

@media (max-width: 1024px) {
    .grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid--2,
    .grid--3,
    .grid--4 {
        grid-template-columns: 1fr;
    }

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

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--warm-white);
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.header--scrolled {
    background: rgba(255, 254, 250, 0.97);
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
}

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

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

.header__nav {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.header__nav a {
    padding: 0.5rem 1rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.header__nav a:hover {
    color: var(--sage);
    background: var(--cream);
}

.header__nav a.active {
    color: var(--sage);
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown__trigger {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    cursor: pointer;
}

.nav-dropdown__trigger svg {
    width: 14px;
    height: 14px;
    transition: transform var(--transition);
}

.nav-dropdown:hover .nav-dropdown__trigger svg {
    transform: rotate(180deg);
}

.nav-dropdown__menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 220px;
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: var(--space-xs);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown__menu a {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
}

.nav-dropdown__menu a:hover {
    background: var(--cream);
}

/* Header CTA */
.header__cta {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-left: var(--space-md);
}

.header__phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--navy);
    font-size: 0.9375rem;
}

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

/* Mobile Toggle */
.header__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--navy);
}

.header__toggle svg {
    width: 24px;
    height: 24px;
}

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

    .header__toggle {
        display: block;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--warm-white);
    padding: var(--space-lg);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    z-index: 999;
}

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

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.mobile-menu__nav a {
    padding: 1rem;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text);
    border-bottom: 1px solid var(--border-light);
}

.mobile-menu__nav a:hover {
    color: var(--sage);
}

.mobile-menu__phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: var(--space-lg);
    padding: 1rem;
    background: var(--sage);
    color: white;
    border-radius: var(--radius-md);
    font-weight: 600;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

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

.btn--primary {
    background: var(--sage);
    color: white;
}

.btn--primary:hover {
    background: var(--sage-dark);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(74, 124, 111, 0.25);
}

.btn--secondary {
    background: var(--navy);
    color: white;
}

.btn--secondary:hover {
    background: var(--navy-dark);
    color: white;
    transform: translateY(-1px);
}

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

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

.btn--ghost {
    background: transparent;
    color: var(--sage);
    padding: 0.5rem 0;
}

.btn--ghost:hover {
    color: var(--sage-dark);
}

.btn--large {
    padding: 1.125rem 2.25rem;
    font-size: 1rem;
}

.btn--small {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    padding: calc(80px + var(--space-2xl)) 0 var(--space-2xl);
    background: linear-gradient(170deg, var(--cream) 0%, var(--warm-white) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, transparent 40%, rgba(74, 124, 111, 0.03) 100%);
    pointer-events: none;
}

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

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

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(74, 124, 111, 0.1);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--sage-dark);
    margin-bottom: var(--space-md);
}

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

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

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

.hero__subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: var(--space-lg);
    max-width: 540px;
}

.hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

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

.hero__stat {
    text-align: left;
}

.hero__stat-number {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.hero__stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.hero__image {
    position: relative;
}

.hero__image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__ctas {
        justify-content: center;
    }

    .hero__stats {
        justify-content: center;
    }

    .hero__image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .hero__stats {
        flex-direction: column;
        gap: var(--space-md);
        align-items: center;
    }

    .hero__stat {
        text-align: center;
    }
}

/* ==========================================
   CARDS
   ========================================== */

.card {
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: all var(--transition);
}

.card:hover {
    border-color: var(--border);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--sage-light), var(--sage));
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
}

.card__icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

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

.card__text {
    color: var(--text-light);
    margin-bottom: var(--space-md);
}

.card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-weight: 600;
    font-size: 0.9375rem;
}

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

.card__link:hover svg {
    transform: translateX(3px);
}

/* Service Card Variant */
.service-card {
    padding: var(--space-lg) var(--space-lg) var(--space-md);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: var(--space-lg);
    right: var(--space-lg);
    height: 3px;
    background: var(--sage);
    border-radius: 0 0 2px 2px;
    opacity: 0;
    transition: opacity var(--transition);
}

.service-card:hover::before {
    opacity: 1;
}

/* Feature Card */
.feature-card {
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
}

.feature-card .card__icon {
    margin-left: auto;
    margin-right: auto;
}

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

.testimonial {
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
}

.testimonial__stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: var(--space-md);
}

.testimonial__stars svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
    fill: var(--gold);
}

.testimonial__text {
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.testimonial__avatar {
    width: 48px;
    height: 48px;
    background: var(--navy);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.testimonial__name {
    font-weight: 600;
    color: var(--navy);
}

.testimonial__role {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ==========================================
   WHO WE HELP SECTION
   ========================================== */

.audience-card {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.audience-card:hover {
    border-color: var(--sage);
    box-shadow: var(--shadow-md);
}

.audience-card__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border-radius: var(--radius-md);
    color: var(--sage);
}

.audience-card__icon svg {
    width: 24px;
    height: 24px;
}

.audience-card__title {
    margin-bottom: 0.5rem;
}

.audience-card__text {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin-bottom: 0;
}

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

.cta-section {
    background: var(--navy);
    padding: var(--space-2xl) 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--warm-white);
    margin-bottom: var(--space-sm);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto var(--space-lg);
}

.cta-section .btn--primary {
    background: var(--gold);
    color: var(--navy);
}

.cta-section .btn--primary:hover {
    background: var(--gold-light);
}

/* Inline CTA */
.cta-inline {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
}

.cta-inline h3 {
    margin-bottom: 0.5rem;
}

.cta-inline p {
    color: var(--text-light);
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .cta-inline {
        flex-direction: column;
        text-align: center;
    }
}

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

.trust-bar {
    background: var(--warm-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: var(--space-lg) 0;
}

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

.trust-bar__item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.trust-bar__icon {
    color: var(--sage);
}

.trust-bar__icon svg {
    width: 24px;
    height: 24px;
}

.trust-bar__text {
    font-weight: 600;
    color: var(--navy);
}

/* Press Logos */
.press-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
    opacity: 0.6;
}

.press-logos img {
    height: 28px;
    width: auto;
    filter: grayscale(100%);
    transition: all var(--transition);
}

.press-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* ==========================================
   FORMS
   ========================================== */

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

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--text);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text);
    background: var(--warm-white);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--sage);
    box-shadow: 0 0 0 3px rgba(74, 124, 111, 0.1);
}

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

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-checkbox input {
    width: 20px;
    height: 20px;
    margin-top: 0.125rem;
    accent-color: var(--sage);
}

.form-checkbox label {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.5;
}

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

.footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-2xl) 0 0;
}

.footer a {
    color: rgba(255, 255, 255, 0.7);
}

.footer a:hover {
    color: white;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand p {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-top: var(--space-md);
    max-width: 320px;
}

.footer__heading {
    color: white;
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    font-family: var(--font-body);
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: 0.75rem;
}

.footer__links a {
    font-size: 0.9375rem;
}

.footer__contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    margin-bottom: 0.75rem;
}

.footer__contact svg {
    width: 16px;
    height: 16px;
    opacity: 0.7;
}

.footer__social {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.footer__social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.footer__social a:hover {
    background: var(--sage);
}

.footer__social svg {
    width: 20px;
    height: 20px;
}

/* Footer Newsletter */
.footer__newsletter {
    margin-top: var(--space-md);
}

.footer__newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.footer__newsletter input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    color: white;
    font-size: 0.9375rem;
}

.footer__newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer__newsletter button {
    padding: 0.75rem 1.25rem;
    background: var(--sage);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition);
}

.footer__newsletter button:hover {
    background: var(--sage-dark);
}

/* Footer Bottom */
.footer__bottom {
    padding: var(--space-lg) 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

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

.footer__legal a {
    font-size: 0.875rem;
}

.footer__copyright {
    font-size: 0.875rem;
}

@media (max-width: 1024px) {
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__brand {
        grid-column: span 2;
    }
}

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

    .footer__brand {
        grid-column: span 1;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

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

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

.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

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

.hidden { display: none; }

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

@media (min-width: 769px) {
    .hide-desktop { display: none; }
}

/* ==========================================
   PAGE-SPECIFIC: PRICING
   ========================================== */

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--warm-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.pricing-table th,
.pricing-table td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.pricing-table th {
    background: var(--navy);
    color: white;
    font-weight: 600;
    font-size: 0.9375rem;
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table tr:hover td {
    background: var(--cream);
}

.pricing-table .price {
    font-weight: 700;
    color: var(--sage);
    font-size: 1.125rem;
}

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

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

.animate-in {
    animation: fadeInUp 0.5s ease forwards;
}

/* ==========================================
   LUCIDE ICONS DEFAULT STYLING
   ========================================== */

[data-lucide] {
    width: 24px;
    height: 24px;
}
