/* Upchar Setu — clean marketing styles (logo teal palette) */

.site-page {
    font-family: 'DM Sans', ui-sans-serif, system-ui, sans-serif;
    background: #ffffff;
    color: #0f172a;
}

/* Homepage keeps mint hero; inner pages use full white via .site-inner */
.site-page:has(.home-landing) {
    background: #f0f9f8;
}

.site-inner {
    background: #ffffff;
}

.site-inner .site-main {
    background: transparent;
    padding: 2.75rem 0 3.5rem;
    min-height: 50vh;
}

@media (min-width: 768px) {
    .site-inner .site-main {
        padding: 3.5rem 0 4rem;
    }
}

/* ── Sticky header clearance ── */
.site-header {
    min-height: var(--site-header-height, 4.5rem);
}

.site-header > div:first-child {
    min-height: var(--site-header-height, 4.5rem);
}

/* ── Inner page hero ── */
.site-page-hero {
    margin-bottom: 2.5rem;
    max-width: 48rem;
}

.site-page-hero--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.site-page-eyebrow {
    margin: 0 0 0.75rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #26999f;
}

.site-page-title {
    margin: 0 0 1rem;
    font-family: 'Outfit', ui-sans-serif, system-ui, sans-serif;
    font-size: clamp(1.875rem, 4.5vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.site-page-lead {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #475569;
}

.site-page-lead--center {
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 640px) {
    .site-page-lead { font-size: 1rem; }
    .site-page-hero { margin-bottom: 3rem; }
}

/* ── Scroll / load animations ── */
@keyframes site-fade-up {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes site-badge-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(38, 153, 159, 0.35); }
    50% { box-shadow: 0 0 0 10px rgba(38, 153, 159, 0); }
}

@keyframes site-arrow-bounce {
    0%, 100% { transform: translateY(0); opacity: 0.55; }
    50% { transform: translateY(5px); opacity: 1; }
}

.site-reveal {
    opacity: 0;
    transform: translateY(18px);
}

.site-reveal.is-visible {
    animation: site-fade-up 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: var(--reveal-delay, 0ms);
}

@media (prefers-reduced-motion: reduce) {
    .site-reveal {
        opacity: 1;
        transform: none;
    }
    .site-reveal.is-visible {
        animation: none;
    }
    .site-step-badge {
        animation: none !important;
    }
    .site-step-arrow svg {
        animation: none !important;
    }
}

/* ── How it works — step cards (no vertical line) ── */
.site-step-flow {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 40rem;
    margin: 0 auto 2.5rem;
}

.site-step-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.35rem 1.35rem 1.35rem 1.15rem;
    border-radius: 1rem;
    border: 1px solid #ade0de;
    background: linear-gradient(135deg, #ffffff 0%, #f8fdfd 100%);
    box-shadow: 0 2px 12px -4px rgba(27, 122, 124, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-step-card:hover {
    transform: translateY(-3px);
    border-color: #7ec9c7;
    box-shadow: 0 12px 28px -10px rgba(27, 122, 124, 0.2);
}

.site-step-badge {
    position: relative;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 1rem;
    background: linear-gradient(145deg, #1b7a7c, #26999f);
    color: #ffffff;
    animation: site-badge-pulse 2.8s ease-in-out infinite;
}

.site-step-badge-num {
    font-family: 'Outfit', ui-sans-serif, system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.04em;
}

.site-step-badge-icon {
    margin-top: 0.15rem;
    font-size: 0.85rem;
    line-height: 1;
    opacity: 0.92;
}

.site-step-body {
    min-width: 0;
    padding-top: 0.15rem;
}

.site-step-label {
    margin: 0 0 0.25rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #26999f;
}

.site-step-title {
    margin: 0 0 0.5rem;
    font-family: 'Outfit', ui-sans-serif, system-ui, sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.25;
    color: #0f172a;
}

.site-step-text {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.65;
    color: #475569;
}

.site-step-arrow {
    display: flex;
    justify-content: center;
    padding: 0.35rem 0 0.65rem;
    color: #7ec9c7;
}

.site-step-arrow svg {
    animation: site-arrow-bounce 1.6s ease-in-out infinite;
}

.site-cta-center {
    text-align: center;
    margin-top: 2rem;
}

.site-btn-primary-lg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    background: #26999f;
    padding: 0.9rem 2rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 8px 24px -8px rgba(38, 153, 159, 0.45);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.site-btn-primary-lg:hover {
    background: #1b7a7c;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -8px rgba(38, 153, 159, 0.5);
}

@media (min-width: 768px) {
    .site-step-card {
        padding: 1.5rem 1.75rem 1.5rem 1.35rem;
        gap: 1.5rem;
    }

    .site-step-badge {
        width: 4.25rem;
        height: 4.25rem;
    }

    .site-step-title {
        font-size: 1.25rem;
    }
}

.site-display,
.site-hero-title,
.site-section-title {
    font-family: 'Outfit', ui-sans-serif, system-ui, sans-serif;
}

.site-section {
    position: relative;
}

.site-section-white { background: #ffffff; }
.site-section-mint { background: #f0f9f8; }

.site-section-heading-center {
    text-align: center;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.site-section-heading-left {
    text-align: left;
    max-width: 36rem;
}

.site-section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.35rem);
    font-weight: 700;
    line-height: 1.2;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.site-section-subtitle {
    font-size: 1rem;
    line-height: 1.65;
    color: #64748b;
}

.home-landing > section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

@media (min-width: 768px) {
    .home-landing > section {
        padding-top: 4.5rem;
        padding-bottom: 4.5rem;
    }
}

.home-landing > .site-hero {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

@media (min-width: 768px) {
    .home-landing > .site-hero {
        padding-top: 3.5rem;
        padding-bottom: 3rem;
    }
}

.site-hero {
    background: linear-gradient(180deg, #f0f9f8 0%, #ffffff 100%);
}

.site-stat-card {
    padding: 1.25rem 1rem;
    border-radius: 1rem;
    border: 1px solid #ade0de;
    background: #fff;
    text-align: center;
}

.site-choose-card-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 7rem;
    background: linear-gradient(135deg, #1b7a7c, #26999f);
    font-size: 2.5rem;
}

.site-offer-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 14rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, #f0f9f8, #d6f0ef);
    border: 1px solid #ade0de;
    font-size: 3.5rem;
}

.site-service-card {
    display: block;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid #ade0de;
    background: #fff;
    transition: box-shadow 0.2s, transform 0.2s;
}

.site-service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px -8px rgba(27, 122, 124, 0.15);
}

.site-service-icon {
    display: flex;
    width: 2.75rem;
    height: 2.75rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.625rem;
    background: #f0f9f8;
    font-size: 1.35rem;
}

.site-specialty-card {
    overflow: hidden;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.site-step-card {
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    background: #fff;
}

.site-step-num {
    display: inline-flex;
    width: 2.5rem;
    height: 2.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    background: #26999f;
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 700;
}

.site-why-panel {
    display: grid;
    gap: 2.5rem;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #ade0de;
    background: #fff;
}

@media (min-width: 1024px) {
    .site-why-panel {
        grid-template-columns: 1fr 1fr;
        align-items: center;
        padding: 2.5rem;
    }
}

.site-progress-bar {
    height: 100%;
    border-radius: 9999px;
    background: #26999f;
}

.site-demo-panel {
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #ade0de;
    background: #fff;
}

@media (min-width: 768px) {
    .site-demo-panel { padding: 2.5rem; }
}

.site-testimonial-card {
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    background: #fff;
}

.site-blog-card {
    overflow: hidden;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    background: #fff;
}

.site-blog-thumb {
    height: 7rem;
    background: linear-gradient(135deg, #1b7a7c, #26999f);
}

.site-appointment-panel {
    padding: 2.5rem 1.5rem;
    border-radius: 1rem;
    border: 1px solid #ade0de;
    background: #fff;
}

.site-cta-band {
    background: #1b7a7c;
}

.site-stats-band {
    background: #26999f;
    color: #fff;
    padding: 2.5rem 0;
}

.site-stats-band .site-stat-value {
    color: #fff;
}

.site-stats-band .site-stat-label {
    color: rgba(255, 255, 255, 0.88);
}

.site-logo-lockup {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    min-width: 0;
    text-decoration: none;
}

.site-logo-icon {
    height: 2.75rem;
    width: auto;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .site-logo-icon {
        height: 3rem;
    }
}

.site-logo-copy {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.site-logo-title {
    font-family: 'Outfit', ui-sans-serif, system-ui, sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #085f63;
    white-space: nowrap;
}

@media (min-width: 640px) {
    .site-logo-title {
        font-size: 1.3125rem;
    }
}

.site-logo-setu {
    position: relative;
    display: inline-block;
}

.site-logo-bridge {
    position: absolute;
    left: -0.05em;
    right: -0.05em;
    bottom: -0.42em;
    width: calc(100% + 0.1em);
    height: 0.55em;
    pointer-events: none;
}

.site-logo-tagline {
    font-family: 'DM Sans', ui-sans-serif, system-ui, sans-serif;
    font-size: 0.6875rem;
    font-weight: 500;
    line-height: 1.2;
    color: #64748b;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

@media (min-width: 640px) {
    .site-logo-tagline {
        font-size: 0.75rem;
    }
}

.site-logo-lockup--dark .site-logo-title {
    color: #ffffff;
}

.site-logo-lockup--dark .site-logo-tagline {
    color: rgba(255, 255, 255, 0.72);
}

/* ── Footer (explicit dark theme — do not rely on Tailwind brand-950 compile) ── */
.site-footer {
    background: linear-gradient(135deg, #0a3536 0%, #0f4d4f 50%, #0f172a 100%);
    color: #d6f0ef;
    border-top: 1px solid #156366;
}

.site-footer-heading {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
}

.site-footer-muted {
    color: rgba(214, 240, 239, 0.88);
}

.site-footer-links {
    color: #ade0de;
}

.site-footer-links a {
    color: inherit;
    text-decoration: none;
    transition: color 0.15s;
}

.site-footer-links a:hover {
    color: #ffffff;
}

.site-footer-links li + li {
    margin-top: 0.625rem;
}

.site-footer-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
}

@media (min-width: 768px) {
    .site-footer-columns {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.site-footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    color: rgba(214, 240, 239, 0.65);
    font-size: 0.6875rem;
    text-align: center;
}

@media (min-width: 768px) {
    .site-footer-bottom {
        flex-direction: row;
        text-align: left;
    }
}

.site-footer-meta {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer-disclaimer {
    margin-bottom: 1.25rem;
    padding: 0.875rem 1rem;
    border-radius: 0.625rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer-disclaimer p {
    margin: 0;
    font-size: 0.6875rem;
    line-height: 1.65;
    color: rgba(214, 240, 239, 0.78);
}

.site-footer-disclaimer strong {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 600;
}

.site-footer-disclaimer a {
    color: #ade0de;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.site-footer-disclaimer a:hover {
    color: #ffffff;
}

.site-footer-copyright {
    margin: 0;
}

.site-footer-bottom-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0 1.25rem;
}

.site-footer-bottom-nav a {
    color: #ade0de;
    text-decoration: none;
    white-space: nowrap;
}

.site-footer-bottom-nav a:hover {
    color: #ffffff;
}

.site-footer-bottom-nav a:not(:last-child) {
    margin-right: 0.25rem;
}

/* Header nav — explicit gap (Tailwind gap-* may not load on production) */
.site-header-nav {
    gap: 1.5rem;
}

.site-header-nav a {
    white-space: nowrap;
    text-decoration: none;
    color: #334155;
}

.site-header-nav a:hover,
.site-header-nav a.text-brand-600 {
    color: #26999f;
}

/* ── Pricing cards ── */
.site-plan-card {
    position: relative;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #ade0de;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
    transition: box-shadow 0.2s, border-color 0.2s;
}

.site-plan-card:hover {
    border-color: #7ec9c7;
    box-shadow: 0 8px 24px -8px rgba(27, 122, 124, 0.12);
}

.site-plan-card--featured {
    border: 2px solid #26999f;
    box-shadow: 0 12px 32px -12px rgba(38, 153, 159, 0.25);
}

/* ── Feature page blocks ── */
.site-feature-icon {
    display: flex;
    height: 3rem;
    width: 3rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    border: 1px solid #ade0de;
    background: #f0f9f8;
    font-size: 1.125rem;
}

.site-feature-benefit {
    padding: 1rem 1.125rem;
    border-radius: 0.75rem;
    border: 1px solid #ade0de;
    background: #f0f9f8;
    font-size: 0.75rem;
    color: #156366;
}

.site-feature-mock {
    position: relative;
    border-radius: 1rem;
    border: 1px solid #ade0de;
    background: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 4px 16px -4px rgba(27, 122, 124, 0.1);
}

.site-legal-updated {
    margin: 0 0 1rem;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #64748b;
}

.site-legal-hero {
    margin-bottom: 2.5rem;
}

.site-legal-hero .site-page-lead {
    margin-top: 0.75rem;
}

.site-legal-hero .site-page-lead a {
    color: #26999f;
    font-weight: 600;
}

.site-legal-section.site-reveal.is-visible,
.site-plan-card.site-reveal.is-visible {
    animation: site-fade-up 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: var(--reveal-delay, 0ms);
}

.site-legal h2 {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #0f172a;
}

.site-legal .site-legal-section {
    padding-top: 2.5rem;
    border-top: 1px solid #d6f0ef;
}

.site-legal a {
    color: #26999f;
    font-weight: 600;
}

.site-legal a:hover {
    color: #1b7a7c;
}

.site-legal strong {
    color: #0f172a;
}

.site-blog-article {
    border-bottom: 1px solid #d6f0ef;
    padding-bottom: 2rem;
}

.site-calibration-panel {
    border-radius: 1rem;
    border: 1px solid #ade0de;
    background: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 4px 16px -4px rgba(27, 122, 124, 0.08);
}

.site-calibration-controls {
    border-radius: 1rem;
    border: 1px solid #ade0de;
    background: #f0f9f8;
    padding: 1.5rem;
}
