/* ===================================
   PROFESSIONAL HOMEPAGE STYLES
   =================================== */

/* --- Variables & Reset --- */
:root {
    --color-primary-blue: #0066FF;
    --color-primary-dark: #004ecc;
    --color-secondary-blue: #003366;
    --color-accent-blue: #e6f0ff;
    --color-tribal-accent: #ff5722;

    --color-text-dark: #0f172a;
    --color-text-medium: #475569;
    --color-text-light: #94a3b8;

    --color-bg-light: #f8fafc;
    --color-white: #ffffff;
    --color-border: #e2e8f0;

    --font-heading: 'Inter', system-ui, -apple-system, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    --bg-gradient-primary: radial-gradient(circle at center, #002699 0%, #000000 100%);

    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    -webkit-font-smoothing: antialiased;
    background-color: #fff;
}

/* --- Block Layout System & Utilities --- */
.block-layout {
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}

.alt-bg {
    background-color: var(--color-bg-light);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-header {
    margin-bottom: 4rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.sub-heading {
    font-size: 1.25rem;
    color: var(--color-text-medium);
    line-height: 1.6;
}

/* --- Animations --- */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.visible.fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

/* --- Hero Section Redesign --- */
.hero {
    background: var(--bg-gradient-primary);
    padding: 9rem 0 7rem;
    color: var(--color-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.15) 0%, transparent 50%);
    animation: pulseGlow 15s infinite alternate;
    pointer-events: none;
}

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: #e2e8f0;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

/* Hero Search/CTA Box */
.hero-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    backdrop-filter: blur(5px);
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--color-primary-blue);
    border-color: var(--color-primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.search-container {
    max-width: 580px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.search-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem;
    border-radius: 100px;
    display: flex;
    align-items: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.search-icon {
    width: 24px;
    height: 24px;
    margin-left: 1.25rem;
    opacity: 0.5;
}

.search-input {
    border: none;
    flex-grow: 1;
    padding: 1.25rem;
    font-size: 1.1rem;
    outline: none;
    color: var(--color-text-dark);
    background: transparent;
}

.search-btn {
    background: var(--color-primary-blue);
    color: #fff;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.2s;
}

.search-btn:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(0, 78, 204, 0.4);
}

.program-tags {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.2s;
}

.tag:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* --- Intro Section --- */
.intro-text-block h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--color-text-dark);
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-align: center;
}

.lead-text {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--color-text-dark);
    font-weight: 500;
    margin-bottom: 2rem;
    max-width: 90%;
}

.intro-text-block p:not(.lead-text) {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text-medium);
}

.disclosure-box {
    margin-top: 2.5rem;
    padding: 1.75rem;
    background: var(--color-white);
    border-left: 5px solid var(--color-primary-blue);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

/* --- Row Layout --- */
.row-layout {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.row-layout .text-column {
    flex: 1;
}

.row-layout .visual-column {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* --- Process Grid (How It Works) --- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
}

.process-card {
    background: var(--color-white);
    padding: 3rem 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 102, 255, 0.3);
}

.step-badge {
    font-size: 5rem;
    font-weight: 900;
    color: rgba(0, 102, 255, 0.06);
    line-height: 0.8;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    pointer-events: none;
    transition: color 0.3s ease;
}

.process-card:hover .step-badge {
    color: rgba(0, 102, 255, 0.12);
}

.process-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: var(--color-text-dark);
    position: relative;
    z-index: 1;
}

.process-card p {
    font-size: 1.05rem;
    color: var(--color-text-medium);
    line-height: 1.65;
    position: relative;
    z-index: 1;
}

/* --- Programs Block Layout --- */
.programs-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.program-block.feature-block {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    height: 100%;
}

.program-block:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(0, 102, 255, 0.2);
}

.program-content {
    padding: 3.5rem 3rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.program-block::before {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 6px;
    background: var(--color-primary-blue);
    left: 0;
    z-index: 2;
}

.program-block:nth-child(2)::before {
    background: var(--color-tribal-accent);
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    align-self: flex-start;
}

.badge.federal {
    background-color: #f0f7ff;
    color: var(--color-primary-blue);
    border: 1px solid rgba(0, 102, 255, 0.1);
}

.badge.tribal {
    background-color: #fff5f0;
    color: var(--color-tribal-accent);
    border: 1px solid rgba(255, 87, 34, 0.1);
}

.program-details {
    background: #fafbfc;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 2rem 0;
    margin: 2.5rem 0;
}

.program-details li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: var(--color-text-medium);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.program-details li::before {
    content: '•';
    color: var(--color-primary-blue);
    font-size: 1.5rem;
    line-height: 0.5;
}

.btn-text {
    margin-top: auto;
    font-weight: 700;
    color: var(--color-text-dark);
    text-decoration: none;
    font-size: 1.15rem;
    display: inline-flex;
    align-items: center;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.btn-text:hover {
    color: var(--color-primary-blue);
    border-bottom-color: var(--color-primary-blue);
    transform: translateX(5px);
}

/* --- Eligibility Panels --- */
.eligibility-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.eligibility-panel {
    background: var(--color-white);
    padding: 4rem 3rem;
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid var(--color-border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.eligibility-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.check-list {
    text-align: left;
    display: block;
    width: 100%;
    margin: 2rem 0;
}

.check-list li {
    margin-bottom: 1.25rem;
    padding-left: 2.5rem;
    position: relative;
    font-size: 1.15rem;
    color: var(--color-text-medium);
    font-weight: 500;
}

.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.2rem;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230066FF' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
}

.income-guidelines {
    background: linear-gradient(to bottom, #f8fafc, #edf2f7);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin: 2.5rem 0;
    border: 1px solid var(--color-border);
}

.guideline-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 1.1rem;
    color: var(--color-text-dark);
}

.guideline-row strong {
    color: var(--color-primary-blue);
    font-weight: 700;
}

.center-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-primary-large {
    background: linear-gradient(135deg, #0066FF 0%, #0052cc 100%);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 1.25rem 3.5rem;
    border-radius: 100px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 102, 255, 0.4);
}

/* --- Device Expectations --- */
.feature-points {
    margin-top: 3rem;
}

.point {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: var(--color-text-medium);
    font-size: 1.15rem;
    display: flex;
    flex-direction: column;
}

.point strong {
    color: var(--color-text-dark);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.point::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 12px;
    height: 12px;
    background: var(--color-primary-blue);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.15);
}

.phone-graphic-placeholder {
    width: 100%;
    max-width: 340px;
    height: 600px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e2e8f0 100%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.1),
        inset 0 0 0 2px rgba(255, 255, 255, 0.5);
    position: relative;
    backdrop-filter: blur(10px);
}

.phone-graphic-placeholder::after {
    content: '';
    position: absolute;
    top: 20px;
    width: 40%;
    height: 6px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.graphic-icon {
    font-size: 6rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    opacity: 0.8;
}

/* --- Providers Grid --- */
.providers-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.provider-info-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--color-border);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.provider-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 102, 255, 0.3);
}

.card-header {
    background: #fff;
    padding: 2rem;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0;
    color: var(--color-text-dark);
}

.card-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.provider-perks {
    margin-top: auto;
    background: var(--color-bg-light);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    font-weight: 600;
    color: var(--color-text-medium);
    margin-bottom: 1.5rem;
}

.provider-perks li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.provider-perks li::before {
    content: '★';
    color: #ffd700;
    font-size: 1.1rem;
}

.btn-provider {
    display: block;
    width: 100%;
    text-align: center;
    background-color: var(--color-primary-blue);
    color: #fff;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-provider:hover {
    background-color: var(--color-primary-dark);
}

/* --- Official Government Resources --- */
.official-resources {
    background: #fff;
}

.govt-links-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.govt-link-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 250px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.govt-link-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--color-primary-blue);
}

.govt-icon {
    font-size: 1.5rem;
}

.govt-content h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    color: var(--color-text-dark);
}

.govt-content p {
    font-size: 0.85rem;
    margin: 0;
    color: var(--color-text-medium);
}

.external-arrow {
    margin-left: auto;
    color: var(--color-primary-blue);
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.govt-link-card:hover .external-arrow {
    opacity: 1;
    transform: translateX(0);
}


/* --- Trust Signals --- */
.trust-signals {
    background-color: #f8fafc;
    border-top: 1px solid var(--color-border);
}

.trust-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem 2rem;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 102, 255, 0.2);
}

.trust-item::before {
    content: '';
    display: block;
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Icons using SVG data URIs */
.trust-item:nth-child(1)::before {
    /* FCC / Government Icon - Scale/Building */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230066FF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 21h18'/%3E%3Cpath d='M5 21V7'/%3E%3Cpath d='M19 21V7'/%3E%3Cpath d='M4 7h16'/%3E%3Cpath d='M12 2l-7 5'/%3E%3Cpath d='M19 7l-7-5'/%3E%3Cpath d='M10 11v6'/%3E%3Cpath d='M14 11v6'/%3E%3C/svg%3E");
}

.trust-item:nth-child(2)::before {
    /* Privacy / Lock Icon */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230066FF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='11' width='18' height='11' rx='2' ry='2'/%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'/%3E%3C/svg%3E");
}

.trust-item:nth-child(3)::before {
    /* Free / Tag Icon */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230066FF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.59 13.41l-7.17 7.17a2 2 0 0 1-2.83 0L2 12V2h10l8.59 8.59a2 2 0 0 1 0 2.82z'/%3E%3Cline x1='7' y1='7' x2='7.01' y2='7'/%3E%3C/svg%3E");
}

.trust-item h4 {
    font-size: 1.35rem;
    margin: 0 0 0.75rem;
    font-weight: 800;
    color: var(--color-text-dark);
}

.trust-item p {
    margin: 0;
    line-height: 1.6;
    color: var(--color-text-medium);
    font-size: 1rem;
}

/* --- Final Action Block --- */
.final-action-block {
    background-color: #000000;
    background-image: radial-gradient(circle at 50% 0%, #002699 0%, #000000 75%);
    color: #fff;
    padding: 10rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-action-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 100%, rgba(0, 60, 255, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.cta-inner-box h2 {
    font-size: 4rem;
    margin-bottom: 2rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.action-buttons {
    margin-top: 4rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-solid-white {
    background: #fff;
    color: var(--color-primary-blue);
    padding: 1.25rem 3.5rem;
    border-radius: 100px;
    font-weight: 800;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-solid-white:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: #fff;
}

.btn-outline-white {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1.25rem 3.5rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.btn-outline-white:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.15);
}

/* --- Responsive Layout Adjustments --- */
@media (max-width: 992px) {
    .row-layout {
        flex-direction: column;
        gap: 3rem;
    }

    .reverse-mobile {
        flex-direction: column-reverse;
    }

    .programs-row,
    .eligibility-wrapper,
    .trust-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-card .step-badge {
        position: static;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero {
        padding: 5rem 0 4rem;
    }

    .section-header h2 {
        font-size: 2.25rem;
    }

    .action-buttons {
        flex-direction: column;
    }

    .phone-graphic-placeholder {
        display: none;
    }

    .govt-links-grid {
        justify-content: stretch;
    }

    .govt-link-card {
        width: 100%;
        box-sizing: border-box;
    }
}