.card-faq::before,
.directory-community::before {
    position: absolute;
    inset: 0;
    pointer-events: none;
    content: "";
}
.card-tag,
.mission-reveal,
.project-tag {
    text-transform: uppercase;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.about-section {
    padding: 28px 0;
    background: linear-gradient(180deg, #00244d 0, #e2ecf5 15%, #edf3f8 100%);
}
.about-section h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    font-weight: 800;
    padding-top: 30px;
    color: var(--text-main);
}
.about-section p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    padding-bottom: 40px;
}
.about-inner {
    max-width: 800px;
    margin: 0 auto 30px;
    padding: 24px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 36, 77, 0.14);
    box-shadow: 0 12px 32px rgba(0, 24, 77, 0.06);
    backdrop-filter: blur(6px);
}
.about-section .urgency-card {
    max-width: 800px;
    margin: 20px auto 0;
    padding: 20px 24px;
    border-radius: 14px;
    border-top: 4px solid #0052a3;
    text-align: center;
    background: linear-gradient(180deg, #f4f9ff, #fff);
    border-left: 1px solid rgba(0, 82, 163, 0.08);
    border-right: 1px solid rgba(0, 82, 163, 0.08);
    border-bottom: 1px solid rgba(0, 82, 163, 0.08);
    box-shadow: 0 6px 20px rgba(0, 24, 77, 0.03);
}
.feature-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
}
.projects-section {
    padding: 1.75rem 0;
    background: linear-gradient(135deg, #f4f7fa 0, #eef3f8 50%, #f4f7fa 100%);
}
.projects-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 1rem;
}
.projects-head h2 {
    margin-bottom: 0.75rem;
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.1;
    color: #0f172a;
}
.projects-head p {
    color: #64748b;
    line-height: 1.7;
}
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.4rem;
}
.project-link,
.project-tag {
    display: inline-flex;
    color: #2563eb;
    font-weight: 700;
}
.project-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}
.project-card:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.18);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}
.featured-project {
    background: linear-gradient(180deg, rgba(250, 204, 21, 0.08), #fff);
}
.project-image {
    position: relative;
    height: 215px;
    overflow: hidden;
}
.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s;
}
.project-card:hover .project-image img {
    transform: scale(1.04);
}
.project-content {
    padding: 1rem;
}
.project-top {
    margin-bottom: 0.8rem;
}
.project-tag {
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.7rem;
    margin-bottom: 0.75rem;
    border-radius: 999px;
    background: #eff6ff;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
}
.directory-actions .btn,
.project-btn {
    min-height: 46px;
    font-size: 0.92rem;
    text-decoration: none;
}
.project-tag.gold {
    background: rgba(250, 204, 21, 0.15);
    color: #b45309;
}
.project-content h3 {
    margin: 0;
    font-size: 1.25rem;
    color: #0f172a;
}
.project-content p {
    margin: 0 0 1.25rem;
    color: #64748b;
    line-height: 1.7;
    font-size: 0.95rem;
}
.project-link {
    align-items: center;
    gap: 0.35rem;
    text-decoration: none;
    transition: opacity 0.2s;
}
.project-link:hover {
    opacity: 0.75;
}
.project-actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}
.project-btn,
.section-badge {
    display: inline-flex;
    border-radius: 999px;
    font-weight: 700;
}
.project-btn {
    align-items: center;
    justify-content: center;
    padding: 0.78rem 1rem;
    transition: 0.3s;
}
.project-btn.primary {
    background: linear-gradient(135deg, #facc15, #f59e0b);
    color: #111827;
}
.directory-actions .btn-primary:hover,
.project-btn.primary:hover {
    transform: translateY(-2px);
}
@media (max-width: 640px) {
    .projects-section {
        padding: 1rem 0;
    }
    .projects-grid {
        gap: 1rem;
    }
    .project-image {
        height: 200px;
    }
    .project-content {
        padding: 1.15rem;
    }
    .project-actions {
        flex-direction: column;
    }
}
.project-card {
    opacity: 0;
    transition:
        opacity 0.7s,
        transform 0.7s;
}
.project-card:nth-child(odd) {
    transform: translateX(-40px);
}
.project-card:nth-child(2n) {
    transform: translateX(40px);
}
.project-card.visible {
    opacity: 1;
    transform: translateX(0);
}
.fade-up,
.reveal-section .brand-reveal .char,
.reveal-section .fancy-reveal,
.reveal-section .mission-reveal {
    opacity: 0;
}
.features {
    padding: 40px 0;
    background: linear-gradient(180deg, #f8fafc 0, #eef4ff 40%, #fff 100%);
    overflow: hidden;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
    box-sizing: border-box;
}
.section-heading {
    max-width: 720px;
    margin: 0 auto 40px;
    text-align: center;
}
.section-badge {
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    padding: 6px 14px;
    background: #dbeafe;
    color: #1e40af;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
}
.section-heading h2 {
    margin-bottom: 14px;
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #0f172a;
}
.section-heading p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #64748b;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}
.swipe-indicator {
    display: none;
}
.feature-card h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
    color: #0f172a;
}
.feature-card p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.55;
    color: #64748b;
}
.feature-highlight {
    background: linear-gradient(180deg, #fff, #eef4ff);
    border-color: rgba(37, 99, 235, 0.18);
}
.fade-up {
    transform: translateY(25px);
    transition:
        opacity 0.8s,
        transform 0.8s;
}
.brand-showcase,
.card-faq,
.faq-answer,
.pricing {
    overflow: hidden;
}
@keyframes pulseArrow {
    0%,
    100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(4px);
    }
}
.directory-community {
    position: relative;
    overflow: hidden;
    padding: 2.4rem 0;
    background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.1), transparent 38%),
        radial-gradient(circle at bottom right, rgba(249, 115, 22, 0.08), transparent 34%),
        linear-gradient(180deg, #f8fbff 0, #eef5ff 52%, #fff 100%);
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}
.directory-community::before {
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.45), transparent 45%, rgba(255, 255, 255, 0.18));
}
.directory-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
    padding: 1.6rem;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 22px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
    text-align: center;
}
.directory-content h2 {
    margin-bottom: 0.8rem;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: #0f172a;
}
.directory-content p {
    margin: 0 auto 0.9rem;
    max-width: 680px;
    font-size: 0.97rem;
    line-height: 1.7;
    color: #475569;
}
.directory-intro {
    color: #334155 !important;
}
.directory-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 1.2rem;
}
.directory-actions .btn {
    padding: 0.8rem 1.2rem;
    border-radius: 999px;
    font-weight: 700;
    transition:
        transform 0.2s,
        box-shadow 0.2s,
        background 0.2s;
}
.directory-actions .btn-primary {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.18);
}
.directory-actions .btn-outline {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(37, 99, 235, 0.14);
    color: #1d4ed8;
}
.directory-actions .btn-outline:hover {
    background: #fff;
    transform: translateY(-2px);
}
.faq {
    padding: 2.8rem 0;
    background: radial-gradient(circle at center, #f4f8fc 0, #edf3f8 70%, #e2ecf5 100%);
}
.faq-intro {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 1.6rem;
}
.faq-intro h2 {
    margin-bottom: 0.55rem;
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: #00244d;
}
.faq-intro p {
    font-size: 1rem;
    line-height: 1.65;
    color: #334e68;
}
.faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    max-width: 860px;
    padding-bottom: 20px;
    margin: 0 auto;
}
.card-faq {
    position: relative;
    background: #fff;
    border: 1px solid rgba(0, 36, 77, 0.12);
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 24, 77, 0.05);
    transition:
        transform 0.2s,
        box-shadow 0.2s,
        border-color 0.2s;
}
.card-faq:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 82, 163, 0.3);
    box-shadow: 0 14px 32px rgba(0, 24, 77, 0.08);
}
.card-faq::before {
    background: radial-gradient(circle at top right, rgba(0, 82, 163, 0.06), transparent 38%);
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 1.25rem;
    cursor: pointer;
}
.faq-question h3 {
    margin: 0;
    font-size: 1.03rem;
    font-weight: 700;
    line-height: 1.4;
    color: #00244d;
}
.faq-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: #eaf4ff;
    color: #0052a3;
    font-size: 1.2rem;
    font-weight: 700;
    transition:
        transform 0.25s,
        background 0.25s,
        color 0.25s;
}
.card-faq.active .faq-icon {
    transform: rotate(45deg);
    background: #0052a3;
    color: #fff;
}
.faq-answer {
    max-height: 0;
    transition:
        max-height 0.35s,
        padding 0.35s;
}
.faq-answer p {
    padding: 0 1.25rem 1.2rem;
    margin: 0;
    font-size: 0.97rem;
    line-height: 1.7;
    color: #243b53;
}
.card-faq.active .faq-answer {
    max-height: 300px;
}
.brand-showcase {
    position: relative;
    width: 100%;
    padding: 1.2rem 1rem 1.8rem;
    background: #fff;
}
.brand-showcase-bg,
.pricing::before {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.brand-showcase-bg {
    z-index: 0;
    background: radial-gradient(circle at 20% 20%, rgba(29, 78, 216, 0.12), transparent 45%),
        radial-gradient(circle at 80% 30%, rgba(245, 158, 11, 0.1), transparent 40%),
        radial-gradient(circle at 50% 90%, rgba(14, 165, 233, 0.1), transparent 45%);
}
.hero-wrapper-tight {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    padding-bottom: 30px;
    text-align: center;
}
.reveal-section.is-visible .fancy-reveal {
    animation: 0.5s forwards pop;
}
.reveal-section.is-visible .mission-reveal {
    animation: 0.5s 0.6s forwards pop;
}
.reveal-section.is-visible .brand-reveal .char {
    animation: 0.4s forwards letterIn;
}
.fancy-reveal {
    font-family: cursive;
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: #d97706;
    margin: 0 0 -0.6rem;
}
.brand-reveal {
    font-family: system-ui, sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 8vw, 5.5rem);
    letter-spacing: -1.5px;
    margin: 0;
    line-height: 0.95;
}
.brand-reveal .char {
    display: inline-block;
    background: linear-gradient(135deg, #1d4ed8, #b45309);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: translateY(14px);
}
.brand-reveal .space {
    display: inline-block;
    width: 0.25em;
}
.mission-reveal {
    margin-top: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    font-size: clamp(0.85rem, 2vw, 1.2rem);
    color: #1e293b;
}
.pricing {
    position: relative;
    padding: 70px 0;
    background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.16), transparent 34%),
        radial-gradient(circle at bottom right, rgba(37, 99, 235, 0.12), transparent 36%),
        linear-gradient(180deg, #f8fbff 0, #eef5ff 45%, #fff 100%);
    border-top: 1px solid rgba(37, 99, 235, 0.08);
    border-bottom: 1px solid rgba(37, 99, 235, 0.08);
}
.pricing::before {
    content: "";
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.35), transparent 42%, rgba(255, 255, 255, 0.12));
}
.pricing .container {
    position: relative;
    z-index: 2;
}
.local-note {
    max-width: 720px;
    margin: 0 auto 20px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(37, 99, 235, 0.1);
    border-left: 4px solid #2563eb;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    color: #0f172a;
    line-height: 1.6;
    font-size: 0.95rem;
}
.mt-1 {
    margin-top: 10px;
}
.text-dim {
    color: #64748b;
}
.mb-2 {
    margin-bottom: 18px;
}
.pricing-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}
.pricing-info-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.pricing-intro h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: #00244d;
    margin-bottom: 0.75rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}
.intro-lead {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #334e68;
}
.who-for {
    background: rgba(0, 36, 77, 0.03);
    padding: 1.25rem;
    border-radius: 12px;
    border-left: 3px solid #0052a3;
}
.who-list {
    font-weight: 700;
    color: #00244d;
    margin: 0.25rem 0;
}
.who-sub {
    font-size: 0.95rem;
    color: #486581;
}
.local-trust-text {
    font-size: 0.95rem;
    color: #627d98;
    font-style: italic;
}
.pricing-support-badge {
    display: inline-flex;
    align-self: flex-start;
    background: #eaf4ff;
    color: #0052a3;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
}
.pricing-footer-note {
    margin-top: 1rem;
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.5;
}
.pricing-preview-card {
    background: #fff;
    border: 1px solid rgba(0, 36, 77, 0.12);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    box-shadow: 0 20px 40px rgba(0, 24, 77, 0.06);
    text-align: center;
}
.card-tag {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    font-weight: 700;
    color: #0052a3;
    background: rgba(0, 82, 163, 0.06);
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 1rem;
}
.price-display {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: #00244d;
    margin-bottom: 0.75rem;
}
.price-currency {
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 0.5rem;
}
.price-amount {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
}
.price-period {
    font-size: 1.1rem;
    color: #486581;
    align-self: flex-end;
    margin-bottom: 0.75rem;
    margin-left: 2px;
}
.price-subtext {
    font-size: 0.95rem;
    color: #486581;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}
.local-note-list {
    text-align: left;
    background: #f8fafc;
    padding: 1.25rem;
    border-radius: 14px;
    margin-bottom: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.note-item {
    font-size: 0.95rem;
    color: #243b53;
}
.pricing-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    font-weight: 700;
    border-radius: 12px;
    text-align: center;
    background: #0052a3;
    color: #fff;
    text-decoration: none;
    transition: background 0.2s;
}
.pricing-btn:hover {
    background: #003c78;
}
@keyframes pop {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes letterIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 768px) {
    .features {
        padding: 50px 0;
    }
    .container {
        padding: 0 20px;
    }
    .section-heading {
        padding: 0 20px;
        margin-bottom: 20px;
    }
    .swipe-indicator {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 0 20px;
        margin-bottom: 14px;
        font-size: 0.85rem;
        font-weight: 600;
        color: #2563eb;
    }
    .swipe-indicator span {
        animation: 1.5s infinite pulseArrow;
    }
    .features-grid {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 4px 20px 20px;
        scrollbar-width: none;
    }
    .features-grid::-webkit-scrollbar {
        display: none;
    }
    .feature-card {
        flex: 0 0 84vw;
        min-width: 84vw;
        scroll-snap-align: center;
        padding: 24px;
        border-radius: 18px;
    }
    .features-grid::after {
        content: "";
        flex: 0 0 4px;
    }
    .directory-community {
        padding: 1.8rem 0;
    }
    .directory-content {
        padding: 1.25rem;
        border-radius: 18px;
    }
    .directory-content h2 {
        margin-bottom: 0.7rem;
        font-size: clamp(1.7rem, 7vw, 2.2rem);
    }
    .directory-content p {
        font-size: 0.94rem;
        line-height: 1.65;
    }
    .directory-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    .directory-actions .btn {
        width: 100%;
    }
    .faq {
        padding: 2rem 0;
    }
    .faq-intro {
        margin-bottom: 1.2rem;
    }
    .faq-intro h2 {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }
    .faq-question {
        padding: 1rem;
    }
    .faq-question h3 {
        font-size: 0.98rem;
    }
    .faq-answer p {
        padding: 0 1rem 1rem;
        font-size: 0.94rem;
        line-height: 1.65;
    }
    .faq-icon {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    .pricing-support-badge {
        align-self: center;
    }
    .pricing-info-col {
        text-align: center;
    }
    .who-for {
        text-align: left;
    }
    .brand-showcase {
        padding: 1rem 0.8rem 1.4rem;
    }
    .brand-reveal {
        font-size: clamp(1.8rem, 10vw, 3.5rem);
    }
}
@media (prefers-reduced-motion: reduce) {
    .reveal-section.is-visible * {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}
.location-note-section {
    padding: 18px 0;
}

/* remove animation cost on mobile */
  .fade-up {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }



