:root {
    --primary: #059669;
    /* Emerald 600 */
    --primary-dark: #047857;
    /* Emerald 700 */
    --primary-light: #D1FAE5;
    /* Emerald 100 */
    --primary-gradient: linear-gradient(135deg, #059669 0%, #34D399 100%);
    --accent: #2563EB;
    /* Blue 600 */

    --bg-body: #FFFFFF;
    --bg-gray: #F9FAFB;
    --bg-dark: #111827;
    /* Gray 900 */
    --bg-mint-light: #F0FDF9;
    /* Mint 50 */

    --text-main: #111827;
    --text-sub: #4B5563;
    /* Gray 600 */
    --text-muted: #9CA3AF;
    /* Gray 400 */

    --border: #E5E7EB;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Base & Reset */
body {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
    color: var(--text-main);
    background-color: var(--bg-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    word-break: keep-all;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    letter-spacing: -0.025em;
    font-weight: 700;
}

section {
    padding: 80px 0;
}

@media(max-width: 485px) {
    section {
        padding: 30px 0;
    }
}

/* Utilities */
.text-gradient {
    background: linear-gradient(135deg, #059669 0%, #34D399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge-capsule {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 9999px;
    background: var(--bg-gray);
    border: 1px solid var(--border);
    color: var(--text-sub);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}

/* Navbar */
.navbar {
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 800;
    font-size: 24px;
    letter-spacing: -0.03em;
    color: var(--text-main);
}

.nav-link {
    font-weight: 500;
    color: var(--text-sub) !important;
    font-size: 15px;
    margin: 0 10px;
    transition: 0.2s;
}

.nav-link:hover {
    color: var(--primary) !important;
}

.btn-primary-custom {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-primary-custom:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
}

/* --- HERO SECTION (New Dark Card Layout) --- */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url('../img/hero_bg_green_dark.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Optional: Parallax effect */
    padding-top: 180px;
    padding-bottom: 120px;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-pill {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0;
}

.hero-subtext {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Hero Cards */
.hero-card {
    border-radius: 28px;
    padding: 40px;
    height: 420px;
    position: relative;
    display: flex;
    flex-direction: column;
    border: none;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
}

.hero-card:hover {
    transform: translateY(-12px);
}

.hero-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.hero-card p {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 0;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.hero-card-green {
    background: linear-gradient(135deg, #10B981 0%, #047857 100%);
}

.hero-card-purple {
    background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%);
}

.hero-card-dark {
    background: #111111;
    border: 1px solid #333;
}

.hero-card-icon-bg {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 6rem;
    opacity: 0.15;
    z-index: 1;
}

.hero-card-arrow {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: 0.3s;
    cursor: pointer;
    z-index: 3;
    backdrop-filter: blur(4px);
}

.hero-card:hover .hero-card-arrow {
    background: white;
    color: black;
    transform: rotate(45deg);
}

/* Integration Bar */
.hero-integration {
    margin-top: 80px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 40px 60px;
    background: #0A0A0A;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.integration-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    transition: 0.3s;
}

.integration-item:hover {
    color: white;
}

.integration-item i {
    font-size: 1.2rem;
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-card {
        height: 350px;
    }

    .hero-integration {
        padding: 30px;
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-integration>div:last-child {
        width: 100%;
        justify-content: space-between;
        margin-top: 20px;
    }
}

/* --- IMPACT SECTION (New Bento Layout) --- */
.impact-card {
    border-radius: 24px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.impact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.impact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.impact-card p {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

/* Gradients */
.bg-teal-gradient {
    background: linear-gradient(135deg, #2dd4bf 0%, #0891b2 100%);
    color: white;
}

.bg-purple-gradient {
    background: linear-gradient(135deg, #a78bfa 0%, #7c3aed 100%);
    color: white;
}

.bg-dark-card {
    background: #18181b;
    color: white;
}

.bg-light-card {
    background: #f4f4f5;
    color: #18181b;
}

.bg-photo-impact {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%), url('https://images.unsplash.com/photo-1549923746-c502d488b3ea?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
    color: white;
}

/* Arrow Button */
.impact-arrow {
    width: 40px;
    height: 40px;
    background: #111;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 24px;
    right: 24px;
    transition: 0.3s;
    z-index: 5;
    cursor: pointer;
}

.impact-card:hover .impact-arrow {
    transform: rotate(45deg);
    background: white;
    color: black;
}

.bg-dark-card .impact-arrow {
    background: rgba(255, 255, 255, 0.2);
}

.bg-dark-card:hover .impact-arrow {
    background: white;
    color: black;
}

/* Patterns */
.pattern-dots {
    background-image: radial-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px);
    background-size: 16px 16px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    opacity: 0.5;
}

.pattern-circle-lines {
    position: absolute;
    top: -20%;
    right: -20%;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    box-shadow: inset 0 0 0 40px rgba(0, 0, 0, 0.02);
}

.visual-swirl {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
    mix-blend-mode: overlay;
}

/* --- RESTORED SECTIONS CSS --- */

/* Services */
.service-card {
    background: var(--bg-mint-light);
    border: none;
    border-radius: 16px;
    padding: 40px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    background: #111827;
    color: white;
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card .card-num {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.6;
}

.service-card .service-icon {
    font-size: 2.5rem;
    color: #111827;
    margin-bottom: 20px;
    transition: 0.3s;
}

.service-card:hover .service-icon {
    color: white;
    transform: scale(1.1);
}

.service-card p {
    color: var(--text-sub);
    font-size: 0.95rem;
    margin-bottom: 0;
    transition: 0.3s;
}

.service-card:hover p {
    color: rgba(255, 255, 255, 0.7);
}

.service-plus-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    transition: 0.3s;
    font-size: 1.1rem;
}

.service-card:hover .service-plus-btn {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

/* Audience (New Layout Styles) */
.audience-visual-wrapper {
    position: relative;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.abstract-blob {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle at 30% 30%, #34D399 0%, #2563EB 50%, #7C3AED 100%);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    filter: blur(60px);
    opacity: 0.15;
    animation: blob-float 10s infinite alternate;
}

.floating-dashboard {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 8px solid #111827;
    background: #1F2937;
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.floating-dashboard:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.feature-list-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.feature-list-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.feature-list-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--bg-mint-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

/* New App Features Dark Section */
.bg-black-theme {
    background-color: #0f0f0f;
    color: white;
}

.feature-card-dark {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 24px;
    height: 420px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.feature-card-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.03) 100%);
    opacity: 0;
    transition: 0.4s;
}

.feature-card-dark:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.feature-card-dark:hover::before {
    opacity: 1;
}

.feature-badge-pill {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    color: #ccc;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    width: fit-content;
}

.feature-card-dark:hover .feature-badge-pill {
    border-color: var(--primary);
    color: var(--primary);
}

.text-outline-huge {
    font-size: 6rem;
    font-weight: 800;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
    color: transparent;
    line-height: 0.8;
    font-family: 'Pretendard', sans-serif;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
    pointer-events: none;
}

@media (max-width: 991px) {
    .text-outline-huge {
        font-size: 4rem;
        position: relative;
        display: block;
        margin-bottom: 20px;
    }
}

/* New Special Features Grid (Achievements Replacement) */
.feature-grid-card {
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    padding: 40px;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    min-height: 280px;
}

.feature-grid-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.card-teal {
    background: linear-gradient(145deg, #2dd4bf 0%, #0d9488 100%);
    color: white;
}

.card-purple {
    background: linear-gradient(145deg, #a78bfa 0%, #8b5cf6 100%);
    color: white;
}

.card-light {
    background: #F3F4F6;
    color: #111827;
}

.card-blue-img {
    background: linear-gradient(rgba(37, 99, 235, 0.8), rgba(30, 64, 175, 0.9)), url('https://images.unsplash.com/photo-1551434678-e076c223a692?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
    color: white;
}

.card-arrow-btn {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: #111827;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: 0.3s;
    cursor: pointer;
    z-index: 10;
}

.feature-grid-card:hover .card-arrow-btn {
    transform: rotate(45deg);
    background: white;
    color: black;
}

.card-light .card-arrow-btn {
    background: white;
    color: black;
    border: 1px solid #eee;
}

.card-light:hover .card-arrow-btn {
    background: #111827;
    color: white;
}

.visual-circle-lines {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    box-shadow: inset 0 0 0 20px rgba(0, 0, 0, 0.02);
}

.bg-pattern-dots {
    background-image: radial-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px);
    background-size: 20px 20px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.5;
}

/* Testimonials */
.testimonial-badge {
    background: #F3F4F6;
    color: #4B5563;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.google-rating-box {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 50px;
    transition: 0.3s;
}

.google-rating-box:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.review-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #F3F4F6;
    height: 100%;
    transition: 0.3s;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-light);
}

.avatar-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #f0f0f0;
}

/* Download Section Styles */
.bg-deep-dark {
    background-color: #0a0a0a;
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.9)), url('../img/download_bg_green_dark.png');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
}

.download-group-title {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: block;
}

.download-card-h {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 24px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.download-card-h:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
    background: #161616;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.download-card-h .icon-box {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #888;
    flex-shrink: 0;
    transition: 0.3s;
}

.download-card-h:hover .icon-box {
    background: var(--primary);
    color: white;
}

.download-card-h .text-content {
    flex-grow: 1;
}

.download-card-h h4 {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.download-card-h p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.download-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 140px;
}

.btn-dl-sm {
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #ccc;
    font-size: 0.75rem;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    transition: 0.2s;
    background: transparent;
}

.btn-dl-sm:hover {
    background: white;
    color: black;
    border-color: white;
}

.btn-dl-sm.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-dl-sm.disabled:hover {
    background: transparent;
    color: #ccc;
}

@media (max-width: 768px) {
    .download-card-h {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .download-actions {
        width: 100%;
        flex-direction: row;
    }

    .btn-dl-sm {
        flex-grow: 1;
        justify-content: center;
        gap: 5px;
    }
}


/* Bento Values */
.bento-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    grid-auto-rows: minmax(280px, auto);
}

.bento-card {
    background: #1F2937;
    border-radius: 24px;
    padding: 32px;
    color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.3s;
}

.bento-card:hover {
    transform: scale(1.01);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.bento-card.brand {
    background: var(--primary);
    color: white;
    border: none;
}

.grid-span-4 {
    grid-column: span 12;
}

.grid-span-6 {
    grid-column: span 12;
}

.grid-span-8 {
    grid-column: span 12;
}

@media (min-width: 992px) {
    .grid-span-4 {
        grid-column: span 4;
    }

    .grid-span-6 {
        grid-column: span 6;
    }

    .grid-span-8 {
        grid-column: span 8;
    }
}

/* Tech Stack */
.tech-card-stack {
    position: relative;
    height: 400px;
}

.tech-card {
    position: absolute;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    margin-bottom: 16px;
    background: transparent;
}

.accordion-button {
    border-radius: 16px !important;
    border: 1px solid var(--border);
    padding: 24px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: var(--shadow-sm);
    background: white;
    color: var(--text-main);
}

.accordion-button:not(.collapsed) {
    background: white;
    color: var(--primary);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23111827'%3e%3cpath fill-rule='evenodd' d='M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2Z'/%3e%3c/svg%3e");
    transition: transform 0.2s ease-in-out;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23059669'%3e%3cpath fill-rule='evenodd' d='M2 8a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11A.5.5 0 0 1 2 8Z'/%3e%3c/svg%3e");
    transform: rotate(0deg);
}

.accordion-body {
    padding: 20px 24px;
    color: var(--text-sub);
}

/* Footer */
footer {
    background: var(--bg-gray);
    border-top: 1px solid var(--border);
    padding: 80px 0 40px;
}

.footer-link {
    color: var(--text-sub);
    text-decoration: none;
    margin-bottom: 12px;
    display: block;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--primary);
}

.hover-primary:hover {
    color: var(--primary) !important;
}

.btn-gradient {
    background: var(--primary-gradient);
    color: white;
    border: none;
    transition: 0.3s;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
    color: white;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Custom Modal Styling --- */
.modal-custom .modal-content {
    border-radius: 28px;
    border: none;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-custom .modal-header {
    background-color: white;
    border-bottom: 1px solid var(--border);
    padding: 30px 40px;
}

.modal-custom .modal-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.025em;
}

.modal-custom .modal-body {
    padding: 40px;
    background-color: #FAFAFA;
}

.form-label-custom {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
    display: block;
}

/* Custom Selection Cards (Radio Replacement) */
.selection-card-input {
    display: none;
}

.selection-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    border: 2px solid var(--border);
    border-radius: 20px;
    background: white;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.selection-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.selection-card-input:checked+.selection-card {
    border-color: var(--primary);
    background: var(--bg-mint-light);
    box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.1);
}

.selection-card i {
    font-size: 2rem;
    color: var(--text-sub);
    margin-bottom: 12px;
    transition: color 0.2s;
}

.selection-card-input:checked+.selection-card i {
    color: var(--primary);
}

.selection-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 4px;
}

/* Custom Inputs */
.form-control-custom,
.form-select-custom {
    background-color: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-main);
    transition: all 0.2s;
}

.form-control-custom:focus,
.form-select-custom:focus {
    background-color: white;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.1);
    outline: none;
}

.form-control-custom::placeholder {
    color: var(--text-muted);
}

/* Custom Checkboxes */
.checkbox-card-container {
    background-color: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 10px;
}

.custom-checkbox-wrapper {
    padding: 12px 16px;
    border-radius: 12px;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 12px;
}

.custom-checkbox-wrapper:hover {
    background-color: var(--bg-gray);
}

.form-check-input {
    width: 1.25em;
    height: 1.25em;
    margin-top: 0;
    border-color: var(--border);
    cursor: pointer;
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.form-check-label {
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-sub);
    font-weight: 500;
    padding-top: 2px;
}

/* Submit Button */
.btn-submit-custom {
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 16px;
    padding: 18px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s;
    width: 100%;
    margin-top: 10px;
}

.btn-submit-custom:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(5, 150, 105, 0.4);
    color: white;
}


/* Mobile Fixes */
@media (max-width: 991px) {

    /* Fix Download Section Text Overlap */
    .mobile-download-card {
        padding: 24px;
        height: auto !important;
        margin-bottom: 40px;
        width: 100%;
    }

    .mobile-card-header h4 {
        font-size: 1.25rem;
        margin-bottom: 4px;
    }

    .mobile-card-header p {
        font-size: 0.9rem;
        margin-bottom: 0;
    }

    /* Fix Grid Card Arrow Overlap */
    .feature-grid-card {
        min-height: auto;
        padding-bottom: 80px;
        /* Space for absolute arrow */
    }

    .card-arrow-btn {
        bottom: 20px;
        right: 20px;
    }

    /* Tech Stack Spacing */
    .tech-card-stack {
        flex-direction: column;
        width: 280px;
        /* Fixed width for mobile stack container */
        height: 420px;
        /* Increased height for vertical stack */
        margin-top: 40px;
        margin-left: auto;
        margin-right: auto;
        /* Center the container */
    }

    .tech-card {
        width: 240px;
        /* Smaller card width for mobile */
    }

    /* Vertical Cascade for Mobile - Titles Visible */
    /* Offsets updated to ~45px increments to show headers */
    .tech-card:nth-child(1) {
        transform: scale(0.9) translateX(0) !important;
        left: 20px !important;
        top: 0px !important;
    }

    .tech-card:nth-child(2) {
        transform: scale(0.925) translateX(0) !important;
        left: 20px !important;
        top: 45px !important;
    }

    .tech-card:nth-child(3) {
        transform: scale(0.95) translateX(0) !important;
        left: 20px !important;
        top: 90px !important;
    }

    .tech-card:nth-child(4) {
        transform: scale(0.975) translateX(0) !important;
        left: 20px !important;
        top: 135px !important;
    }

    .tech-card:nth-child(5) {
        transform: scale(1) translateX(0) !important;
        left: 20px !important;
        top: 180px !important;
    }

    /* Mobile Fan Out (Active State) - Spreads them further/rotates */
    .tech-card-stack.active .tech-card:nth-child(1) {
        transform: translate(-60px, -20px) rotate(-10deg) !important;
        top: 0px !important;
    }

    .tech-card-stack.active .tech-card:nth-child(2) {
        transform: translate(-30px, 10px) rotate(-5deg) !important;
        top: 45px !important;
    }

    .tech-card-stack.active .tech-card:nth-child(3) {
        transform: translate(0px, 40px) rotate(0deg) !important;
        top: 90px !important;
    }

    .tech-card-stack.active .tech-card:nth-child(4) {
        transform: translate(30px, 70px) rotate(5deg) !important;
        top: 135px !important;
    }

    .tech-card-stack.active .tech-card:nth-child(5) {
        transform: translate(60px, 100px) rotate(10deg) !important;
        top: 180px !important;
    }
}

/* Extended Tech Card Stack for 5 Items - Desktop Base */
.tech-card-stack {
    height: 300px;
    /* Default desktop height */
    width: 300px;
    /* Default desktop width */
    cursor: pointer;
    /* Indicate interaction */
}

/* Extended Tech Card Stack for 5 Items */
.tech-card {
    position: absolute;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    width: 260px;
    padding: 20px;
    transition: 0.5s;
    transform-origin: center bottom;
}

/* Initial State for Stacked Cards - Increased Offset */
.tech-card:nth-child(1) {
    top: 0;
    left: 0;
    z-index: 1;
    transform: scale(0.9) translateX(40px);
    opacity: 0.6;
}

.tech-card:nth-child(2) {
    top: 35px;
    left: 35px;
    z-index: 2;
    transform: scale(0.925) translateX(30px);
    opacity: 0.7;
}

.tech-card:nth-child(3) {
    top: 70px;
    left: 70px;
    z-index: 3;
    transform: scale(0.95) translateX(20px);
    opacity: 0.8;
}

.tech-card:nth-child(4) {
    top: 105px;
    left: 105px;
    z-index: 4;
    transform: scale(0.975) translateX(10px);
    opacity: 0.9;
}

.tech-card:nth-child(5) {
    top: 140px;
    left: 140px;
    z-index: 5;
    transform: scale(1) translateX(0);
    opacity: 1;
}

/* Hover/Active State - Fan Out (Desktop) */
.tech-card-stack:hover .tech-card:nth-child(1),
.tech-card-stack.active .tech-card:nth-child(1) {
    transform: translate(-140px, -60px) rotate(-15deg);
    opacity: 1;
}

.tech-card-stack:hover .tech-card:nth-child(2),
.tech-card-stack.active .tech-card:nth-child(2) {
    transform: translate(-70px, -40px) rotate(-8deg);
    opacity: 1;
}

.tech-card-stack:hover .tech-card:nth-child(3),
.tech-card-stack.active .tech-card:nth-child(3) {
    transform: translate(0px, -20px) rotate(0deg);
    opacity: 1;
}

.tech-card-stack:hover .tech-card:nth-child(4),
.tech-card-stack.active .tech-card:nth-child(4) {
    transform: translate(70px, -40px) rotate(8deg);
    opacity: 1;
}

.tech-card-stack:hover .tech-card:nth-child(5),
.tech-card-stack.active .tech-card:nth-child(5) {
    transform: translate(140px, -60px) rotate(15deg);
    opacity: 1;
}

/* Fix Swiper Hover Clipping */
.swiper {
    overflow: visible !important;
    padding: 20px 0;
    /* Add padding to prevent hover clipping */
}

/* Fix integration icons size */
.integration-logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 8px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}


/* Integration Background with Overlay */
.bg-integration-photo {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%), url('../img/integration_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}


/* Accordion Customization - Remove item borders */
.accordion-item {
    border: none !important;
    background: transparent !important;
    margin-bottom: 16px;
}

.accordion-button {
    border: 1px solid var(--border) !important;
    border-radius: 16px !important;
    background: white !important;
    /* Ensure background is white */
}

/* Integration Logos Styling */
.integration-logo-img {
    width: 56px;
    /* Slightly larger for better visibility */
    height: 56px;
    object-fit: cover;
    /* CHANGED: cover to fill the rounded shape */
    margin-bottom: 12px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 16px;
    /* Rounded corners */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    /* Shadow effect */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.integration-logo-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}


/* Accordion Active State - Green Text and Border */
.accordion-button:not(.collapsed) {
    border-color: var(--primary) !important;
    color: var(--primary) !important;
    background-color: white !important;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.1) !important;
}

.accordion-button:focus {
    box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.1);
    /* Subtle green focus ring */
    border-color: var(--primary) !important;
}


/* Footer Logo Styling */
.footer-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    margin-bottom: 0px !important;
}


/* Consultant Background for Feature Card */
.card-blue-img {
    background: linear-gradient(to bottom, rgba(30, 41, 59, 0.4), rgba(15, 23, 42, 0.9)), url('../img/consultant_bg.png') !important;
    background-size: cover !important;
    background-position: center top !important;
}

/* Business Impact Background */
.bg-photo-impact {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.8)), url('../img/business_impact_bg.png') !important;
    background-size: cover !important;
    background-position: center !important;
}


/* Feature Card Images */
.feature-card-img {
    height: 140px;
    width: auto;
    object-fit: contain;
    margin-top: auto;
    margin-bottom: auto;
    display: block;
    align-self: center;
    mix-blend-mode: screen;
    /* Makes black pixels transparent */
    filter: brightness(1.2) contrast(1.1);
    /* Enhances visibility */
}

/* Dashboard Floating Visual */
.floating-dashboard {
    /* Removed background, border, and deep shadow to support isolated mockup */
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    /* Let the image's own shadow or simple drop shadow work */
    transition: transform 0.5s ease;
    animation: float-dashboard 6s ease-in-out infinite;
}

@keyframes float-dashboard {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* CSS Phone Mockup Removed - Using Static Asset */
.audience-visual-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
}

```