/* =========================================================
   GEETEX™ - Main Stylesheet
   Stack: Bootstrap 5 + Custom CSS
   Font:  sofia-pro (Adobe Fonts — add kit link in header)
   ========================================================= */

/* ----- CSS Variables (edit here to change sitewide) ----- */
:root {
    --color-red:    #E8192C;   /* used ONLY for active nav */
    --color-navy:   #1B3A6B;   /* from logo — used for CTA sections */
    --color-black:  #111111;
    --color-white:  #FFFFFF;
    --color-light:  #F5F5F5;
    --color-gray:   #666666;
    --color-border: #E0E0E0;
    --font-main:    'Montserrat', sans-serif;
    --transition:   all 0.2s ease;
}

/* ----- Base ----- */
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: var(--font-main);
    color: var(--color-black);
    background-color: var(--color-white);
    font-size: 16px;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-black);
    font-weight: 700;
    line-height: 1.25;
}

p { margin-bottom: 1rem; }
a { transition: var(--transition); }
img { max-width: 100%; height: auto; }

/* ----- Utility ----- */
.section-pad    { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }
.bg-light-gray  { background-color: var(--color-light); }

.section-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gray);
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(1.9rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 16px;
}

.section-title-lg {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 16px;
}

/* black bar accent (was red-bar) */
.red-bar {
    width: 40px;
    height: 3px;
    background-color: var(--color-black);
    margin-bottom: 28px;
}

/* ----- Navbar ----- */
.site-header {
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    padding: 5px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.navbar-brand img {
    padding: 0 !important
}

.navbar-brand img {
    height: 90px;
    width: auto;
}

.nav-link {
    color: var(--color-black) !important;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 8px 14px !important;
    position: relative;
}

/* Underline on hover — black */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 14px;
    right: 14px;
    height: 2px;
    background-color: var(--color-black);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.nav-link:hover { color: var(--color-black) !important; }
.nav-link:hover::after { transform: scaleX(1); }

/* Active nav — RED only here */
.nav-link.active { color: var(--color-red) !important; }
.nav-link.active::after {
    background-color: var(--color-red);
    transform: scaleX(1);
}

.navbar-toggler { border: 1px solid var(--color-border); padding: 6px 10px; }
.navbar-toggler:focus { box-shadow: none; }

/* ----- Buttons ----- */
.btn-black {
    background-color: var(--color-black);
    color: var(--color-white);
    border: 2px solid var(--color-black);
    padding: 13px 34px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    border-radius: 0;
}

.btn-black:hover {
    background-color: transparent;
    color: var(--color-black);
}

.btn-white-outline {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
    padding: 13px 34px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    border-radius: 0;
}

.btn-white-outline:hover {
    background-color: var(--color-white);
    color: var(--color-black);
}

/* ----- Sample Image (replaces placeholder) ----- */
.sample-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.img-wrap { overflow: hidden; position: relative; }

/* ----- Inner Page Hero — full-bleed image with editorial text overlay ----- */
.page-hero {
    position: relative;
    height: 480px;
    overflow: hidden;
    border-bottom: 1px solid #222;
}

/* Slight scale on load for depth */
.page-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1.04);
    animation: heroImgScale 1.2s ease forwards;
}

@keyframes heroImgScale {
    to { transform: scale(1); }
}

/* Multi-layer overlay: bottom dark band + left fade */
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top,  rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.3) 45%, rgba(0,0,0,0.08) 100%),
        linear-gradient(to right, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 60%);
}

/* Content sits at bottom left — editorial style */
.page-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 56px;
}

/* Small white accent bar above label */
.page-hero-bar {
    width: 36px;
    height: 3px;
    background: #fff;
    margin-bottom: 16px;
    animation: heroTextIn 0.6s ease 0.2s both;
}

.page-hero-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 12px;
    animation: heroTextIn 0.6s ease 0.35s both;
}

.page-hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin: 0;
    max-width: 780px;
    letter-spacing: -0.02em;
    animation: heroTextIn 0.7s ease 0.5s both;
}

@keyframes heroTextIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 991px) {
    .page-hero { height: 380px; }
}

@media (max-width: 767px) {
    .page-hero { height: 300px; }
    .page-hero h1 { font-size: 1.8rem; }
    .page-hero-content { padding-bottom: 36px; }
}

@media (prefers-reduced-motion: reduce) {
    .page-hero-img { animation: none; transform: scale(1); }
    .page-hero-bar,
    .page-hero-label,
    .page-hero h1 { animation: none; opacity: 1; transform: none; }
}

/* ----- Hero (old — kept for other pages) ----- */
.hero-section {
    padding: 90px 0 80px;
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-border);
}

.hero-headline {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    color: var(--color-black);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--color-gray);
    margin-bottom: 36px;
    max-width: 480px;
}

/* ----- Hero Split (homepage full-bleed layout) ----- */
.hero-split {
    display: flex;
    align-items: stretch;
    min-height: 100vh;
    overflow: hidden;
    border-bottom: 1px solid var(--color-border);
}

.hero-split-left {
    flex: 0 0 52%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0px clamp(32px, 5vw, 72px) 100px clamp(24px, 8vw, 110px);
    background-color: var(--color-white);
}

.hero-split-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-split-right img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.hero-split-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-gray);
    margin-bottom: 40px;
}

.hero-split-headline {
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 700;
    color: var(--color-black);
    line-height: 1.1;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.hero-split-sub {
    font-size: 1rem;
    color: var(--color-gray);
    max-width: 400px;
    margin-bottom: 52px;
    line-height: 1.75;
}

.hero-split-actions {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.hero-split-since {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--color-gray);
    letter-spacing: 0.01em;
    line-height: 1.5;
    max-width: 260px;
}

@media (max-width: 991px) {
    .hero-split { flex-direction: column; min-height: auto; }
    .hero-split-left { flex: none; padding: 64px 32px; }
    .hero-split-right { flex: none; height: 380px; position: relative; }
    .hero-split-headline { font-size: 2.6rem; }
}

@media (max-width: 767px) {
    .hero-split-left { padding: 48px 24px; }
    .hero-split-headline { font-size: 2rem; }
    .hero-split-right { height: 280px; }
}

/* ----- Problem Section ----- */
.problem-section { background-color: var(--color-light); padding: 90px 0; }

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

.problem-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 1.15rem;
    color: var(--color-black);
    font-weight: 500;
}

.problem-list li:last-child { border-bottom: none; }

.problem-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-black);
    flex-shrink: 0;
    margin-top: 8px;
}

/* ----- Solution Section ----- */
.solution-section { background-color: var(--color-white); padding: 90px 0; }
.solution-intro { font-size: 1rem; color: var(--color-gray); max-width: 600px; }

/* ----- Key Pillars ----- */
.pillars-section { background-color: var(--color-light); padding: 90px 0; }

.pillar-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    padding: 36px 28px;
    height: 100%;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.pillar-card:hover { border-color: var(--color-black); }

.pillar-card-content {
    display: flex;
    justify-content: center;
}

.pillar-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 96px;
    opacity: 1;
    order: -1;
}

.pillar-icon img {
    width: 96px;
    height: 96px;
    object-fit: contain;
}

/* ── Per-pillar icon sizes — adjust individually as needed ── */
#pillars-row > div:nth-child(1) .pillar-icon img { width: 96px; height: 96px; }
#pillars-row > div:nth-child(2) .pillar-icon img { width: 96px; height: 96px; }
#pillars-row > div:nth-child(3) .pillar-icon img { width: 96px; height: 96px; }
#pillars-row > div:nth-child(4) .pillar-icon img { width: 96px; height: 96px; }
#pillars-row > div:nth-child(5) .pillar-icon img { width: 159px; height: auto; }

.pillar-number {
    position: absolute;
    top: 18px;
    left: 22px;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-black);
    line-height: 1;
    opacity: 0.15;
}

.pillar-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 0;
    text-align: center;
}

/* ----- Closing CTA ----- */
.cta-section { background-color: var(--color-black); padding: 90px 0; }

.cta-headline {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 8px;
}

/* ----- Footer ----- */
.site-footer { background-color: #111111; color: #999999; padding: 60px 0 0; }

.footer-logo {
    height: 124px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 16px;
}

.footer-tagline { font-size: 1rem; color: #999; margin-bottom: 0; letter-spacing: 0.01em; }

.footer-heading {
    color: var(--color-white);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-link {
    color: #999999;
    text-decoration: none;
    font-size: 0.875rem;
    display: block;
    margin-bottom: 10px;
}

.footer-link:hover { color: var(--color-white); }

.footer-contact-item {
    font-size: 0.875rem;
    color: #999999;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-bottom {
    border-top: 1px solid #2A2A2A;
    margin-top: 48px;
    padding: 20px 0;
}

.footer-bottom p { font-size: 0.8rem; color: #666666; margin: 0; text-align: center; }

/* ==========================================================
   INDEX 2 — Alternate Design Styles
   ========================================================== */

/* Hero v2 — split full-height */
.hero2-section {
    min-height: 92vh;
    display: flex;
    align-items: stretch;
}

.hero2-left {
    background-color: var(--color-black);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 64px;
}

.hero2-right {
    position: relative;
    overflow: hidden;
}

.hero2-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero2-headline {
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.12;
    margin-bottom: 24px;
}

.hero2-sub {
    font-size: 1rem;
    color: #aaa;
    margin-bottom: 40px;
    max-width: 400px;
}

/* Problem v2 — numbered grid */
.problem2-section { padding: 90px 0; background-color: var(--color-white); }

.problem2-card {
    padding: 32px 24px;
    border: 1px solid var(--color-border);
    height: 100%;
}

.problem2-num {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-black);
    opacity: 0.08;
    line-height: 1;
    margin-bottom: 12px;
}

.problem2-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-black);
    margin: 0;
}

/* Solution v2 — manifesto style */
.solution2-section { background-color: var(--color-light); padding: 90px 0; }

.manifesto-line {
    display: flex;
    align-items: baseline;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid var(--color-border);
}

.manifesto-line:last-child { border-bottom: none; }

.manifesto-num {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--color-gray);
    min-width: 28px;
    flex-shrink: 0;
}

.manifesto-title {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 700;
    color: var(--color-black);
    margin: 0;
}

/* CTA v2 — centered banner */
.cta2-section {
    background-color: var(--color-black);
    padding: 100px 0;
    text-align: center;
}

/* ----- Benefit Cards (why-us.php) ----- */
.benefit-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-top: 3px solid var(--color-black);
    padding: 44px 40px 40px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 28px;
}

.benefit-card-body {
    flex: 1;
    position: relative;
    z-index: 1;
}

.benefit-icon {
    flex-shrink: 0;
    color: var(--color-black);
    opacity: 0.12;
    transition: color 0.3s ease, opacity 0.3s ease;
    position: relative;
    z-index: 1;
}

.benefit-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--color-black);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
    z-index: 0;
}

.benefit-card:hover::before { transform: scaleY(1); }

.benefit-card:hover .benefit-num,
.benefit-card:hover .benefit-title,
.benefit-card:hover .benefit-desc { color: var(--color-white); }

.benefit-card:hover .benefit-icon { color: var(--color-white); opacity: 0.3; }

.benefit-num {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-black);
    opacity: 0.08;
    line-height: 1;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.benefit-card:hover .benefit-num { opacity: 0.2; }

.benefit-title {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.benefit-desc {
    font-size: 1.05rem;
    color: #444444;
    margin: 0;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

/* ----- Responsive ----- */
@media (max-width: 991px) {
    .hero-section, .problem-section,
    .solution-section, .pillars-section,
    .cta-section { padding: 60px 0; }

    .hero2-section { min-height: auto; flex-direction: column; }
    .hero2-left  { padding: 60px 32px; }
    .hero2-right { min-height: 320px; }
    .hero2-right img { position: absolute; inset: 0; }
}

/* ----- Mobile Overlay Navigation ----- */
.mob-toggle {
    background: none;
    border: none;
    padding: 6px 2px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
}
.mob-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--color-black);
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}
.mob-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mob-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mob-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mob-overlay {
    position: fixed;
    inset: 0;
    background: var(--color-white);
    z-index: 1999;
    display: flex;
    flex-direction: column;
    padding: 0 28px 40px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}
.mob-overlay.open { opacity: 1; visibility: visible; }

.mob-overlay-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    border-bottom: 1px solid var(--color-border);
    margin: 0 -28px;
    padding: 0 28px;
    flex-shrink: 0;
}
.mob-overlay-header img { height: 64px; width: auto; }
.mob-overlay-close {
    background: none;
    border: 1px solid var(--color-border);
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    color: var(--color-black);
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mob-overlay-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}
.mob-overlay-nav a {
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--color-black);
    text-decoration: none;
    padding: 20px 0;
    border-bottom: 1px solid var(--color-border);
    display: block;
    letter-spacing: -0.02em;
    line-height: 1.1;
    transform: translateY(18px);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease, color 0.2s ease;
}
.mob-overlay-nav a:last-child { border-bottom: none; }
.mob-overlay-nav a.active { color: var(--color-red); }
.mob-overlay-nav a:hover { color: var(--color-gray); }

.mob-overlay.open .mob-overlay-nav a { transform: translateY(0); opacity: 1; }
.mob-overlay.open .mob-overlay-nav a:nth-child(1) { transition-delay: 0.06s; }
.mob-overlay.open .mob-overlay-nav a:nth-child(2) { transition-delay: 0.12s; }
.mob-overlay.open .mob-overlay-nav a:nth-child(3) { transition-delay: 0.18s; }
.mob-overlay.open .mob-overlay-nav a:nth-child(4) { transition-delay: 0.24s; }
.mob-overlay.open .mob-overlay-nav a:nth-child(5) { transition-delay: 0.30s; }
.mob-overlay.open .mob-overlay-nav a:nth-child(6) { transition-delay: 0.36s; }

@media (max-width: 767px) {
    .hero-headline, .hero2-headline { font-size: 1.9rem; }
    .site-header { padding: 8px 0; }
    .navbar-brand img { height: 60px; }
    .hero2-left { padding: 48px 24px; }
    .pillar-card { flex-direction: column; align-items: flex-start; }
    .benefit-card { flex-direction: column; }
    .benefit-icon { align-self: flex-end; }
}

/* ============================================================
   SYSTEM CARDS — Black top / White bottom split design
   ============================================================ */
.sys-card {
    border: 1px solid var(--color-border);
    height: 100%;
    overflow: hidden;
    transition: border-color 0.2s ease;
    display: flex;
    flex-direction: column;
}

.sys-card:hover { border-color: var(--color-black); }

.sys-card-head {
    background-color: var(--color-black);
    padding: 32px;
}

.sys-card-num {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    opacity: 0.25;
    line-height: 1;
    margin-bottom: 14px;
}

.sys-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.3;
    min-height: calc(1.25rem * 1.3 * 2);
}

.sys-card-body {
    background-color: var(--color-white);
    padding: 32px;
    flex: 1;
}

.sys-card-body p {
    font-size: 1rem;
    color: var(--color-gray);
    margin-bottom: 12px;
}

.sys-card-body p:last-child { margin-bottom: 0; }

.sys-tag {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-black);
    background: var(--color-light);
    padding: 5px 14px;
    display: inline-block;
}

/* ============================================================
   PROBLEM ITEMS — Clean numbered list (the-problem.php)
   ============================================================ */
.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding: 40px 0;
    border-bottom: 1px solid var(--color-border);
}

.problem-item:last-child { border-bottom: none; }

.problem-item-num {
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-black);
    opacity: 0.08;
    line-height: 1;
    flex-shrink: 0;
    min-width: 72px;
    text-align: right;
}

.problem-item-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 10px;
    line-height: 1.25;
}

.problem-item-desc {
    color: var(--color-gray);
    font-size: 1rem;
    margin: 0;
    line-height: 1.7;
}

@media (max-width: 767px) {
    .problem-item { gap: 20px; }
    .problem-item-num { font-size: 2.5rem; min-width: 48px; }
    .sys-card-title { font-size: 1.1rem; }
    .benefit-title { font-size: 1.25rem; }
}

/* ============================================================
   LIST ICON — replaces plain dot bullets sitewide
   ============================================================ */
.list-icon {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 3px;
    display: inline-block;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23111111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 9l4 4 8-8'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* Problem dot on homepage — upgrade to checkmark icon */
.problem-dot {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 0;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23111111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 9l4 4 8-8'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin-top: 3px;
}

/* ============================================================
   SCROLL ANIMATIONS — Intersection Observer driven
   ============================================================ */
.anim-fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.anim-fade-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   HERO SPLIT — load animations (staggered on page load)
   ============================================================ */
@keyframes gx-fade-up {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes gx-fade-right {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}

.hero-split-label    { animation: gx-fade-up 0.6s ease 0.05s both; }
.hero-split-headline { animation: gx-fade-up 0.7s ease 0.2s  both; }
.hero-split-sub      { animation: gx-fade-up 0.6s ease 0.38s both; }
.hero-split-actions  { animation: gx-fade-up 0.6s ease 0.52s both; }
.hero-split-right    { animation: gx-fade-right 0.9s ease 0.1s both; }

/* Disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    .anim-fade-up,
    .hero-split-label,
    .hero-split-headline,
    .hero-split-sub,
    .hero-split-actions,
    .hero-split-right {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}
