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

/* Accessibility */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

body {
    background: #1e1f28;
    min-height: 100vh;
    font-family: 'Avenir', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Transparent Cross Watermark */
body::before {
    content: '✝';
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 100vw;
    color: transparent;
    z-index: -1;
    pointer-events: none;
    user-select: none;
}

#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.logo-container {
    text-align: center;
    animation: fadeInUp 2s ease-out;
}

.logo {
    max-width: 400px;
    width: 90vw;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.descriptor {
    color: #8db4d3;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.6;
    margin-top: -4rem;
    max-width: 600px;
    text-align: center;
    opacity: 0.9;
    animation: fadeInUp 2s ease-out 0.8s both;
    padding: 16px 28px;
    background: rgba(141, 180, 211, 0.08);
    border: 1px solid rgba(141, 180, 211, 0.15);
    border-radius: 12px;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-left: auto;
    margin-right: auto;
}

.contact-section {
    margin-top: 9rem;
    text-align: center;
    animation: fadeInUp 2s ease-out 1.2s both;
}

/* About Section */
.about-section {
    margin-top: 8rem;
    margin-bottom: 8rem;
    padding: 0 2rem;
    text-align: center;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-card {
    background: rgba(141, 180, 211, 0.03);
    border: 1px solid rgba(141, 180, 211, 0.08);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
}

.about-card:hover {
    transform: translateY(-10px);
    background: rgba(141, 180, 211, 0.06);
    border-color: rgba(141, 180, 211, 0.15);
    box-shadow: 0 25px 50px rgba(141, 180, 211, 0.12);
}

.about-card-title {
    color: #8db4d3;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.about-card-description {
    color: #8db4d3;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    letter-spacing: 0.2px;
    opacity: 0.8;
}

.contact-title {
    color: #5a7a95;
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 0.2rem;
    opacity: 0.9;
}

.contact-email {
    color: #8db4d3;
    font-size: 1.1rem;
    font-weight: 300;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    opacity: 0.9;
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
}

.contact-email:hover {
    opacity: 1;
    transform: translateY(-2px);
    background: rgba(141, 180, 211, 0.15);
    border: 1px solid rgba(141, 180, 211, 0.3);
    box-shadow: 0 8px 25px rgba(141, 180, 211, 0.2);
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .logo {
        max-width: 300px;
    }
    
    .descriptor {
        font-size: 1rem;
        margin-top: -3rem;
        padding: 14px 20px;
        border-radius: 10px;
    }
    
    .about-section {
        margin-top: 6rem;
        margin-bottom: 6rem;
        padding: 0 1.5rem;
    }
    
    .about-grid {
        gap: 2.5rem;
    }
    
    .about-card {
        padding: 2.5rem 2rem;
    }
    
    .contact-section {
        margin-top: 5rem;
    }
    
    .contact-title {
        font-size: 1.2rem;
    }
    
    .contact-email {
        font-size: 1rem;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 250px;
    }
    
    .descriptor {
        font-size: 0.9rem;
        margin-top: -2rem;
        padding: 12px 12px;
        border-radius: 8px;
    }
    
    .about-section {
        margin-top: 4rem;
        margin-bottom: 4rem;
        padding: 0 1rem;
    }
    
    .about-grid {
        gap: 2rem;
    }
    
    .about-card {
        padding: 2rem 1.5rem;
    }
    
    .about-card-title {
        font-size: 1.2rem;
    }
    
    .about-card-description {
        font-size: 0.95rem;
    }
    
    .contact-section {
        margin-top: 4rem;
        padding: 0 1rem;
    }
    
    .contact-title {
        font-size: 1.1rem;
    }
    
    .contact-email {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}

/* Hamburger Menu - Top Right */
.hamburger-menu {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 1000;
}

.hamburger-btn {
    background: rgba(141, 180, 211, 0.1);
    border: 1px solid rgba(141, 180, 211, 0.2);
    border-radius: 8px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 48px;
    height: 48px;
    justify-content: center;
    align-items: center;
}

.hamburger-btn:hover {
    background: rgba(141, 180, 211, 0.15);
    border-color: rgba(141, 180, 211, 0.3);
    transform: translateY(-1px);
}

.hamburger-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: #8db4d3;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.hamburger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.dropdown-menu {
    position: absolute;
    top: 60px;
    right: 0;
    background: rgba(30, 31, 40, 0.95);
    border: 1px solid rgba(141, 180, 211, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-item {
    display: block;
    color: #8db4d3;
    text-decoration: none;
    padding: 12px 24px;
    font-weight: 300;
    font-size: 1rem;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.menu-item:hover {
    background: rgba(141, 180, 211, 0.1);
    color: #a5c9ea;
    transform: translateX(5px);
}

/* Sections */
.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    position: relative;
}

.section-content {
    max-width: 800px;
    text-align: center;
    z-index: 2;
    position: relative;
}

.section-title {
    color: #8db4d3;
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
}

.section-text {
    color: #8db4d3;
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.8;
    letter-spacing: 0.3px;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.section-text p {
    margin-bottom: 1.5rem;
}

.coming-soon {
    font-style: italic;
    opacity: 0.7;
    font-size: 1rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.service-item {
    background: rgba(141, 180, 211, 0.08);
    border: 1px solid rgba(141, 180, 211, 0.15);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    text-align: left;
}

.service-item:hover {
    transform: translateY(-5px);
    background: rgba(141, 180, 211, 0.12);
    border-color: rgba(141, 180, 211, 0.25);
    box-shadow: 0 10px 30px rgba(141, 180, 211, 0.1);
}

.service-item h3 {
    color: #8db4d3;
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.service-item p {
    color: #8db4d3;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.8;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hamburger-menu {
        top: 1.5rem;
        right: 1.5rem;
    }
    
    .section {
        padding: 3rem 1rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-text {
        font-size: 1.1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-item {
        padding: 1.5rem;
    }
    
    .portfolio-section {
        margin-top: 6rem;
        margin-bottom: 6rem;
        padding: 0 1.5rem;
    }
    
    .portfolio-grid {
        gap: 2.5rem;
    }
    
    .section-heading {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .services-section {
        margin-top: 6rem;
        margin-bottom: 6rem;
        padding: 0 1.5rem;
    }
    
    .services-grid {
        gap: 2.5rem;
    }
    
    .service-card {
        padding: 2.5rem 2rem;
    }
    
    .cta-section {
        margin-top: 6rem;
        margin-bottom: 4rem;
        padding: 0 1.5rem;
    }
    
    .cta-content {
        padding: 3rem 2.5rem;
    }
    
    .cta-heading {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
    
    .stats-section {
        margin-top: 6rem;
        margin-bottom: 6rem;
        padding: 0 1.5rem;
    }
    
    .stats-group {
        margin-bottom: 4rem;
    }
    
    .stats-grid {
        gap: 2rem;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
    }
    
    .stat-number {
        font-size: 2.4rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-text {
        font-size: 1rem;
    }
    
    .dropdown-menu {
        min-width: 160px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-heading {
        font-size: 1.8rem;
    }
    
    .portfolio-section {
        margin-top: 4rem;
        margin-bottom: 4rem;
        padding: 0 1rem;
    }
    
    .portfolio-card {
        padding: 2rem 1.5rem;
    }
    
    .portfolio-quote {
        font-size: 1rem;
    }
    
    .services-section {
        margin-top: 4rem;
        margin-bottom: 4rem;
        padding: 0 1rem;
    }
    
    .services-grid {
        gap: 2rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-icon {
        font-size: 2.5rem;
    }
    
    .service-title {
        font-size: 1.2rem;
    }
    
    .service-description {
        font-size: 0.95rem;
    }
    
    .cta-section {
        margin-top: 4rem;
        margin-bottom: 3rem;
        padding: 0 1rem;
    }
    
    .cta-content {
        padding: 2.5rem 2rem;
    }
    
    .cta-heading {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .cta-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .cta-primary {
        font-size: 1rem;
        padding: 0.9rem 2rem;
    }
    
    .stats-section {
        margin-top: 4rem;
        margin-bottom: 4rem;
        padding: 0 1rem;
    }
    
    .stats-group {
        margin-bottom: 3rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stats-group-title {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #8db4d3, #a5c9ea);
    z-index: 9999;
    transition: width 0.1s ease;
    box-shadow: 0 2px 10px rgba(141, 180, 211, 0.3);
}

/* Scroll Triggered Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

.fade-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease;
}

.fade-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s ease;
}

.scale-in.animate {
    opacity: 1;
    transform: scale(1);
}

/* FORCE HAMBURGER MENU FIX */
.hamburger-menu {
    position: fixed !important;
    top: 2rem !important;
    right: 2rem !important;
    z-index: 1000 !important;
}

.hamburger-btn {
    background: rgba(141, 180, 211, 0.1) !important;
    border: 1px solid rgba(141, 180, 211, 0.2) !important;
    border-radius: 8px !important;
    padding: 12px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px) !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    width: 48px !important;
    height: 48px !important;
    justify-content: center !important;
    align-items: center !important;
}

.hamburger-btn span {
    display: block !important;
    width: 20px !important;
    height: 2px !important;
    background: #8db4d3 !important;
    transition: all 0.3s ease !important;
    border-radius: 1px !important;
}

.hamburger-btn:hover {
    background: rgba(141, 180, 211, 0.15) !important;
    border-color: rgba(141, 180, 211, 0.3) !important;
    transform: translateY(-1px) !important;
}

.hamburger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px) !important;
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0 !important;
}

.hamburger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px) !important;
}

.dropdown-menu {
    position: absolute !important;
    top: 60px !important;
    right: 0 !important;
    background: rgba(30, 31, 40, 0.95) !important;
    border: 1px solid rgba(141, 180, 211, 0.2) !important;
    border-radius: 12px !important;
    backdrop-filter: blur(20px) !important;
    padding: 1rem 0 !important;
    min-width: 180px !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-10px) !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3) !important;
}

.dropdown-menu.active {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.menu-item {
    display: block !important;
    color: #8db4d3 !important;
    text-decoration: none !important;
    padding: 12px 24px !important;
    font-weight: 300 !important;
    font-size: 1rem !important;
    letter-spacing: 0.3px !important;
    transition: all 0.3s ease !important;
}

.menu-item:hover {
    background: rgba(141, 180, 211, 0.1) !important;
    color: #a5c9ea !important;
    transform: translateX(5px) !important;
}

/* Portfolio Section */
.portfolio-section {
    margin-top: 8rem;
    margin-bottom: 8rem;
    padding: 0 2rem;
    text-align: center;
}

.section-heading {
    color: #8db4d3;
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 4rem;
    opacity: 0.95;
    position: relative;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #d4a574;
    opacity: 0.7;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-card {
    background: rgba(141, 180, 211, 0.04);
    border: 1px solid rgba(141, 180, 211, 0.1);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    text-align: left;
    position: relative;
    cursor: pointer;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    background: rgba(141, 180, 211, 0.08);
    border-color: rgba(141, 180, 211, 0.2);
    box-shadow: 0 20px 40px rgba(141, 180, 211, 0.15);
}

.portfolio-quote {
    color: #8db4d3;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.7;
    letter-spacing: 0.2px;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-style: italic;
}

.portfolio-quote::before {
    content: '‟';
    color: #d4a574;
    font-size: 2rem;
    font-weight: 400;
    opacity: 0.6;
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
}

.portfolio-founder {
    color: #a5c9ea;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0.3rem;
    opacity: 0.95;
}

.portfolio-company {
    color: #8db4d3;
    font-size: 0.9rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.portfolio-metric {
    color: #d4a574;
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    position: relative;
    padding-left: 1rem;
}

.portfolio-metric::before {
    content: '‣';
    position: absolute;
    left: 0;
    color: #d4a574;
    opacity: 0.6;
}

/* Services Section */
.services-section {
    margin-top: 8rem;
    margin-bottom: 8rem;
    padding: 0 2rem;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: rgba(141, 180, 211, 0.03);
    border: 1px solid rgba(141, 180, 211, 0.08);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(141, 180, 211, 0.06);
    border-color: rgba(141, 180, 211, 0.15);
    box-shadow: 0 25px 50px rgba(141, 180, 211, 0.12);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
    color: #d4a574;
    font-weight: 300;
}

.service-title {
    color: #8db4d3;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.service-description {
    color: #8db4d3;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    letter-spacing: 0.2px;
    margin-bottom: 2.5rem;
    opacity: 0.8;
}

.service-outcomes {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.outcome-item {
    color: #d4a574;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    opacity: 0.9;
    position: relative;
    padding-left: 1.5rem;
    text-align: left;
}

.outcome-item::before {
    content: '◦';
    position: absolute;
    left: 0;
    color: #d4a574;
    font-weight: 400;
    opacity: 0.7;
}

/* Stats Section */
.stats-section {
    margin-top: 8rem;
    margin-bottom: 8rem;
    padding: 0 2rem;
    text-align: center;
}

.stats-group {
    margin-bottom: 6rem;
}

.stats-group:last-child {
    margin-bottom: 0;
}

.stats-group-title {
    color: #8db4d3;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 3rem;
    opacity: 0.9;
    position: relative;
}

.stats-group-title::after {
    content: '';
    position: absolute;
    bottom: -0.8rem;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: rgba(212, 165, 116, 0.5);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(141, 180, 211, 0.04);
    border: 1px solid rgba(141, 180, 211, 0.1);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    cursor: default;
}

.stat-card:hover {
    transform: translateY(-8px);
    background: rgba(141, 180, 211, 0.08);
    border-color: rgba(141, 180, 211, 0.2);
    box-shadow: 0 20px 40px rgba(141, 180, 211, 0.15);
}

.stat-icon {
    color: #d4a574;
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.stat-number {
    color: #8db4d3;
    font-size: 2.8rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    opacity: 1;
    font-family: 'Avenir', monospace;
}

.stat-label {
    color: #8db4d3;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.3px;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.stat-change {
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.2px;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    display: inline-block;
}

.stat-change.positive {
    color: #4ade80;
    background: rgba(74, 222, 128, 0.1);
}

.stat-change.negative {
    color: #f87171;
    background: rgba(248, 113, 113, 0.1);
}

.stat-change.neutral {
    color: #8db4d3;
    background: rgba(141, 180, 211, 0.1);
}

/* CTA Section */
.cta-section {
    margin-top: 8rem;
    margin-bottom: 6rem;
    padding: 0 2rem;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, rgba(141, 180, 211, 0.08) 0%, rgba(141, 180, 211, 0.04) 100%);
    border: 1px solid rgba(141, 180, 211, 0.15);
    border-radius: 24px;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.cta-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4a574, transparent);
    opacity: 0.6;
}

.cta-heading {
    color: #8db4d3;
    font-size: 2.4rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.cta-description {
    color: #8db4d3;
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.7;
    letter-spacing: 0.2px;
    margin-bottom: 3rem;
    opacity: 0.85;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.cta-primary {
    display: inline-block;
    background: linear-gradient(135deg, #d4a574 0%, #e8c896 100%);
    color: #1e1f28;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 165, 116, 0.4);
}

.cta-primary:hover::before {
    left: 100%;
}

.cta-note {
    color: #8db4d3;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.3px;
    opacity: 0.7;
}

/* Prayer Section */
.prayer-section {
    text-align: center;
    padding: 1rem 2rem;
    margin-top: 1rem;
}

.prayer-text {
    color: transparent;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    opacity: 1;
    font-style: italic;
    max-width: 400px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .prayer-section {
        padding: 0.5rem 1.5rem;
        margin-top: 0.5rem;
    }
    
    .prayer-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .prayer-section {
        padding: 0.5rem 1rem;
        margin-top: 0.5rem;
    }
    
    .prayer-text {
        font-size: 0.9rem;
    }
}
