/* ==========================================================================
   DocsJobsNow V2 Design System
   Based on ClinX Academy Design System
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Custom Properties (Design Tokens)
   -------------------------------------------------------------------------- */
:root {
    /* Backgrounds */
    --bg-linen: #F5F3EF;
    --bg-warm: #EBE8E2;
    --bg-warm-alt: #F0EDE7;
    --bg-navy: #1C2331;
    --bg-gold-light: #F9F6F0;

    /* Typography Colors */
    --text-dark: #222222;
    --text-medium: #4A4A4A;
    --text-light: #7A7A7A;

    /* Accents */
    --accent: #C45C3E;
    --accent-hover: #a84d33;
    --accent-gold: #B8860B;
    --accent-green: #4A7C59;

    /* Borders & UI */
    --border: #D8D4CC;
    --border-light: rgba(255, 255, 255, 0.1);

    /* Shadows */
    --shadow-hover: 0 12px 32px rgba(0, 0, 0, 0.08);
    --shadow-subtle: 0 8px 24px rgba(0, 0, 0, 0.06);

    /* Fonts */
    --serif: 'Instrument Serif', Georgia, serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* --------------------------------------------------------------------------
   Base Styles
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.v2 {
    font-family: var(--sans);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-medium);
    background-color: var(--bg-linen);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--serif);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text-dark);
    margin-top: 0;
}

h1 {
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    line-height: 1.05;
}

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

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.15rem;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.15rem;
    color: var(--text-medium);
}

.eyebrow {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-light);
    font-family: var(--sans);
    font-weight: 600;
}

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

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

/* --------------------------------------------------------------------------
   Layout & Containers
   -------------------------------------------------------------------------- */
.v2-container {
    max-width: 1040px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 32px;
    padding-right: 32px;
}

@media (max-width: 992px) {
    .v2-container {
        max-width: 960px;
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (max-width: 768px) {
    .v2-container {
        max-width: 720px;
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 480px) {
    .v2-container {
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* Section spacing */
.v2-section {
    padding: 5rem 0;
}

.v2-section--compact {
    padding: 3rem 0;
}

.v2-section--hero {
    padding: 1rem 0 5rem;
}

/* Background variations */
.v2-bg-linen {
    background-color: var(--bg-linen);
}

.v2-bg-warm {
    background-color: var(--bg-warm);
}

.v2-bg-warm-alt {
    background-color: var(--bg-warm-alt);
}

.v2-bg-navy {
    background-color: var(--bg-navy);
}

.v2-bg-gold-light {
    background-color: var(--bg-gold-light);
}

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */
.v2-navbar {
    background-color: var(--text-dark);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.v2-navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.v2-navbar__brand {
    font-family: var(--serif);
    font-size: 1.5rem;
    color: var(--bg-linen);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.v2-navbar__brand:hover {
    color: var(--bg-linen);
}

.v2-navbar__brand i {
    color: var(--accent);
}

.v2-navbar__toggle {
    display: none;
    background: none;
    border: none;
    color: var(--bg-linen);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.v2-navbar__menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.v2-navbar__link {
    color: rgba(245, 243, 239, 0.85);
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
    text-decoration: none;
}

.v2-navbar__link:hover {
    color: var(--bg-linen);
}

@media (max-width: 768px) {
    .v2-navbar__toggle {
        display: block;
    }

    .v2-navbar__menu {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        padding-top: 1rem;
    }

    .v2-navbar__menu.active {
        display: flex;
    }

    .v2-navbar__link {
        width: 100%;
        padding: 0.75rem 0;
    }
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.v2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: var(--sans);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.v2-btn--primary {
    background-color: var(--text-dark);
    color: var(--bg-linen);
}

.v2-btn--primary:hover {
    background-color: var(--accent);
    color: #fff;
    transform: translateY(-1px);
}

.v2-btn--gold {
    background-color: var(--accent-gold);
    color: #fff;
}

.v2-btn--gold:hover {
    background-color: #9a7209;
    color: #fff;
    transform: translateY(-1px);
}

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

.v2-btn--outline:hover {
    background-color: var(--text-dark);
    color: var(--bg-linen);
}

.v2-btn--outline-light {
    background-color: transparent;
    color: var(--bg-linen);
    border: 2px solid var(--bg-linen);
}

.v2-btn--outline-light:hover {
    background-color: var(--bg-linen);
    color: var(--text-dark);
}

.v2-btn--lg {
    padding: 1.25rem 2.5rem;
    font-size: 1rem;
}

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */
.v2-card {
    background-color: var(--bg-linen);
    border: 1px solid var(--border);
    padding: 2rem;
    transition: all 0.3s ease;
}

.v2-card--hover:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.v2-card--dark {
    background-color: var(--text-dark);
    border-color: var(--text-dark);
    color: var(--bg-linen);
}

.v2-card--dark h1,
.v2-card--dark h2,
.v2-card--dark h3,
.v2-card--dark h4,
.v2-card--dark h5 {
    color: var(--bg-linen);
}

.v2-card--accent-border {
    border-left: 3px solid var(--accent);
}

.v2-card--gold-border {
    border-left: 3px solid var(--accent-gold);
}

/* Icon box within cards */
.v2-icon-box {
    width: 48px;
    height: 48px;
    background-color: var(--text-dark);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-linen);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.v2-hero {
    background-color: var(--bg-linen);
    padding: 4rem 0 5rem;
}

.v2-hero__content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
}

.v2-hero__title {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

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

.v2-hero__text {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    max-width: 540px;
}

.v2-hero__image {
    text-align: center;
}

.v2-hero__image img {
    max-width: 100%;
    height: auto;
    width: 100%;
    max-width: 352px;
}

@media (max-width: 992px) {
    .v2-hero {
        padding: 3rem 0 4rem;
    }

    .v2-hero__content {
        gap: 2rem;
    }

    .v2-hero__image img {
        max-width: 308px;
    }
}

@media (max-width: 768px) {
    .v2-hero {
        padding: 2rem 0 3rem;
    }

    .v2-hero__content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .v2-hero__text {
        margin-left: auto;
        margin-right: auto;
    }

    .v2-hero__image {
        order: -1;
    }

    .v2-hero__image img {
        max-width: 242px;
        margin: 0 auto;
    }

    .v2-hero__title {
        font-size: clamp(2rem, 5vw, 2.75rem);
    }
}

@media (max-width: 480px) {
    .v2-hero__image img {
        max-width: 198px;
    }

    .v2-btn--lg {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
    }
}

/* --------------------------------------------------------------------------
   Stats
   -------------------------------------------------------------------------- */
.v2-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.v2-stat__number {
    font-family: var(--serif);
    font-size: 2.5rem;
    color: var(--accent);
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.v2-stat__label {
    font-size: 0.85rem;
    color: var(--text-light);
}

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

@media (max-width: 480px) {
    .v2-stats {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------------------------------
   Feature Grid
   -------------------------------------------------------------------------- */
.v2-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

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

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

.v2-feature-card {
    text-align: center;
}

.v2-feature-card__number {
    font-family: var(--serif);
    font-size: 4rem;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 1rem;
}

.v2-feature-card h5 {
    margin-bottom: 0.75rem;
}

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.v2-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

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

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

.v2-testimonial {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.v2-testimonial__stars {
    color: var(--accent-gold);
    font-size: 0.9rem;
}

.v2-testimonial__text {
    font-style: italic;
    color: var(--text-medium);
    flex-grow: 1;
}

.v2-testimonial__author {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Featured testimonial */
.v2-testimonial--featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--bg-navy) 0%, #2a3444 100%);
    color: var(--bg-linen);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.v2-testimonial--featured::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-family: var(--serif);
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
}

.v2-testimonial--featured .v2-testimonial__text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.v2-testimonial--featured .v2-testimonial__author {
    color: rgba(255, 255, 255, 0.7);
}

/* --------------------------------------------------------------------------
   Pricing Cards
   -------------------------------------------------------------------------- */
.v2-pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .v2-pricing-grid {
        grid-template-columns: 1fr;
    }
}

.v2-pricing-card {
    text-align: center;
}

.v2-pricing-card__title {
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.v2-pricing-card__price {
    font-family: var(--serif);
    font-size: 3.5rem;
    color: var(--text-dark);
    line-height: 1.1;
}

.v2-pricing-card__period {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.v2-pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.v2-pricing-card__features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.v2-pricing-card__features li i {
    margin-top: 0.2rem;
}

.v2-pricing-card__features .fa-check {
    color: var(--accent-green);
}

.v2-pricing-card__features .fa-times {
    color: var(--text-light);
}

.v2-pricing-card__features .fa-star {
    color: var(--accent-gold);
}

/* Highlight pricing card */
.v2-pricing-card--highlight {
    border: 2px solid var(--accent-gold);
    position: relative;
}

.v2-pricing-card--highlight::before {
    content: 'BEST VALUE';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-gold);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 0.25rem 1rem;
}

/* --------------------------------------------------------------------------
   Section Headers
   -------------------------------------------------------------------------- */
.v2-section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 3rem;
}

.v2-section-header h2 {
    margin-bottom: 0.75rem;
}

.v2-section-header p {
    color: var(--text-medium);
}

/* --------------------------------------------------------------------------
   Content Card (for text content)
   -------------------------------------------------------------------------- */
.v2-content-card {
    background-color: var(--bg-linen);
    border: 1px solid var(--border);
    padding: 2.5rem;
}

.v2-content-card--center {
    text-align: center;
}

/* --------------------------------------------------------------------------
   Accordion (for FAQ)
   -------------------------------------------------------------------------- */
.v2-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.v2-accordion-item {
    border: 1px solid var(--border);
    background-color: var(--bg-linen);
}

.v2-accordion-header {
    margin: 0;
}

.v2-accordion-button {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background-color: transparent;
    border: none;
    text-align: left;
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: background-color 0.2s ease;
}

.v2-accordion-button:hover {
    background-color: var(--bg-warm);
}

.v2-accordion-button::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent);
    transition: transform 0.2s ease;
}

.v2-accordion-button[aria-expanded="true"]::after {
    content: '−';
}

.v2-accordion-body {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-medium);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.v2-footer {
    background-color: var(--text-dark);
    color: rgba(245, 243, 239, 0.7);
    padding: 3rem 0 2rem;
}

.v2-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.v2-footer h5 {
    color: var(--bg-linen);
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.v2-footer a {
    color: rgba(245, 243, 239, 0.7);
}

.v2-footer a:hover {
    color: var(--bg-linen);
}

.v2-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
}

.v2-footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.5rem;
}

@media (max-width: 768px) {
    .v2-footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */
.v2-form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.v2-form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--sans);
    font-size: 1rem;
    color: var(--text-dark);
    background-color: #fff;
    border: 1px solid var(--border);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.v2-form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(196, 92, 62, 0.15);
}

.v2-form-control::placeholder {
    color: var(--text-light);
}

/* --------------------------------------------------------------------------
   Alert / Notice
   -------------------------------------------------------------------------- */
.v2-alert {
    padding: 1.25rem 1.5rem;
    border: 1px solid var(--border);
    background-color: #fff;
}

.v2-alert--info {
    border-left: 4px solid var(--accent);
}

.v2-alert h5 {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.v2-alert ul {
    margin: 0;
    padding-left: 1.25rem;
}

.v2-alert li {
    margin-bottom: 0.25rem;
}

/* --------------------------------------------------------------------------
   Badges
   -------------------------------------------------------------------------- */
.v2-badge {
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.25rem 0.5rem;
    font-weight: 600;
}

.v2-badge--gold {
    color: var(--accent-gold);
    background-color: rgba(184, 134, 11, 0.1);
}

.v2-badge--light {
    color: var(--text-dark);
    background-color: var(--bg-warm);
    border: 1px solid var(--border);
}

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */
.v2-text-center {
    text-align: center;
}

.v2-text-left {
    text-align: left;
}

.v2-text-right {
    text-align: right;
}

.v2-text-dark {
    color: var(--text-dark);
}

.v2-text-medium {
    color: var(--text-medium);
}

.v2-text-light {
    color: var(--text-light);
}

.v2-text-accent {
    color: var(--accent);
}

.v2-text-gold {
    color: var(--accent-gold);
}

.v2-text-white {
    color: #fff;
}

.v2-mb-0 {
    margin-bottom: 0;
}

.v2-mb-1 {
    margin-bottom: 0.5rem;
}

.v2-mb-2 {
    margin-bottom: 1rem;
}

.v2-mb-3 {
    margin-bottom: 1.5rem;
}

.v2-mb-4 {
    margin-bottom: 2rem;
}

.v2-mb-5 {
    margin-bottom: 3rem;
}

.v2-mt-0 {
    margin-top: 0;
}

.v2-mt-3 {
    margin-top: 1.5rem;
}

.v2-mt-4 {
    margin-top: 2rem;
}

.v2-mt-5 {
    margin-top: 3rem;
}

.v2-py-3 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.v2-py-4 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.v2-py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.v2-fw-bold {
    font-weight: 700;
}

.v2-fw-semibold {
    font-weight: 600;
}

.v2-fw-medium {
    font-weight: 500;
}

.v2-d-flex {
    display: flex;
}

.v2-flex-wrap {
    flex-wrap: wrap;
}

.v2-align-center {
    align-items: center;
}

.v2-justify-center {
    justify-content: center;
}

.v2-gap-2 {
    gap: 1rem;
}

.v2-gap-3 {
    gap: 1.5rem;
}

/* Grid utilities */
.v2-grid {
    display: grid;
    gap: 2rem;
}

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

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

@media (max-width: 768px) {

    .v2-grid--2,
    .v2-grid--3 {
        grid-template-columns: 1fr;
    }
}

/* Skip link for accessibility */
.v2-skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--text-dark);
    color: var(--bg-linen);
    padding: 8px 16px;
    text-decoration: none;
    z-index: 1001;
    border-radius: 0;
}

.v2-skip-link:focus {
    top: 6px;
}

/* --------------------------------------------------------------------------
   Animations
   -------------------------------------------------------------------------- */
.v2-fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.v2-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.v2-delay-1 {
    transition-delay: 0.1s;
}

.v2-delay-2 {
    transition-delay: 0.2s;
}

.v2-delay-3 {
    transition-delay: 0.3s;
}

/* Loading states */
.v2-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(245, 243, 239, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

body.v2.loading .v2-loading-overlay {
    display: flex;
}

.v2-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: v2-spin 0.8s linear infinite;
}

@keyframes v2-spin {
    to {
        transform: rotate(360deg);
    }
}

/* --------------------------------------------------------------------------
   CTA Section (Navy background)
   -------------------------------------------------------------------------- */
.v2-cta {
    background-color: var(--bg-navy);
    color: var(--bg-linen);
    padding: 4rem 0;
    text-align: center;
}

.v2-cta h2 {
    color: var(--bg-linen);
}

.v2-cta p {
    color: rgba(245, 243, 239, 0.85);
}

.v2-cta .v2-btn {
    margin: 0.5rem;
}

/* --------------------------------------------------------------------------
   Responsive Images
   -------------------------------------------------------------------------- */
.v2-img-fluid {
    max-width: 100%;
    height: auto;
}

.v2-img-rounded {
    border-radius: 8px;
}

.v2-img-shadow {
    box-shadow: var(--shadow-subtle);
}

/* --------------------------------------------------------------------------
   Lists
   -------------------------------------------------------------------------- */
.v2-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.v2-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.v2-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* Ratio containers (for video embeds) */
.v2-ratio {
    position: relative;
    width: 100%;
}

.v2-ratio--16x9 {
    padding-bottom: 56.25%;
}

.v2-ratio iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* --------------------------------------------------------------------------
   Comprehensive Responsive Enhancements
   -------------------------------------------------------------------------- */

/* Tablet (992px and below) */
@media (max-width: 992px) {
    .v2-section {
        padding: 4rem 0;
    }

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

    .v2-footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
    h1 {
        font-size: clamp(2rem, 6vw, 2.75rem);
    }

    h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .lead {
        font-size: 1rem;
    }

    .v2-section {
        padding: 3rem 0;
    }

    .v2-section-header {
        margin-bottom: 2rem;
    }

    .v2-card {
        padding: 1.5rem;
    }

    .v2-content-card {
        padding: 1.5rem;
    }

    .v2-testimonial-grid {
        grid-template-columns: 1fr;
    }

    .v2-testimonial--featured {
        padding: 2rem;
    }

    .v2-testimonial--featured::before {
        font-size: 5rem;
    }

    .v2-pricing-card__price {
        font-size: 2.5rem;
    }

    .v2-cta {
        padding: 3rem 0;
    }

    .v2-cta .v2-btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }

    .v2-footer {
        text-align: center;
    }

    .v2-footer__grid {
        text-align: center;
    }
}

/* Small mobile (480px and below) */
@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .v2-navbar__brand {
        font-size: 1.25rem;
    }

    .v2-section {
        padding: 2rem 0;
    }

    .v2-card {
        padding: 1.25rem;
    }

    .v2-content-card {
        padding: 1.25rem;
    }

    .v2-stat__number {
        font-size: 2rem;
    }

    .v2-feature-card__number {
        font-size: 3rem;
    }

    .v2-pricing-card__price {
        font-size: 2rem;
    }

    .v2-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }

    .v2-accordion-button {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .v2-accordion-body {
        padding: 0 1rem 1rem;
    }
}