/* SL.SiteLab.Web — Bright/White Theme v2 */

:root {
    --gold: #a68b3c;
    --gold-hover: #8f7733;
    --gold-light: rgba(166, 139, 60, 0.08);
    --dark: #ffffff;
    --dark-light: #f8f9fa;
    --dark-card: #ffffff;
    --text-light: #1a1d23;
    --text-muted: #6b7280;
}

/* Base */
body {
    background: #ffffff;
    color: #1a1d23;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    overflow-x: hidden;
}

/* Hero */
.hero-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%),
                url('/api/media/4b06d6d386e74959b432d9fe351c9dbe/hero-bg-1536w.webp') center / cover no-repeat;
}

.hero-text {
    text-align: left;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    animation: heroFloat 4s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Cards */
.card-dark {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.card-dark:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

a.card-dark:hover {
    border-color: var(--gold) !important;
    color: inherit;
}

.card-highlighted {
    border-color: var(--gold);
    position: relative;
    box-shadow: 0 4px 16px rgba(166, 139, 60, 0.15);
}

/* Pricing card enhancements */
.pricing-card {
    text-align: center;
}

.pricing-icon {
    font-size: 2rem;
    color: var(--gold);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1d23;
    line-height: 1;
}

.price-suffix {
    font-size: 1rem;
    font-weight: 400;
    color: #6b7280;
}

.price-prefix {
    font-size: 1rem;
    font-weight: 400;
    color: #6b7280;
}

/* Delivery badge on pricing cards */
.delivery-badge {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
}

.delivery-badge i {
    margin-right: 0.25rem;
}

/* Popular badge */
.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #fff;
    padding: 0.25rem 1rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Buttons */
.btn-gold {
    background: var(--gold);
    color: #fff;
    border: none;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.1s;
    cursor: pointer;
}

.btn-gold:hover {
    background: var(--gold-hover);
    color: #fff;
    transform: translateY(-1px);
}

.btn-gold-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 0.65rem 1.8rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
}

.btn-gold-outline:hover {
    background: var(--gold);
    color: #fff;
}

/* Section titles */
.section-title {
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 2.5rem;
}

/* Feature list */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    flex-grow: 1;
    text-align: left;
}

.feature-list li {
    padding: 0.4rem 0;
    color: #6b7280;
    font-size: 0.95rem;
}

.feature-list li i {
    margin-right: 0.5rem;
}

/* Hours badge (non-maintenance fallback) */
.hours-badge {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Dev hours callout — prominent display for maintenance included hours */
.dev-hours-callout {
    background: linear-gradient(135deg, rgba(166, 139, 60, 0.07), rgba(166, 139, 60, 0.14));
    border: 1.5px solid rgba(166, 139, 60, 0.35);
    border-radius: 0.625rem;
    padding: 0.75rem 1rem;
    margin-bottom: 1.25rem;
    text-align: center;
}

.dev-hours-callout .hours-value {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.dev-hours-callout .hours-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
    font-weight: 500;
}

/* Maintenance value proposition banner */
.maintenance-banner {
    background: linear-gradient(135deg, rgba(166, 139, 60, 0.05), rgba(166, 139, 60, 0.12));
    border: 1px solid rgba(166, 139, 60, 0.25);
    border-radius: 0.75rem;
    padding: 1.25rem 1.5rem;
    margin: 0 auto 2rem;
    text-align: center;
    max-width: 750px;
}

.maintenance-banner p {
    margin: 0;
    color: #374151;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
}

.maintenance-banner i {
    color: var(--gold);
    margin-right: 0.35rem;
}

/* Tech badge */
.badge-tech {
    background: var(--gold-light);
    color: var(--gold);
    padding: 0.3rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(166, 139, 60, 0.2);
}

/* Step number */
.step-number {
    width: 2.5rem;
    height: 2.5rem;
    line-height: 2.5rem;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 auto 0.75rem;
}

/* Navbar — gold hover accent */
.navbar .nav-link {
    transition: color 0.2s;
}

.navbar .nav-link:hover {
    color: var(--gold) !important;
}

/* Hero pillars */
.hero-pillars {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-pill {
    background: var(--gold-light);
    color: var(--gold);
    padding: 0.4rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid rgba(166, 139, 60, 0.2);
}

/* Availability badge */
.availability-badge {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Pricing group layout */
.pricing-group {
    margin-bottom: 1rem;
}

.pricing-group-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-group-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(166, 139, 60, 0.08);
    border: 1px solid rgba(166, 139, 60, 0.25);
    color: var(--gold);
    font-size: 1rem;
    font-weight: 700;
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    margin-bottom: 0.5rem;
}

.pricing-group-label-maint {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.25);
    color: #3b82f6;
}

.pricing-group-desc {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin: 0;
}

.pricing-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(166, 139, 60, 0.3), transparent);
    margin: 3rem auto;
    max-width: 600px;
}

/* Hourly rate callout */
.hourly-rate-callout {
    margin-top: 2.5rem;
}

.hourly-rate-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(166, 139, 60, 0.08), rgba(166, 139, 60, 0.15));
    border: 1px solid rgba(166, 139, 60, 0.3);
    border-radius: 0.75rem;
    padding: 1rem 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.hourly-rate-inner > i {
    font-size: 1.5rem;
    color: var(--gold);
    flex-shrink: 0;
}

.hourly-rate-inner > div {
    flex: 1;
    text-align: left;
}

.hourly-rate-inner strong {
    display: block;
    color: #1a1d23;
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
}

.hourly-rate-inner span {
    color: #374151;
    font-size: 0.88rem;
}

/* Pricing tabs */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.pricing-tab {
    background: #f8f9fa;
    color: #6b7280;
    border: 1px solid #e5e7eb;
    padding: 0.6rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-tab:hover {
    border-color: rgba(166, 139, 60, 0.4);
    color: #1a1d23;
}

.pricing-tab.active {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
}

/* Portfolio cards */
.portfolio-card {
    text-align: center;
}

.portfolio-icon-area {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 0.5rem 0.5rem 0 0;
    padding: 2rem 1rem;
    margin: -1rem -1rem 1rem;
    border-bottom: 1px solid #f3f4f6;
}

.portfolio-icon-area img {
    width: 100%;
    height: auto;
    min-height: 180px;
    object-fit: contain;
    border-radius: 0.25rem;
    transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-icon-area img {
    transform: scale(1.03);
}

.portfolio-icon-area i {
    font-size: 3rem;
    color: var(--gold);
}

/* Cost Chart — SVG line chart */
.cost-chart-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.cost-chart-title {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1d23;
    margin-bottom: 1rem;
}

.cost-chart-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    font-size: 0.88rem;
    font-weight: 600;
}

.cost-legend-item { display: flex; align-items: center; gap: 0.4rem; }
.cost-legend-dot { width: 12px; height: 12px; border-radius: 3px; display: inline-block; }
.cost-legend-custom .cost-legend-dot { background: var(--gold); }
.cost-legend-template .cost-legend-dot { background: #ef4444; }

.cost-chart-svg {
    width: 100%;
    height: auto;
    display: block;
}

/* SVG line animation */
.cost-chart-line {
    stroke-dasharray: 1500;
    stroke-dashoffset: 1500;
    transition: stroke-dashoffset 1.2s ease-out;
}

.cost-chart-container.animated .cost-chart-line {
    stroke-dashoffset: 0;
}

.cost-chart-area, .cost-chart-dot, .cost-chart-label, .cost-chart-gap, .cost-chart-gap-label {
    opacity: 0;
    transition: opacity 0.5s ease-out 1s;
}

.cost-chart-container.animated .cost-chart-area,
.cost-chart-container.animated .cost-chart-dot,
.cost-chart-container.animated .cost-chart-label,
.cost-chart-container.animated .cost-chart-gap,
.cost-chart-container.animated .cost-chart-gap-label {
    opacity: 1;
}

/* Monthly cost row */
.cost-monthly-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.cost-monthly-item { text-align: center; }

.cost-monthly-custom .cost-monthly-amount {
    font-size: 1.5rem; font-weight: 800; color: var(--gold);
}

.cost-monthly-template .cost-monthly-amount {
    font-size: 1.5rem; font-weight: 800; color: #ef4444;
}

.cost-monthly-desc {
    display: block; font-size: 0.8rem; color: var(--text-muted); font-weight: 500;
}

.cost-monthly-vs {
    font-size: 0.95rem; font-weight: 600; color: var(--text-muted);
}

/* Savings callout */
.cost-savings-callout {
    text-align: center;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.06), rgba(34, 197, 94, 0.12));
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: 2rem;
    padding: 0.5rem 1.25rem;
    color: #166534;
    font-size: 0.95rem;
    font-weight: 600;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.cost-savings-callout i { color: #22c55e; font-size: 1.1rem; }

/* Problem/Solution Cards */
.ps-cards-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ps-card {
    display: flex;
    align-items: stretch;
    gap: 1rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.25rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.ps-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.ps-card-icon {
    width: 3rem;
    height: 3rem;
    min-width: 3rem;
    border-radius: 50%;
    background: rgba(166, 139, 60, 0.1);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    align-self: center;
}

.ps-card-panels {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ps-problem, .ps-solution {
    flex: 1;
    padding: 0.75rem;
    border-radius: 0.5rem;
}

.ps-problem {
    background: rgba(239, 68, 68, 0.04);
    border-left: 3px solid #ef4444;
}

.ps-solution {
    background: rgba(34, 197, 94, 0.04);
    border-left: 3px solid #22c55e;
}

.ps-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.ps-problem .ps-label { color: #dc2626; }
.ps-solution .ps-label { color: #16a34a; }

.ps-problem p, .ps-solution p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.45;
    color: #374151;
}

.ps-arrow {
    color: var(--text-muted);
    font-size: 1rem;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.2s;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.faq-item-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 700;
    color: #1a1d23;
    line-height: 1.4;
}

.faq-item-question:hover { background: rgba(0, 0, 0, 0.015); }

.faq-item-icon {
    width: 2.25rem;
    height: 2.25rem;
    min-width: 2.25rem;
    border-radius: 50%;
    background: rgba(166, 139, 60, 0.1);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.faq-item-text { flex: 1; }

.faq-item-chevron {
    font-size: 1rem;
    color: var(--text-muted);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item-expanded .faq-item-chevron {
    transform: rotate(180deg);
}

.faq-item-body {
    padding: 0 1.5rem 1.25rem;
    padding-left: 4rem;
}

.faq-item-answer {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0 0 1rem;
}

/* FAQ Visual: Speed Compare */
.faq-visual-speed { margin-top: 0.25rem; }

.faq-speed-bar {
    height: 2rem;
    border-radius: 0.25rem;
    position: relative;
    margin-bottom: 0.5rem;
    background: #f3f4f6;
    overflow: hidden;
}

.faq-speed-bar span {
    position: relative;
    z-index: 1;
    padding: 0 0.75rem;
    line-height: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
}

.faq-speed-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    border-radius: 0.25rem;
}

.faq-speed-bar-slow .faq-speed-fill { background: linear-gradient(90deg, #ef4444, #f87171); }
.faq-speed-bar-fast .faq-speed-fill { background: linear-gradient(90deg, var(--gold), #c9a84c); }

.faq-speed-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.25rem;
}

.faq-speed-badge {
    background: rgba(239, 68, 68, 0.08);
    color: #dc2626;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 1rem;
    border: 1px solid rgba(239, 68, 68, 0.15);
}

/* FAQ Visual: Timeline */
.faq-visual-timeline {
    display: flex;
    align-items: flex-start;
    gap: 0;
    position: relative;
    margin-top: 0.5rem;
}

.faq-visual-timeline::before {
    content: '';
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    right: 0.5rem;
    height: 2px;
    background: var(--gold);
}

.faq-timeline-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.faq-timeline-dot {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: var(--gold);
    margin: 0 auto 0.4rem;
    position: relative;
    z-index: 1;
    border: 2px solid #fff;
}

.faq-timeline-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #1a1d23;
}

.faq-timeline-sublabel {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
}

/* FAQ Visual: Ownership */
.faq-visual-ownership {
    display: flex;
    gap: 1rem;
    margin-top: 0.25rem;
}

.faq-ownership-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
}

.faq-ownership-col div {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.faq-ownership-locked {
    background: rgba(239, 68, 68, 0.04);
    border: 1px solid rgba(239, 68, 68, 0.15);
    color: #991b1b;
}

.faq-ownership-locked i { color: #ef4444; }

.faq-ownership-free {
    background: rgba(34, 197, 94, 0.04);
    border: 1px solid rgba(34, 197, 94, 0.15);
    color: #166534;
}

.faq-ownership-free i { color: #22c55e; }

/* FAQ Visual: Support/Trust Badges */
.faq-visual-badges, .faq-visual-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(166, 139, 60, 0.08);
    border: 1px solid rgba(166, 139, 60, 0.2);
    color: var(--gold);
    padding: 0.4rem 0.85rem;
    border-radius: 2rem;
    font-size: 0.82rem;
    font-weight: 600;
}

.faq-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: #fff;
    border: 1.5px solid var(--gold);
    color: var(--gold);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.82rem;
    font-weight: 600;
}

/* FAQ Visual: Feature Grid */
.faq-visual-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.faq-grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.6rem 0.4rem;
    background: rgba(166, 139, 60, 0.04);
    border: 1px solid rgba(166, 139, 60, 0.12);
    border-radius: 0.5rem;
    text-align: center;
}

.faq-grid-item i {
    font-size: 1.25rem;
    color: var(--gold);
}

.faq-grid-item span {
    font-size: 0.78rem;
    font-weight: 600;
    color: #374151;
}

/* Team member cards */
.team-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.5rem;
    height: 100%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.team-avatar {
    width: 4.5rem;
    height: 4.5rem;
    min-width: 4.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1d23;
    margin: 0 0 0.15rem;
}

.team-role {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.team-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0 0 0.75rem;
    line-height: 1.5;
}

.team-linkedin {
    font-size: 0.85rem;
    font-weight: 600;
    color: #0a66c2;
    text-decoration: none;
    transition: color 0.2s;
}

.team-linkedin:hover {
    color: #004182;
}

.team-linkedin i {
    margin-right: 0.2rem;
}

/* About stats row */
.about-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.about-stat {
    text-align: center;
    padding: 1.5rem 1rem;
    min-width: 140px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.about-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.about-stat i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    display: block;
}

.about-stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1.1;
}

.about-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 0.25rem;
}

/* About value proposition cards */
.about-value-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.about-value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: rgba(166, 139, 60, 0.3);
}

.about-value-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
}

.about-value-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.about-value-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* Guarantee banner */
.guarantee-banner {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.06), rgba(34, 197, 94, 0.12));
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: 0.75rem;
    padding: 0.75rem 1.25rem;
    color: #166534;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-block;
}

.guarantee-banner i {
    color: #22c55e;
    margin-right: 0.35rem;
}

/* Contact channel cards */
.contact-channel-card {
    background: var(--dark);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-channel-card:hover {
    border-color: rgba(166, 139, 60, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.contact-channel-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-channel-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.contact-channel-desc {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 1.25rem;
}

.contact-channel-form {
    width: 100%;
}

.contact-channel-form .form-control {
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 0.5rem;
    padding: 0.65rem 0.85rem;
    font-size: 0.92rem;
    color: var(--text-light);
    background: #f8f9fa;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-channel-form .form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(166, 139, 60, 0.15);
    outline: none;
    background: #fff;
    color: var(--text-light);
}

.contact-channel-form .form-control::placeholder {
    color: #6b7280;
}

/* Scroll-reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children inside reveal containers */
.reveal .col-md-6,
.reveal .col-lg-4,
.reveal .col-md-3 {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.reveal.visible .col-md-6,
.reveal.visible .col-lg-4,
.reveal.visible .col-md-3 {
    opacity: 1;
    transform: translateY(0);
}

.reveal.visible .col-md-6:nth-child(1),
.reveal.visible .col-lg-4:nth-child(1),
.reveal.visible .col-md-3:nth-child(1) { transition-delay: 0.05s; }
.reveal.visible .col-md-6:nth-child(2),
.reveal.visible .col-lg-4:nth-child(2),
.reveal.visible .col-md-3:nth-child(2) { transition-delay: 0.12s; }
.reveal.visible .col-md-6:nth-child(3),
.reveal.visible .col-lg-4:nth-child(3),
.reveal.visible .col-md-3:nth-child(3) { transition-delay: 0.19s; }
.reveal.visible .col-md-6:nth-child(4),
.reveal.visible .col-lg-4:nth-child(4),
.reveal.visible .col-md-3:nth-child(4) { transition-delay: 0.26s; }
.reveal.visible .col-md-6:nth-child(5),
.reveal.visible .col-lg-4:nth-child(5) { transition-delay: 0.33s; }
.reveal.visible .col-md-6:nth-child(6),
.reveal.visible .col-lg-4:nth-child(6) { transition-delay: 0.4s; }

/* Stats section */
.stats-section {
    padding: 2.5rem 0;
    background: #fff;
    border-bottom: 1px solid #f3f4f6;
}

.stat-item {
    text-align: center;
    padding: 0.75rem 0;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #a68b3c;
    line-height: 1.1;
}

.stat-label {
    font-size: 0.88rem;
    color: #6b7280;
    font-weight: 500;
    margin-top: 0.25rem;
}


/* Responsive — hero split layout stacks on tablet */
@media (max-width: 992px) {
    .hero-text {
        text-align: center;
    }

    .hero-pillars {
        justify-content: center;
    }

    .hero-image {
        margin-top: 2.5rem;
    }

    .hero-image img {
        max-width: 80%;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 2rem 1rem;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-image img {
        max-width: 90%;
    }

    .stat-number {
        font-size: 2rem;
    }

    .cost-chart-container {
        padding: 1.25rem;
    }

    .cost-monthly-row {
        flex-direction: column;
        gap: 0.5rem;
    }

    .ps-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .ps-card-icon { align-self: flex-start; }

    .ps-card-panels {
        flex-direction: column;
        width: 100%;
    }

    .ps-arrow {
        transform: rotate(90deg);
        align-self: center;
    }

    .faq-item-body {
        padding-left: 1.5rem;
    }

    .faq-visual-ownership {
        flex-direction: column;
    }

    .faq-visual-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .faq-visual-timeline {
        gap: 0;
    }

    .faq-timeline-label { font-size: 0.75rem; }
    .faq-timeline-sublabel { font-size: 0.68rem; }

    .team-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-stats {
        gap: 1rem;
    }

    .about-stat {
        min-width: calc(50% - 0.5rem);
        padding: 1rem 0.75rem;
    }

    .about-stat-value {
        font-size: 1.5rem;
    }
}
