/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Green */
    --primary-blue: #008000;
    --secondary-blue: #005a00;
    --primary-orange: #80ff80;
    --accent-orange: #bfffbf;
    --gradient-start: #e6ffe6;
    --gradient-mid: #ccffcc;
    --gradient-end: #bfffbf;
    --dark-text: #1F2937;
    --gray-text: #6B7280;
    --white: #FFFFFF;
    --light-bg: #F9FAFB;
}

body {
    font-family: 'Century Gothic', 'CenturyGothic', 'AppleGothic', sans-serif;
    color: var(--dark-text);
    overflow-x: hidden;
    background: #FAFAFA;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: transparent;
    padding: 16px 0;
    position: relative;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 16px;
    left: 20px;
    right: 20px;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 1000;
}

.logo img {
    height: 32px;
    width: auto;
}

.nav-menu {
    display: none;
    gap: 8px;
    align-items: flex-start;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: flex-start;
    padding: 100px 40px 40px;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.nav-menu.active {
    display: flex;
    opacity: 1;
    pointer-events: all;
}

.nav-menu a {
    font-size: 24px;
    width: 100%;
    padding: 12px 0;
}

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
    width: 100%;
}

.mobile-nav-actions .btn-signin,
.mobile-nav-actions .btn-demo {
    width: 100%;
    padding: 14px 24px;
    font-size: 16px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-blue);
}

.nav-menu a.active {
    color: var(--primary-orange);
    font-weight: 600;
}

.nav-actions {
    display: none;
    gap: 12px;
    align-items: center;
}

.btn-signin {
    background: transparent;
    border: none;
    color: var(--primary-orange);
    font-weight: 600;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 12px;
    transition: background 0.3s, color 0.3s;
}

.btn-signin:hover {
    background: rgba(128, 255, 128, 0.1);
    color: var(--accent-orange);
}

.btn-demo {
    background: var(--primary-orange);
    border: none;
    color: var(--white);
    font-weight: 600;
    padding: 10px 24px;
    cursor: pointer;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-demo:hover {
    background: var(--accent-orange);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(252, 155, 5, 0.3);
}

/* Language switcher */
.lang-switch {
    position: relative;
}

.lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid rgba(0, 128, 0, 0.3);
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 14px;
    padding: 8px 14px;
    border-radius: 12px;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.3s, border-color 0.3s;
}

.lang-toggle:hover {
    background: rgba(0, 128, 0, 0.08);
    border-color: var(--primary-blue);
}

.lang-caret {
    font-size: 12px;
    transition: transform 0.3s;
}

.lang-switch.open .lang-caret {
    transform: rotate(180deg);
}

.lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 150px;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    list-style: none;
    padding: 6px;
    margin: 0;
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

.lang-switch.open .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-menu li button {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
    color: var(--dark-text);
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s, color 0.2s;
}

.lang-menu li button:hover {
    background: rgba(0, 128, 0, 0.08);
    color: var(--primary-blue);
}

.lang-menu li button.active {
    color: var(--primary-blue);
    font-weight: 700;
    background: rgba(0, 128, 0, 0.08);
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1000;
    position: relative;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-text);
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
    background: #FAFAFA;
    min-height: 560px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 48px;
    position: relative;
    z-index: 2;
}

.hero-text {
    text-align: center;
}

/* Typewriter accent word */
.hero-type {
    display: inline-block;
}

.hero-type::after {
    content: "";
    display: inline-block;
    width: 3px;
    height: 0.9em;
    margin-left: 2px;
    background: var(--primary-orange);
    vertical-align: -0.08em;
    animation: heroCaret 0.9s steps(1) infinite;
}

@keyframes heroCaret {
    0%, 50% { opacity: 1; }
    50.01%, 100% { opacity: 0; }
}

.hero-type-static {
    color: var(--primary-blue);
}

/* Staggered load-in for hero text elements */
.hero-text > * {
    opacity: 0;
    transform: translateY(25px);
    animation: heroRise 0.7s ease forwards;
}

.hero-text > *:nth-child(1) { animation-delay: 0.05s; }
.hero-text > *:nth-child(2) { animation-delay: 0.18s; }
.hero-text > *:nth-child(3) { animation-delay: 0.31s; }
.hero-text > *:nth-child(4) { animation-delay: 0.44s; }

@keyframes heroRise {
    to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    .hero-text > * { opacity: 1; transform: none; animation: none; }
    .hero-type::after { animation: none; }
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-blue);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
}

.hero-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.gradient-text {
    color: var(--primary-orange);
}

.hero-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-text);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

a {
    text-decoration: none;
}

.btn-primary {
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 16px 32px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    width: 100%;
    max-width: 280px;
    justify-content: center;
}

.btn-primary:hover {
    background: var(--accent-orange);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(249, 115, 22, 0.3);
}

.btn-secondary {
    background: var(--white);
    color: var(--dark-text);
    border: 2px solid rgba(30, 64, 175, 0.3);
    padding: 14px 32px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    max-width: 280px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary:hover {
    background: rgba(30, 64, 175, 0.1);
    border-color: var(--primary-blue);
}

/* Hero Visual - Browser Frame */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-browser {
    position: relative;
    width: 100%;
    max-width: 520px;
    background: #FFFFFF;
    border-radius: 18px;
    box-shadow: 0 30px 70px rgba(0, 128, 0, 0.18);
    overflow: visible;
    border: 1px solid rgba(0, 128, 0, 0.12);
    animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-browser-webgl {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 18px;
    z-index: 0;
    opacity: 0.55;
    pointer-events: none;
}

.browser-bar {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: linear-gradient(180deg, #f3fff3, #e9ffe9);
    border-bottom: 1px solid rgba(0, 128, 0, 0.1);
    border-radius: 18px 18px 0 0;
}

.browser-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #bfffbf;
}

.browser-dot:nth-child(1) { background: #ff9b9b; }
.browser-dot:nth-child(2) { background: #ffe08a; }
.browser-dot:nth-child(3) { background: #b6f5b6; }

.browser-url {
    margin-left: 10px;
    flex: 1;
    background: #FFFFFF;
    border: 1px solid rgba(0, 128, 0, 0.12);
    border-radius: 8px;
    padding: 5px 12px;
    font-size: 12px;
    color: var(--gray-text);
    font-family: 'Century Gothic', sans-serif;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.browser-screen {
    position: relative;
    z-index: 1;
    aspect-ratio: 16 / 11;
    border-radius: 0 0 18px 18px;
    overflow: hidden;
    background: #f7fff7;
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 0.8s ease, transform 1.2s ease;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero-slide-glow {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: radial-gradient(120% 80% at 50% 0%, rgba(128, 255, 128, 0.18), transparent 60%);
}

.browser-float-card {
    position: absolute;
    z-index: 3;
    right: -18px;
    bottom: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #FFFFFF;
    border: 1px solid rgba(0, 128, 0, 0.14);
    border-radius: 14px;
    padding: 10px 14px;
    box-shadow: 0 14px 30px rgba(0, 128, 0, 0.18);
    animation: heroFloat 6s ease-in-out infinite 0.4s;
}

.browser-float-card i {
    font-size: 22px;
    color: var(--primary-blue);
    background: rgba(0, 128, 0, 0.1);
    border-radius: 10px;
    padding: 8px;
}

.browser-float-card strong {
    display: block;
    font-size: 13px;
    color: var(--primary-blue);
}

.browser-float-card span {
    font-size: 11px;
    color: var(--gray-text);
}

.dashboard-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.dashboard-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    font-size: 32px;
    margin-bottom: 12px;
    color: var(--primary-blue);
}

.card-2 .card-icon {
    color: var(--white);
}

.dashboard-card h3 {
    font-size: 14px;
    color: var(--gray-text);
    margin-bottom: 16px;
    font-weight: 600;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: var(--gray-text);
}

.stat-trend {
    font-size: 13px;
    color: #10B981;
    font-weight: 600;
}

.card-2 {
    background: var(--primary-blue);
    color: var(--white);
}

.card-2 h3 {
    color: rgba(255, 255, 255, 0.9);
}

.progress-circle {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 20px auto;
}

.progress-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.progress-circle circle {
    fill: none;
    stroke-width: 8;
}

.progress-circle circle:first-child {
    stroke: rgba(255, 255, 255, 0.2);
}

.progress-circle circle.progress {
    stroke: var(--white);
    stroke-dasharray: 251.2;
    stroke-dashoffset: 37.68;
    stroke-linecap: round;
}

.percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    font-weight: 800;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    width: 60px;
    height: 60px;
    background: var(--primary-orange);
    top: -20px;
    right: 20px;
    animation-delay: 0s;
}

.element-2 {
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    bottom: 40px;
    left: 20px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-shader {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    display: block;
    pointer-events: none;
}

.hero-background {
    display: none;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .logo img {
        height: 36px;
    }

    .hero {
        padding: 80px 0 100px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-description {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .hero-visual {
        width: 100%;
    }

    .card-2 {
        grid-column: span 2;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        flex-direction: row;
        opacity: 1;
        pointer-events: all;
        padding: 0;
        gap: 32px;
        align-items: center;
        justify-content: center;
    }

    .nav-menu a {
        font-size: 15px;
        width: auto;
        padding: 0;
    }

    .mobile-nav-actions {
        display: none;
    }

    .nav-actions {
        display: flex;
    }

    .hero-content {
        flex-direction: row;
        align-items: center;
        gap: 60px;
    }

    .hero-text {
        flex: 1;
        text-align: left;
        max-width: 560px;
    }

    .hero-title {
        font-size: 56px;
    }

    .hero-description {
        margin-left: 0;
        margin-right: 0;
    }

    .hero-buttons {
        justify-content: flex-start;
    }

    .hero-visual {
        flex: 1;
        justify-content: flex-end;
    }

    .hero-browser {
        max-width: 560px;
    }
}

/* Who We Are Section */
.who-we-are {
    padding: 60px 0 8px;
    background: #FFFFFF;
    overflow: hidden;
}

.who-we-are-inner {
    display: grid;
    gap: 40px;
}

/* Left: story */
.who-we-are-story .section-badge {
    margin-bottom: 16px;
    display: inline-block;
}

.who-we-are-story .section-title {
    text-align: left;
    margin-bottom: 24px;
    font-size: 30px;
}

.who-story-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-text);
    margin: 0 0 20px;
}

.who-story-text:last-child {
    margin-bottom: 0;
}

/* Right: category list (mobile-first) */
.cat-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cat-item {
    position: relative;
    border: 1px solid #E5E7EB;
    border-radius: 14px;
    background: #FAFAFA;
    padding: 20px;
    overflow: hidden;
    transition: height 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    cursor: pointer;
    outline: none;
}

.cat-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.cat-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-text);
    margin: 0 0 6px;
    transition: color 0.3s ease;
}

.cat-subtitle {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-text);
    margin: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.3s ease, margin-top 0.3s ease;
}

.cat-icon {
    flex-shrink: 0;
    font-size: 22px;
    color: var(--primary-blue);
    opacity: 0.55;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Corner brackets (hidden by default, shown on active) */
.cat-corner {
    position: absolute;
    width: 18px;
    height: 18px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.cat-corner::before,
.cat-corner::after {
    content: "";
    position: absolute;
    background: var(--primary-blue);
}

.cat-corner::before {
    width: 16px;
    height: 2px;
}

.cat-corner::after {
    width: 2px;
    height: 16px;
}

.cat-tl {
    top: 10px;
    left: 10px;
}

.cat-tl::before {
    top: 0;
    left: 0;
}

.cat-tl::after {
    top: 0;
    left: 0;
}

.cat-br {
    bottom: 10px;
    right: 10px;
}

.cat-br::before {
    bottom: 0;
    right: 0;
}

.cat-br::after {
    bottom: 0;
    right: 0;
}

/* Active (hover / focus) state */
.cat-item.is-active {
    border: 1px solid var(--primary-blue);
    background: rgba(0, 128, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 128, 0, 0.12);
    padding-bottom: 24px;
}

.cat-item.is-active .cat-title {
    color: var(--primary-blue);
}

.cat-item.is-active .cat-subtitle {
    max-height: 120px;
    opacity: 1;
    margin-top: 4px;
}

.cat-item.is-active .cat-icon {
    opacity: 1;
    transform: scale(1.1);
}

.cat-item.is-active .cat-corner {
    opacity: 1;
}

/* Scroll reveal (shared with feature-card pattern) */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Tablet + Desktop */
@media (min-width: 768px) {
    .who-we-are {
        padding: 56px 0;
    }

    .who-we-are-story .section-title {
        font-size: 38px;
    }
}

@media (min-width: 1024px) {
    .who-we-are-inner {
        grid-template-columns: 1.15fr 0.85fr;
        gap: 64px;
        align-items: start;
    }

    .who-we-are-aside {
        padding-top: 56px;
    }

    .cat-item {
        padding: 24px 28px;
    }

    .cat-title {
        font-size: 20px;
    }
}

/* Impact Section (dark stats, adapted from reference) */
.impact {
    padding: 40px 0;
    background: #0d2818;
    color: #FFFFFF;
}

.impact-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 28px;
}

.impact-title {
    font-size: 26px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.title-underline {
    width: 60px;
    height: 3px;
    background: var(--primary-orange);
    margin: 0 auto;
    border-radius: 2px;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
}

.impact-stat {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(128, 255, 128, 0.15);
    border-radius: 14px;
    padding: 22px 16px;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s ease;
}

.impact-stat:hover {
    transform: translateY(-6px);
    border-color: var(--primary-orange);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3);
}

.impact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(128, 255, 128, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 22px;
    color: var(--primary-orange);
    transition: background 0.3s ease;
}

.impact-stat:hover .impact-icon {
    background: rgba(128, 255, 128, 0.25);
}

.impact-number {
    display: block;
    font-size: 34px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1;
    margin-bottom: 6px;
}

.impact-label {
    font-size: 13px;
    color: #BFE9C8;
}

@media (min-width: 768px) {
    .impact {
        padding: 50px 0;
    }

    .impact-title {
        font-size: 32px;
    }

    .impact-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .impact-number {
        font-size: 40px;
    }
}

/* Partnership Section */
.partnership {
    padding: 60px 0;
    background: #FFFFFF;
}

.partnership-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 40px;
}

.partnership-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.partner-card {
    background: #FAFAFA;
    border: 2px solid var(--primary-blue);
    border-radius: 8px;
    padding: 32px 28px;
    box-shadow: 0 10px 30px rgba(0, 128, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(0, 128, 0, 0.18);
    border-color: var(--primary-orange);
}

.partner-logo {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: rgba(0, 128, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-blue);
    margin-bottom: 18px;
}

.partner-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 10px;
}

.partner-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-text);
    margin: 0 0 16px;
}

@media (min-width: 768px) {
    .partnership {
        padding: 70px 0;
    }

    .partnership-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .partnership-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Features Section */
.features {
    padding: 4px 0 60px;
    background: #FFFFFF;
}

.features-header {
    text-align: center;
    margin-bottom: 20px;
}

.section-badge {
    display: inline-block;
    background: rgba(0, 113, 188, 0.1);
    color: var(--primary-blue);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark-text);
}

.highlight-text {
    color: var(--primary-orange);
}

.features-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 48px;
}

.feature-card {
    background: #FFFFFF;
    border: 2px solid var(--primary-orange);
    border-radius: 8px;
    padding: 32px 28px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 128, 0, 0.18);
    transform: translateY(-5px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    opacity: 0;
}

.feature-card.animate-in {
    opacity: 1;
    transform: translateY(-5px);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 36px rgba(0, 128, 0, 0.22);
    border-color: var(--primary-blue);
}

.feature-accent {
    display: none;
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 32px;
    color: var(--primary-blue);
    transition: transform 0.3s ease, color 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    color: var(--primary-orange);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-text);
    margin-bottom: 20px;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--dark-text);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: gap 0.3s ease, color 0.3s ease;
}

.feature-link:hover {
    gap: 12px;
    color: var(--primary-orange);
}

.features-footer {
    text-align: center;
}

.btn-view-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-blue);
    color: var(--white);
    padding: 16px 36px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-view-more:hover {
    background: var(--secondary-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 113, 188, 0.3);
}

.btn-view-more i {
    transition: transform 0.3s ease;
}

.btn-view-more:hover i {
    transform: translateX(4px);
}

/* Tablet Styles for Features */
@media (min-width: 768px) {
    .section-title {
        font-size: 42px;
    }

    .features {
        padding: 70px 0;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .feature-card {
        padding: 28px 24px;
    }
}

/* Desktop Styles for Features */
@media (min-width: 1024px) {
    .section-title {
        font-size: 48px;
    }

    .features {
        padding: 80px 0;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }

    .feature-card {
        padding: 32px 28px;
    }
}

/* Features Page Styles */
.features-hero {
    padding: 120px 0 60px;
    background: #FAFAFA;
    text-align: center;
}

/* Page Hero (shared, mobile-first) */
.page-hero {
    padding: 50px 0 30px;
    background: #FAFAFA;
    text-align: center;
}

.page-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--primary-blue);
}

.page-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-text);
    max-width: 600px;
    margin: 0 auto;
}

.all-features {
    padding: 60px 0 80px;
    background: #FFFFFF;
}

.all-features .features-grid {
    gap: 24px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: #FAFAFA;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 16px;
    color: var(--gray-text);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
    max-width: 280px;
}

/* Tablet Styles for Features Page */
@media (min-width: 768px) {
    .page-title {
        font-size: 48px;
    }

    .page-description {
        font-size: 18px;
    }

    .cta-content h2 {
        font-size: 40px;
    }

    .cta-content p {
        font-size: 18px;
    }

    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .all-features .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

/* Desktop Styles for Features Page */
@media (min-width: 1024px) {
    .page-title {
        font-size: 56px;
    }

    .cta-content h2 {
        font-size: 48px;
    }

    .all-features .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: #FAFAFA;
}

.pricing-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-text);
    margin-top: 12px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-grid {
    display: grid;
    gap: 32px;
    max-width: 400px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-orange);
}

.pricing-featured {
    border-color: var(--primary-blue);
    box-shadow: 0 8px 32px rgba(0, 113, 188, 0.15);
}

.pricing-featured:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 16px 40px rgba(0, 113, 188, 0.2);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-orange);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(252, 155, 5, 0.3);
}

.pricing-featured .btn-plan {
    background: var(--primary-blue);
}

.pricing-featured .btn-plan:hover {
    background: var(--secondary-blue);
    box-shadow: 0 8px 20px rgba(0, 113, 188, 0.3);
}

.pricing-header-card {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 2px solid #F0F0F0;
    margin-bottom: 24px;
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.plan-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.original-price {
    font-size: 18px;
    color: var(--gray-text);
    text-decoration: line-through;
    font-weight: 500;
}

.discounted-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.currency {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-text);
}

.amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark-text);
}

.period {
    font-size: 16px;
    color: var(--gray-text);
}

.savings-badge {
    display: inline-block;
    background: rgba(34, 197, 94, 0.1);
    color: #16A34A;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-top: 12px;
}

.pricing-limits {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 2px solid #F0F0F0;
}

.limit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--gray-text);
}

.limit-item i {
    font-size: 18px;
    color: var(--primary-blue);
}

.limit-item strong {
    color: var(--dark-text);
    font-weight: 700;
}

.pricing-features {
    margin-bottom: 28px;
}

.pricing-features h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 16px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--gray-text);
}

.pricing-features li i {
    font-size: 16px;
    color: var(--primary-orange);
    flex-shrink: 0;
}

.btn-plan {
    width: 100%;
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-plan:hover {
    background: var(--accent-orange);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(252, 155, 5, 0.3);
}

/* Tablet Styles for Pricing */
@media (min-width: 768px) {
    .pricing-grid {
        max-width: 100%;
        grid-template-columns: repeat(2, 1fr);
    }

    .section-description {
        font-size: 18px;
    }
}

/* Desktop Styles for Pricing */
@media (min-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 36px;
    }
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #FFFFFF;
}

.faq-header {
    text-align: center;
    margin-bottom: 48px;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #FAFAFA;
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 113, 188, 0.05);
}

.question-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--primary-orange);
    color: var(--white);
    border-radius: 50%;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.question-text {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-text);
}

.faq-icon {
    font-size: 20px;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 24px 72px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-text);
    margin: 0;
}

/* Tablet Styles for FAQ */
@media (min-width: 768px) {
    .question-text {
        font-size: 18px;
    }

    .faq-answer p {
        font-size: 16px;
    }
}

/* Services Detail Page (mobile-first, alternating cards) */
.services-detail {
    padding: 50px 0;
    background: #FFFFFF;
}

.services-detail-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 40px;
}

.service-card {
    display: grid;
    gap: 24px;
    align-items: center;
    background: #FFFFFF;
    border: 2px solid var(--primary-orange);
    border-radius: 8px;
    padding: 28px 24px;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(0, 128, 0, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:last-child {
    margin-bottom: 0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(0, 128, 0, 0.22);
    border-color: var(--primary-blue);
}

/* Media panel (stands in for the service image) */
.service-media {
    border-radius: 16px;
    background: linear-gradient(135deg, #008000 0%, #005a00 100%);
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-media-img {
    width: 100%;
    height: 100%;
    max-height: 180px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.service-media-icon {
    width: 88px;
    height: 88px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    color: #FFFFFF;
    backdrop-filter: blur(4px);
}

.service-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-text);
    margin: 0 0 12px;
}

.service-info p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-text);
    margin: 0 0 16px;
}

.service-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.service-points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--dark-text);
}

.service-points i {
    color: var(--primary-blue);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Process */
.services-process {
    padding: 50px 0;
    background: #FAFAFA;
}

.process-grid {
    display: grid;
    gap: 16px;
}

.process-step {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 26px 24px;
    position: relative;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.process-num {
    display: inline-block;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 10px;
}

.process-step h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-text);
    margin: 0 0 8px;
}

.process-step p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-text);
    margin: 0;
}

/* Homepage process (Restored Colors + Image Layout) */
.home-process {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background: #FAFAFA;
}

.process-wrapper {
    position: relative;
    border-radius: 60px;
    padding: 60px 30px;
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .process-wrapper {
        border-radius: 40px;
        padding: 40px 20px;
    }
}

.process-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.process-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.process-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 40, 24, 0.82), rgba(0, 90, 0, 0.72));
}



.process-inner {
    position: relative;
    z-index: 1;
}

.process-header {
    margin-bottom: 60px;
    text-align: center;
}

.process-header .section-title {
    color: var(--dark-text);
    font-size: 36px;
    font-weight: 800;
}

.process-header .highlight-text {
    color: var(--primary-orange);
}

.process-header .section-description {
    color: var(--gray-text);
    font-size: 16px;
    margin-top: 12px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Single row of 4 glass cards */
.process-row {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: end;
}

.glass-card {
    position: relative;
    padding: 24px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    color: #FFFFFF;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.22);
    border-color: var(--primary-orange);
}

.glass-num {
    display: block;
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    color: var(--primary-orange);
    margin-bottom: 12px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.glass-card p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
}

/* Tablet: 2 columns */
@media (min-width: 640px) {
    .process-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop: 4 cards on one row */
@media (min-width: 1024px) {
    .process-row {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }
}

@media (min-width: 768px) {
    .question-text {
        font-size: 18px;
    }

    .faq-answer p {
        font-size: 16px;
    }
}

/* Services Detail Page (mobile-first, alternating cards) */
.services-detail {
    padding: 50px 0;
    background: #FFFFFF;
}

.services-detail-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 40px;
}

.service-card {
    display: grid;
    gap: 24px;
    align-items: center;
    background: #FFFFFF;
    border: 2px solid var(--primary-orange);
    border-radius: 8px;
    padding: 28px 24px;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(0, 128, 0, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:last-child {
    margin-bottom: 0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(0, 128, 0, 0.22);
    border-color: var(--primary-blue);
}

/* Media panel (stands in for the service image) */
.service-media {
    border-radius: 16px;
    background: linear-gradient(135deg, #008000 0%, #005a00 100%);
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-media-img {
    width: 100%;
    height: 100%;
    max-height: 180px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.service-media-icon {
    width: 88px;
    height: 88px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    color: #FFFFFF;
    backdrop-filter: blur(4px);
}

.service-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-text);
    margin: 0 0 12px;
}

.service-info p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-text);
    margin: 0 0 16px;
}

.service-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.service-points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--dark-text);
}

.service-points i {
    color: var(--primary-blue);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Process */
.services-process {
    padding: 50px 0;
    background: #FAFAFA;
}

.process-grid {
    display: grid;
    gap: 16px;
}

.process-step {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 26px 24px;
    position: relative;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.process-num {
    display: inline-block;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 10px;
}

.process-step h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-text);
    margin: 0 0 8px;
}

.process-step p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-text);
    margin: 0;
}

/* Homepage process (Crossware Enterprise Aesthetics) */
.home-process {
    position: relative;
    padding: 100px 0;
    background-color: #FFFFFF;
    background-image: 
        linear-gradient(to right, rgba(226, 232, 240, 0.5) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(226, 232, 240, 0.5) 1px, transparent 1px);
    background-size: 40px 40px;
}

.process-wrapper {
    background: #EFF1F4;
    border-radius: 80px;
    padding: 80px 40px;
    position: relative;
}

@media (max-width: 767px) {
    .process-wrapper {
        border-radius: 40px;
        padding: 40px 20px;
    }
}

.process-decoration {
    position: absolute;
    top: -30px;
    right: 40px;
    font-size: 80px;
    color: var(--primary-orange);
    text-shadow: 2px 4px 10px rgba(255, 128, 0, 0.2);
    z-index: 2;
}

.process-header {
    margin-bottom: 60px;
    text-align: center;
}

.process-header .section-title {
    color: #101828;
    font-size: 40px;
    font-weight: 800;
}

.gradient-text-alt {
    background: linear-gradient(90deg, #E62A10 0%, #FA9E05 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.process-header .section-description {
    color: #344054;
    font-size: 18px;
    margin-top: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.process-columns {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.process-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.flat-card {
    background: #FFFFFF;
    border-radius: 40px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

@media (max-width: 767px) {
    .flat-card {
        padding: 32px;
        border-radius: 24px;
    }
}

.flat-num {
    font-size: 72px;
    font-weight: 800;
    color: #E84E10;
    line-height: 1;
    margin-bottom: 24px;
}

.flat-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #101828;
    margin-bottom: 16px;
}

.flat-card p {
    font-size: 17px;
    line-height: 1.6;
    color: #344054;
}

/* Tablet & Desktop */
@media (min-width: 768px) {
    .process-columns {
        flex-direction: row;
        align-items: flex-start;
    }
    .process-col {
        flex: 1;
    }
    .process-col-shifted {
        margin-top: 60px;
    }
}

@media (min-width: 768px) {
    .services-detail {
        padding: 70px 0;
    }

    .services-process {
        padding: 70px 0;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Alternating horizontal cards */
    .service-card {
        grid-template-columns: 320px 1fr;
        padding: 32px;
    }

    .service-card:nth-child(even) .service-media {
        order: 2;
    }

    .service-media {
        height: 280px;
        max-height: 280px;
    }

    .service-media-img {
        max-height: 280px;
    }
}

@media (min-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .service-card {
        grid-template-columns: 380px 1fr;
    }
}

/* About Page (mobile-first) */
.about-story {
    padding: 50px 0;
    background: #FFFFFF;
}

.about-story-inner {
    display: grid;
    gap: 32px;
    align-items: center;
}

.about-story-text .section-title {
    text-align: left;
    margin-bottom: 20px;
    font-size: 30px;
}

.about-story-text p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-text);
    margin: 0 0 18px;
}

.about-media-frame {
    border-radius: 24px;
    padding: 14px;
    background: linear-gradient(135deg, #008000 0%, #005a00 100%);
    box-shadow: 0 24px 60px rgba(0, 90, 0, 0.22);
}

.about-media-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
    background: #FFFFFF;
}

.about-vision {
    padding: 50px 0;
    background: #FAFAFA;
}

.about-vm-grid {
    display: grid;
    gap: 20px;
}

.about-vm-card {
    background: #FFFFFF;
    border: 2px solid var(--primary-orange);
    border-radius: 8px;
    padding: 32px 28px;
    box-shadow: 0 10px 30px rgba(0, 128, 0, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.about-vm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(0, 128, 0, 0.22);
    border-color: var(--primary-blue);
}

.about-vm-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(0, 128, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--primary-blue);
    margin-bottom: 18px;
}

.about-vm-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-text);
    margin: 0 0 12px;
}

.about-vm-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-text);
    margin: 0;
}

.about-values {
    padding: 50px 0 70px;
    background: #FFFFFF;
}

.values-grid {
    display: grid;
    gap: 20px;
}

.value-card {
    background: #FFFFFF;
    border: 2px solid var(--primary-orange);
    border-radius: 8px;
    padding: 32px 28px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 128, 0, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(0, 128, 0, 0.22);
    border-color: var(--primary-blue);
}

.value-card .feature-icon {
    margin: 0 auto 18px;
}

.value-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-text);
    margin: 0;
}

@media (min-width: 768px) {
    .about-story {
        padding: 70px 0;
    }

    .about-vision {
        padding: 70px 0;
    }

    .about-vm-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-values {
        padding: 70px 0 90px;
    }
}

@media (min-width: 1024px) {
    .about-story-inner {
        grid-template-columns: 1fr 0.9fr;
        gap: 64px;
    }

    .about-story-text .section-title {
        font-size: 38px;
    }

    .about-vm-card h3 {
        font-size: 24px;
    }
}

/* FAQ Section (minimal, mobile-first) */
.faq-section {
    padding: 40px 0 60px;
    background: #FAFAFA;
}

.faq-header {
    text-align: center;
    margin-bottom: 28px;
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border: 1px solid #E5E7EB;
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item.active {
    border-color: var(--primary-blue);
    box-shadow: 0 6px 20px rgba(0, 128, 0, 0.10);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-text);
    font-family: inherit;
}

.faq-icon {
    flex-shrink: 0;
    font-size: 18px;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer p {
    margin: 0;
    padding: 0 20px 18px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-text);
}

/* Footer */
.footer {
    background: var(--white);
    color: var(--dark-text);
    padding: 48px 0 24px;
    border-radius: 32px 32px 0 0;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
    margin-top: 24px;
}

.footer-content {
    display: grid;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    height: 36px;
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-text);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 24px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    color: var(--gray-text);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary-orange);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--gray-text);
}

.footer-contact li i {
    color: var(--primary-blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact a {
    color: var(--gray-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary-orange);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(0, 113, 188, 0.1);
    border-radius: 8px;
    color: var(--primary-blue);
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid #E5E7EB;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray-text);
    margin: 0;
}

.footer-bottom strong {
    color: var(--primary-orange);
    font-weight: 600;
}

/* Tablet Styles for Footer */
@media (min-width: 768px) {
    .footer {
        padding: 56px 0 28px;
    }

    .footer-content {
        grid-template-columns: 1fr 2fr;
        gap: 48px;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Desktop Styles for Footer */
@media (min-width: 1024px) {
    .footer {
        padding: 64px 0 32px;
    }

    .footer-bottom p {
        font-size: 14px;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(252, 155, 5, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--accent-orange);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(252, 155, 5, 0.4);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

/* Mobile Styles for Scroll to Top */
@media (max-width: 767px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    /* Breathing space between Who We Are and Services */
    .who-we-are {
        padding: 60px 0 40px;
    }

    .features {
        padding: 40px 0 60px;
    }

    /* Chatbot scales with phone */
    .chatbot-container {
        bottom: 16px;
        right: 16px;
        left: 16px;
        width: auto;
        max-width: none;
        height: calc(100vh - 96px);
        max-height: none;
        border-radius: 16px;
    }

    .chatbot-toggle {
        bottom: 76px;
        right: 16px;
        width: 52px;
        height: 52px;
        font-size: 24px;
    }

    .chatbot-popup {
        right: 16px;
        left: 16px;
        width: auto;
        bottom: 140px;
    }

    /* Keep hero floating card inside the frame on small screens */
    .browser-float-card {
        right: 12px;
        bottom: 12px;
    }
}

/* Contact Section */
.contact-section {
    padding: 60px 0 80px;
    background: #FFFFFF;
}

.contact-wrapper {
    display: grid;
    gap: 48px;
}

.contact-info {
    background: #FAFAFA;
    padding: 40px 32px;
    border-radius: 20px;
}

.contact-info h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.contact-intro {
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-text);
    margin-bottom: 32px;
}

.contact-details {
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-orange);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-text a {
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--primary-orange);
}

.contact-text p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-text);
    margin: 0;
}

.contact-social {
    padding-top: 24px;
    border-top: 2px solid #E5E7EB;
}

.contact-social h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-social .social-links {
    display: flex;
    gap: 12px;
}

.contact-social .social-links a {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 18px;
    transition: all 0.3s ease;
}

.contact-social .social-links a:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-size: 15px;
    color: var(--dark-text);
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--accent-orange);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(252, 155, 5, 0.3);
}

.form-status {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    min-height: 20px;
}

.form-status.success {
    color: #16A34A;
}

.form-status.error {
    color: #DC2626;
}

/* Map Section */
.map-section {
    padding: 0 0 80px;
    background: #FFFFFF;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.map-container iframe {
    display: block;
    width: 100%;
}

.map-placeholder {
    background: #FAFAFA;
    border-radius: 20px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 2px dashed #E5E7EB;
}

.map-placeholder i {
    font-size: 48px;
    color: var(--primary-blue);
}

.map-placeholder p {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-text);
    margin: 0;
}

/* Tablet Styles for Contact */
@media (min-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .contact-info h2 {
        font-size: 32px;
    }

    .map-container iframe {
        height: 400px;
    }

    .map-placeholder {
        height: 400px;
    }
}

/* Desktop Styles for Contact */
@media (min-width: 1024px) {
    .contact-wrapper {
        gap: 60px;
    }

    .contact-info {
        padding: 48px 40px;
    }

    .contact-form-wrapper {
        padding: 48px 40px;
    }
}

/* Chatbot Styles */
.chatbot-toggle {
    position: fixed;
    bottom: 100px;
    right: 32px;
    width: 56px;
    height: 56px;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 113, 188, 0.4);
    transition: all 0.3s ease;
    z-index: 1001;
}

.chatbot-toggle:hover {
    background: var(--secondary-blue);
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(0, 113, 188, 0.5);
}

.chatbot-container {
    position: fixed;
    bottom: 170px;
    right: 32px;
    width: 350px;
    max-width: calc(100vw - 40px);
    height: 500px;
    max-height: calc(100vh - 200px);
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s ease;
    z-index: 1002;
}

.chatbot-container.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chatbot-header {
    background: var(--primary-blue);
    color: var(--white);
    padding: 16px 20px;
    border-radius: 20px 20px 0 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.chatbot-info {
    flex: 1;
}

.chatbot-info h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 2px 0;
}

.chatbot-status {
    font-size: 12px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-indicator {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.chatbot-close {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.chatbot-close:hover {
    opacity: 0.7;
}

.chatbot-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bot-message,
.user-message {
    display: flex;
    gap: 10px;
    animation: messageSlide 0.3s ease;
}

.user-message {
    flex-direction: row-reverse;
}

@keyframes messageSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message-avatar {
    width: 32px;
    height: 32px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.user-message .message-avatar {
    background: var(--primary-orange);
}

.message-content {
    background: #F3F4F6;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--dark-text);
    max-width: 75%;
}

.user-message .message-content {
    background: var(--primary-orange);
    color: var(--white);
}

/* Typing Indicator */
.typing-indicator {
    display: flex;
    gap: 10px;
    align-items: center;
}

.typing-indicator .message-content {
    display: flex;
    gap: 4px;
    padding: 16px;
}

.typing-dot {
    width: 8px;
    height: 8px;
    background: var(--gray-text);
    border-radius: 50%;
    animation: typingAnimation 1.4s infinite;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingAnimation {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.7;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

/* Chatbot Disclaimer */
.chatbot-disclaimer {
    padding: 10px 16px;
    background: rgba(252, 155, 5, 0.1);
    border-top: 1px solid rgba(252, 155, 5, 0.2);
    border-bottom: 1px solid rgba(252, 155, 5, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: #d97706;
    line-height: 1.4;
}

.chatbot-disclaimer i {
    font-size: 14px;
    flex-shrink: 0;
    color: var(--primary-orange);
}

.chatbot-disclaimer span {
    flex: 1;
}

.chatbot-input {
    padding: 16px 20px;
    border-top: 1px solid #E5E7EB;
    display: flex;
    gap: 12px;
}

.chatbot-input input {
    flex: 1;
    padding: 10px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 24px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.chatbot-input input:focus {
    border-color: var(--primary-blue);
}

.chatbot-input button {
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chatbot-input button:hover {
    background: var(--secondary-blue);
    transform: scale(1.1);
}

/* Chatbot Welcome Popup */
.chatbot-popup {
    position: fixed;
    bottom: 170px;
    right: 100px;
    width: 280px;
    background: var(--white);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.chatbot-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.popup-close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: transparent;
    border: none;
    color: var(--gray-text);
    font-size: 20px;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.popup-close:hover {
    color: var(--dark-text);
}

.popup-avatar {
    width: 48px;
    height: 48px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 12px;
}

.popup-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 6px;
}

.popup-content p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--gray-text);
    margin: 0;
}

/* Mobile Styles for Chatbot */
@media (max-width: 767px) {
    .chatbot-toggle {
        bottom: 80px;
        right: 20px;
        width: 52px;
        height: 52px;
        font-size: 24px;
    }

    .chatbot-container {
        bottom: 20px;
        right: 20px;
        left: 20px;
        width: auto;
        max-width: none;
        height: calc(100vh - 100px);
        max-height: none;
    }

    .chatbot-popup {
        bottom: 140px;
        right: 16px;
        left: 16px;
        width: auto;
        padding: 16px;
    }
}

/* Demo Section */
.demo-section {
    padding: 60px 0 80px;
    background: #FFFFFF;
}

.demo-wrapper {
    display: grid;
    gap: 48px;
}

.demo-info {
    background: #FAFAFA;
    padding: 32px 24px;
    border-radius: 20px;
}

.demo-info h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.demo-intro {
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-text);
    margin-bottom: 32px;
}

.demo-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    gap: 16px;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.benefit-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 4px;
}

.benefit-text p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--gray-text);
    margin: 0;
}

.demo-image {
    margin-top: 24px;
    width: 100%;
}

.demo-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Demo Form */
.demo-form-wrapper {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.demo-form h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 24px;
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    gap: 20px;
}

.demo-form select {
    padding: 12px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-size: 15px;
    color: var(--dark-text);
    transition: border-color 0.3s ease;
    font-family: inherit;
    background: var(--white);
    cursor: pointer;
}

.demo-form select:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.form-note {
    font-size: 13px;
    color: var(--gray-text);
    text-align: center;
    margin: 0;
    line-height: 1.5;
}

/* Tablet Styles for Demo */
@media (min-width: 768px) {
    .demo-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .demo-info {
        padding: 40px 32px;
    }

    .demo-info h2 {
        font-size: 32px;
    }

    .demo-form-wrapper {
        padding: 40px 32px;
    }

    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop Styles for Demo */
@media (min-width: 1024px) {
    .demo-wrapper {
        gap: 60px;
    }
}

/* Coming Soon (Academy) */
.coming-soon-badge {
    margin-top: 24px;
}

.coming-soon-pill {
    display: inline-block;
    background: rgba(0, 113, 188, 0.1);
    color: var(--primary-blue);
    padding: 10px 28px;
    border-radius: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 14px;
}
/* Collage Section Styles (Mobile First) */
.collage-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
}

.collage-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    grid-template-rows: auto auto;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.collage-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.img-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    aspect-ratio: 1 / 1;
    border-top-left-radius: 60px;
}

.img-2 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    aspect-ratio: 3 / 4;
    height: 95%;
    align-self: end;
}

.img-3 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    aspect-ratio: 4 / 3;
    border-bottom-left-radius: 60px;
}

.img-4 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    aspect-ratio: 16 / 9;
    height: 90%;
    align-self: start;
    border-bottom-right-radius: 60px;
}

.collage-bg-shape {
    position: absolute;
    z-index: 1;
}

.shape-tl {
    top: 0;
    left: 0;
    width: 45%;
    height: 45%;
    background: var(--secondary-blue);
    border-top-left-radius: 80px;
    border-bottom-right-radius: 20px;
}

.shape-br {
    bottom: 0;
    right: 0;
    width: 45%;
    height: 45%;
    background: var(--accent-orange);
    border-bottom-right-radius: 80px;
    border-top-left-radius: 20px;
}

.collage-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: var(--secondary-blue);
    border: 4px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 3;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.badge-inner {
    color: var(--white);
    display: flex;
    flex-direction: column;
}
.badge-inner span {
    font-weight: 800;
    font-size: 1rem;
    line-height: 1.2;
}
.badge-inner small {
    font-size: 0.5rem;
    letter-spacing: 1px;
}

@media (min-width: 768px) {
    .collage-wrapper {
        padding: 30px;
    }
    .collage-grid {
        gap: 16px;
    }
    .img-1 { border-top-left-radius: 80px; }
    .img-3 { border-bottom-left-radius: 80px; }
    .img-4 { border-bottom-right-radius: 80px; }
    .shape-tl { border-top-left-radius: 100px; width: 50%; height: 50%; }
    .shape-br { border-bottom-right-radius: 100px; width: 50%; height: 50%; }
    .collage-badge {
        width: 110px;
        height: 110px;
    }
    .badge-inner span { font-size: 1.2rem; }
    .badge-inner small { font-size: 0.6rem; }
}

/* ============================================
   GLASSMORPHISM HERO (Mobile-First)
   ============================================ */

/* Override base .hero for full-bleed layout */
.hero {
    padding: 0;
    position: relative;
    overflow: hidden;
    background: #000;
    min-height: 100svh;
    display: flex;
    align-items: stretch;
}

/* Full-bleed background image */
.hero-bg-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 20, 0, 0.38) 0%,
        rgba(0, 40, 0, 0.60) 55%,
        rgba(0, 50, 0, 0.82) 100%
    );
}

/* Large ghost watermark text */
.hero-ghost-word {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(4.5rem, 22vw, 13rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    color: rgba(255, 255, 255, 0.10);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 1;
    line-height: 1;
    text-transform: uppercase;
    margin: 0;
}

/* Container sits above bg */
.hero-glass-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    width: 100%;
    padding-top: 90px;   /* clear fixed nav */
    padding-bottom: 24px;
    min-height: 100svh;
}

/* Glass card frame */
.hero-glass-frame {
    width: 100%;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 76vh;
}

/* Spacer — shows background + ghost text */
.hero-glass-top {
    flex: 1;
    min-height: 80px;
}

/* Bottom content area */
.hero-glass-bottom {
    padding: 24px 22px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: linear-gradient(to top, rgba(0, 50, 0, 0.60) 0%, transparent 100%);
}

/* Headline, description, buttons */
.hero-glass-copy .hero-title {
    font-size: clamp(1.55rem, 5.5vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 12px;
}

.hero-glass-copy .hero-type-static {
    color: rgba(255, 255, 255, 0.88);
}

.hero-glass-copy .gradient-text {
    color: var(--primary-orange);
}

.hero-glass-copy .hero-description {
    font-size: 0.92rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 20px;
    max-width: 100%;
}

.hero-glass-copy .hero-buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.hero-glass-copy .btn-primary,
.hero-btn-ghost {
    width: auto;
    max-width: none;
    padding: 12px 26px;
    font-size: 14px;
}

/* Ghost secondary button inside hero */
.hero-btn-ghost {
    background: rgba(255, 255, 255, 0.12) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.38) !important;
    color: #ffffff !important;
    border-radius: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, border-color 0.3s;
}

.hero-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.22) !important;
    border-color: rgba(255, 255, 255, 0.65) !important;
}

/* Stat pills row */
.hero-glass-stats {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-stat-pill {
    background: rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 14px;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    flex: 1;
    min-width: 90px;
}

.hero-stat-pill.hero-stat-wide {
    flex-basis: 100%;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.stat-num {
    font-size: 1.55rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.stat-num small {
    font-size: 0.85rem;
    font-weight: 700;
}

.stat-lbl {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.72);
    text-align: center;
    line-height: 1.3;
}

.stat-stars {
    display: flex;
    gap: 2px;
    color: #FFD700;
    font-size: 0.85rem;
}

/* --- Tablet (768px+) --- */
@media (min-width: 768px) {
    .hero-glass-frame {
        border-radius: 28px;
        min-height: 74vh;
    }

    .hero-glass-bottom {
        flex-direction: row;
        align-items: flex-end;
        padding: 36px 40px 40px;
        gap: 28px;
    }

    .hero-glass-copy {
        flex: 1.5;
    }

    .hero-glass-copy .hero-description {
        font-size: 1rem;
    }

    .hero-glass-stats {
        flex: 1;
        flex-direction: column;
        gap: 10px;
        align-self: flex-end;
    }

    .hero-stat-pill {
        align-items: flex-start;
        width: 100%;
    }

    .hero-stat-pill.hero-stat-wide {
        flex-basis: auto;
    }

    .hero-glass-top {
        min-height: 120px;
    }
}

/* --- Desktop (1024px+) --- */
@media (min-width: 1024px) {
    .hero-glass-container {
        padding-top: 100px;
        padding-bottom: 32px;
    }

    .hero-glass-frame {
        min-height: 78vh;
        border-radius: 32px;
    }

    .hero-glass-bottom {
        padding: 44px 56px 52px;
        gap: 40px;
    }

    .hero-ghost-word {
        top: 8%;
    }
}

/* ============================================
   CLEAN HERO — Image card + left fog overlay
   ============================================ */

.hero {
    padding: 68px 0 32px; /* top clears fixed nav */
    position: relative;
    overflow: visible;
    background: #FAFAFA;
    min-height: auto;
    display: block;
}

/* Outer card — rounded corners + thin green border */
.hero-card {
    position: relative;
    width: 100%;
    border-radius: 20px;
    border: 1.5px solid var(--primary-blue);
    overflow: hidden;
    /* height driven by image on mobile, fixed on desktop */
    min-height: 420px;
}

/* Background image fills the card */
.hero-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 20px;
}

/* Left fog overlay — covers ~60% width on mobile, 55% on desktop */
.hero-fog {
    position: absolute;
    inset: 0;
    /* Fog: solid on far left, fading to transparent on the right */
    background: linear-gradient(
        to right,
        rgba(0, 40, 0, 0.88) 0%,
        rgba(0, 40, 0, 0.82) 40%,
        rgba(0, 40, 0, 0.50) 62%,
        transparent 80%
    );
    border-radius: 20px;
    display: flex;
    align-items: center;
}

/* Text content sits inside the fog */
.hero-fog-copy {
    padding: 36px 28px;
    max-width: 100%;
    width: 100%;
}

.hero-fog-copy .hero-title {
    font-size: clamp(1.5rem, 5.5vw, 2.8rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 14px;
}

.hero-fog-copy .hero-type-static {
    color: rgba(255, 255, 255, 0.90);
}

.hero-fog-copy .gradient-text {
    color: var(--primary-orange);
}

.hero-fog-copy .hero-description {
    font-size: 0.92rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.80);
    margin-bottom: 22px;
    max-width: 420px;
}

.hero-fog-copy .hero-buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.hero-fog-copy .btn-primary,
.hero-btn-ghost {
    width: auto;
    max-width: none;
    padding: 12px 26px;
    font-size: 14px;
}

/* Ghost "Request Demo" button on dark bg */
.hero-btn-ghost {
    background: rgba(255, 255, 255, 0.12) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.40) !important;
    color: #ffffff !important;
    border-radius: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, border-color 0.3s;
}

.hero-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.22) !important;
    border-color: rgba(255, 255, 255, 0.68) !important;
}

/* Tablet (768px+) */
@media (min-width: 768px) {
    .hero {
        padding: 76px 0 40px;
    }

    .hero-card {
        min-height: 500px;
        border-radius: 24px;
    }

    .hero-card-img {
        border-radius: 24px;
    }

    .hero-fog {
        border-radius: 24px;
        background: linear-gradient(
            to right,
            rgba(0, 40, 0, 0.90) 0%,
            rgba(0, 40, 0, 0.80) 38%,
            rgba(0, 40, 0, 0.40) 58%,
            transparent 72%
        );
    }

    .hero-fog-copy {
        padding: 48px 44px;
        max-width: 58%;
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .hero-card {
        min-height: 580px;
        border-radius: 28px;
    }

    .hero-card-img {
        border-radius: 28px;
    }

    .hero-fog {
        border-radius: 28px;
        background: linear-gradient(
            to right,
            rgba(0, 40, 0, 0.90) 0%,
            rgba(0, 40, 0, 0.78) 35%,
            rgba(0, 40, 0, 0.35) 55%,
            transparent 68%
        );
    }

    .hero-fog-copy {
        padding: 56px 60px;
        max-width: 52%;
    }

    .hero-fog-copy .hero-description {
        font-size: 1rem;
    }
}

/* CTA section with background image (about page) */
.cta-with-bg {
    position: relative;
    overflow: hidden;
}

.cta-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.cta-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,40,0,0.82) 0%, rgba(0,60,0,0.70) 100%);
}

.cta-with-bg .container {
    position: relative;
    z-index: 2;
}

.cta-with-bg .cta-content h2 {
    color: #ffffff;
}

.cta-with-bg .cta-content p {
    color: rgba(255,255,255,0.82);
}

.cta-btn-ghost {
    background: rgba(255,255,255,0.12) !important;
    border: 1.5px solid rgba(255,255,255,0.40) !important;
    color: #ffffff !important;
    border-radius: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, border-color 0.3s;
}

.cta-btn-ghost:hover {
    background: rgba(255,255,255,0.22) !important;
    border-color: rgba(255,255,255,0.65) !important;
}

/* CTA + Footer shared background wrapper (about page) */
.cta-footer-wrap {
    position: relative;
    overflow: hidden;
}

.cta-footer-wrap > .cta-bg-img,
.cta-footer-wrap > .cta-bg-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.cta-footer-wrap > .cta-bg-img {
    object-fit: cover;
    object-position: center;
    display: block;
}

.cta-footer-wrap > .cta-bg-overlay {
    background: linear-gradient(135deg, rgba(0,40,0,0.84) 0%, rgba(0,60,0,0.72) 100%);
}

/* Sections inside the wrapper need z-index to sit above image */
.cta-footer-wrap .cta-section,
.cta-footer-wrap .footer {
    position: relative;
    z-index: 2;
    background: transparent;
}

/* Footer text colors on dark background */
.cta-footer-wrap .footer {
    color: rgba(255,255,255,0.85);
}
.cta-footer-wrap .footer h4,
.cta-footer-wrap .footer-tagline {
    color: rgba(255,255,255,0.70);
}
.cta-footer-wrap .footer a,
.cta-footer-wrap .footer-contact li {
    color: rgba(255,255,255,0.75);
}
.cta-footer-wrap .footer a:hover {
    color: var(--primary-orange);
}
.cta-footer-wrap .footer-bottom {
    border-top-color: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.55);
}
.cta-footer-wrap .footer-bottom p {
    color: rgba(255,255,255,0.55);
}

/* FAQ section on dark image bg */
.faq-section.cta-with-bg .section-title,
.faq-section.cta-with-bg .faq-question span {
    color: #ffffff;
}

.faq-section.cta-with-bg .faq-question {
    color: #ffffff;
}

.faq-section.cta-with-bg .faq-answer p {
    color: rgba(255,255,255,0.80);
}

.faq-section.cta-with-bg .faq-item {
    border-color: rgba(255,255,255,0.15);
}

.faq-section.cta-with-bg .faq-question span,
.faq-section.cta-with-bg .faq-question {
    color: #000000;
}

.faq-section.cta-with-bg .faq-answer p {
    color: #000000;
}

.faq-section.cta-with-bg .highlight-text {
    color: var(--primary-orange);
}

.faq-section.cta-with-bg .faq-green {
    color: var(--primary-blue);
}
