:root {
    --brand: #014d3d;
    --brand-dark: #00362b;
    --brand-light: #e6f0ed;
    --accent: #22c55e;
    --surface: #f8fafc;
    --bg-body: #f1f5f9;
    --card-bg: #ffffff;
    --ink: #0f172a;
    --muted: #64748b;
    --sidebar: #ffffff;
    --radius-lg: 1.5rem;
    --radius-md: 1rem;
    --radius-sm: 0.6rem;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--ink);
    background: var(--bg-body);
    font-size: 0.9375rem;
}

.hero-card,
.booking-card,
.stat-card,
.card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    border: 1px solid rgba(226, 232, 240, 0.6);
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
}

.card:hover {
    box-shadow: var(--shadow);
}

.bg-brand-light { background-color: var(--brand-light); }
.bg-brand { background-color: var(--brand) !important; }
.text-brand { color: var(--brand); }

/* 3D Hero Button */
.btn-hero-3d {
    background-color: var(--brand);
    color: white !important;
    border: none !important;
    border-radius: 12px;
    padding: 1rem 2.25rem;
    font-weight: 800;
    font-size: 1.1rem;
    position: relative;
    box-shadow: 0 6px 0 var(--brand-dark);
    transition: all 0.1s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    letter-spacing: -0.01em;
}

.btn-hero-3d:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 0 var(--brand-dark);
    color: white !important;
}

.btn-hero-3d:active {
    box-shadow: 0 2px 0 var(--brand-dark);
    transform: translateY(4px);
}

.animate-pulse {
    animation: pulse-brand 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-brand {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.mini-appointment {
    display: flex;
    justify-content: space-between;
    padding: 0.9rem 1rem;
    margin-bottom: 0.85rem;
    background: #f8fafc;
    border-radius: 1rem;
}

.dashboard-shell {
    min-height: 100vh;
    display: flex;
}

.sidebar {
    width: 280px;
    background: var(--sidebar);
    border-right: 1px solid rgba(226, 232, 240, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem 1.5rem;
    position: sticky;
    top: 0;
    min-height: 100vh;
}

.sidebar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 2rem;
}

.sidebar-logo {
    height: 30px;
    width: auto;
    object-fit: contain;
}

.sidebar-nav .nav-link {
    color: var(--muted);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sidebar-nav .nav-link.active,
.sidebar-nav .nav-link:hover {
    background: var(--brand-light);
    color: var(--brand);
}

.sidebar-nav .nav-link i {
    font-size: 1.1rem;
}

.dashboard-content {
    flex: 1;
    min-width: 0;
    background: var(--surface);
}

.stat-card {
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stat-label {
    color: var(--muted);
    font-weight: 600;
}

.stat-value {
    font-size: 2.4rem;
    line-height: 1;
}

.booking-page {
    min-height: calc(100vh - 137px);
    background:
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.18), transparent 18%),
        linear-gradient(180deg, #f8fafc 0%, #eff6ff 100%);
}

.booking-card {
    overflow: hidden;
    padding: 0;
}

.booking-card-header {
    padding: 2rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.08), rgba(245, 158, 11, 0.12));
}

.booking-card-body {
    padding: 2rem;
}

.auth-section {
    min-height: calc(100vh - 137px);
    display: flex;
    align-items: center;
}

.btn-primary {
    background-color: var(--brand);
    border-color: var(--brand);
    border-radius: 999px;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--brand-dark);
    border-color: var(--brand-dark);
    box-shadow: 0 4px 12px rgba(1, 77, 61, 0.2);
}

.btn-outline-primary {
    color: var(--brand);
    border-color: var(--brand);
    border-radius: 999px;
}

.btn-outline-primary:hover {
    background-color: var(--brand);
    border-color: var(--brand);
}

.stat-card {
    background: white;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.stat-card::after {
    content: '↗';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 1.25rem;
    color: var(--muted);
    opacity: 0.5;
}

.stat-label {
    font-size: 0.875rem;
    text-transform: none;
    letter-spacing: normal;
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--ink);
}

.stat-card-brand {
    background: linear-gradient(135deg, #014d3d 0%, #026b55 100%);
    color: white !important;
}

.stat-card-brand .stat-label {
    color: rgba(255, 255, 255, 0.82) !important;
}

.stat-card-brand .stat-value {
    color: white !important;
}

.stat-card-brand .stat-trend {
    color: rgba(255, 255, 255, 0.9) !important;
}

.stat-card-brand .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

.stat-card-brand::after {
    display: none;
}

.stat-action-btn {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #014d3d;
    font-size: 0.875rem;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.stat-action-btn:hover {
    transform: scale(1.1);
    color: #014d3d;
}

@media (max-width: 991.98px) {
    .dashboard-shell {
        display: block;
    }

    .sidebar {
        width: 100%;
        min-height: auto;
        position: static;
    }

    .dashboard-content {
        width: 100%;
    }
}

.sidebar-section-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: 0.05em;
    padding: 0 1rem;
    margin-bottom: 0.75rem;
    margin-top: 2rem;
}

.sidebar-promo {
    padding: 1rem;
}

.promo-card {
    background: var(--brand);
    color: white;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    text-align: center;
}

.promo-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.promo-card h6 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.promo-card p {
    font-size: 0.75rem;
    opacity: 0.7;
    margin-bottom: 1rem;
}

.btn-brand-light {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
}

.btn-brand-light:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
}

.dashboard-header {
    background: white;
    padding: 0.75rem 2rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    position: sticky;
    top: 0;
    z-index: 100;
}

.search-bar {
    position: relative;
    width: 350px;
}

.search-bar i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
}

.search-bar input {
    width: 100%;
    padding: 0.6rem 1rem 0.6rem 2.8rem;
    border-radius: 999px;
    border: 1px solid transparent;
    background: #f1f5f9;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.search-bar input:focus {
    background: white;
    border-color: var(--brand);
    outline: none;
    box-shadow: 0 0 0 4px rgba(1, 77, 61, 0.05);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-icon-btn {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--muted);
    padding: 0;
    line-height: 1;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.user-profile img {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    object-fit: cover;
}

.user-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.user-name {
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 1.2;
}

.user-email {
    font-size: 0.75rem;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.bento-stat {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stat-trend {
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.trend-up { color: #22c55e; }
.trend-down { color: #ef4444; }

/* Responsive */
@media (max-width: 1200px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sidebar { display: none; }
    .search-bar { width: 100%; }
    .bento-grid { grid-template-columns: 1fr; }
}

/* Calendar Grid Styles */
.calendar-table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.calendar-table th {
    background: #f8fafc;
    padding: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted);
    border-bottom: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
}

.calendar-table th:last-child {
    border-right: none;
}

.calendar-cell {
    height: 120px;
    padding: 0.5rem;
    vertical-align: top;
    border-bottom: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
    transition: background 0.2s ease;
}

.calendar-cell:last-child {
    border-right: none;
}

.calendar-cell:hover:not(.calendar-empty) {
    background: #f1f5f9;
}

.calendar-empty {
    background: #f8fafc;
}

.calendar-date {
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    color: var(--ink);
}

.calendar-events {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.calendar-event {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border: none;
    width: 100%;
}
/* Landing Page Redesign */
.landing-page .navbar {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5) !important;
}

.hero-section {
    padding: 120px 0;
    overflow: hidden;
    position: relative;
    background: #ffffff;
}

.hero-eyebrow {
    color: var(--brand);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    font-size: 0.75rem;
    display: block;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 3rem;
}

.hero-mockup-container {
    position: relative;
}

.hero-mockup-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

.hero-mockup-img:hover {
    transform: scale(1.15);
}

.hero-mockup-overlay {
    position: absolute;
    width: 220px;
    top: -23%;
    right: -15%;
    z-index: 10;
    border-radius: 15px;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.hero-mockup-overlay-left {
    position: absolute;
    width: 210px;
    bottom: -22%;
    left: -23%;
    z-index: 10;
    border-radius: 12px;
    box-shadow: 0 40px 80px -10px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.trusted-by {
    padding: 60px 0;
    border-top: 1px solid rgba(226, 232, 240, 0.5);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    background: #fdfdfd;
}

.trusted-title {
    text-align: center;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: 0.15em;
    margin-bottom: 2.5rem;
}

.logo-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    opacity: 0.8;
}

.industry-tag {
    background: #f1f5f9;
    color: var(--muted);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.industry-tag:hover {
    background: var(--brand-light);
    color: var(--brand);
}

/* Features Grid */
.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(226, 232, 240, 0.6);
    height: 100%;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--brand);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
}

.feature-icon-box {
    width: 54px;
    height: 54px;
    background: var(--brand-light);
    color: var(--brand);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Product Gallery */
.gallery-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: white;
}

.gallery-card:hover {
    transform: scale(1.02);
}

.gallery-label {
    padding: 1rem 1.5rem;
    background: white;
    font-weight: 700;
    font-size: 0.9rem;
    border-top: 1px solid #f1f5f9;
}

/* Review Section Styles */
.review-section {
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.review-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.star-rating {
    display: flex;
    gap: 0.5rem;
    font-size: 1.5rem;
    color: #e2e8f0;
}

.star-rating i {
    cursor: pointer;
    transition: all 0.2s ease;
}

.star-rating i:hover,
.star-rating i.active {
    color: #fbbf24;
    transform: scale(1.1);
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: var(--brand);
}

.form-control:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 0.25rem rgba(1, 77, 61, 0.1);
}

.review-submit-wrap {
    margin-top: 1.5rem;
}
/* Benefit Sections */
.benefit-section {
    padding: 100px 0;
}

.benefit-section:nth-child(even) {
    background: #fcfdfe;
}

.benefit-pill {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    margin-bottom: 1rem;
}

.benefit-pill-icon {
    width: 36px;
    height: 36px;
    background: var(--brand);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* Use Cases */
.use-case-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(226, 232, 240, 0.6);
    text-align: center;
    height: 100%;
}

.use-case-icon {
    font-size: 2rem;
    color: var(--brand);
    margin-bottom: 1.5rem;
}

/* FAQ Section */
.faq-item {
    background: white;
    border: 1px solid rgba(226, 232, 240, 0.6);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.25rem 1.5rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Testimonials */
.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(226, 232, 240, 0.6);
    height: 100%;
}

.testimonial-text {
    font-style: italic;
    font-size: 1rem;
    color: var(--ink);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h6 {
    margin: 0;
    font-weight: 700;
    font-size: 0.875rem;
}

.author-info span {
    font-size: 0.75rem;
    color: var(--muted);
}

/* Pricing Section Refinement */
.pricing-plan-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(226, 232, 240, 0.6);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    text-align: left;
}

.pricing-plan-card.popular {
    border-color: var(--brand);
    box-shadow: 0 20px 40px -10px rgba(1, 77, 61, 0.1);
}

.pricing-plan-card.test-gateway {
    border-color: #6366f1;
    background: linear-gradient(135deg, #ffffff 0%, #f5f3ff 100%);
    box-shadow: 0 20px 40px -10px rgba(99, 102, 241, 0.15);
}

.pricing-plan-card.test-gateway .plan-badge {
    background: #6366f1;
}

.pricing-plan-card.test-gateway .price-amount {
    color: #4f46e5;
}

.pricing-plan-card.test-gateway .btn-3d {
    background-color: #6366f1;
    box-shadow: 0 3px 0 #4338ca;
}

.pricing-plan-card.test-gateway .btn-3d:hover {
    background-color: #4f46e5;
    box-shadow: 0 5px 0 #4338ca;
}

.plan-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--brand);
    color: white;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: 0.05em;
}

.price-box {
    margin: 2rem 0;
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.price-currency {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ink);
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
}

.price-period {
    color: var(--muted);
    font-weight: 500;
}

/* Reusable 3D Button Utility */
.btn-3d {
    background-color: var(--brand);
    color: white !important;
    border: none !important;
    border-radius: 10px;
    padding: 0.5rem 2.5rem;
    font-weight: 700;
    position: relative;
    box-shadow: 0 3px 0 var(--brand-dark);
    transition: all 0.1s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin-top: auto;
}

.pricing-plan-card .btn-3d {
    width: 100%;
}

.btn-3d:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 var(--brand-dark);
}

.btn-3d:active {
    box-shadow: 0 2px 0 var(--brand-dark);
    transform: translateY(2px);
}

.btn-3d-outline {
    background-color: white;
    color: var(--brand) !important;
    border: 1px solid var(--brand) !important;
    box-shadow: 0 4px 0 var(--brand-dark);
}

.btn-3d-outline:hover {
    background-color: #f8fafc;
}

/* 3D Button Variants */
.btn-3d-sm {
    padding: 0.4rem 1.25rem;
    font-size: 0.85rem;
    border-radius: 8px;
    box-shadow: 0 3px 0 var(--brand-dark);
}

.btn-3d-sm:hover {
    box-shadow: 0 4px 0 var(--brand-dark);
}

.btn-3d-sm:active {
    box-shadow: 0 1px 0 var(--brand-dark);
}

.btn-3d-light {
    background-color: white;
    color: var(--brand) !important;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.1);
}

.btn-3d-light:hover {
    background-color: #f8fafc;
    box-shadow: 0 6px 0 rgba(0, 0, 0, 0.1);
}

.btn-3d-light:active {
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

/* High-Fidelity Footer */
.site-footer {
    background: #ffffff;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(226, 232, 240, 0.6);
}

.footer-logo {
    height: 32px;
    margin-bottom: 1.5rem;
}

.footer-desc {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link-btn {
    width: 38px;
    height: 38px;
    background: #f1f5f9;
    color: var(--brand);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.social-link-btn:hover {
    background: var(--brand);
    color: white;
    transform: translateY(-3px);
}

.footer-title {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    color: var(--ink);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--brand);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--muted);
    font-size: 0.85rem;
}

@media (max-width: 767.98px) {
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

/* Subpage Styles */
.subpage-hero {
    padding: 100px 0 60px;
    background: linear-gradient(to bottom, #ffffff, #f8fafc);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    text-align: center;
}

.content-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--ink);
}

.content-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 1.25rem;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(226, 232, 240, 0.6);
    height: 100%;
}

.value-icon {
    width: 48px;
    height: 48px;
    background: var(--brand-light);
    color: var(--brand);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

/* Feature Page Specifics */
.feature-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--brand-light);
    color: var(--brand);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
