/* AUDIT PAGE SPECIFIC STYLES */
.tagline {
letter-spacing: 0em;
}
/* ========== BASE & NAVIGATION ========== */
.nav-links a.active {
    color: var(--clr-ash-gold);
    position: relative;
}

/* ========== HERO SECTION ========== */
.audit-hero {
    background: radial-gradient(circle at center, rgba(1, 34, 28, 0.3), var(--clr-obsidian));
}

#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    opacity: 0.5;
}

.audit-hero .hero-bg-image {
    height: 129vh;
    object-position: 40% 10%;
    margin-top: -13vh;
}

.audit-hero .hero-overlay {
    width: 100%;
    background: linear-gradient(to right, 
        rgb(18, 18, 18) 20%, 
        rgba(18, 18, 18, 0.54) 35%, 
        rgba(18, 18, 18, 0.13) 50%, 
        rgba(18, 18, 18, 0.54) 80%, 
        rgb(18, 18, 18) 100%
    ), 
    linear-gradient(to bottom, 
        transparent 70%, 
        rgb(18, 18, 18) 87%
    );
}

.audit-hero .hero-content {
    padding-top: 13vh;
}

.audit-hero h1 {
    font-size: 6rem;
    margin-bottom: 2rem;
}

.audit-hero .tagline {
    font-size: 1.5rem;
    line-height: 1.5;
    
    margin-bottom: 1rem;
}

.tagline-emphasis {
    letter-spacing: 0;
}

.gold-text {
    color: var(--clr-ash-gold);
    font-weight: bold;
}

.tagline-sub {
    color: rgba(203, 161, 53, 0.7);
    font-style: italic;
}

.tagline-secondary {
    font-size: 1.25rem;
    letter-spacing: 0;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ========== CHALLENGE SECTION ========== */
.challenge-section {
    padding: 6rem 0;
    background-color: var(--clr-wine);
    border-top: 2px solid var(--clr-ash-gold);
    border-bottom: 2px solid var(--clr-ash-gold);
    position: relative;
    z-index: 2;
}

.challenge-content {
    text-align: center;
    max-width: 50rem;
    margin: 0 auto;
}

.challenge-content h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--clr-bone-white);
    
}

.challenge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.challenge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.challenge-item i {
    font-size: 2rem;
    color: rgba(203, 161, 53, 0.6);
}

.challenge-text strong {
    display: block;
    font-size: 1.25rem;
    color: var(--clr-ash-gold);
    margin-bottom: 0.5rem;
}

.challenge-text p {
    font-size: 0.95rem;
    color: rgba(245, 245, 240, 0.8);
}

.insight {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--clr-bone-white);
}

.insight em {
    color: var(--clr-ash-gold);
    font-style: italic;
}

.insight strong {
    color: var(--clr-ash-gold);
    font-weight: 600;
}

.challenge-ctas {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-gold.filled {
    background-color: var(--clr-ash-gold);
    color: var(--clr-obsidian);
}

.btn-gold.ghost {
    background-color: transparent;
    color: var(--clr-ash-gold);
    border-color: var(--clr-ash-gold);
}

.btn-gold.filled:hover {
    background-color: var(--clr-bone-white);
}

.btn-gold.ghost:hover {
    background-color: var(--clr-ash-gold);
    color: var(--clr-wine);
}

/* ========== OFFERINGS SECTION ========== */
.offerings-section {
    padding: 6rem 0;
    background-color: rgba(18, 18, 18, 0.95);
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--clr-bone-white);
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: rgba(245, 245, 240, 0.7);
    margin-top: -2rem;
    margin-bottom: 3rem;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8rem;
    max-width: 1100px;
    margin: 0 auto;
}

/* ========== OFFERING CARDS ========== */
.offering-card {
    background: rgba(18, 18, 18, 0.8);
    border: 1px solid rgba(203, 161, 53, 0.2);
    border-radius: 1rem;
    padding: 3rem 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.offering-card:hover {
    transform: translateY(-5px);
    border-color: rgba(203, 161, 53, 0.5);
}

/* Premium Card Highlighting */
.offering-card.premium {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(203, 161, 53, 0.3);
    border: 2px solid var(--clr-ash-gold);
    z-index: 2;
}

.offering-card.premium:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 0 50px rgba(203, 161, 53, 0.4);
}

.premium-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--clr-ash-gold);
    color: var(--clr-obsidian);
    padding: 0.5rem 1.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    font-weight: 700;
    border-radius: 2rem;
}

.offering-card h3 {
    font-size: 2.5rem;
    color: var(--clr-ash-gold);
    margin-bottom: 0.5rem;
    text-align: center;
}

.offering-tagline {
    font-size: 1.125rem;
    color: rgba(245, 245, 240, 0.7);
    text-align: center;
    margin-bottom: 2rem;
}

/* Price Block */
.price-block {
    text-align: center;
    padding: 1rem 0;
    margin-bottom: 1rem;
    border-top: 1px solid rgba(203, 161, 53, 0.2);
    border-bottom: 1px solid rgba(203, 161, 53, 0.2);
}

.actual-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.actual-price .currency {
    font-size: 1.5rem;
    color: var(--clr-ash-gold);
    margin-right: 0.25rem;
}

.actual-price .amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--clr-ash-gold);
}

.daily-breakdown {
    font-size: 0.95rem;
    color: rgba(245, 245, 240, 0.7);
    margin-bottom: 0.5rem;
}

.payment-options {
    display: none;
    font-size: 0.875rem;
    color: rgba(245, 245, 240, 0.6);
    font-style: italic;
}

/* Hidden Price */
.hidden-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.hidden-price i {
    color: var(--clr-ash-gold);
    font-size: 1.25rem;
}

.hidden-price span {
    font-size: 1rem;
    color: rgba(245, 245, 240, 0.9);
}

.scarcity-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(203, 161, 53, 0.1);
    border: 1px solid rgba(203, 161, 53, 0.3);
    border-radius: 2rem;
}

.scarcity-badge i {
    color: var(--clr-ash-gold);
}

.scarcity-badge span {
    font-size: 0.875rem;
    color: var(--clr-ash-gold);
    letter-spacing: 0.05em;
}

/* Features List */
.features-list {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
}

.features-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: var(--clr-bone-white);
    line-height: 1.6;
}

.features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--clr-ash-gold);
    font-size: 1.25rem;
    font-weight: bold;
}

/* Offering CTA */
.offering-cta {
    display: block;
    width: 100%;
    padding: 1rem 2rem;
    border: 2px solid var(--clr-ash-gold);
    background: transparent;
    color: var(--clr-ash-gold);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    transition: all 0.2s ease;
}

.offering-cta:hover {
    background: var(--clr-ash-gold);
    color: var(--clr-obsidian);
    transform: translateY(-2px);
}

/* ========== LIFESTYLE SECTION ========== */
.lifestyle-section {
    padding: 6rem 0;
    background-color: var(--clr-obsidian);
    position: relative;
    overflow: hidden;
}

.lifestyle-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(203, 161, 53, 0.03), transparent);
    animation: subtle-pulse 8s ease-in-out infinite;
}

@keyframes subtle-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.protocol-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.column-title {
    font-size: 1.75rem;
    color: var(--clr-ash-gold);
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: 0.1em;
    position: relative;
    padding-bottom: 1rem;
}

.column-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--clr-ash-gold), transparent);
}

/* Routine Table Styles */
.routine-column {
    position: relative;
}

.routine-table-wrapper {
    background: rgba(18, 18, 18, 0.6);
    border: 1px solid rgba(203, 161, 53, 0.2);
    border-radius: 1rem;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.routine-table {
    width: 100%;
    border-collapse: collapse;
}

.routine-table thead {
    background: rgba(203, 161, 53, 0.1);
    border-bottom: 2px solid rgba(203, 161, 53, 0.3);
}

.routine-table th {
    padding: 1.25rem 1.5rem;
    text-align: left;
    color: var(--clr-ash-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
}
.routine-table thead tr::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    
}

.routine-table tbody tr {
    border-bottom: 1px solid rgba(203, 161, 53, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.routine-table tbody tr::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--clr-ash-gold);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.routine-table tbody tr:hover {
    background: rgba(203, 161, 53, 0.08);
    transform: translateX(5px);
}

.routine-table tbody tr:hover::before {
    transform: scaleY(1);
}

/* Current Activity Highlight */
.routine-table tbody tr.current-activity {
    background: rgba(203, 161, 53, 0.15);
    animation: gentle-glow 2s ease-in-out infinite;
}

.routine-table tbody tr.current-activity::before {
    transform: scaleY(1);
    animation: pulse-width 2s ease-in-out infinite;
}

@keyframes gentle-glow {
    0%, 100% { background: rgba(203, 161, 53, 0.15); }
    50% { background: rgba(203, 161, 53, 0.25); }
}

@keyframes pulse-width {
    0%, 100% { width: 3px; }
    50% { width: 5px; }
}

.routine-table td {
    padding: 1rem 1.5rem;
    color: var(--clr-bone-white);
}

.time-cell {
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    color: rgba(203, 161, 53, 0.8);
    font-weight: 500;
}

.activity-cell {
    font-size: 0.95rem;
    line-height: 1.4;
}

.activity-cell strong {
    color: var(--clr-ash-gold);
    font-weight: 600;
}

/* Instagram Reel */
.reel-column {
    position: relative;
}

.reel-wrapper {
    background: rgba(18, 18, 18, 0.6);
    border: 1px solid rgba(203, 161, 53, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.instagram-media {
    margin: 0 auto !important;
    min-width: 280px !important;
    max-width: 400px !important;
    width: 100% !important;
}

.follow-cta {
    margin-top: 2rem;
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(203, 161, 53, 0.2);
    width: 100%;
}

.follow-cta p {
    color: rgba(245, 245, 240, 0.7);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--clr-ash-gold);
    font-size: 1.125rem;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(203, 161, 53, 0.3);
    border-radius: 2rem;
    background: rgba(203, 161, 53, 0.05);
}

.instagram-link:hover {
    background: rgba(203, 161, 53, 0.15);
    border-color: var(--clr-ash-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(203, 161, 53, 0.2);
}

.instagram-link i {
    font-size: 1.25rem;
}

/* Fade In Animation */
.fade-in-element {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

.routine-column.visible {
    transition-delay: 0.1s;
}

.reel-column.visible {
    transition-delay: 0.3s;
}

/* ========== PATHWAYS SECTION ========== */
.pathways-section {
    padding: 6rem 0;
    background-color: rgba(18, 18, 18, 0.95);
}

.pathways-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pathway-card {
    background: var(--clr-obsidian);
    border: 1px solid rgba(203, 161, 53, 0.2);
    border-radius: 1rem;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
}

.pathway-card:hover {
    transform: translateY(-5px);
}

.pathway-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.pathway-card:hover img {
    transform: scale(1.05);
}

.pathway-card h4 {
    color: var(--clr-ash-gold);
    margin: 1.5rem 0 0.5rem;
    font-size: 1.5rem;
}

.pathway-card p {
    color: var(--clr-bone-white);
    opacity: 0.85;
    padding: 0 1.5rem 2rem;
    line-height: 1.6;
}

.pathway-card p small {
    display: block;
    font-size: 0.875rem;
    color: var(--clr-ash-gold);
    margin-top: 0.5rem;
}

/* Post-Graduation Card Styling */
.pathway-card.post-grad {
    opacity: 0.7;
    border: 2px dotted rgba(203, 161, 53, 0.4);
    background: rgba(18, 18, 18, 0.5);
}

.pathway-card.post-grad:hover {
    opacity: 0.85;
    border-color: rgba(203, 161, 53, 0.6);
}

.post-grad-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(203, 161, 53, 0.2);
    color: var(--clr-bone-white);
    padding: 0.35rem 0.75rem;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    border-radius: 0.25rem;
    border: 1px solid rgba(203, 161, 53, 0.4);
    z-index: 1;
}

/* ========== APPLICATION SECTION (FAQ + FORM) ========== */
.application-section {
    padding: 6rem 0;
    background-color: var(--clr-obsidian);
}

.application-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* FAQ Column */
.faq-column {
    position: relative;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(75, 29, 29, 0.3);
    border: 1px solid rgba(203, 161, 53, 0.2);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--clr-ash-gold);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    color: var(--clr-ash-gold);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(203, 161, 53, 0.1);
}

.faq-question i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: rgba(245, 245, 240, 0.85);
    line-height: 1.7;
}

/* Form Column */
.form-column {
    position: relative;
}

.form-intro {
    margin-bottom: 2rem;
}

.form-intro p {
    color: rgba(245, 245, 240, 0.8);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.form-note {
    font-size: 0.95rem;
    color: var(--clr-ash-gold);
    font-style: italic;
}

/* Form Styling */
#audit-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--clr-bone-white);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    background: rgba(245, 245, 240, 0.05);
    border: 1px solid rgba(203, 161, 53, 0.3);
    color: var(--clr-bone-white);
    font-family: "Raleway", sans-serif;
    font-size: 1rem;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--clr-ash-gold);
    background: rgba(245, 245, 240, 0.08);
}

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

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--clr-obsidian);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* Checkbox Group */
.checkbox-group {
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(245, 245, 240, 0.9);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    cursor: pointer;
    accent-color: var(--clr-ash-gold);
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    border: 2px solid var(--clr-ash-gold);
    background: var(--clr-ash-gold);
    color: var(--clr-obsidian);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
    border-radius: 0.25rem;
}

.submit-btn:hover:not(:disabled) {
    background: var(--clr-bone-white);
    border-color: var(--clr-bone-white);
    transform: translateY(-2px);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-footer {
    font-size: 0.75rem;
    color: rgba(245, 245, 240, 0.6);
    line-height: 1.4;
    text-align: center;
    margin-top: -0.5rem;
}

.form-footer a {
    color: var(--clr-ash-gold);
    text-decoration: underline;
}

/* ========== RESPONSIVE DESIGN ========== */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .protocol-grid {
        gap: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .column-title {
        font-size: 1.5rem;
    }
    
    .application-grid {
        gap: 3rem;
    }
}

/* Tablet Landscape (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .site-nav {
        background-color: #121212b0;
    }
    
    .hero-image-container {
        left: 0;
    }
    
    .hero-content-wrapper {
        padding-top: 0vh !important;
    }
    
    .hero-bg-image {
        transform: scale(0.9);
        object-position: 50% -15vh;
    }
    
    .hero-overlay {
        width: 100%;
        background: linear-gradient(to right, 
            rgba(18, 18, 18, 0.92) 0%, 
            rgba(18, 18, 18, 0.17) 50%, 
            rgba(18, 18, 18, 0.49) 80%, 
            rgba(18, 18, 18, 1) 100%
        );
    }
    
    .hero-content {
        margin: 10px auto;
        background: #12121214;
    }
    
    .hero-content h1 {
        font-size: 2.75rem;
    }
    
    .hero-content-wrapper {
        padding: 5rem 2rem 2rem;
    }

    .audit-hero .tagline {
        gap: 40vh;
        display: flex;
        flex-direction: column;
    }
    
    .audit-hero .hero-overlay {
        background: linear-gradient(to bottom, 
            rgba(18, 18, 18, 0.69) 20%, 
            rgba(18, 18, 18, 0.54) 35%, 
            rgba(18, 18, 18, 0.13) 50%, 
            rgba(18, 18, 18, 0.54) 80%, 
            rgb(18, 18, 18) 100% 
        ), 
        linear-gradient(to bottom, transparent 70%, rgb(18, 18, 18) 87%);
    }
    
    .audit-hero .hero-bg-image {
        object-position: 55% 10%;
        transform: scale(1);
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .audit-hero h1 {
        font-size: 3.5rem;
    }
    
    .audit-hero .tagline {
        font-size: 1.25rem;
    }
    
    .tagline-secondary {
        font-size: 1.125rem;
    }
    
    .audit-hero .hero-content {
        padding-top: 8vh;
        text-align: center;
    }
    
    /* Challenge Section */
    .challenge-section {
        padding: 4rem 0;
    }
    
    .challenge-content h2 {
        font-size: 2.25rem;
    }
    
    .challenge-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .insight {
        font-size: 1.125rem;
    }
    
    /* Offerings */
    .offerings-section {
        padding: 4rem 0;
    }
    
    .offerings-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .offering-card.premium {
        transform: scale(1);
    }
    
    .offering-card {
        max-width: 500px;
        margin: 0 auto;
    }
    
    /* Protocol Grid */
    .protocol-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .routine-table-wrapper {
        overflow-x: auto;
    }
    
    .routine-table {
        min-width: 100%;
    }
    
    .routine-table th,
    .routine-table td {
        padding: 0.875rem 1rem;
    }
    
    .reel-wrapper {
        padding: 1.5rem;
    }
    
    .instagram-media {
        min-width: 260px !important;
        max-width: 100% !important;
    }
    
    /* Pathways */
    .pathways-section {
        padding: 4rem 0;
    }
    
    .pathways-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    /* Application */
    .application-section {
        padding: 4rem 0;
    }
    
    .application-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2.25rem;
        margin-bottom: 3rem;
    }
}

/* Mobile Portrait (max-width: 600px) */
@media (max-width: 600px) {
    .audit-hero h1 {
        font-size: 2.75rem;
    }

    .audit-hero .hero-overlay {
        width: 110%;
        background: linear-gradient(to bottom, 
            #121212 20%, 
            #121212e3 35%, 
            #12121200 50%, 
            #121212e3 70%, 
            #121212 100%
        );
    }
    
    .audit-hero .tagline {
        font-size: 1.125rem;
        
        gap: 30vh;
        display: flex;
        flex-direction: column;
    }
    
    .tagline-secondary {
        font-size: 1rem;
    }
    
    .audit-hero .hero-bg-image {
        object-position: 54% 10%;
        height: 60vh;
        margin-top: 30vh;
    }
    
    .challenge-section {
        padding: 3rem 0;
    }
    
    .challenge-content h2 {
        font-size: 1.875rem;
    }
    
    .challenge-item i {
        font-size: 1.5rem;
    }
    
    .challenge-text strong {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .offering-card {
        padding: 2rem 1.5rem;
    }
    
    .offering-card h3 {
        font-size: 2rem;
    }
    
    .pathways-grid {
        grid-template-columns: 1fr;
    }
}

/* Small Mobile (max-width: 400px) */
@media (max-width: 400px) {
    .audit-hero h1 {
        font-size: 2.25rem;
    }

    .audit-hero .hero-overlay {
        background: linear-gradient(to bottom, 
            rgba(18, 18, 18, 0.85) 20%, 
            rgba(18, 18, 18, 0.75) 35%, 
            rgba(18, 18, 18, 0.13) 50%, 
            rgba(18, 18, 18, 0.86) 70%, 
            rgb(18, 18, 18) 100%
        );    
    }
    
    .audit-hero .tagline {
        font-size: 1rem;
        gap: 30vh;
        display: flex;
        flex-direction: column;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .routine-table {
        font-size: 0.875rem;
    }
    
    .time-cell {
        font-size: 0.8rem;
    }
    
    .activity-cell {
        font-size: 0.875rem;
    }
    
    .routine-table th {
        font-size: 0.75rem;
    }
    
    .instagram-link {
        font-size: 1rem;
        padding: 0.625rem 1.25rem;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .fade-in-element,
    .routine-table tbody tr,
    .instagram-link,
    .offering-card,
    .pathway-card,
    .faq-question i {
        transition: none !important;
        animation: none !important;
    }
    
    .lifestyle-section::before {
        animation: none !important;
    }
    
    #particle-canvas {
        display: none !important;
    }
}