@import url("https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,wght@8..144,100..700&display=swap");

:root {
    --site-text: #0f172a;
    --site-muted: #64748b;
    --site-line: rgba(15, 23, 42, 0.12);
    --site-surface: #ffffff;
    --site-surface-soft: #f8fafc;
    --site-black: #000000;
    --site-radius-lg: 1.5rem;
    --site-radius-xl: 1.875rem;
    --site-shadow: 0 24px 60px -36px rgba(17, 17, 17, 0.18);
}

html {
    scroll-behavior: smooth;
}

body.site-body {
    margin: 0;
    overflow-x: hidden;
    background: #ffffff;
    color: var(--site-text);
    font-family: "Google Sans Flex", system-ui, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Google Sans Flex", system-ui, sans-serif;
}

.site-container {
    max-width: 1500px;
}

.site-main {
    min-height: 50vh;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
}

.site-topbar {
    overflow: hidden;
    background: #000000;
    color: #ffffff;
    height: 52px;
    opacity: 1;
    transform: translateY(0);
    transition: height 0.42s ease-in-out, opacity 0.42s ease-in-out, transform 0.42s ease-in-out;
}

.site-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.42s ease-in-out, transform 0.42s ease-in-out, padding 0.42s ease-in-out;
}

.site-topbar-brand,
.site-topbar-meta span {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.site-topbar-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.site-topbar-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.site-mainnav {
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 26px -24px rgba(15, 23, 42, 0.22);
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.site-navbar {
    min-height: 96px;
    padding: 0;
}

.site-logo {
    margin-right: 0;
    padding: 0;
}

.site-logo-image {
    display: block;
    width: auto;
    height: 60px;
}

.site-mobile-toggle {
    border: 1px solid #dbe4ef;
    border-radius: 1rem;
    padding: 0.7rem 0.85rem;
    background: #ffffff;
    box-shadow: 0 10px 24px -20px rgba(15, 23, 42, 0.26);
}

.site-mobile-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(15, 23, 42, 0.15);
}

.site-nav-links {
    gap: 1.75rem;
}

.site-nav-links .nav-link {
    padding: 0.5rem 0;
    color: #475569;
    font-size: 1.05rem;
    font-weight: 500;
}

.site-nav-links .nav-link.active,
.site-nav-links .nav-link:hover {
    color: #000000;
}

.site-nav-actions {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.site-btn-solid,
.site-btn-ghost,
.site-btn-outline,
.hero-outline-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 1rem;
    padding: 0.9rem 1.35rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.site-btn-solid {
    border: 1px solid #000000;
    background: #000000;
    color: #ffffff;
}

.site-btn-solid:hover {
    background: #111827;
    border-color: #111827;
    color: #ffffff;
}

.site-btn-ghost {
    border: 1px solid #eef2f7;
    background: #eef2f7;
    color: #1e293b;
}

.site-btn-ghost:hover {
    background: #e2e8f0;
    border-color: #e2e8f0;
    color: #0f172a;
}

.site-btn-outline,
.hero-outline-button {
    border: 1px solid #0f172a;
    background: #ffffff;
    color: #0f172a;
}

.site-btn-outline:hover,
.hero-outline-button:hover {
    background: #f8fafc;
    color: #0f172a;
    border: 1px solid #0f172a;
}

.site-header.is-scrolled .site-topbar {
    height: 0;
    opacity: 0;
    transform: translateY(-0.35rem);
}

.site-header.is-scrolled .site-topbar-inner {
    opacity: 0;
    transform: translateY(-0.35rem);
    padding-top: 0;
    padding-bottom: 0;
}

.site-header.is-scrolled .site-mainnav {
    box-shadow: 0 18px 42px -30px rgba(15, 23, 42, 0.28);
}

.site-alert {
    border: 0;
    border-radius: 1rem;
    box-shadow: 0 12px 32px -24px rgba(34, 197, 94, 0.5);
}

.hero-shell {
    position: relative;
    overflow: hidden;
    min-height: calc(100dvh - 136px);
    border-bottom: 1px solid #e2e8f0;
    background: #ffffff;
}

.hero-gridline {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(15, 23, 42, 0.06) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(15, 23, 42, 0.06) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: calc(100dvh - 149px);
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.hero-stage {
    flex: 1 1 auto;
}

.hero-copy {
    max-width: 760px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.38rem 0.9rem;
    border: 1px solid #c9d6e5;
    border-radius: 999px;
    background: #ffffff;
    color: #64748b;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-title {
    margin-top: 1.25rem;
    color: #000000;
    font-size: 60px;
    font-weight: 700;
    line-height: 1.15;
    text-transform: uppercase;
}

.hero-title-line {
    display: block;
}

.hero-title-accent {
    position: relative;
    display: inline-block;
}

.hero-title-accent::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.06em;
    height: 0.08em;
    background: currentColor;
}

.hero-subtitle {
    max-width: 540px;
    margin-top: 1rem;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.hero-primary-btn,
.hero-secondary-btn {
    min-width: 176px;
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
}

.hero-image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 330px;
}

.hero-image {
    width: 100%;
    max-width: 540px;
    max-height: 430px;
    object-fit: contain;
    filter: drop-shadow(0 26px 34px rgba(15, 23, 42, 0.16));
}

.hero-metrics {
    margin-top: auto;
    overflow: hidden;
    border: 1px solid #cbd5e1;
    border-radius: 1.875rem;
    background: #ffffff;
}

.hero-metric-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 220px;
    padding: 2.25rem 2.5rem;
    height: 100%;
    background: #ffffff;
    transition: background-color 0.3s ease;
}

.hero-metrics .col-lg-4:not(:last-child) .hero-metric-card {
    border-right: 1px solid var(--site-line);
}

/* Mobile responsive border adjustments */
@media (max-width: 991.98px) {
    .hero-metrics .col-lg-4:not(:last-child) .hero-metric-card {
        border-right: none;
        border-bottom: 1px solid var(--site-line);
    }
}

.hero-metric-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.hero-metric-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 0.85rem;
    background: #0000000D;
    color: #000000;
    font-size: 1.25rem;
    border: 1px solid #00000010;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-metric-num {
    font-size: 1.75rem;
    font-weight: 700;
    color: #cbd5e1;
    letter-spacing: -0.02em;
    line-height: 1;
}

.hero-metric-body {
    margin-top: 2.5rem;
}

.hero-metric-value {
    margin: 0;
    color: #000000;
    font-size: clamp(1.75rem, 2.2vw, 2.25rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.hero-metric-label {
    margin: 0.35rem 0 0;
    color: #334155;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-metric-subtext {
    margin: 0.25rem 0 0;
    color: #94a3b8;
    font-size: 0.75rem;
    font-weight: 400;
}

/* Hover & Active States */
/* When the whole container is NOT hovered, the default-active card (center card) gets the active style. */
.hero-metrics:not(:hover) .hero-metric-card.default-active .hero-metric-icon,
.hero-metric-card:hover .hero-metric-icon {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

/* Optional: Subtle hover effect on the card itself for extra premium feel */
.hero-metric-card:hover {
    background: #FAFAFA;
}

.ticker-shell {
    overflow: hidden;
    border-top: 1px solid #111111;
    border-bottom: 1px solid #111111;
    background: #000000;
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: siteTickerMove 28s linear infinite;
}

.ticker-group {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    padding: 1.55rem 1.75rem;
    flex-shrink: 0;
}

.ticker-item {
    position: relative;
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    white-space: nowrap;
}

.ticker-item:not(:last-child)::after {
    content: "✦";
    display: inline-block;
    margin-left: 1.75rem;
    color: rgba(255,255,255,0.95);
    font-size: 0.7rem;
    vertical-align: middle;
}


.site-section-closing {
    padding-bottom: 5rem;
}

.why-section {
    padding-top: 4.5rem;
    padding-bottom: 4rem;
}

.why-section-intro {
    max-width: 700px;
    margin-bottom: 2.25rem;
}

.why-section-title {
    margin: 1.15rem 0 0;
    color: #000000;
    font-size: clamp(2.5rem, 4.3vw, 3.8rem);
    font-weight: 700;
    line-height: 1.04;
}

.why-section-copy {
    max-width: 660px;
    margin: 1rem 0 0;
    color: #5b6472;
    font-size: 1rem;
    line-height: 1.55;
}
.why-card:hover{
    background: #f8f8f8;
}
.why-card:hover .why-card-icon{
    transform: scale(1.2);
}
.why-grid {
    overflow: hidden;
    border: 1px solid #d7dde6;
    border-radius: 1.75rem;
    background: #ffffff;
}

.why-card {
    min-height: 180px;
    padding: 1.65rem 1.75rem 1.55rem;
    background: #ffffff;
}

.why-grid .row > div {
    border-right: 1px solid #d7dde6;
    border-bottom: 1px solid #d7dde6;
}

.why-grid .row > div:nth-child(3n) {
    border-right: 0;
}

.why-grid .row > div:nth-last-child(-n + 3) {
    border-bottom: 0;
}

.why-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid #e3e7ee;
    border-radius: 0.95rem;
    background: #f7f7f6;
    color: #3f3f46;
    font-size: 1rem;
        transition: transform 0.4s ease;

}

.why-card-title {
    margin: 1.25rem 0 0;
    color: #111111;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.2;
}

.why-card-copy {
    margin: 0.7rem 0 0;
    color: #5b6472;
    font-size: 0.95rem;
    line-height: 1.5;
}

.site-card,
.immersive-panel,
.closing-banner {
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    border-radius: var(--site-radius-lg);
    background: #ffffff;
    box-shadow: var(--site-shadow);
}

.site-card-warm,
.closing-banner {
    background: linear-gradient(180deg, rgba(250, 250, 250, 0.98), rgba(255, 255, 255, 1));
    border-color: rgba(17, 17, 17, 0.08);
}

.section-kicker,
.site-footer-kicker,
.immersive-metric-label,
.story-card-kicker {
    color: #64748b;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.section-kicker-accent {
    color: #2563eb;
}

.section-heading,
.callout-heading,
.story-card-heading {
    margin: 1rem 0 0;
    color: var(--site-text);
    font-size: 1.5rem;
    font-weight: 600;
}

.section-heading-lg,
.site-page-title,
.closing-heading {
    margin: 1rem 0 0;
    color: var(--site-text);
    font-size: clamp(2.25rem, 4vw, 3.35rem);
    font-weight: 700;
}

.section-copy,
.site-page-subtitle,
.story-card-text,
.testimonial-message {
    margin: 1rem 0 0;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.8;
}

.section-copy-wide {
    max-width: 640px;
}

.site-prose {
    color: #334155;
    line-height: 1.8;
}

.site-prose > * + * {
    margin-top: 1rem;
}

.callout-stack {
    display: grid;
    gap: 1.5rem;
}

.immersive-metric {
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 1.25rem;
    background: #ffffff;
}

.immersive-metric-value {
    margin: 0.85rem 0 0;
    color: var(--site-text);
    font-size: 2.2rem;
    font-weight: 700;
}

.image-callout {
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 1.5rem;
    background: #ffffff;
    box-shadow: var(--site-shadow);
}

.image-callout-photo {
    display: block;
    width: 100%;
    height: 16rem;
    object-fit: cover;
}

.image-callout-copy,
.visual-story-copy {
    padding: 1.5rem;
}

.story-header,
.testimonial-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
}

.visual-story-card {
    position: relative;
    min-height: 380px;
    overflow: hidden;
    border-radius: 1.75rem;
    box-shadow: var(--site-shadow);
}

.visual-story-image,
.visual-story-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.visual-story-image {
    object-fit: cover;
    transition: transform 0.7s ease;
}

.visual-story-card:hover .visual-story-image {
    transform: scale(1.05);
}

.visual-story-overlay {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(17, 17, 17, 0.72) 100%);
}

.visual-story-copy {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    z-index: 1;
}

.story-card-kicker {
    color: #cbd5e1;
}

.story-card-heading {
    color: #ffffff;
}

.story-card-text {
    color: rgba(255, 255, 255, 0.86);
}

.testimonial-cta {
    white-space: nowrap;
}

.testimonial-slider {
    overflow: hidden;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: var(--site-radius-xl);
    background: #ffffff;
    box-shadow: var(--site-shadow);
}

.testimonial-track {
    display: flex;
    gap: 1.5rem;
    transform: translateX(0);
    transition: transform 0.7s ease;
    will-change: transform;
}

.testimonial-card {
    width: 100%;
    min-height: 250px;
    padding: 1.25rem;
    border: 1px solid #e2e8f0;
    border-radius: 1.5rem;
    background: #ffffff;
    box-shadow: 0 16px 40px -28px rgba(17, 17, 17, 0.16);
    flex: 0 0 auto;
}

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

.testimonial-avatar {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    object-fit: cover;
    box-shadow: 0 10px 24px -16px rgba(15, 23, 42, 0.35);
}

.testimonial-name {
    margin: 0;
    font-weight: 700;
}

.testimonial-role {
    margin: 0.25rem 0 0;
    color: #64748b;
    font-size: 0.875rem;
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-top: 0.5rem;
    color: #64748b;
}

.testimonial-empty {
    color: #64748b;
    font-size: 0.95rem;
}

.closing-banner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    padding: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 5vw, 3.5rem);
    border: none;
    border-radius: 3.25rem;
    background: #000000;
    box-shadow: none;
}

.closing-heading {
    margin: 1.25rem 0 0;
    color: #ffffff;
    font-size: clamp(2.5rem, 4.8vw, 3.8rem);
    font-weight: 700;
    line-height: 1.06;
}

.closing-heading span {
    display: block;
    font-style: italic;
    font-weight: 400;
}

.closing-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.5rem 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 999px;
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.closing-pill i {
    font-size: 0.7rem;
}

.closing-copy {
    max-width: 430px;
    margin: 1rem 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.05rem;
    line-height: 1.45;
}

.closing-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    min-width: 228px;
    padding: 1.05rem 1.55rem;
    border-radius: 999px;
    background: #ffffff;
    color: #111111;
    font-size: 1.05rem;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.closing-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px -22px rgba(255, 255, 255, 0.7);
    color: #111111;
}

.closing-cta i {
    font-size: 1rem;
}

/* .site-page-shell {
    padding-bottom: 5rem;
} */

.about-hero-shell {
    position: relative;
    overflow: hidden;
    min-height: 680px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background:url(../images/bg-grid.png), linear-gradient(90deg, #000000ED 0%, #000000ED 42%, #000000de 100%), url(../images/page-hero-bg.png);
    background-position: center center, center center, right center;
    background-size: cover, cover, cover;
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-blend-mode: screen, normal, multiply;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.about-hero-overlay {
    background:
        radial-gradient(circle at left center, rgba(255, 255, 255, 0.07), transparent 34%),
        linear-gradient(90deg, rgba(17, 17, 17, 0.18) 0%, rgba(17, 17, 17, 0.08) 36%, rgba(17, 17, 17, 0.54) 100%);
}

.about-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    min-height: 680px;
    padding-top: 4.5rem;
    padding-bottom: 4rem;
}

.about-hero-copy {
    width: min(100%, 1000px);
    color: #ffffff;
}

.about-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.about-hero-breadcrumb a,
.about-hero-breadcrumb span {
    color: inherit;
    text-decoration: none;
}

.about-hero-breadcrumb a:hover {
    color: #ffffff;
}

.about-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.52rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.about-hero-title {
  max-width: 900px;
    margin: 1.9rem 0 0;
    color: #ffffff;
    font-size: 60px;
    font-weight: 600;
    line-height: 1.03;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.about-hero-subtitle {
    max-width: 760px;
    margin: 1.55rem 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.22rem;
    line-height: 1.65;
}

.about-hero-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 2rem;
    margin-top: 2.7rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.about-hero-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
}

.about-hero-meta-item i {
    color: rgba(255, 255, 255, 0.86);
}

.about-page-content {
    padding-top: 4.5rem;
}

.about-story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
    gap: 2.5rem;
    align-items: start;
}

.about-story-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.85rem;
    border: 1px solid #d8dee7;
    border-radius: 999px;
    color: #5b6472;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: #ffffff;
}

.about-story-title {
    margin: 1rem 0 0;
    color: #0f172a;
    font-size: 50px;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: 0px;
}

.about-story-image-wrap {
    margin-top: 1.5rem;
    overflow: hidden;
    border-radius: 1.5rem;
    box-shadow: 0 24px 54px -34px rgba(15, 23, 42, 0.28);
}

.about-story-image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.about-story-copy {
    padding-top: 3.5rem;
}

.about-story-copy p {
    margin: 0;
    color: #334155;
    font-size: 20px;
    line-height: 1.55;
}

.about-story-copy p + p {
    margin-top: 1.45rem;
}

.about-story-prose {
    margin-top: 3rem;
}

.about-timeline-section {
   padding-top: 1rem;
    padding-bottom: 5rem;
    border-top: 1px solid #d7dde6;
    border-bottom: 1px solid #d7dde6;
    background: #FAFAFA;
}

.about-timeline-intro {
    max-width: 620px;
    margin-bottom: 2.5rem;
    padding-top: 2rem;
}

.about-timeline-grid {
    overflow: hidden;
    border: 1px solid #d7dde6;
    border-radius: 1.75rem;
    background: #ffffff;
}

.about-timeline-grid .row > div {
    border-right: 1px solid #d7dde6;
}

.about-timeline-grid .row > div:last-child {
    border-right: 0;
}

.about-timeline-card {
    min-height: 132px;
    padding: 1.45rem 1.55rem 1.6rem;
    background: #ffffff;
}

.about-timeline-year {
    margin: 0;
    color: #57534e;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
}

.about-timeline-title {
    margin: 1.2rem 0 0;
    color: #111111;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.2;
}

.about-timeline-copy {
    margin: 0.7rem 0 0;
    color: #5b6472;
    font-size: 0.9rem;
    line-height: 1.55;
}

.site-page-header {
    max-width: 760px;
    margin-bottom: 3rem;
}

.site-contact-meta {
    margin-top: 2rem;
    color: #475569;
}

.site-contact-meta p {
    margin: 0 0 0.75rem;
}

.contact-section-shell {
    padding-top: 6rem;
    padding-bottom: 4rem;
}

.contact-panel {
    overflow: hidden;
    border: 1px solid #d7dde6;
    border-radius: 2rem;
    background: #FAFAFA;
}

.contact-panel-column {
    height: 100%;
    padding: 2.25rem 2.25rem 2rem;
}

.contact-panel-aside {
    border-left: 1px solid #d7dde6;
}

.contact-panel-header {
    margin-bottom: 2rem;
}

.contact-panel-title {
    margin: 0;
    color: #111111;
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.contact-panel-subtitle {
    margin: 0.75rem 0 0;
    color: #5b6472;
    font-size: 1rem;
    line-height: 1.65;
}

.contact-form-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.7rem;
    color: #111111;
    font-size: 0.83rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.contact-form-label i {
    font-size: 0.85rem;
    color: #111111;
}

.contact-form-control {
    min-height: 3.7rem;
    border-color: #cfd6df;
    border-radius: 0.95rem;
    padding: 1rem 1.1rem;
    color: #111111;
    font-size: 0.96rem;
    background: #ffffff;
}

.contact-form-control::placeholder {
    color: #6b7280;
}

.contact-form-textarea {
    min-height: 8rem;
    padding-top: 1rem;
}

.contact-submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    width: 100%;
    min-height: 3.85rem;
    border-radius: 999px;
    background: #000000;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.contact-submit-button:hover {
    transform: translateY(-1px);
    background: #111111;
    color: #ffffff;
}

.contact-channel-list {
    display: grid;
}

.contact-channel-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
    padding: 1.35rem 0;
    border-top: 1px solid #e2e8f0;
}

.contact-channel-item:first-child {
    padding-top: 0;
    border-top: 0;
}

.contact-channel-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid #cfd6df;
    border-radius: 0.7rem;
    background: #ffffff;
    color: #111111;
    font-size: 0.95rem;
}

.contact-channel-copy {
    min-width: 0;
}

.contact-channel-label {
    margin: 0;
    color: #5b6472;
    font-size: 0.92rem;
    line-height: 1.2;
}

.contact-channel-value {
    display: inline-block;
    color: #111111;
    font-size: 1rem;
    line-height: 1.5;
    text-decoration: none;
}

.contact-channel-value:hover {
    color: #111111;
}

.contact-channel-value-text {
    margin-bottom: 0;
}

.contact-hours-card {
    margin-top: 1.75rem;
    padding: 1.25rem 1.35rem;
    border: 1px solid #cfd6df;
    border-radius: 1rem;
    background: #ffffff;
}

.contact-hours-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    color: #57534e;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.contact-hours-value {
    margin: 1rem 0 0;
    color: #111111;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
}

.contact-hours-note {
    margin: 0.15rem 0 0;
    color: #111111;
    font-size: 1rem;
    line-height: 1.5;
}

@media (max-width: 991.98px) {
    .contact-panel-aside {
        border-top: 1px solid #d7dde6;
        border-left: 0;
    }
}

.blog-entry-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.2);
    border-radius: 1.65rem;
    background: #ffffff;
    text-decoration: none;
    box-shadow: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.blog-entry-card:hover {
    transform: translateY(-2px); 
    border-color: rgba(15, 23, 42, 0.28);
    box-shadow: 0 18px 32px -28px rgba(15, 23, 42, 0.22);
}

.blog-grid-row {
    margin-top: 0;
}

.blog-entry-media {
    height: 300px;
    overflow: hidden;
}

.blog-entry-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-entry-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 1.4rem 1.55rem 1.45rem;
}

.blog-entry-meta {
    margin: 0;
    color: #727272;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1.25;
    text-transform: uppercase;
}

.blog-entry-meta-dot {
    margin: 0 0.3rem;
}

.blog-featured-wrap {
    padding-bottom: 4.5rem;
    border-bottom: 2px solid #cccccc;
}

.blog-featured-header {
    display: none;
}

.blog-featured-slider {
    overflow: hidden;
}

.blog-featured-track {
    display: flex;
    transition: transform 0.45s ease;
    will-change: transform;
}

.blog-featured-card {
    display: grid;
    grid-template-columns: 1.16fr 1fr;
    align-items: stretch;
    width: 100%;
    flex: 0 0 100%;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.14);
    border-radius: 1.75rem;
    background: #ffffff;
    text-decoration: none;
}

.blog-featured-media {
   min-height: 338px;
    height: 415px;
}

.blog-featured-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-featured-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 2.5rem 2.5rem;
}

.blog-featured-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
    color: #666666;
    font-size: 0.92rem;
    font-weight: 500;
    text-transform: uppercase;
}

.blog-featured-dot {
    width: 0.35rem;
    height: 0.35rem;
    border-radius: 999px;
    background: #7a7a7a;
}

.blog-featured-title {
    margin: 1.25rem 0 0;
    color: #0a0a0a;
    font-size: clamp(2rem, 2.8vw, 3.15rem);
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: -0.04em;
}

.blog-featured-excerpt {
    max-width: 31rem;
    margin: 1rem 0 0;
    color: #4f4f4f;
    font-size: 1rem;
    line-height: 1.55;
}

.blog-featured-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
}

.blog-featured-byline {
    margin: 0;
    color: #4f4f4f;
    font-size: 1rem;
    line-height: 1.4;
}

.blog-featured-link {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: #111111;
    font-size: 0.92rem;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}

.blog-featured-link:hover {
    color: #000000;
}

.blog-featured-dots {
    display: none;
}

.blog-entry-title {
    margin: 0.95rem 0 0;
    color: #111111;
    font-size: clamp(1.35rem, 1.55vw, 1.95rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.18;
}

.blog-entry-excerpt {
    margin: 0.65rem 0 0;
    color: #6a6a6a;
    font-size: 0.95rem;
    line-height: 1.34;
}

.blog-entry-readtime {
    margin: auto 0 0;
    padding-top: 1.35rem;
    color: #111111;
    font-size: 0.92rem;
    font-weight: 500;
}

.blog-detail-hero {
    min-height: 540px;
}

.blog-detail-title {
    max-width: 900px;
}

.blog-detail-subtitle {
    max-width: 760px;
}

.blog-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.72fr);
    gap: 2rem;
    align-items: start;
}

.blog-detail-article,
.blog-detail-sidebar-card {
    border: 1px solid #e2e8f0;
    border-radius: 1.75rem;
    background: #ffffff;
}

.blog-detail-article {
    overflow: hidden;
}

.blog-detail-image-wrap {
    height: 470px;
}

.blog-detail-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-body {
    padding: 2rem;
}

.blog-detail-body p {
    margin: 0;
    color: #475569;
    font-size: 1rem;
    line-height: 1.9;
}

.blog-detail-body p + p {
    margin-top: 1rem;
}

.blog-detail-sidebar {
    display: grid;
    gap: 1.25rem;
}

.blog-detail-sidebar-card {
    padding: 1.5rem;
}

.blog-detail-related {
    display: grid;
    gap: 1rem;
}

.blog-detail-related-card {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
    padding: 0.85rem;
    border: 1px solid #e2e8f0;
    border-radius: 1.35rem;
    background: #ffffff;
    color: inherit;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-detail-related-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px -32px rgba(15, 23, 42, 0.32);
}

.blog-detail-related-image {
    width: 112px;
    height: 112px;
    border-radius: 1rem;
    object-fit: cover;
}

.blog-detail-related-body {
    min-width: 0;
}

.blog-detail-related-meta {
    margin: 0;
    color: #64748b;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.blog-detail-related-title {
    margin: 0.5rem 0 0;
    color: #0f172a;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.25;
}

.blog-detail-related-time {
    margin: 0.7rem 0 0;
    color: #475569;
    font-size: 0.9rem;
}

.site-form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: #334155;
    font-size: 0.9rem;
    font-weight: 700;
}

.site-form-control {
    border: 1px solid #cbd5e1;
    border-radius: 1rem;
    padding: 0.85rem 1rem;
    box-shadow: none;
}

.site-form-control:focus {
    border-color: #0f172a;
    box-shadow: 0 0 0 0.2rem rgba(15, 23, 42, 0.12);
}

.site-form-textarea {
    min-height: 160px;
    resize: vertical;
}

.site-form-error {
    margin: 0.5rem 0 0;
    color: #e11d48;
    font-size: 0.875rem;
}

.practice-areas-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background: #ffffff;
}

.practice-areas-intro {
    max-width: 760px;
    margin-bottom: 3.25rem;
}

.practice-areas-badge {
    border-color: #cfd4dc;
    color: #5b6472;
    background: #ffffff;
}

.practice-areas-title {
    margin: 1.25rem 0 0;
    color: #000000;
    font-size: clamp(2.6rem, 4.6vw, 4.45rem);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.04em;
    max-width: 580px;
}

.practice-areas-title br,
.practice-areas-subtitle br {
    display: block;
}

.practice-areas-subtitle {
    max-width: 660px;
    margin: 1.2rem 0 0;
    color: #5b6472;
    font-size: 1.05rem;
    line-height: 1.55;
}

.practice-areas-grid {
    overflow: hidden;
    border: 1px solid #d7dde6;
    border-radius: 2rem;
    background: #ffffff;
}

.practice-areas-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.practice-area-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 76px;
    padding: 1.6rem 1.4rem;
    border-right: 1px solid #d7dde6;
    border-bottom: 1px solid #d7dde6;
    background: #ffffff;
    transition: background-color 0.2s ease;
}

.practice-area-card:nth-child(4n) {
    border-right: none;
}

.practice-area-card:nth-last-child(-n + 4) {
    border-bottom: none;
}

.practice-area-card:hover {
    background: #fafafa;
}

.practice-area-icon-wrap {
    width: 3.1rem;
    height: 3.1rem;
    border: 1px solid #e6e8ec;
    border-radius: 0.95rem;
    background: linear-gradient(180deg, #fbfbfb 0%, #f3f4f6 100%);
    color: #111111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.practice-area-icon-wrap i {
    font-size: 0.95rem;
}

.practice-area-name {
    color: #111111;
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.35;
}

@media (max-width: 991.98px) {
    .practice-areas-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .practice-area-card:nth-child(4n) {
        border-right: 1px solid #d7dde6;
    }

    .practice-area-card:nth-child(2n) {
        border-right: none;
    }

    .practice-area-card:nth-last-child(-n + 4) {
        border-bottom: 1px solid #d7dde6;
    }

    .practice-area-card:nth-last-child(-n + 2) {
        border-bottom: none;
    }
}

@media (max-width: 575.98px) {
    .practice-areas-intro {
        margin-bottom: 2.25rem;
    }

    .practice-areas-title {
        font-size: clamp(2.25rem, 10vw, 3.05rem);
    }

    .practice-areas-title br,
    .practice-areas-subtitle br {
        display: none;
    }

    .practice-areas-grid {
        border-radius: 1.5rem;
    }

    .practice-areas-row {
        grid-template-columns: 1fr;
    }

    .practice-area-card,
    .practice-area-card:nth-child(4n),
    .practice-area-card:nth-child(2n) {
        border-right: none;
    }

    .practice-area-card:nth-last-child(-n + 2) {
        border-bottom: 1px solid #d7dde6;
    }

    .practice-area-card:last-child {
        border-bottom: none;
    }
}

.site-footer {
    position: relative;
    margin-top: 2rem;
    padding-top: 2rem;
    color: #ffffff;
    background: url(../images/bg-grid.png) center top / cover no-repeat, radial-gradient(circle at top right, #000000, #000000 26%), linear-gradient(135deg, #080808 0%, #000000 48%, #000000 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.site-footer-shell {
    position: relative;
    padding: 3.5rem 0 1.2rem;
}

.site-footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}



.site-footer-ready {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
    font-weight: 500;
}

.site-footer-ready::before {
    content: "";
    width: 2.4rem;
    height: 1px;
    background: rgba(255, 255, 255, 0.55);
}

.site-footer-ready::after {
    content: none;
}

.site-footer-ready-dot {
    width: 0.58rem;
    height: 0.58rem;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 50%;
    flex-shrink: 0;
}

.site-footer-display {
    margin: 1.35rem 0 0;
    color: #ffffff;
    font-size: clamp(2.7rem, 5vw, 3.8rem);
    font-weight: 500;
    line-height: 1.08;
}

.site-footer-display span {
    display: block;
}

.site-footer-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.site-footer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    min-height: 3rem;
    padding: 0.75rem 1rem 0.75rem 1.2rem;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.site-footer-btn-solid {
    background: #ffffff;
    color: #111111;
}

.site-footer-btn-solid:hover {
    color: #111111;
    transform: translateY(-2px);
    box-shadow: 0 20px 35px -24px rgba(255, 255, 255, 0.7);
}

.site-footer-btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.65);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.04);
}

.site-footer-btn-outline:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.site-footer-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 999px;
    font-size: 0.68rem;
    flex-shrink: 0;
}

.site-footer-btn-icon-dark {
    background: #111111;
    color: #ffffff;
}

.site-footer-btn-icon-light {
    background: #ffffff;
    color: #111111;
    font-size: 0.52rem;
}

.site-footer-divider {
    width: 100%;
    height: 1px;
    margin: 2.75rem 0 2.7rem;
    background: rgba(255, 255, 255, 0.24);
}

.site-footer-main {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(150px, 0.52fr) minmax(160px, 0.62fr) minmax(260px, 0.86fr);
    gap: 2rem;
    align-items: start;
}

.site-footer-brand-col {
    max-width: 470px;
}

.site-footer-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.site-footer-brand-image {
    display: block;
    width: 10.5rem;
    height: auto;
}

.site-footer-description {
    max-width: 460px;
    margin: 1.35rem 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.98rem;
    line-height: 1.6;
    font-style: italic;
}

.site-footer-subscribe {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-top: 1.55rem;
    padding: 0.55rem 0.65rem 0.55rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    max-width: 430px;
}

.site-footer-subscribe-icon {
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.95rem;
}

.site-footer-subscribe-input {
    flex: 1 1 auto;
    min-width: 0;
    border: none;
    background: transparent;
    color: #ffffff;
    font-size: 0.95rem;
    outline: none;
}

.site-footer-subscribe-input::placeholder {
    color: rgba(255, 255, 255, 0.56);
}

.site-footer-subscribe-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.15rem;
    border: none;
    border-radius: 999px;
    background: #ffffff;
    color: #111111;
    font-size: 0.95rem;
    font-weight: 500;
}

.site-footer-heading {
    position: relative;
    margin: 0 0 1.2rem;
    padding-left: 2rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.site-footer-heading::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 1.4rem;
    height: 1px;
    background: rgba(255, 255, 255, 0.42);
    transform: translateY(-50%);
}

.site-footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
}

.site-footer-link {
    color: #ffffff;
    font-size: 0.98rem;
    text-decoration: none;
}

.site-footer-link::before {
    content: "\2192";
    margin-right: 0.5rem;
    color: rgba(255, 255, 255, 0.72);
}

.site-footer-link:hover {
    color: rgba(255, 255, 255, 0.78);
}

.site-footer-contact-card {
    padding: 1.25rem 1.15rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.15rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
}

.site-footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.site-footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.site-footer-contact-icon,
.site-footer-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 999px;
    background: #ffffff;
    color: #111111;
    flex-shrink: 0;
}

.site-footer-contact-label,
.site-footer-feature-copy {
    margin: 0;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.78rem;
    line-height: 1.35;
}

.site-footer-contact-value {
    margin: 0.2rem 0 0;
    color: #ffffff;
    font-size: 0.92rem;
    line-height: 1.45;
    text-decoration: none;
}

.site-footer-contact-text {
    text-decoration: none;
}

.site-footer-feature-bar {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2.8rem;
    padding: 1.4rem 1.6rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1.65rem;
    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(8px);
}

.site-footer-feature {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.site-footer-feature-title {
    margin: 0;
    color: #ffffff;
    font-size: 0.96rem;
    font-weight: 600;
}

.site-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2.95rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.site-footer-legal {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.88rem;
}

.site-footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.site-footer-bottom-link {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.88rem;
    text-decoration: none;
    text-transform: uppercase;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes siteTickerMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* How It Works Section */
.how-it-works-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.how-it-works-intro {
    max-width: 800px;
    margin-bottom: 3.5rem;
}

.how-it-works-title {
    margin: 1.25rem 0 0;
    color: #000000;
    font-size: clamp(2.5rem, 4.3vw, 4.2rem);
    font-weight: 700;
    line-height: 1.05;
    text-transform: none;
}

.how-it-works-subtitle {
    max-width: 660px;
    margin: 1.15rem 0 0;
    color: #5b6472;
    font-size: 1.05rem;
    line-height: 1.6;
}

.how-it-works-grid {
    overflow: hidden;
    border: 1px solid #d7dde6;
    border-radius: 1.875rem;
    background: #ffffff;
}

.how-it-works-col {
    border-bottom: 1px solid #d7dde6;
    background: #ffffff;
}

@media (min-width: 768px) {
    .how-it-works-col {
        border-right: 1px solid #d7dde6;
    }
    .how-it-works-col:nth-child(2n) {
        border-right: 0;
    }
    .how-it-works-col:nth-last-child(-n + 2) {
        border-bottom: 0;
    }
}

@media (min-width: 992px) {
    .how-it-works-col {
        border-right: 1px solid #d7dde6 !important;
        border-bottom: 0 !important;
    }
    .how-it-works-col:last-child {
        border-right: 0 !important;
    }
}

.how-it-works-card {
    padding: 3rem 2rem 2.75rem 2.25rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.how-it-works-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.how-it-works-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.85rem;
    height: 2.85rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.95rem;
    background: #f8fafc;
    color: #1e293b;
    font-size: 1.1rem;
    transition: transform 0.4s ease, background-color 0.4s ease, color 0.4s ease;
}

.how-it-works-card:hover .how-it-works-icon {
    transform: translateY(-2px);
    background-color: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
}

.how-it-works-num {
    font-family: "Google Sans Flex", system-ui, sans-serif;
    color: #94a3b8;
    font-size: 1.05rem;
    font-weight: 700;
}

.how-it-works-card-title {
    margin: 0;
    color: #0f172a;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.how-it-works-card-copy {
    margin: 0.85rem 0 0;
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.55;
}

@media (min-width: 992px) {
    .testimonial-card {
        width: calc((100% - 3rem) / 3);
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .testimonial-card {
        width: calc((100% - 1.5rem) / 2);
    }
}

@media (max-width: 991.98px) {
    .site-topbar-meta {
        display: none;
    }

    .site-navbar {
        min-height: 82px;
    }

    .site-logo-image {
        height: 60px;
    }

    .site-nav-actions {
        flex-direction: column;
        align-items: stretch;
        margin-top: 1rem;
    }

    .site-nav-actions .btn,
    .site-nav-actions form,
    .site-nav-actions form .btn {
        width: 100%;
    }

    .hero-shell,
    .hero-inner {
        min-height: auto;
    }

    .hero-inner {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }


    .hero-image-wrap {
        min-height: 280px;
    }

    .hero-image {
        max-height: 320px;
    }

    .hero-metrics {
        margin-top: 2rem;
    }

    .hero-metrics .col-lg-4:not(:last-child) .hero-metric-card {
        border-right: 0;
        border-bottom: 1px solid var(--site-line);
    }

    .story-header,
    .testimonial-header,
    .closing-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .closing-banner {
        border-radius: 2.4rem;
        gap: 1.75rem;
    }

    .closing-heading span {
        display: inline;
    }

    .site-footer-shell {
        padding-top: 3rem;
    }

    .site-footer-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-footer-actions {
        justify-content: flex-start;
    }

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

    .site-footer-brand-col {
        max-width: none;
        grid-column: 1 / -1;
    }

    .site-footer-contact-card {
        grid-column: 1 / -1;
        max-width: 420px;
    }

    .site-footer-feature-bar {
        grid-template-columns: 1fr;
    }

    .site-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-footer-bottom-links {
        justify-content: flex-start;
    }

    .why-grid .row > div:nth-child(3n) {
        border-right: 1px solid #d7dde6;
    }

    .why-grid .row > div:nth-child(2n) {
        border-right: 0;
    }

    .why-grid .row > div:nth-last-child(-n + 2) {
        border-bottom: 0;
    }

    .why-grid .row > div:nth-last-child(3) {
        border-bottom: 1px solid #d7dde6;
    }

    .blog-featured-card {
        grid-template-columns: 1fr;
    }

    .blog-featured-media {
        min-height: 280px;
    }

    .blog-featured-content {
        padding: 2rem 1.75rem;
    }

    .blog-featured-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-entry-media {
        height: 220px;
    }

    .blog-detail-grid {
        grid-template-columns: 1fr;
    }

    .blog-detail-image-wrap {
        height: 360px;
    }
}

@media (max-width: 767.98px) {
    .site-topbar {
        height: 48px;
    }

    .site-topbar-inner {
        justify-content: center;
        padding: 0.8rem 0;
    }

    .site-topbar-brand {
        font-size: 0.68rem;
        text-align: center;
    }

    /* .site-section,
    .site-page-shell {
        padding-top: 4rem;
    } */

    .hero-inner {
        padding-top: 1.5rem;
        padding-bottom: 1rem;
    }

    .hero-title {
       font-size: clamp(2.05rem, 8vw, 3.95rem);
        line-height: 1.25;
    }
    .hero-title-accent::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.08em;
    height: 0.04em;
    background: currentColor;
}

    .hero-subtitle {
        max-width: none;
        font-size: 0.9rem;
        line-height: 1.65;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn,
    .hero-outline-button {
        width: 100%;
    }

    .hero-image-wrap {
        min-height: 220px;
    }

    .hero-image {
        max-width: 400px;
        max-height: 260px;
    }

    .hero-metric-card {
        min-height: 0;
        padding: 1rem 1.25rem;
    }

    .about-hero-shell,
    .about-hero-inner {
        min-height: auto;
    }

    .about-hero-inner {
        align-items: flex-end;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .about-hero-breadcrumb {
        flex-wrap: wrap;
        font-size: 0.72rem;
    }

    .about-hero-pill {
        font-size: 0.75rem;
    }

    .about-hero-title {
        margin-top: 1.35rem;
        font-size: clamp(2.2rem, 10vw, 3.15rem);
        line-height: 1.08;
    }

    .about-hero-subtitle {
        font-size: 0.98rem;
        line-height: 1.7;
    }

    .about-hero-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.9rem;
        margin-top: 2rem;
        padding-top: 1.4rem;
    }

    .about-hero-meta-item {
        font-size: 0.92rem;
    }

    .about-page-content {
        padding-top: 3rem;
    }

    .blog-featured-wrap {
        margin-bottom: 3rem;
    }

    .blog-featured-card {
        border-radius: 1.5rem;
    }

    .blog-featured-media {
        min-height: 220px;
    }

    .blog-featured-content {
        padding: 1.5rem 1.25rem;
    }

    .blog-featured-meta {
        flex-wrap: wrap;
        gap: 0.45rem;
        font-size: 0.8rem;
    }

    .blog-featured-title {
        font-size: clamp(1.85rem, 8vw, 2.5rem);
    }

    .blog-featured-excerpt,
    .blog-featured-byline {
        font-size: 0.95rem;
    }

    .blog-entry-card {
        border-radius: 1.45rem;
    }

    .blog-entry-media {
        height: 210px;
    }

    .blog-entry-body {
        padding: 1.2rem 1.2rem 1.25rem;
    }

    .blog-entry-excerpt {
        font-size: 0.92rem;
    }

    .blog-detail-hero,
    .blog-detail-hero .about-hero-inner {
        min-height: auto;
    }

    .blog-detail-image-wrap {
        height: 240px;
    }

    .blog-detail-body {
        padding: 1.35rem 1.15rem;
    }

    .blog-detail-related-card {
        grid-template-columns: 88px minmax(0, 1fr);
        gap: 0.85rem;
    }

    .blog-detail-related-image {
        width: 88px;
        height: 88px;
    }

    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-section-shell {
        padding-top: 1rem;
        padding-bottom: 4rem;
    }

    .contact-panel {
        border-radius: 1.5rem;
    }

    .contact-panel-column {
        padding: 1.5rem;
    }

    .contact-panel-title {
        font-size: clamp(1.8rem, 9vw, 2.3rem);
    }

    .contact-submit-button {
        min-height: 3.5rem;
    }

    .contact-hours-value {
        font-size: 1.12rem;
    }

    .about-story-title {
        font-size: clamp(2rem, 9vw, 3rem);
        line-height: 1.12;
    }

    .about-story-copy {
        padding-top: 0;
    }

    .about-story-copy p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .about-timeline-section {
        padding-bottom: 4rem;
    }

    .about-timeline-grid .row > div {
        border-right: 0;
        border-bottom: 1px solid #d7dde6;
    }

    .about-timeline-grid .row > div:last-child {
        border-bottom: 0;
    }

    .why-section {
        padding-top: 4rem;
    }

    .why-section-title {
        max-width: none;
        font-size: 32px;
    }

    .why-grid .row > div {
        border-right: 0 !important;
        border-bottom: 1px solid #d7dde6 !important;
    }

    .why-grid .row > div:last-child {
        border-bottom: 0 !important;
    }

    .why-card {
        min-height: 0;
        padding: 1.25rem 1.25rem 1.15rem;
         transition: background-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
    }

    .ticker-group {
        gap: 1.25rem;
        padding: 1.1rem 1.25rem;
    }

    .ticker-item {
        font-size: 0.95rem;
    }

    .ticker-item:not(:last-child)::after {
        margin-left: 1.25rem;
    }

    .image-callout-photo {
        height: 11rem;
    }

    .image-callout-copy,
    .visual-story-copy {
        padding: 1rem;
    }

    .visual-story-card {
        min-height: 320px;
    }

    .how-it-works-col {
        border-right: 0 !important;
        border-bottom: 1px solid #d7dde6 !important;
    }

    .how-it-works-col:last-child {
        border-bottom: 0 !important;
    }

    .how-it-works-card {
        padding: 2.25rem 1.5rem 2rem;
    }

    .closing-banner {
        padding: 2rem 1.5rem;
        border-radius: 2rem;
    }

    .closing-heading {
       font-size: clamp(2rem, 7vw, 3.1rem);
        line-height: 1.20;
    }

    .closing-copy {
        font-size: 0.98rem;
    }

    .closing-cta {
        width: 100%;
        min-width: 0;
    }

    .site-footer {
        margin-top: 4rem;
        background:
            url('../images/bg-grid.png') center top / cover no-repeat,
            linear-gradient(135deg, #080808 0%, #101010 52%, #1a1a1a 100%);
    }

    .site-footer-shell {
        padding-top: 2.5rem;
    }

    .site-footer-display {
        font-size: clamp(2.2rem, 7vw, 3.35rem);
    }

    .site-footer-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .site-footer-btn {
        width: 100%;
    }

    .site-footer-divider {
        margin: 2.15rem 0;
    }

    .site-footer-main {
        grid-template-columns: 1fr;
        gap: 2.1rem;
    }

    .site-footer-heading {
        margin-bottom: 1rem;
    }

    .site-footer-subscribe {
        flex-wrap: wrap;
        border-radius: 1.5rem;
        padding: 0.9rem;
    }

    .site-footer-subscribe-input {
        width: calc(100% - 2rem);
    }

    .site-footer-subscribe-btn {
        width: 100%;
        justify-content: center;
    }

    .site-footer-contact-card {
        max-width: none;
    }

    .site-footer-feature-bar {
        padding: 1.15rem 1rem;
        border-radius: 1.25rem;
    }

    .site-footer-feature {
        align-items: flex-start;
    }

    .site-footer-bottom-links {
        gap: 0.9rem 1.1rem;
    }
}/* ==========================================================================
   Pocket Section (Mobile App Promo)
   ========================================================================== */
.pocket-section {
    position: relative;
    background: #000000;
    color: #ffffff;
    padding: 7rem 0;
    overflow: hidden;
    border-bottom: 1px solid #1f1f23;
}

.pocket-section .hero-gridline {
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
}

.pocket-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.pocket-title {
    margin-top: 1.5rem;
    color: #ffffff;
    font-size: 44px;
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.pocket-title-italic {
    font-style: italic;
    font-weight: 500;
    font-family: "Google Sans Flex", system-ui, sans-serif;
}

.pocket-subtitle {
    max-width: 580px;
    margin-top: 1.25rem;
    color: #a1a1aa;
    font-size: 15px;
    line-height: 1.6;
}

.pocket-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.75rem;
    background: #FFFFFF33;
    margin-top: 2rem;
    overflow: hidden;
}

.pocket-grid-item {
    padding: 20px;
    transition: background-color 0.3s ease;
}

.pocket-grid-item:hover {
    background: rgba(255, 255, 255, 0.03);
}

.pocket-grid-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.pocket-grid-item:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pocket-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 0.65rem;
    background: #ffffff;
    color: #000000;
    font-size: 1.05rem;
}

.pocket-item-title {
    margin: 1.25rem 0 0;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
}

.pocket-item-copy {
    margin: 0.5rem 0 0;
    color: #a1a1aa;
    font-size: 12px;
    line-height: 1.45;
}

.pocket-downloads {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 2rem;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    background: #ffffff;
    color: #000000;
    border-radius: 1.15rem;
    padding: 0.8rem 1.6rem;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #ffffff;
}

.btn-download:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-4px);
}

.download-btn-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    transition: filter 0.2s ease;
}

.download-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.download-kicker {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #71717a;
    transition: color 0.2s ease;
}

.download-title {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* Desktop layout: Set the composite image as the background and hide the img tag */
@media (min-width: 992px) {
    .pocket-section {
        background: #000000 url('../images/mobile-rimg.webp') no-repeat center right / cover;
        /* min-height: 720px; */
        max-height: 780px;
        display: flex;
        align-items: center;
    }
    .pocket-section .hero-gridline {
        display: none; /* Already built into the background image */
    }
    .pocket-image-wrap {
        display: none;
    }
}

/* Tablet & Mobile layout: Show the image inside the column and crop it to focus on the phones */
@media (max-width: 991.98px) {
    .pocket-section {
        padding: 5rem 0 0 0;
        background: #000000;
    }
    .pocket-image-wrap {
        margin-top: 3rem;
        width: 100%;
        overflow: hidden;
        display: flex;
        justify-content: center;
    }
    .pocket-image {
        width: 100%;
        height: 380px;
        object-fit: cover;
        object-position: 85% center;
        display: none;
    }
}

@media (max-width: 575.98px) {
    .pocket-grid {
        grid-template-columns: 1fr;
        border-radius: 1.25rem;
    }
    .pocket-grid-item {
        padding: 2rem 1.5rem;
    }
    .pocket-grid-item:nth-child(odd) {
        border-right: none;
    }
    .pocket-grid-item:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .pocket-downloads {
        flex-direction: column;
        align-items: stretch;
    }
    .btn-download {
        justify-content: center;
    }
}

/* ==========================================================================
   Testimonial Section
   ========================================================================== */
.testimonial-section {
    background: #ffffff;
    padding-bottom: 5rem;
}

.testimonial-intro {
    margin-bottom: 2.25rem;
}

.testimonial-section-title {
    margin: 1.15rem 0 0;
    color: #000000;
    font-size: clamp(2.5rem, 4.3vw, 3.8rem);
    font-weight: 700;
    line-height: 1.04;
}

.testimonial-section-subtitle {
    max-width: 660px;
    margin: 1rem 0 0;
    color: #5b6472;
    font-size: 1rem;
    line-height: 1.55;
}

.testimonial-slider-wrapper {
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 1.875rem;
    background: #ffffff;
    margin-top: 3.5rem;
    width: 100%;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.testimonial-track-new {
    display: flex;
    gap: 0; /* No gap so cards touch and borders act as separators */
    transform: translateX(0);
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.testimonial-grid-card {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    transition: background-color 0.3s ease;
    flex: 0 0 100%; /* Mobile default (1 card visible) */
    width: 100%;
    box-sizing: border-box;
    border-right: 1px solid #e2e8f0;
}

.testimonial-grid-card:hover {
    background-color: #fafafa;
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    color: #000000;
    font-size: 0.85rem;
}

.testimonial-quote {
    margin: 1.5rem 0 0;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #000000;
    font-style: italic;
    font-weight: 500;
    flex-grow: 1;
}

.quote-mark {
    font-weight: 700;
    font-size: 1.15rem;
    margin-right: 0.15rem;
}

.testimonial-divider {
    height: 1px;
    background: #77777755;
    margin: 2rem 0;
}

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

.testimonial-author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.testimonial-author-name {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #000000;
}

.testimonial-author-role {
    margin: 0.25rem 0 0;
    font-size: 0.7rem;
    font-weight: 600;
    color: #64748b;
    letter-spacing: 0.05em;
}

/* Desktop: 3 cards visible */
@media (min-width: 992px) {
    .testimonial-grid-card {
        flex: 0 0 33.3333%;
        width: 33.3333%;
    }
}

/* Tablet: 2 cards visible */
@media (max-width: 991.98px) and (min-width: 576px) {
    .testimonial-grid-card {
        flex: 0 0 50%;
        width: 50%;
    }
}

/* Mobile: 1 card visible */
@media (max-width: 575.98px) {
    .testimonial-grid-card {
        flex: 0 0 100%;
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }
    .testimonial-grid-card:last-child {
        border-bottom: none;
    }
}
.site-footer-legal-link{
    color: #f3f4f6;
    text-decoration: none;
    font-weight: 500;
}