/* ================= RESET & BASE STYLES ================= */
:root {
    --color-brand-purple: #80619c;
    --color-brand-purple-dark: #6a4f82;
    --color-brand-blue: #0284c7;
    --color-brand-blue-dark: #1d4ed8;
    --color-text-light: #dbeafe;
    --color-script-blue: #7ec3e8;
    --color-bg-overlay-start: rgba(88, 28, 135, 0.95);
    --color-bg-overlay-mid: rgba(30, 58, 138, 0.95);
    
    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --font-script: 'Great Vibes', cursive;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    background-color: #f0f2f5;
    overflow-x: hidden; 
}

.container { width: 100%; max-width: 1400px; margin: 0 auto; padding-left: 20px; padding-right: 20px; }
.container-wide { width: 100%; max-width: 1500px; margin: 0 auto; padding-left: 20px; padding-right: 20px; }

/* Utilities */
.scroll-hide { -ms-overflow-style: none; scrollbar-width: none; }
.scroll-hide::-webkit-scrollbar { display: none; }
.mobile-hidden { display: none; }
@media(min-width: 768px) { .mobile-hidden { display: block; } }

/* ================= BUTTONS ================= */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 16px 32px; border-radius: 6px; font-weight: 600; text-decoration: none;
    transition: all 0.3s ease; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06); cursor: pointer; border: none; font-size: 1rem;
    color: #ffffff;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
.btn:hover,
.btn:focus,
.btn:focus-visible,
.btn:active {
    color: #ffffff;
}
.btn-sm { padding: 8px 20px; font-size: 0.9rem; }
.btn-light { background-color: white; color: var(--color-brand-blue-dark); }
.btn-purple { background-color: var(--color-brand-purple); color: white; }
.btn-purple:hover { background-color: var(--color-brand-purple); }
.btn-blue { background-color: var(--color-brand-blue); color: white; }
.btn-blue:hover { background-color: var(--color-brand-blue); }
.btn-outline { background-color: transparent; border: 1px solid rgba(255,255,255,0.2); color: white; box-shadow: none; }
.btn-outline:hover { background-color: transparent; }
.icon-btn { gap: 8px; }
.icon-btn svg { transition: transform 0.3s; }
.icon-btn:hover svg { transform: translateX(4px); }
.portfolio-btn.icon-btn:hover svg { transform: none; }

/* Shortcode Quote Button */
.mcw-quote-shortcode-btn {
    padding: 16px 34px;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.01em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #80619c;
    border: 1px solid #80619c;
    box-shadow: none;
    min-height: 56px;
}
.mcw-quote-shortcode-btn:hover {
    transform: none;
    box-shadow: none;
    background: #80619c;
    border-color: #80619c;
}
.mcw-quote-shortcode-btn .mcw-quote-icon {
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
}
.mcw-quote-shortcode-btn .mcw-quote-label {
    white-space: nowrap;
}

/* ================= HEADER ================= */
.site-header { position: absolute; top: 0; left: 0; width: 100%; z-index: 100; padding: 20px 0; color: white; }
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.logo-area { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 1.2rem; }
.main-nav ul { list-style: none; display: flex; gap: 30px; }
.nav-link { color: rgba(255, 255, 255, 0.8); text-decoration: none; font-weight: 500; font-size: 0.95rem; transition: color 0.3s; }
.nav-link:hover { color: white; }
.mobile-menu-toggle { display: none; }
.mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    z-index: 1100;
    opacity: 0;
    transition: opacity 0.22s ease;
}
.mobile-menu-backdrop.is-open { opacity: 1; }
.mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(82vw, 320px);
    height: 100vh;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 65%, #eef6ff 100%);
    z-index: 1110;
    transform: translateX(100%);
    transition: transform 0.22s ease;
    box-shadow: -10px 0 30px rgba(15, 23, 42, 0.18);
    border-left: 1px solid #dbeafe;
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
    padding: 18px 16px 24px 16px;
    overflow: hidden;
}
.mobile-menu-drawer.is-open { transform: translateX(0); }
.mobile-menu-drawer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #60a5fa, #2563eb, #7c3aed);
}
.mobile-menu-close {
    border: 1px solid #cbd5e1;
    background: #f8fafc;
    color: #0f172a;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    margin-left: auto;
    display: block;
}
.mobile-menu-nav {
    margin-top: 18px;
    display: grid;
    gap: 6px;
}
.mobile-menu-link {
    display: block;
    text-decoration: none;
    color: #0f172a;
    font-weight: 700;
    font-size: 1rem;
    padding: 12px 10px;
    border-radius: 10px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
    position: relative;
    padding-right: 30px;
}
.mobile-menu-link::after {
    content: "\203A";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #2563eb;
    font-size: 18px;
    font-weight: 700;
}
.mobile-menu-link:hover {
    border-color: #bfdbfe;
    background: #eff6ff;
    transform: translateX(3px);
}
@keyframes mobileMenuLinkIn {
    from { opacity: 0; transform: translateX(10px); }
    to { opacity: 1; transform: translateX(0); }
}
.mobile-menu-drawer .mobile-menu-link {
    opacity: 0;
}
.mobile-menu-drawer.is-open .mobile-menu-link {
    animation: mobileMenuLinkIn 0.24s ease forwards;
}
.mobile-menu-drawer.is-open .mobile-menu-link:nth-child(1) { animation-delay: 0.04s; }
.mobile-menu-drawer.is-open .mobile-menu-link:nth-child(2) { animation-delay: 0.08s; }
.mobile-menu-drawer.is-open .mobile-menu-link:nth-child(3) { animation-delay: 0.12s; }
.mobile-menu-drawer.is-open .mobile-menu-link:nth-child(4) { animation-delay: 0.16s; }
.mobile-menu-drawer.is-open .mobile-menu-link:nth-child(5) { animation-delay: 0.20s; }
body.mobile-menu-open { overflow: hidden; }

/* ================= HERO SECTION ================= */
.hero { position: relative; width: 100%; min-height: min(100vh, 800px); padding-top: 110px; padding-bottom: 500px; display: flex; flex-direction: column; justify-content: center; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
/* Replace these two rules in your style.css */

/* Layer 1: The "Saturator" (Multiply) */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg, 
        rgba(88, 28, 135, 0.95) 0%, 
        rgba(12, 74, 110, 0.95) 50%, 
        rgb(12, 74, 110) 100%
    );
    mix-blend-mode: multiply;
    z-index: -1;
}

/* Layer 2: The "Depth Glow" */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg, 
        rgba(88, 28, 135, 0.95) 0%, 
        rgba(30, 58, 138, 0.6) 50%, 
        transparent 100%
    );
    z-index: -1;
}

.hero-content-wrapper { position: relative; z-index: 10; text-align: center; margin-bottom: 20px; }
.hero-heading { display: flex; flex-direction: column; align-items: center; line-height: 1; }
.hero-main-heading { margin: -50px 0 0; display: flex; flex-direction: column; align-items: center; line-height: 1; }
.h-sub { font-family: var(--font-sans); color: rgba(255, 255, 255, 0.9); letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; font-size: 1rem; margin-bottom: 0; }
.h-script { font-family: var(--font-script); color: var(--color-script-blue); font-size: 7.5rem; margin-top: 19px; margin-bottom: -40px; transform: rotate(-2deg); position: relative; z-index: 2; padding-bottom: 10px; }
.h-main-stack { display: flex; flex-direction: column; margin-top: 10px; }
.h-main { /*! font-family: var(--font-serif); */ color: white; font-weight: 700; font-size: 4.2rem; text-transform: uppercase; letter-spacing: -0.02em; line-height: 1.0;}
.hero-description { color: var(--color-text-light); font-size: 1.2rem; font-weight: 300; line-height: 1.3; max-width: 817px; margin: 20px auto; padding-bottom: 10px;}
.hero-copy-mobile { display: none; }
.hero-copy-desktop { display: inline; }
.hero-copy-mobile b { color: #7ec3e8; }
.hero-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* ================= HERO CAROUSEL ================= */
.carousel-section { position: absolute; bottom: 0; left: 0; width: 100vw; height: 460px; z-index: 20; overflow: hidden; cursor: grab; touch-action: pan-y; user-select: none; -webkit-user-select: none; }
.carousel-section.is-dragging { cursor: grabbing; }
.carousel-track { display: flex; flex-direction: row; flex-wrap: nowrap; width: max-content; height: 100%; align-items: flex-end; gap: 25px; padding-right: 25px; }
.carousel-item { flex: 0 0 350px; width: 350px; height: 440px; max-height: 440px; background: white; box-shadow: 0 -10px 25px rgba(0,0,0,0.15); overflow: hidden; display: flex; flex-direction: column; border-radius: 8px 8px 0 0; transition: none; cursor: grab; }
.carousel-section.is-dragging .carousel-item { cursor: grabbing; }
.carousel-item:hover { transform: none; }
.browser-header { flex: 0 0 auto; background-color: #f8fafc; border-bottom: 1px solid #e2e8f0; padding: 10px 12px; display: flex; gap: 6px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background-color: #f87171; } .dot.yellow { background-color: #fbbf24; } .dot.green { background-color: #4ade80; }
.browser-body { flex: 1; width: 100%; position: relative; overflow: hidden; }
.browser-body img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }

/* ================= SHARED SECTION STYLES ================= */
.section-header-center { max-width: 1100px; margin: 0 auto 50px auto; text-align: center; }
.badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 9999px; background-color: #dbeafe; color: #1d4ed8; font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 24px; border: 1px solid #bfdbfe; box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); }
.badge-light { background-color: #eff6ff; border-color: #dbeafe; }
.badge-green { background-color: #f0fdf4; border-color: #bbf7d0; color: #15803d; border-radius: 0; }
.section-header-center h2 { font-family: var(--font-sans); font-size: 3.2rem; font-weight: 700; color: #0f172a; margin-bottom: 24px; letter-spacing: -0.02em; line-height: 1.1; }
.text-gradient { background: linear-gradient(to right, #2563eb, #9333ea); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; color: transparent; }
.section-header-center p { font-size: 1.1rem; color: #334155; line-height: 26px; font-weight: 300; max-width: 947px; margin: 0 auto; }
.highlight-red { color: #dc2626; font-weight: 700; }
.process-intro-list {
    list-style: disc;
    max-width: 760px;
    margin: 0 auto;
    padding-left: 22px;
    text-align: left;
    color: #334155;
    font-size: 1.05rem;
    line-height: 1.6;
    font-weight: 400;
}
.why-us-copy-mobile { display: none; }
.why-us-mobile-reveal-btn { display: none; }

/* ================= WHY US SECTION ================= */
.why-us-section { position: relative; padding: 100px 0; background-color: #f8fafc; border-bottom: 1px solid #e2e8f0; overflow: hidden; }
.blobs-wrapper { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; overflow: hidden; z-index: 0; }
.why-us-section > .container { position: relative; z-index: 2; }
.blob { position: absolute; width: 300px; height: 300px; border-radius: 50%; mix-blend-mode: multiply; filter: blur(80px); opacity: 0.4; animation: blob-bounce 10s infinite alternate; }
.blob-blue { top: 10%; left: 10%; background-color: #bfdbfe; }
.blob-purple { top: 10%; right: 10%; background-color: #e9d5ff; animation-delay: 2s; }
.blob-pink { bottom: -50px; left: 50%; transform: translateX(-50%); background-color: #fbcfe8; animation-delay: 4s; }
@keyframes blob-bounce { 0% { transform: scale(1) translate(0, 0); } 33% { transform: scale(1.1) translate(30px, -50px); } 66% { transform: scale(0.9) translate(-20px, 20px); } 100% { transform: scale(1) translate(0, 0); } }

.why-us-content-split { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(370px, 1.1fr); gap: 50px; max-width: 1380px; margin: 0 auto; align-items: center; }
.why-us-features-col { min-width: 0; }
.why-us-compare-col { min-width: 0; width: calc(100% + 50px); max-width: none; margin-left: auto; }
.before-after-carousel { width: 100%; }
.before-after-slide { display: none; }
.before-after-slide.is-active { display: block; }
.features-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 36px 30px; margin: 0 auto; }
.feature-card { display: flex; flex-direction: row; align-items: flex-start; gap: 20px; cursor: default; }
.feature-card:hover .feature-icon img { transform: scale(1.05); }
.feature-icon { flex-shrink: 0; width: 144px; aspect-ratio: 3 / 2; border-radius: 16px; background-color: #eff6ff; border: 1px solid #dbeafe; box-shadow: 0 1px 3px 0 rgba(0,0,0,0.1); overflow: hidden; position: relative; margin-top: 4px; }
.feature-icon img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.feature-text { flex: 1; min-width: 0; }
.feature-text h3 { font-size: 1.25rem; font-weight: 700; color: #0f172a; margin-bottom: 8px; line-height: 1.2; font-size: 20px !important; letter-spacing: -.2pt;}
.feature-text p { color: #475569; line-height: 1.3; }
.feature-card-project-manager {
    grid-column: 1 / -1;
    align-items: center;
    padding: 20px;
    border: 1px solid #bfdbfe;
    border-radius: 16px;
    background: linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
}
.why-us-process-wrap {
    max-width: 1220px;
    margin: 0 auto;
}
.why-us-process-main {
    display: grid;
    grid-template-columns: minmax(0, 620px) minmax(0, 590px);
    gap: 28px;
    justify-content: center;
    align-items: start;
}
.why-us-process-left,
.why-us-process-right {
    min-width: 0;
}
.process-feature-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.process-founder-card {
    min-height: 0;
    padding: 18px 22px;
    border-radius: 5px;
    border: 1px solid #0284C7;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: inset 4px 0 0 #0284C7, 0 14px 30px rgba(2, 132, 199, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 12px;
}
.process-founder-top {
    display: block;
    align-items: start;
}
.process-founder-copy p {
    margin: 8px 0 10px 0;
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.45;
}
.process-founder-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
    padding-top: 12px;
    border-top: 1px solid #e2e8f0;
}
.process-feature-item {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) 32px;
    gap: 14px;
    align-items: start;
    padding: 20px 22px;
    min-height: 86px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
    cursor: default;
}
.process-feature-item.is-highlighted {
    border-color: #0284C7;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: inset 4px 0 0 #0284C7, 0 10px 26px rgba(2, 132, 199, 0.06);
}
.process-feature-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    color: #1d4ed8;
    background: linear-gradient(180deg, #f8fbff 0%, #e0ecff 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}
.process-feature-icon-founder {
    color: #ffffff;
    background: linear-gradient(135deg, #8b5cf6 0%, #4f46e5 100%);
}
.process-feature-icon-code {
    color: #2563eb;
    background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%);
}
.process-feature-icon-content {
    color: #16a34a;
    background: linear-gradient(180deg, #ecfdf5 0%, #d1fae5 100%);
}
.process-feature-icon-seo {
    color: #ea580c;
    background: linear-gradient(180deg, #fff7ed 0%, #ffedd5 100%);
}
.process-feature-icon-planning {
    color: #15803d;
    background: linear-gradient(180deg, #f0fdf4 0%, #dcfce7 100%);
}
.process-feature-planning-letter {
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1;
}
.process-feature-google {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    color: #4285f4;
    font-family: Arial, sans-serif;
}
.process-feature-title {
    display: block;
    margin: 0 0 6px 0;
    color: #0f172a;
    line-height: 1.2;
    letter-spacing: 0;
    font-weight: 700;
}
.process-feature-item.is-highlighted .process-feature-title {
    font-size: 1.3rem;
}
.process-founder-card .process-feature-title {
    color: #0284C7;
    font-size: 1.4rem;
}
.process-feature-item:not(.is-highlighted) .process-feature-title {
    font-size: 1.3rem;
    letter-spacing: 0;
}
.process-feature-copy p {
    margin: 0;
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.42;
}
.process-feature-arrow {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    color: #4338ca;
    background: #f1efff;
    font-size: 1rem;
    font-weight: 700;
}
.process-feature-new {
    display: inline-flex;
    margin-left: 8px;
    padding: 2px 7px;
    border-radius: 999px;
    color: #0284C7;
    border: 1px solid #c4b5fd;
    font-size: 0.66rem;
    line-height: 1;
    text-transform: uppercase;
    vertical-align: middle;
}
.why-us-sample-carousel-shell {
    position: relative;
    width: 590px;
    max-width: 100%;
    height: 850px;
    margin-left: auto;
}
.why-us-sample-carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #e2e8f0;
}
.why-us-sample-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}
.why-us-sample-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}
.why-us-sample-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top center;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    user-select: none;
}
.why-us-sample-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.78);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.2s ease, background 0.2s ease;
    z-index: 2;
}
.why-us-sample-carousel-shell:hover .why-us-sample-arrow,
.why-us-sample-arrow:focus-visible {
    opacity: 1;
}
.why-us-sample-arrow:hover {
    background: rgba(15, 23, 42, 0.92);
}
.why-us-sample-prev {
    left: 16px;
}
.why-us-sample-next {
    right: 16px;
}
.personal-process-card {
    margin-top: 18px;
    padding: 16px 20px;
    border-radius: 5px;
    border: 1px solid #e5e7eb;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
    box-shadow: 0 5px 14px rgba(15, 23, 42, 0.04);
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) 1px minmax(320px, 0.8fr);
    gap: 24px;
    align-items: center;
}
.personal-process-left {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
}
.personal-process-avatar {
    width: 86px;
    height: 86px;
    border-radius: 999px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.98);
    box-shadow: 0 7px 16px rgba(15, 23, 42, 0.1);
    background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
}
.personal-process-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.personal-process-heading {
    display: block;
    margin: 0 0 6px 0;
    font-size: 1.08rem;
    line-height: 1.2;
    letter-spacing: 0;
    color: #0f172a;
    font-weight: 700;
}
.personal-process-heading span {
    color: #5b4cf0;
}
.personal-process-copy p {
    margin: 0 0 6px 0;
    color: #475569;
    font-size: 0.8rem;
    line-height: 1.35;
}
.personal-process-signature {
    font-family: "Great Vibes", cursive;
    font-size: 1.35rem;
    line-height: 1;
    color: #0f172a;
}
.personal-process-title {
    margin-top: 4px;
    color: #334155;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.personal-process-divider {
    display: block;
    width: 1px;
    align-self: stretch;
    background: #cbd5e1;
}
.personal-process-right {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}
.personal-process-point {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    color: #0f172a;
    font-size: 0.8rem;
    line-height: 1.35;
}
.personal-process-check {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #059669;
    color: #ffffff;
    margin-top: 1px;
}
.feature-hide-planning-center { display: none !important; }
.feature-hide-planning-center-inline { display: none !important; }
.badge-new { color: #dc2626; font-weight: 700; font-size: 0.875rem; text-transform: uppercase; margin-right: 6px; }
.before-after-widget {
    width: calc(75% + 30px);
    margin-left: 0;
    background: #ffffff;
    border: 1px solid #dbeafe;
    border-radius: 14px;
    padding: 14px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}
.before-after-controls {
    margin-top: 14px;
    width: calc(75% + 30px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}
.ba-carousel-arrow {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    color: #0f172a;
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.ba-carousel-arrow:hover { background: #f1f5f9; }
.ba-carousel-dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.ba-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 0;
    background: #cbd5e1;
    cursor: pointer;
    padding: 0;
}
.ba-carousel-dot.is-active { background: #2563eb; }
.ba-media {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 600 / 748;
    border-radius: 10px;
    overflow: hidden;
    background: #e2e8f0;
    touch-action: pan-y;
    cursor: ew-resize;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    user-select: none;
}
.ba-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    -webkit-user-drag: none;
    user-drag: none;
    -webkit-user-select: none;
    user-select: none;
}
.ba-after-wrap {
    position: absolute;
    inset: 0 auto 0 0;
    height: 100%;
    overflow: hidden;
}
.ba-after { width: 100%; }
.ba-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #ffffff;
    box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.12);
    transform: translateX(-50%);
    pointer-events: auto;
    z-index: 3;
    touch-action: none;
}
.ba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 94px;
    height: 34px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #1d4ed8;
    white-space: nowrap;
    transform: translate(-50%, -50%);
    border-radius: 8px;
    background: #ffffff;
    border: 2px solid #2563eb;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
    animation: ba-handle-bob 1.5s ease-in-out infinite;
    will-change: transform;
}
.ba-handle::after {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: 10px;
    border: 2px solid rgba(37, 99, 235, 0.55);
    animation: ba-handle-ring 1.5s ease-out infinite;
    pointer-events: none;
}
.ba-divider:focus-visible .ba-handle { outline: 3px solid rgba(37, 99, 235, 0.35); outline-offset: 2px; }
@keyframes ba-handle-bob {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.08); }
}
@keyframes ba-handle-ring {
    0% { opacity: 0.9; transform: scale(0.9); }
    100% { opacity: 0; transform: scale(1.45); }
}
@media (prefers-reduced-motion: reduce) {
    .ba-handle,
    .ba-handle::after { animation: none; }
}
.ba-labels {
    margin: 0 0 10px 0;
    position: relative;
    height: 28px;
    color: #000000;
    font-size: 1.05rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.ba-labels span {
    position: absolute;
    top: 0;
    left: 50%;
    width: max-content;
    transform: translateX(-50%);
    text-align: center;
    transition: left 0.12s linear, opacity 0.12s linear;
    pointer-events: none;
}

/* ================= HORIZON SECTION ================= */
.horizon-section { position: relative; padding: 100px 0 0 0; background-color: #ffffff; overflow: hidden; }
.h-bg-blob { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.5; pointer-events: none; z-index: 0; }
.h-blob-right { width: 400px; height: 400px; background-color: #eff6ff; top: -100px; right: -100px; }
.h-blob-left { width: 320px; height: 320px; background-color: #faf5ff; bottom: 30%; left: -100px; }
.horizon-section > .container { position: relative; z-index: 2; }
.text-gradient-horizon { background: linear-gradient(to right, #2563eb, #3b82f6, #a855f7); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; color: transparent; }
.h-easiest-highlight { color: #9333ea; }
.h-subtitle { font-size: 1.8rem; font-weight: 700; color: #1e293b; margin-bottom: 24px; }
.h-description { font-size: 1.25rem; color: #475569; max-width: 1100px; margin: 0 auto; line-height: 1.8; }
.h-top-split {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    display: flex;
    align-items: flex-start;
    gap: 32px;
    margin-bottom: 72px;
}
.h-top-left {
    flex: 1 1 auto;
    min-width: 0;
    padding-left: clamp(18px, 3vw, 44px);
    padding-right: 12px;
}
.h-section-header-left { position: relative; text-align: left; margin: 0 0 30px 0; }
.h-cms-tag {
    position: static;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #ffffff;
    border: 2px solid #8b5cf6;
    color: #7c3aed;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(139, 92, 246, 0.12);
    margin: 0 0 16px;
}
.h-kicker {
    font-size: clamp(1.1rem, 2vw, 1.8rem);
    line-height: 1.02;
    margin: 0 0 14px;
    font-weight: 800;
    color: #0f172a;
}
.h-section-header-left .badge { margin-left: 0; }
.h-section-header-left .h-subtitle {
    font-size: clamp(2.8rem, 4vw, 4.8rem);
    margin: 0 0 16px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.02;
}
#horizon-section-kicker {
    font-size: clamp(2.4rem, 3.4vw, 4rem) !important;
    line-height: 1.02 !important;
    margin: 0 0 14px !important;
    font-weight: 700;
}
#horizon-section-title {
    font-size: clamp(1.1rem, 2vw, 1.8rem) !important;
    line-height: 1.2 !important;
    margin: 0 0 16px !important;
}
.h-section-header-left .h-description {
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
    line-height: 1.65;
    margin: 0;
    max-width: 950px;
}
.h-description-mobile { display: none; }
.h-description-desktop { display: inline; }
.h-cards-grid.h-cards-compact { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin-bottom: 0; align-items: stretch; grid-auto-rows: 1fr; }
.h-cards-grid.h-cards-compact .h-card { padding: 16px; text-align: left; align-items: flex-start; justify-content: flex-start; min-height: 132px; }
.h-cards-grid.h-cards-compact .h-card h4 { font-size: 1rem; margin: 0 0 6px 0; text-align: left; width: 100%; letter-spacing: 0pt;}
.h-cards-grid.h-cards-compact .h-card p { font-size: 0.86rem; line-height: 1.45; text-align: left; width: 100%; margin: 0; }
.h-cards-grid.h-cards-compact .h-card-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 10px;
    align-self: center;
}
.h-top-right {
    flex: 0 0 50vw;
    width: 50vw;
    margin-left: auto;
    height: 100%;
    display: flex;
    justify-content: flex-end;
}
.h-media-placeholder {
    width: 100%;
    min-height: 680px;
    height: 100%;
    border-radius: 16px 0 0 16px;
    border: 1px dashed #94a3b8;
    border-right: 0;
    background: linear-gradient(135deg, #e2e8f0, #f8fafc);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.h-cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 96px; }
.h-card { display: flex; flex-direction: column; text-align: center; padding: 24px; border-radius: 16px; background: #ffffff; border: 1px solid #f1f5f9; box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); transition: all 0.3s ease; cursor: default; }
.h-card:hover { transform: translateY(-4px); box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
.h-card-icon { width: 56px; height: 56px; border-radius: 12px; background: #eff6ff; color: #2563eb; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px auto; transition: transform 0.3s ease; }
.h-card:hover .h-card-icon { transform: scale(1.1); }
.h-card h4 { font-size: 1.25rem; font-weight: 700; color: #0f172a; margin-bottom: 8px; }
.h-card p { font-size: 1rem; color: #475569; line-height: 1.6; }

.h-features-container { max-width: 1100px; margin: 0 auto 80px auto; }
.h-features-title { text-align: center; font-size: 2.25rem; font-weight: 700; color: #0f172a; margin-bottom: 48px; letter-spacing: -0.02em; }
.h-list-wrapper { position: relative; }
.h-list-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px 32px; max-height: 140px; overflow: hidden; transition: max-height 0.8s ease; }
.h-list-grid.is-expanded { max-height: none; overflow: visible; }
.h-list-item { display: flex; gap: 14px; align-items: flex-start; }
.h-list-icon { width: 20px; height: 20px; flex-shrink: 0; margin-top: 4px; color: #0f172a; }
.h-list-item div { display: flex; flex-direction: column; gap: 2px; }
.h-list-item strong { font-size: 1rem; color: #0f172a; font-weight: 700; line-height: 1.2; }
.h-list-item span { font-size: 0.875rem; color: #64748b; line-height: 1.4; }
.h-mobile-reveal-btn { display: none; }

.h-list-overlay { position: absolute; bottom: 0; left: 0; right: 0; height: 120px; background: linear-gradient(to top, rgba(255,255,255,1) 20%, rgba(255,255,255,0)); display: flex; align-items: flex-end; justify-content: center; transition: opacity 0.3s; }
.h-expand-btn { pointer-events: auto; background: white; border: 1px solid #e2e8f0; border-radius: 9999px; padding: 16px 32px; font-weight: 700; color: #334155; box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1); display: flex; align-items: center; gap: 8px; cursor: pointer; transition: all 0.3s; }
.h-expand-btn:hover { border-color: #bfdbfe; transform: translateY(-2px); box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); }

.h-callout-box { background-color: #eff6ff; border: 1px solid #dbeafe; border-radius: 16px; padding: 31px; display: flex; align-items: flex-start; gap: 32px; margin-bottom: 112px; position: relative; overflow: hidden; }
.h-callout-box::after { content: ''; position: absolute; top: -60px; right: -60px; width: 130px; height: 130px; background-color: #dbeafe; border-radius: 50%; transition: transform 0.5s; }
.h-callout-box:hover::after { transform: scale(1.1); }
.h-callout-icon { background-color: #2563eb; color: white; width: 64px; height: 64px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3); z-index: 2; position: relative; }
.h-callout-content { flex: 1; z-index: 2; position: relative; }
.h-callout-content h4 { font-size: 1.5rem; font-weight: 700; color: #0f172a; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 12px; }
.h-callout-content p { font-size: 1rem; color: #334155; line-height: 1.8; }
.h-mobile-readmore { display: none; }

.horizon-gallery-wrapper {
    width: 100vw;
    margin-top: 20px;
    overflow: hidden;
    white-space: nowrap;
    background: transparent;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}
.h-callout-box.is-temporarily-hidden { display: none !important; }
.horizon-gallery-wrapper.is-temporarily-hidden { display: none !important; }
.horizon-gallery-wrapper.is-dragging { cursor: grabbing; }
.horizon-gallery-wrapper img {
    pointer-events: none;
    -webkit-user-drag: none;
    user-drag: none;
}

.horizon-gallery-track {
    display: inline-flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: flex-end;
    white-space: nowrap;
    gap: 0;
    width: max-content;
    padding-right: 0;
    transform: translateX(0);
    background: transparent;
}

.horizon-gallery-item {
    position: relative !important;
    float: none !important;
    flex: 0 0 auto !important;
    display: inline-flex !important;
    flex-direction: column;
    width: auto;
    max-width: none;
    background: transparent;
    border: 0;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    box-shadow: none;
}

.horizon-gallery-item > img { width: auto; max-width: none; height: auto; display: block; object-fit: contain; }
.horizon-video-bottom {
    width: 100%;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: -54px;
    overflow: hidden;
}
.h-auto-video.h-auto-video-bottom {
    width: 100%;
    max-width: 1100px;
    height: auto;
    display: block;
    margin: 0 auto;
    border: 0px solid #e2e8f0 !important;
    border-radius: 4px;
    clip-path: inset(0 0 120px 0 round 4px); 
}

.horizon-browser-header {
    flex: 0 0 auto;
    background-color: #ffffff;
    border-bottom: 0;
    padding: 10px 12px;
    display: flex;
    gap: 6px;
}

.horizon-browser-body {
    flex: 0 0 auto;
    width: 100%;
    overflow: hidden;
    min-height: 0;
}

.horizon-browser-body img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.h-size-360,
.h-size-420,
.h-size-460,
.h-size-500,
.h-size-540 { height: auto; }


/* ================= PROCESS & SUPPORT SECTION ================= */
.process-section { position: relative; padding-top: 140px; /*! padding-bottom: 40px; */ background-color: #f8fafc; overflow: hidden; }
.process-bg-blobs { position: absolute; top: 0; right: 0; width: 100%; height: 100%; pointer-events: none; overflow: hidden; z-index: 1; }
.p-blob { position: absolute; border-radius: 50%; filter: blur(80px); mix-blend-mode: multiply; opacity: 0.5; }
.p-blob-1 { width: 400px; height: 400px; background-color: #dbeafe; top: 20%; right: 5%; }
.p-blob-2 { width: 300px; height: 300px; background-color: #f3e8ff; bottom: 10%; left: 5%; }

/* Process Carousel */
.process-carousel-wrapper { margin-bottom: 120px; position: relative; z-index: 10; }
.process-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; padding: 0 32px 32px 32px; max-width: 1400px; margin: 0 auto; }
.process-card-wrap { display: flex; }
.process-card { background: white; border: 1px solid #e2e8f0; display: flex; flex-direction: column; height: 100%; overflow: hidden; box-shadow: 0 0 0 1px rgba(15,23,42,0.05); cursor: default; }
.process-cards-panel { background: #ffffff; border: 1px solid #e2e8f0; padding: 28px; margin: 24px 0 72px 0; position: relative; z-index: 10; }
.process-flow-carousel {
    position: relative;
    z-index: 10;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    /*! margin-top: 10px; */
    /*! margin-bottom: 48px; */
    padding: 10px 0;
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
}
.process-flow-carousel.is-dragging { cursor: grabbing; }
.process-flow-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
    width: max-content;
    will-change: transform;
}
.process-flow-item {
    width: auto;
    height: 500px;
    flex: 0 0 auto;
    border-radius: 0;
    border: 1px solid #e2e8f0;
    background: transparent;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    box-shadow: none;
}
.process-flow-item img {
    width: auto;
    height: 100%;
    object-fit: contain;
    display: block;
    pointer-events: none;
    -webkit-user-drag: none;
    user-drag: none;
}
.cards-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; margin-bottom: 0; }
.process-card:hover .process-img img { transform: scale(1.05); }
.process-img { height: 220px; overflow: hidden; position: relative; flex-shrink: 0; }
.process-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.process-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.2), transparent); pointer-events: none; }

.data-drop-animation {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eff6ff, #f8fafc 55%, #eef2ff);
    overflow: hidden;
}

.process-img .data-drop-animation { position: absolute; inset: 0; display: flex; }
.process-img .dropbox-bin { position: absolute; }
.process-img .data-chip { position: absolute; border-radius: 999px; animation: chip-fall 4.2s linear infinite; }

.dropbox-bin {
    position: absolute;
    bottom: 18px;
    width: 170px;
    height: 90px;
    border: 2px solid #94a3b8;
    border-radius: 12px 12px 16px 16px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 -8px 0 rgba(148, 163, 184, 0.12);
}

.dropbox-tab {
    position: absolute;
    top: -12px;
    left: 16px;
    width: 72px;
    height: 16px;
    border: 2px solid #94a3b8;
    border-bottom: 0;
    border-radius: 8px 8px 0 0;
    background: #ffffff;
}

.dropbox-icon {
    color: #2563eb;
    opacity: 0.9;
}

.data-chip {
    position: absolute;
    top: -26px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    color: #334155;
    border: 1px solid #cbd5e1;
    border-radius: 999px;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
    animation: chip-fall 4.2s linear infinite;
}

.chip-1 { margin-left: -110px; animation-delay: 0s; }
.chip-2 { margin-left: -55px; animation-delay: 0.6s; }
.chip-3 { margin-left: 0; animation-delay: 1.2s; }
.chip-4 { margin-left: 55px; animation-delay: 1.8s; }
.chip-5 { margin-left: 110px; animation-delay: 2.4s; }

@keyframes chip-fall {
    0% { transform: translate(-50%, 0) scale(0.94); opacity: 0; }
    10% { opacity: 1; }
    70% { transform: translate(-50%, 165px) scale(1); opacity: 1; }
    100% { transform: translate(-50%, 202px) scale(0.92); opacity: 0; }
}
.process-content { padding: 40px 20px; flex: 1; display: flex; flex-direction: column; align-items: flex-start; }
.phase-badge { background: #2563eb; color: white; padding: 10px 20px; border-radius: 999px; font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.2em; align-self: flex-end; margin-bottom: 16px; /*! box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.5); */ }
.process-content h3 { font-size: 1.5rem; font-weight: 700; color: #0f172a; margin-bottom: 12px; line-height: 1.2; }
.process-content p { color: #475569; font-size: 1rem; line-height: 1.6; }

/* Support Block */
.support-block { background: transparent; padding-top: 50px;  border: 0; position: relative; z-index: 10; overflow: hidden; /*! margin: 48px 0 24px 0; */ }
.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

.support-main-heading { font-family: var(--font-sans); font-size: 3.2rem; font-weight: 700; color: #0f172a; margin: 0 0 24px 0; letter-spacing: -0.02em; line-height: 1.08; text-align: left; }
.support-editor-image-wrap { padding-top: 50px; padding-bottom: 0; text-align: center; line-height: 0; }
.support-editor-image { display: block; width: auto; max-width: 100%; height: auto; margin: 0 auto; padding-top: 0; padding-top: 50px;}
.support-text-area h3 { font-size: 1.5rem !important; font-weight: 700; color: #0f172a; line-height: 1.3; /*! margin-bottom: 32px; */ letter-spacing: -0.02em; }
.text-brand-blue { color: #2563eb; }
.support-text-area p { font-size: 1rem; color: #475569; margin-bottom: 24px;  line-height: 26px;  }
.support-mobile-bullets { display: none; }

.support-features-area { position: relative; }
.support-features-bg { position: absolute; inset: -16px; background-color: #f1f5f9; transform: rotate(1deg); z-index: 0; }
.support-features-content { position: relative; z-index: 1; background: rgba(248, 250, 252, 0.8); backdrop-filter: blur(8px); padding: 32px; border: 1px solid #e2e8f0; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); }
.support-features-content h4 { text-align: center; color: #94a3b8; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.75rem; margin-bottom: 32px; }

.s-features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.s-feature-item { display: flex; align-items: center; gap: 16px; padding: 16px; background: white; border: 1px solid #e2e8f0; transition: border-color 0.3s; cursor: default; }
.s-feature-item:hover { border-color: #93c5fd; }
.s-feature-icon { width: 40px; height: 40px; background: #eff6ff; color: #2563eb; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.s-feature-item span { font-weight: 700; color: #334155; font-size: 0.875rem; }

.s-support-cta { text-align: center; margin-top: 40px; }
.s-support-cta .support-contact-trigger { display: inline-flex; align-items: center; gap: 8px; color: #2563eb; font-weight: 700; border-bottom: 2px solid #dbeafe; padding-bottom: 2px; cursor: pointer; transition: border-color 0.3s; background: transparent; border-top: 0; border-left: 0; border-right: 0; }
.s-support-cta .support-contact-trigger:hover { border-color: #2563eb; }

body.modal-open { overflow: hidden; }
.support-contact-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.55);
    padding: 20px;
}
.support-contact-modal.is-open { display: flex; }
.support-contact-dialog {
    width: 100%;
    max-width: 720px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #dbeafe;
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.28);
    padding: 30px;
    position: relative;
    max-height: min(90vh, 860px);
    overflow: auto;
}
.support-contact-close {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    padding: 0 !important;
    margin: 0;
    border-radius: 999px !important;
    border: 1px solid #bfdbfe;
    color: #1d4ed8;
    background: #eff6ff;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    line-height: 1;
    font-size: 20px;
    font-weight: 700;
}
.support-contact-close:hover {
    background: #dbeafe;
}
.support-contact-close:focus-visible {
    outline: 2px solid #93c5fd;
    outline-offset: 2px;
}
.support-contact-head {
    margin-bottom: 14px;
}
.support-contact-dialog h3 {
    font-size: 1.8rem;
    line-height: 1.2;
    color: #0f172a;
    margin: 0 0 8px 0;
}
.support-contact-note {
    margin: 0;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.5;
}
.support-contact-pricing-note {
    margin: 6px 0 0;
    padding-bottom: 10px;
    color: #334155;
    font-size: 0.92rem;
    line-height: 1.5;
}
.support-pricing-range {
    color: #15803d;
    font-weight: 700;
}
.support-contact-pricing-note a {
    color: #2563eb;
    font-weight: 600;
}
.support-contact-pricing-note a:hover {
    text-decoration: underline;
}
.support-contact-form {
    display: grid;
    gap: 12px;
}
.support-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 14px;
}
.support-contact-field {
    min-width: 0;
}
.support-contact-field-full {
    grid-column: 1 / -1;
}
.support-contact-form label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 6px;
    display: block;
}
.support-contact-form input,
.support-contact-form textarea {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 11px 12px;
    font: inherit;
    color: #0f172a;
    background: #ffffff;
}
.support-contact-form input[type="file"] {
    padding: 10px;
}
.support-contact-file-note {
    margin: 7px 0 0;
    color: #64748b;
    font-size: 0.8rem;
    line-height: 1.4;
}
.support-contact-form input:focus,
.support-contact-form textarea:focus {
    outline: none;
    border-color: #60a5fa;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}
.support-contact-actions {
    margin-top: 8px;
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.support-contact-actions .btn {
    font-weight: 600;
    font-size: 0.88rem;
    padding: 8px 14px;
    min-height: 36px;
    line-height: 1.2;
}
.support-contact-actions .btn-outline {
    border-color: #cbd5e1;
    color: #334155;
    background: #ffffff;
}
.support-contact-actions .btn-outline:hover {
    background: #ffffff;
}
.support-contact-alert {
    margin: 0 0 14px 0;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 0.9rem;
    line-height: 1.4;
}
.support-contact-success {
    color: #166534;
    border: 1px solid #86efac;
    background: #f0fdf4;
    font-weight: 600;
}
.support-contact-error {
    color: #b91c1c;
    border: 1px solid #fecaca;
    background: #fef2f2;
    font-weight: 600;
}


/* ================= REVIEWS SECTION ================= */
.reviews-section { padding: 100px 0; background-color: white; overflow: hidden; }
.reviews-header { margin-bottom: 64px; text-align: center; }
.facebook-branding { display: flex; flex-direction: column; align-items: center; margin-bottom: 24px; }
.fb-text { color: #3b5998; font-weight: 900; font-size: 1.5rem; letter-spacing: -0.05em; margin-bottom: 4px; font-family: sans-serif; text-decoration: none; }
.fb-stars { display: flex; gap: 2px; background: #3b5998; color: white; padding: 4px; border-radius: 2px; }
.reviews-header h2 { font-family: var(--font-sans); font-size: 3.5rem; font-weight: 700; color: #0f172a; margin-bottom: 24px; }
.reviews-subtitle { color: #64748b; font-size: 1.125rem; font-style: italic; max-width: 600px; margin: 0 auto; }
.reviews-subtitle a { color: #2563eb; font-weight: 700; text-decoration: underline; transition: color 0.3s; }
.reviews-subtitle a:hover { color: #1d4ed8; }

.reviews-track-wrapper { position: relative; }
.reviews-track { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.review-card { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 32px 24px; background: #f8fafc; border: 1px solid #f1f5f9; border-radius: 16px; height: 100%; }
.r-stars { display: flex; gap: 2px; color: #3b82f6; margin-bottom: 8px; }
.r-verified { font-size: 10px; font-weight: 700; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 24px; }
.r-quote { color: #334155; font-size: 0.95rem; line-height: 1.6; font-style: italic; margin-bottom: 32px; flex-grow: 1; }
.r-author { display: flex; flex-direction: column; align-items: center; margin-top: auto; }
.r-author strong { color: #0f172a; font-weight: 700; font-size: 1rem; }
.r-author span { color: #64748b; font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; margin-top: 4px; }
.reviews-dots { display: none; }
.reviews-mobile-controls { display: none; }


/* ================= CTA SECTION ================= */
.cta-section { position: relative; padding: 100px 0; background-color: #312e81; overflow: hidden; }
.cta-bg-gradient { position: absolute; inset: 0; background: linear-gradient(to bottom right, #4338ca, #312e81); }
.cta-bg-pattern { position: absolute; inset: 0; opacity: 0.1; background-image: url('https://www.transparenttextures.com/patterns/cubes.png'); }

.cta-heading { font-family: var(--font-sans); font-size: 4.5rem; font-weight: 700; color: white; margin-bottom: 32px; letter-spacing: -0.02em; line-height: 1.1; }
.text-brand-light { color: #93c5fd; }
.cta-description { font-size: 1.25rem; color: #e0e7ff; margin-bottom: 40px; max-width: 800px; margin-left: auto; margin-right: auto; font-weight: 300; line-height: 1.6; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-btn { min-width: 200px; }


/* ================= RESPONSIVE ADJUSTMENTS ================= */
@media (max-width: 1024px) {
    .h-cms-tag { margin: 0 0 14px 0; }
    .h-script { font-size: 6rem; margin-top: 20px; margin-bottom: -25px; }
    .h-main { font-size: 3.5rem; }
    .main-nav { display: none; }
    .header-cta .btn { display: none; }
    .mobile-menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255,255,255,0.35);
        background: #80619c;
        color: #ffffff;
        border-radius: 8px;
        font-weight: 700;
        font-size: 0.95rem;
        padding: 8px 14px;
        position: fixed;
        top: 14px;
        right: 14px;
        z-index: 1120;
    }
    .section-header-center h2 { font-size: 3.5rem; }
    .why-us-content-split { grid-template-columns: 1fr; gap: 28px; }
    .why-us-compare-col { width: 100%; max-width: 100%; }
    .before-after-widget { width: 100%; margin-left: 0; }
    .ba-media { height: auto; aspect-ratio: 600 / 748; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .h-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .h-top-split { gap: 18px; }
    .h-top-left { padding-left: 16px; }
    .h-top-right { flex-basis: 50vw; width: 50vw; }
    .h-media-placeholder { width: 100%; min-height: 620px; }
    .h-kicker { font-size: clamp(1rem, 2vw, 1.35rem); }
    .h-section-header-left .h-subtitle { font-size: clamp(2.3rem, 5vw, 3.6rem); }
    #horizon-section-kicker { font-size: clamp(2rem, 4.2vw, 3.1rem) !important; }
    #horizon-section-title { font-size: clamp(1rem, 2vw, 1.35rem) !important; }
    .h-section-header-left .h-description { font-size: clamp(0.88rem, 1.35vw, 1rem); line-height: 1.5; }
    .h-list-grid { grid-template-columns: repeat(2, 1fr); max-height: 260px; }
    
    .support-grid { grid-template-columns: 1fr; gap: 40px; }
    .support-block { padding: 60px 40px 0 40px; }
    .support-main-heading { font-size: 3.6rem; }
    .process-cards-panel { padding: 24px; }
    .process-flow-item { width: auto; height: 380px; flex-basis: auto; }
    .cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    
    .reviews-track { grid-template-columns: repeat(2, 1fr); }
    .cta-heading { font-size: 3.5rem; }
}

@media (max-width: 1200px) and (min-width: 769px) {
    #why-us,
    .why-us-section {
        padding-bottom: 0 !important;
    }
    .horizon-section {
        padding-top: 190px;
    }
    .why-us-process-wrap {
        max-width: 760px;
    }
    .why-us-process-main {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .why-us-process-left {
        order: 1;
    }
    .why-us-process-right {
        order: 2;
        display: flex;
        justify-content: center;
    }
    .process-feature-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }
    .process-founder-card {
        grid-column: 1 / -1;
    }
    .process-feature-item {
        grid-template-columns: 46px minmax(0, 1fr) 28px;
        min-height: 150px;
        align-items: start;
        padding: 18px;
    }
    .process-feature-icon {
        width: 40px;
        height: 40px;
    }
    .process-feature-arrow {
        align-self: start;
    }
    .why-us-sample-carousel-shell {
        width: 100%;
        height: 520px;
        margin: 40px auto 0;
        padding: 0 32px;
        box-sizing: border-box;
    }
    .why-us-sample-carousel-track {
        width: 100%;
        height: 100%;
        margin-left: 0;
        overflow-x: auto;
        overflow-y: hidden;
        display: flex;
        gap: 16px;
        scroll-snap-type: x mandatory;
        background: transparent;
        padding: 0;
        scroll-padding-left: 0;
        scrollbar-width: none;
        cursor: grab;
        -webkit-user-select: none;
        user-select: none;
        touch-action: pan-y;
    }
    .why-us-sample-carousel-track.is-dragging {
        cursor: grabbing;
        scroll-snap-type: none;
    }
    .why-us-sample-carousel-track::-webkit-scrollbar {
        display: none;
    }
    .why-us-sample-slide {
        position: relative;
        inset: auto;
        flex: 0 0 calc((100% - 16px) / 2);
        height: 100%;
        opacity: 1;
        pointer-events: auto;
        scroll-snap-align: start;
        transition: none;
        overflow: hidden;
        background: #e2e8f0;
    }
    .why-us-sample-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
    }
    .why-us-sample-arrow {
        opacity: 1;
        top: 50%;
        width: 24px;
        height: 38px;
        font-size: 0.95rem;
    }
    .why-us-sample-prev {
        left: 4px;
    }
    .why-us-sample-next {
        right: 4px;
    }
}

@media (max-width: 768px) {
    .h-cms-tag { font-size: 0.72rem; padding: 7px 12px; }
    .hero { padding-top: 120px; padding-bottom: 420px; }
    .h-sub { font-size: 0.8rem; }
    .h-script { font-size: 5rem; margin-top: 15px; margin-bottom: -20px; }
    .h-main { font-size: 2.5rem; }
    .h-kicker { font-size: 1.5rem; margin-bottom: 12px; }
    .h-section-header-left .h-subtitle { font-size: clamp(2.1rem, 9vw, 2.6rem); line-height: 1.1; margin-bottom: 12px; }
    #horizon-section-kicker { font-size: clamp(1.8rem, 7vw, 2.2rem) !important; margin-bottom: 12px !important; }
    #horizon-section-title { font-size: 1.5rem !important; line-height: 1.1 !important; margin-bottom: 12px !important; }
    .hero-description { font-size: 1.08rem; line-height: 1.42; font-weight: 500; max-width: 92%; }
    .hero-copy-desktop { display: none; }
    .hero-copy-mobile { display: inline; }
    .btn { width: 100%; }
    .hero-buttons .btn {
        width: auto;
        font-size: 0.9rem;
    }
    
    .carousel-section { height: 380px; }
    .carousel-item { flex: 0 0 280px; width: 280px; height: 360px; max-height: 360px; }

    .why-us-section { padding: 60px 0 0 !important; }
    .section-header-center h2 { font-size: 2.5rem; }
    .section-header-center p { font-size: 1rem; }
    .process-intro-list {
        max-width: 100%;
        font-size: 1rem;
        line-height: 1.55;
        font-weight: 400;
        padding-left: 20px;
    }
    .why-us-copy-desktop { display: none; }
    .why-us-copy-mobile { display: block; }
    .why-us-process-main { grid-template-columns: 1fr; gap: 18px; }
    .why-us-process-right { order: 2; }
    .why-us-process-left { order: 1; }
    .why-us-sample-carousel-shell {
        width: 100%;
        height: min(560px, 118vw);
        margin: 40px auto 0;
        padding: 0 28px;
        box-sizing: border-box;
    }
    .why-us-sample-carousel-track {
        width: 100%;
        height: 100%;
        margin-left: 0;
        overflow-x: auto;
        overflow-y: hidden;
        display: flex;
        gap: 14px;
        scroll-snap-type: x mandatory;
        background: transparent;
        padding: 0;
        scroll-padding-left: 0;
        scrollbar-width: none;
        cursor: grab;
        -webkit-user-select: none;
        user-select: none;
        touch-action: pan-y;
    }
    .why-us-sample-carousel-track.is-dragging {
        cursor: grabbing;
        scroll-snap-type: none;
    }
    .why-us-sample-carousel-track::-webkit-scrollbar {
        display: none;
    }
    .why-us-sample-slide {
        position: relative;
        inset: auto;
        flex: 0 0 calc((100% - 7px) / 1.5);
        height: 100%;
        opacity: 1;
        pointer-events: auto;
        scroll-snap-align: start;
        transition: none;
        overflow: hidden;
        background: #e2e8f0;
    }
    .why-us-sample-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
    }
    .why-us-sample-arrow {
        opacity: 1;
        width: 22px;
        height: 36px;
        font-size: 0.9rem;
    }
    .why-us-sample-prev {
        left: 5px;
    }
    .why-us-sample-next {
        right: 5px;
    }
    .process-feature-list { gap: 10px; }
    .process-founder-card {
        min-height: 0;
        padding: 14px 16px;
        gap: 14px;
        border-radius: 5px;
    }
    .process-founder-top {
        display: block;
    }
    .process-founder-copy p {
        font-size: 0.9rem;
        line-height: 1.35;
        margin: 6px 0 8px 0;
    }
    .process-founder-points {
        display: none;
    }
    .process-feature-item {
        grid-template-columns: 44px minmax(0, 1fr) 28px;
        gap: 10px;
        min-height: 0;
        padding: 16px;
        border-radius: 5px;
    }
    .process-feature-item-planning {
        display: none;
    }
    .process-feature-icon {
        width: 38px;
        height: 38px;
        border-radius: 9px;
    }
    .process-feature-title,
    .process-feature-item:not(.is-highlighted) .process-feature-title {
        font-size: 1.05rem;
        margin-bottom: 4px;
    }
    .process-feature-item.is-highlighted .process-feature-title {
        font-size: 1.05rem;
    }
    .process-founder-card .process-feature-title {
        color: #0284C7;
        font-size: 1.4rem;
    }
    .process-feature-copy p {
        font-size: 0.9rem;
        line-height: 1.35;
    }
    .process-feature-arrow {
        width: 24px;
        height: 24px;
        font-size: 0.9rem;
    }
    .personal-process-card {
        margin-top: 16px;
        padding: 14px;
        grid-template-columns: 1fr;
        gap: 12px;
        border-radius: 5px;
    }
    .personal-process-left {
        grid-template-columns: 64px minmax(0, 1fr);
        justify-items: stretch;
        text-align: left;
        gap: 12px;
    }
    .personal-process-avatar {
        width: 64px;
        height: 64px;
    }
    .personal-process-heading {
        font-size: 1rem;
    }
    .personal-process-copy p {
        font-size: 0.78rem;
        margin-bottom: 8px;
    }
    .personal-process-signature {
        font-size: 1.3rem;
    }
    .personal-process-title {
        font-size: 0.64rem;
    }
    .personal-process-divider {
        display: none;
    }
    .personal-process-right {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .personal-process-point {
        font-size: 0.84rem;
    }

    .horizon-section { padding-top: 100px; }
    .h-top-split {
        width: 100%;
        margin-left: 0;
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 38px;
    }
    .h-top-left { padding: 0; }
    .h-kicker { font-size: 1.5rem; }
    .h-section-header-left .h-subtitle { font-size: clamp(2.1rem, 9vw, 2.6rem); line-height: 1.1; margin-bottom: 12px; }
    #horizon-section-kicker { font-size: clamp(1.8rem, 7vw, 2.2rem) !important; }
    #horizon-section-title { font-size: 1.5rem !important; line-height: 1.1 !important; margin-bottom: 12px !important; }
    .h-section-header-left .h-description { font-size: 1.05rem; line-height: 1.7; }
    .h-description-desktop { display: none; }
    .h-description-mobile { display: inline; }
    .h-top-right { justify-self: stretch; }
    .h-media-placeholder {
        min-height: 260px;
        border-radius: 12px;
        border-right: 1px dashed #94a3b8;
    }
    .h-cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-bottom: 40px; }
    .h-cards-grid.h-cards-compact .h-card { min-height: 0; }
    .h-cards-grid.h-cards-compact .h-card h4 { font-size: 0.95rem; }
    .h-cards-grid.h-cards-compact .h-card p { font-size: 0.82rem; line-height: 1.4; }
    .h-features-container { margin-top: 40px; }
    .h-features-title { font-size: 1.75rem; margin-bottom: 32px; }
    .h-list-grid { grid-template-columns: 1fr; justify-items: center; max-height: 320px; overflow: hidden; transition: max-height 0.3s ease; }
    .h-list-grid.is-expanded { max-height: 320px; overflow: hidden; }
    .h-list-grid.is-mobile-expanded { max-height: 5000px; }
    .h-list-grid.is-expanded.is-mobile-expanded { max-height: 5000px; overflow: visible; }
    .h-list-item { justify-content: flex-start; text-align: left; width: 100%; max-width: 300px; margin-left: auto; margin-right: auto; }
    .h-list-item div { align-items: flex-start; }
    .h-list-item strong { font-size: 1.02rem; }
    .h-list-item span { font-size: 0.94rem; }
    .h-mobile-reveal-btn {
        display: flex;
        width: fit-content;
        margin: 16px auto 0 auto;
        padding: 10px 16px;
        border: 1px solid #bfdbfe;
        border-radius: 999px;
        background: #eff6ff;
        color: #1d4ed8;
        font-weight: 700;
    }
    .horizon-video-bottom {
        margin-top: 16px;
        margin-bottom: 0;
        padding: 0 12px;
        overflow: visible;
    }
    .h-auto-video.h-auto-video-bottom {
        width: 100%;
        max-width: 100%;
        clip-path: none;
        border-radius: 12px;
    }
    .support-contact-dialog { padding: 22px 16px; }
    .support-contact-grid { grid-template-columns: 1fr; gap: 10px; }
    .support-contact-actions { flex-direction: column; }
    .support-contact-actions .btn { width: 100%; }
    
    .h-callout-box { flex-direction: column; padding: 32px; gap: 20px; text-align: center; align-items: center; margin-bottom: 60px; }
    .h-callout-content p { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .h-mobile-readmore { display: inline-block; margin-top: 12px; color: #2563eb; font-weight: 700; border-bottom: 1px solid #bfdbfe; background: transparent; border-top: 0; border-left: 0; border-right: 0; cursor: pointer; }

    .horizon-gallery-track { gap: 0; padding-right: 0; }
    .horizon-gallery-item { width: auto; max-width: none; border-radius: 10px 10px 0 0; }

    /* Process & Support Mobile Adjustments */
    .process-section { padding: 100px 0 40px 0; }
    .process-track { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding: 0 20px 32px 20px; gap: 16px; }
    .process-card-wrap { flex: 0 0 85vw; scroll-snap-align: center; }
    .process-flow-item { width: auto; height: 320px; flex-basis: auto; }
    .process-img { height: 180px; }
    .process-content { padding: 24px 16px; }
    .process-cards-panel { padding: 16px; margin-bottom: 36px; }
    .cards-grid { grid-template-columns: 1fr; margin-bottom: 0; }
    
    .support-block { padding: 32px 20px 0 20px; }
    .support-main-heading { font-size: 2.8rem; margin-bottom: 20px; }
    .support-text-area h3 { font-size: 2rem; margin-bottom: 20px; }
    .support-text-area p { display: none; }
    .support-text-area h4 { display: none; }
    .support-mobile-bullets {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px 14px;
        margin: 6px 0 12px 0;
        padding-left: 18px;
        color: #334155;
        font-size: 0.92rem;
        line-height: 1.35;
    }
    .support-editor-image { width: 100%; margin: 0; }
    .support-features-area { display: none; }

    /* Reviews Mobile Adjustments */
    .reviews-section { padding: 60px 0; }
    .reviews-header h2 { font-size: 2.5rem; }
    .reviews-track-wrapper { padding-right: 64px; }
    .reviews-track {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 20px;
        scroll-behavior: smooth;
        padding: 0 0 20px 20px;
        gap: 14px;
    }
    .review-card { flex: 0 0 74vw; scroll-snap-align: start; }
    .reviews-dots { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
    .r-dot { width: 6px; height: 6px; border-radius: 50%; background: #cbd5e1; }
    .r-dot.active { background: #3b82f6; }
    .reviews-mobile-controls {
        display: flex;
        flex-direction: column;
        gap: 10px;
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 5;
    }
    .reviews-arrow {
        width: 38px;
        height: 38px;
        border-radius: 999px;
        border: 1px solid #bfdbfe;
        background: rgba(255, 255, 255, 0.92);
        color: #1d4ed8;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 18px rgba(30, 64, 175, 0.2);
    }
    .reviews-arrow:disabled {
        opacity: 0.35;
    }
    .ba-media {
        cursor: default;
    }

    /* CTA Mobile Adjustments */
    .cta-section { padding: 60px 0; }
    .cta-heading { font-size: 2.5rem; }
    .cta-description { font-size: 1rem; margin-bottom: 32px; }
}



/* ================= FINAL CTA SECTION ================= */
.final-cta-section {
    position: relative;
    padding: 96px 0;
    background-color: #1e3a8a;
    background-image: url('images/church-website-background.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

.final-cta-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(29, 78, 216, 1), rgba(30, 58, 138, 0.85));
    z-index: 1;
}

.final-cta-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
    z-index: 2;
}

.final-cta-content {
    position: relative;
    z-index: 10;
    max-width: 896px; /* max-w-4xl */
    margin: 0 auto;
    padding: 0 16px;
    text-align: center;
}

.page-home .final-cta-content h2 {
    font-family: var(--font-sans);
    font-size: 4rem !important;
    font-weight: 700;
    color: white;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
    line-height: .9;
}

.highlight-light-blue {
    color: #93c5fd; /* brand-300 */
}

.final-cta-content p {
    font-size: 1.25rem;
    color: #e0e7ff; /* brand-100 */
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.6;
}

.final-cta-buttons {
    display: flex;
    flex-direction: row;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.cta-btn {
    min-width: 178px;
    font-size: 1rem;
    font-weight: 600;
    padding: 11px 18px;
}

/* Button Overrides to match specific requested hex codes */
.final-cta-buttons .btn-purple {
    background-color: #80619c;
}

.final-cta-buttons .btn-purple:hover {
    background-color: #80619c;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    box-shadow: none;
}

.btn-outline:hover {
    background-color: transparent;
    transform: none; /* Disables standard button lift on this specific style if desired */
}

/* Responsive CTA */
@media (max-width: 768px) {
    .final-cta-content h2 {
        font-size: 3rem; 
    }
    .final-cta-buttons {
        flex-direction: column;
    }
    .cta-btn {
        width: 100%;
    }
}





/* ================= INTEGRATIONS SECTION ================= */
.integrations-section {
    position: relative;
    padding: 46px 0;
    background-color: #14386e;
    background-image: linear-gradient(to bottom right, #14386e, #0f2a52, #0c4a6e);
    overflow: hidden;
}

/* Background Blobs */
.int-bg-blobs {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; overflow: hidden; z-index: 1;
}
.int-blob { position: absolute; border-radius: 50%; filter: blur(100px); }
.int-blob-center {
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 800px; height: 800px; background-color: rgba(96, 165, 250, 0.1); /* brand-400/10 */
}
.int-blob-corner {
    bottom: -96px; right: -96px;
    width: 384px; height: 384px; background-color: rgba(147, 51, 234, 0.1); /* purple-600/10 */
}

/* Layout Grid */
.int-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: center;
}

/* Text Content */
.int-text-content { order: 1; max-width: 672px; }
.badge-glass {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(4px);
    border-radius: 9999px;
}
.text-brand-light { color: #60a5fa; } /* brand-400 */

.int-heading {
    font-family: var(--font-sans); font-size: 2rem; font-weight: 300;
    line-height: 1.1; margin-bottom: 10px; letter-spacing: -0.02em;
}
.int-heading span { color: white; white-space: nowrap; }
.int-platforms {
    color: #ffffff;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 16px 0;
}
.int-platforms-gradient {
    background: linear-gradient(90deg, #60a5fa 0%, #93c5fd 45%, #c4b5fd 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.int-description {
    color: rgba(219, 234, 254, 0.9); /* blue-100/90 */
    margin-bottom: 40px; line-height: 26px; font-weight: 300; 
}

/* Avatars */
.int-avatars-wrap { display: flex; align-items: center; gap: 16px; justify-content: flex-start; }
.avatar-stack { display: flex; margin-right: -8px; }
.avatar {
    width: 32px; height: 32px; border-radius: 50%; border: 2px solid #14386e;
    background-color: rgba(96, 165, 250, 0.2); margin-left: -8px; /* space-x-2 */
    display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.avatar:first-child { margin-left: 0; }
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.avatar-text { color: #93c5fd; font-size: 0.875rem; font-weight: 500; }

/* Visual Orbit Content */
.int-visual-content {
    position: relative; height: 439px; width: 100%;
    display: flex; justify-content: center; align-items: center;
    order: 2; padding: 0;
}

.integration-scale-wrapper {
    position: relative; display: flex; justify-content: center; align-items: center;
    transition: transform 0.3s ease-out; will-change: transform;
}

/* Animations */
@keyframes spin-cw { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes spin-ccw { from { transform: rotate(360deg); } to { transform: rotate(0deg); } }
@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.icon-spin-slow { animation: spin-slow 8s linear infinite; }

/* The main rotating track */
.orbit-track {
    position: absolute; width: 320px; height: 320px;
    border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.1);
    animation: spin-cw 60s linear infinite;
}

/* Individual Nodes */
.orbit-node {
    position: absolute; display: flex; flex-direction: column; align-items: center; justify-content: center;
    z-index: 20; width: auto; transform: translate(-50%, -50%);
}

/* Counter-rotation to keep icons upright */
.orbit-node-inner {
    animation: spin-ccw 60s linear infinite;
    display: flex; flex-direction: column; align-items: center; cursor: pointer; group;
}

.orbit-icon-wrap {
    width: 56px; height: 56px; background-color: white; border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); border-width: 4px; border-style: solid;
    display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
    transition: transform 0.3s ease; margin-bottom: 8px;
}
.orbit-node-inner:hover .orbit-icon-wrap { transform: scale(1.1); }

.orbit-icon-bg { position: absolute; inset: 0; opacity: 0.1; }

.orbit-label {
    background-color: rgba(15, 23, 42, 0.9); padding: 4px 12px; border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1); box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.1em;
    color: white; text-align: center; white-space: nowrap;
}

/* Icon Brand Colors */
.border-purple { border-color: #9333ea; } .text-purple { color: #9333ea; } .bg-purple { background-color: #9333ea; }
.border-youtube { border-color: #FF0000; } .text-youtube { color: #FF0000; } .bg-youtube { background-color: #FF0000; }
.border-f1 { border-color: #00558C; } .text-f1 { color: #00558C; } .bg-f1 { background-color: #00558C; }
.border-facebook { border-color: #1877F2; } .text-facebook { color: #1877F2; } .bg-facebook { background-color: #1877F2; }
.border-ccb { border-color: #525B66; } .text-ccb { color: #525B66; } .bg-ccb { background-color: #525B66; }
.border-churchtrac { border-color: #0ea5e9; } .text-churchtrac { color: #0ea5e9; } .bg-churchtrac { background-color: #0ea5e9; }

/* Dashed inner circle */
.orbit-dashed {
    position: absolute; width: 240px; height: 240px; border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.05);
    animation: spin-ccw 40s linear infinite; opacity: 0.5; pointer-events: none;
}

/* Center Logo Node */
.orbit-center {
    position: relative; z-index: 30; width: 176px; height: 176px;
    background-color: white; border-radius: 50%; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    display: flex; flex-direction: column; items-center; justify-content: center;
    border: 8px solid rgba(255, 255, 255, 0.05); overflow: hidden;
}

.orbit-center-pulse {
    position: absolute; inset: 0; background-color: #eff6ff; /* brand-50 */
    border-radius: 50%; animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; opacity: 0.2;
}

@keyframes pulse { 0%, 100% { opacity: 0.2; } 50% { opacity: 0.4; } }

.orbit-center-content { position: relative; z-index: 10; display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; text-align: center; }
.oc-sub { display: block; font-size: 10px; font-weight: 900; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.3em; margin-bottom: 4px; }
.oc-main { display: block; font-family: var(--font-sans); font-size: 1.5rem; font-weight: 900; color: #2563eb; letter-spacing: -0.05em; line-height: 1; }


/* ================= RESPONSIVE ADJUSTMENTS ================= */
@media (min-width: 1025px) {
    .integration-scale-wrapper { transform: scale(1.15); }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .int-grid { grid-template-columns: 1fr; text-align: center; }
    .int-text-content { max-width: 100%; margin: 0 auto; order: 1; }
    .int-avatars-wrap { justify-content: center; }
    .integration-scale-wrapper { transform: scale(0.95); }
}

@media (max-width: 550px) {
    .why-us-sample-carousel-shell {
        padding: 0 30px;
    }
    .why-us-sample-slide {
        flex: 0 0 100%;
    }
    .why-us-sample-slide img {
        object-fit: cover;
    }
}

@media (max-width: 768px) {
    .integrations-section { padding: 64px 0; }
    .int-grid { grid-template-columns: 1fr; gap: 64px; text-align: center; }
    .int-text-content { order: 1; }
    .int-heading { font-size: 1.6rem; }
    .int-platforms { font-size: 2rem; line-height: 1.15; }
    .int-heading span { white-space: normal; }
    .int-description { font-size: 1rem; margin-left: auto; margin-right: auto; }
    .int-avatars-wrap { justify-content: center; flex-direction: column; gap: 12px; }
    
    .int-visual-content { height: 480px; order: 2; }
    .integration-scale-wrapper { transform: scale(0.9); }
}

/* ================= MOBILE COMPACTION PASS ================= */
@media (max-width: 768px) {
    .hero-content-wrapper {
        padding-top: 34px;
    }
    .container,
    .container-wide {
        padding-left: 14px;
        padding-right: 14px;
    }

    .hero {
        min-height: auto;
        padding-top: 72px;
        padding-bottom: 340px;
    }
    .h-sub {
        font-size: 0.92rem;
    }
    .hero-description {
        margin: 14px auto;
        max-width: 94%;
        line-height: 1.45;
    }
    .carousel-section {
        height: 330px;
    }
    .carousel-item {
        flex: 0 0 250px;
        width: 250px;
        height: 312px;
        max-height: 312px;
    }

    .section-header-center {
        margin: 0 auto 28px auto;
    }
    .section-header-center h2 {
        font-size: 1.9rem;
        margin-bottom: 14px;
        line-height: 1.14;
    }
    .section-header-center p {
        font-size: 0.98rem;
        line-height: 1.58;
    }

    .why-us-section,
    .integrations-section,
    .reviews-section,
    .final-cta-section {
        padding-top: 44px;
        padding-bottom: 44px;
    }
    .before-after-widget {
        padding: 10px;
    }
    .before-after-controls {
        width: 100%;
        margin-top: 12px;
        gap: 10px;
    }
    .ba-carousel-arrow {
        width: 24px;
        height: 24px;
        font-size: 14px;
    }
    .ba-labels {
        margin-bottom: 8px;
        font-size: 0.92rem;
    }

    .horizon-section {
        padding-top: 94px;
    }
    .h-top-split {
        gap: 14px;
        margin-bottom: 24px;
    }
    .h-kicker {
        font-size: 1.1rem;
    }
    .h-section-header-left .h-subtitle {
        font-size: clamp(1.75rem, 7.2vw, 2.1rem);
        margin-bottom: 12px;
        line-height: 1.1;
    }
    #horizon-section-kicker {
        font-size: clamp(1.55rem, 6vw, 1.9rem) !important;
    }
    #horizon-section-title {
        font-size: 1.1rem !important;
        margin-bottom: 12px !important;
        line-height: 1.1 !important;
    }
    .h-section-header-left .h-description {
        font-size: 0.92rem;
        line-height: 1.55;
    }
    .h-cards-grid {
        margin-bottom: 24px;
    }
    .h-cards-grid.h-cards-compact .h-card {
        padding: 12px;
    }
    .h-cards-grid.h-cards-compact .h-card-icon {
        width: 38px;
        height: 38px;
        margin: 0 auto 8px;
    }
    .h-features-title {
        font-size: 1.32rem;
        margin-bottom: 22px;
    }
    .h-list-grid {
        gap: 14px 16px;
    }
    .h-list-item {
        gap: 10px;
    }
    .h-list-item strong {
        font-size: 0.94rem;
    }
    .h-list-item span {
        font-size: 0.82rem;
    }

    .integrations-section {
        padding-top: 44px;
        padding-bottom: 44px;
    }
    .int-grid {
        gap: 36px;
    }
    .int-heading {
        font-size: 1.3rem;
    }
    .int-platforms {
        font-size: 1.55rem;
        margin-bottom: 12px;
    }
    .int-description {
        font-size: 0.95rem;
        line-height: 1.55;
        margin-bottom: 20px;
    }
    .int-visual-content {
        height: 360px;
    }
    .integration-scale-wrapper {
        transform: scale(0.8);
    }

    .process-section {
        padding-top: 84px;
        padding-bottom: 40px;
    }
    .process-cards-panel {
        padding: 12px;
        margin-bottom: 24px;
    }
    .cards-grid {
        gap: 12px;
    }
    .card {
        padding: 16px;
    }
    .graphic-container {
        height: 150px;
        margin-bottom: 14px;
    }
    .card-title {
        font-size: 1.05rem;
        margin: 8px 0;
    }
    .card-desc {
        font-size: 0.9rem;
        line-height: 1.45;
    }

    .support-block {
        padding-top: 24px;
    }
    .support-main-heading {
        font-size: 2rem;
        line-height: 1.08;
    }
    .support-text-area h3 {
        font-size: 1.22rem;
        margin-bottom: 12px;
    }
    .support-text-area p {
        font-size: 0.94rem;
        line-height: 1.52;
        margin-bottom: 14px;
    }
    .support-editor-image-wrap {
        padding-top: 24px;
    }

    .reviews-track-wrapper {
        padding-right: 56px;
    }
    .review-card {
        flex: 0 0 76vw;
        padding: 20px 16px;
    }
    .r-verified {
        margin-bottom: 14px;
    }
    .r-quote {
        margin-bottom: 18px;
        font-size: 0.9rem;
        line-height: 1.45;
        display: -webkit-box;
        -webkit-line-clamp: 6;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .final-cta-section {
        padding-top: 52px;
        padding-bottom: 52px;
    }
    .final-cta-content h2 {
        font-size: 2.1rem;
        margin-bottom: 18px;
    }
    .final-cta-content p {
        font-size: 0.98rem;
        margin-bottom: 24px;
        line-height: 1.5;
    }
    .final-cta-buttons .cta-btn {
        width: auto;
        min-width: 154px;
        padding: 8px 12px;
        font-size: 0.86rem;
        font-weight: 600;
        line-height: 1.2;
    }
    .final-cta-buttons .btn-outline.cta-btn {
        min-width: 136px;
        padding: 8px 12px;
        font-size: 0.82rem;
        font-weight: 600;
    }

    .site-footer {
        padding-top: 42px;
        padding-bottom: 22px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 26px;
    }
    .site-footer h2,
    .site-footer h3,
    .site-footer h4 {
        font-size: 0.95rem;
        line-height: 1.2;
    }
    .footer-col h4 {
        font-size: 0.9rem;
    }
    .footer-logo-text {
        font-size: 1.02rem;
    }
    .footer-btn {
        font-size: 0.82rem;
        padding: 7px 12px;
        font-weight: 500;
    }
}

@media (max-width: 390px) {
    .section-header-center h2 {
        font-size: 1.85rem;
    }
    .h-kicker {
        font-size: 1rem;
    }
    #horizon-section-kicker {
        font-size: 1.55rem !important;
    }
    #horizon-section-title {
        font-size: 1rem !important;
    }
    .review-card {
        flex-basis: 79vw;
    }
}














/* ================= FOOTER SECTION ================= */
.site-footer {
    background-color: #0f172a; /* slate-900 */
    border-top: 1px solid #1e293b; /* slate-800 */
    padding-top: 64px;
    padding-bottom: 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 48px;
}

/* Brand Column */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo-icon {
    position: relative;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #2ea3f2;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CSS Cross Construction */
.cross-v { position: absolute; width: 22%; height: 65%; background-color: white; border-radius: 2px; }
.cross-h { position: absolute; width: 55%; height: 20%; background-color: white; border-radius: 2px; margin-bottom: 15%; }

.footer-logo-text {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
}

.text-brand-light { color: #93c5fd; /* Light blue accent for "Website" */ }

.footer-description {
    color: #94a3b8; /* slate-400 */
    font-size: 0.875rem;
    margin-bottom: 24px;
    line-height: 1.6;
    max-width: 300px;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    color: #94a3b8;
    transition: color 0.3s;
}

.footer-socials a:hover {
    color: white;
}

/* Link Columns */
.footer-col h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 16px;
    font-size: 1rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col a {
    color: #94a3b8; /* slate-400 */
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: white;
}

.pt-2 { padding-top: 8px; }

.footer-btn {
    width: 100%;
    padding: 8px 16px;
    background-color: transparent;
    border: 1px solid rgba(147, 197, 253, 0.3); /* brand-400/30 */
    color: #93c5fd; /* brand-400 */
    border-radius: 8px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s;
}

.footer-btn:hover {
    background-color: transparent;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #1e293b; /* slate-800 */
    padding-top: 32px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    color: #64748b; /* slate-500 */
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #cbd5e1; /* slate-300 */
}

.footer-made-with {
    font-size: 0.75rem; /* xs */
    display: flex;
    align-items: center;
    gap: 4px;
}

.heart-icon {
    color: #7f1d1d; /* red-900 */
}

/* Footer Responsive Adjustments */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-brand-col {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-brand-col {
        grid-column: span 1;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding-top: 42px;
        padding-bottom: 22px;
    }
    .footer-grid {
        gap: 20px;
        margin-bottom: 26px;
    }
}
