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

        :root {
            --bg: #ffffff;
            --bg-secondary: #f5f5f5;
            --bg-card: #ffffff;
            --text: #141414;
            --text-secondary: #555555;
            --text-muted: #888888;
            --lime: #C5F135;
            --lime-glow: rgba(197, 241, 53, 0.18);
            --lime-hover: #D4F858;
            --border: #e2e2e2;
            --border-light: #ececec;
            --header-bg: rgba(255, 255, 255, 0.96);
            --shadow-sm: 0 6px 18px rgba(0, 0, 0, 0.02), 0 2px 4px rgba(0, 0, 0, 0.02);
            --shadow-md: 0 12px 28px rgba(0, 0, 0, 0.04);
            --shadow-hover: 0 20px 32px -8px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.02);
            --radius: 32px;
            --radius-sm: 20px;
            --transition: 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        }

        

        html {
            scroll-behavior: smooth;
        }

        body {
            background: var(--bg);
            color: var(--text);
            font-family: 'Inter', sans-serif;
            line-height: 1.5;
            transition: background 0.3s ease, color 0.3s ease;
            -webkit-font-smoothing: antialiased;
        }

        ::-webkit-scrollbar { width: 6px; }
        ::-webkit-scrollbar-track { background: transparent; }
        ::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.12); border-radius: 6px; }
        ::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.22); }

        .container {
            max-width: 1480px;
            margin: 0 auto;
            padding: 0 clamp(1.5rem, 4vw, 3rem);
        }

        h1,
        h2,
        h3,
        h4 {
            font-family: 'Inter', sans-serif;
            font-weight: 700;
            letter-spacing: -0.02em;
        }

        h1 {
            font-size: clamp(3rem, 8vw, 5.2rem);
            line-height: 1.15;
            margin-bottom: 1.5rem;
        }

        .hero h1 {
            font-size: clamp(2.2rem, 5.5vw, 3.8rem);
            line-height: 1.12;
            max-width: 980px;
        }

        .hero > .container { width: 100%; }

        .hero-content {
            max-width: 980px;
            margin: 0 auto;
            text-align: center;
        }

        .hero-lead { margin-left: auto; margin-right: auto; }

        .hero-lead {
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 620px;
            line-height: 1.6;
        }

        .hero-lead strong {
            color: var(--text);
            font-weight: 600;
        }

        h2 {
            font-size: clamp(2.2rem, 5vw, 3.6rem);
            text-align: center;
            margin-bottom: 2rem;
        }

        .lime-text {
            color: var(--lime);
            position: relative;
            display: inline-block;
        }

        .lime-text::after { display: none; }

        .section-subtitle {
            text-align: center;
            color: var(--text-secondary);
            font-size: 1.1rem;
            margin-bottom: 3rem;
            max-width: 680px;
            margin-left: auto;
            margin-right: auto;
            font-style: italic;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 0.85rem 2rem;
            border-radius: 60px;
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            transition: all 0.25s ease;
            cursor: pointer;
            border: none;
            letter-spacing: 0.2px;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn-primary {
            background: var(--lime);
            color: #141414;
            box-shadow: 0 8px 18px var(--lime-glow);
        }

        .btn-primary:hover {
            background: var(--lime-hover);
            transform: translateY(-3px);
            box-shadow: 0 14px 26px var(--lime-glow);
        }

        .btn-outline {
            background: transparent;
            border: 1px solid var(--lime);
            color: var(--lime);
        }

        .btn-outline:hover {
            background: var(--lime);
            color: #141414;
            transform: translateY(-2px);
        }

        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: var(--bg-secondary);
            position: relative;
            overflow: hidden;
            padding: 4rem 0 4rem;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 40%, var(--lime-glow) 0%, transparent 60%);
            opacity: 0.5;
            pointer-events: none;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(197, 241, 53, 0.12);
            backdrop-filter: blur(4px);
            padding: 0.4rem 1.5rem;
            border-radius: 60px;
            color: var(--lime);
            font-size: 0.8rem;
            letter-spacing: 0.08em;
            margin-bottom: 1.8rem;
            font-weight: 500;
        }

        .floating-shape {
            position: absolute;
            width: 280px;
            height: 280px;
            background: radial-gradient(circle, rgba(197, 241, 53, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            bottom: -60px;
            right: -40px;
            pointer-events: none;
            animation: float 14s infinite alternate;
        }

        @keyframes float {
            0% {
                transform: translateY(0px) rotate(0deg);
            }

            100% {
                transform: translateY(-50px) rotate(6deg);
            }
        }

        .grid-3 {
            display: grid;
            gap: 2rem;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        }

        .card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 1.8rem;
            transition: all var(--transition);
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .card .btn-sm {
            margin-top: 0.85rem;
        }

        .card .card-order:not(.btn-sm) {
            margin-top: auto;
        }

        .card.card--quote {
            align-self: start;
        }

        .card.card--quote p {
            flex: 0 0 auto;
            min-height: 0;
        }

        .card.card--quote .card-order {
            margin-top: 1.2rem;
        }

        .card p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.5;
            flex: 1;
            min-height: 2.85em;
            margin-bottom: 0;
        }

        .card:hover {
            border-color: var(--lime);
            transform: translateY(-6px) scale(1.01);
            box-shadow: var(--shadow-hover);
        }

        .card-icon {
            font-size: 2.2rem;
            color: var(--lime);
            margin-bottom: 1.2rem;
        }

        .card-head {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            width: 100%;
            margin-bottom: 1.2rem;
        }

        .card-head .card-icon {
            margin-bottom: 0;
        }

        .card-info {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 1px solid var(--border);
            color: var(--lime);
            text-decoration: none;
            font-size: 1rem;
            transition: var(--transition);
            flex-shrink: 0;
        }

        .card-info:hover {
            border-color: var(--lime);
            background: rgba(197, 241, 53, 0.1);
        }

        .card h3 {
            font-size: 1.8rem;
            margin-bottom: 0.6rem;
            font-weight: 700;
            line-height: 1.2;
        }

        .badge {
            display: inline-block;
            background: linear-gradient(135deg, rgba(197, 241, 53, 0.15) 0%, rgba(197, 241, 53, 0.05) 100%);
            color: var(--lime);
            padding: 0.2rem 1rem;
            border-radius: 40px;
            font-size: 0.7rem;
            font-weight: 700;
            margin-bottom: 0.8rem;
        }

        .price {
            display: flex;
            align-items: baseline;
            gap: 0.8rem;
            margin-top: 1.2rem;
            flex-shrink: 0;
        }

        .price-new {
            font-size: 1.7rem;
            font-weight: 700;
            color: var(--lime);
        }

        /* ---- Reference-style service cards ---- */
        .sol-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
            margin-top: 2rem;
        }
        .sol-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 20px;
            overflow: hidden;
            color: inherit;
            display: flex;
            flex-direction: column;
        }
        .sol-visual {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        .sol-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.45s ease;
        }

        .sol-body { padding: 1.15rem 1.4rem 1.4rem; }
        .sol-title-row {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            gap: 0.5rem;
            margin-bottom: 0.55rem;
        }
        .sol-name {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text);
            line-height: 1.25;
            text-decoration: none;
            display: inline;
            flex: 1 1 auto;
            min-width: 0;
        }
        a.sol-name:hover { color: var(--text); }
        a.sol-visual { display: block; color: inherit; }
        .sol-price {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            flex-shrink: 0;
        }
        .sol-price-num {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text);
            line-height: 1.1;
        }
        .sol-price-lbl {
            font-size: 0.65rem;
            color: var(--text-muted, #888);
            white-space: nowrap;
        }
        .sol-tags { display: flex; flex-wrap: wrap; gap: 0.3rem; }
        .sol-tag {
            font-size: 0.7rem;
            padding: 0.18rem 0.55rem;
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: 999px;
            color: var(--text-secondary);
        }
        @media (max-width: 900px) {
            .sol-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 520px) {
            .sol-grid { grid-template-columns: 1fr; }
            .sol-visual { height: 160px; }
        }

        /* ---- Cases (homepage) ---- */
        .cases-soon-section { padding: 5rem 0; }
        .home-cases-all {
            color: var(--text-secondary);
            font-weight: 600;
            font-size: 0.92rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .home-cases-all:hover { color: var(--lime); }
        .home-cases-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1.25rem;
            margin-top: 2rem;
        }
        .home-case-card {
            display: flex;
            flex-direction: column;
            overflow: hidden;
            border: 1px solid var(--border);
            border-radius: 24px;
            background: var(--bg-card);
            box-shadow: 0 8px 24px rgba(32,24,12,.06);
            text-decoration: none;
            color: inherit;
            transition: .3s;
        }
        .home-case-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 22px 48px rgba(32,24,12,.12);
            border-color: var(--lime);
        }
        .home-case-media {
            background: #07090A;
            overflow: hidden;
            aspect-ratio: 16 / 9;
        }
        .home-case-media img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
            display: block;
            transition: transform .35s;
        }
        .home-case-card:hover .home-case-media img { transform: none; }
        .home-case-body {
            display: flex;
            flex-direction: column;
            flex: 1;
            padding: 1.25rem 1.3rem 1.35rem;
        }
        .home-case-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.75rem;
        }
        .home-case-type {
            color: var(--lime);
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.07em;
            text-transform: uppercase;
        }
        .home-case-industry {
            color: var(--text-muted);
            font-size: 0.72rem;
        }
        .home-case-body h3 {
            font: 700 1.45rem/1.15 Inter, system-ui, sans-serif;
            letter-spacing: -0.02em;
            margin: 0.45rem 0 0.5rem;
        }
        .home-case-body p {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.5;
            flex: 1;
        }
        .home-case-metrics {
            margin: 0.65rem 0 0 !important;
            flex: 0 0 auto !important;
            font-size: 0.78rem !important;
            font-weight: 600;
            letter-spacing: 0.01em;
            color: var(--text) !important;
            opacity: 0.72;
        }
        .home-case-link {
            margin-top: 1rem;
            font-size: 0.85rem;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .home-case-card:hover .home-case-link { color: var(--lime); }
        @media (max-width: 1024px) {
            .home-cases-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
        }
        @media (max-width: 700px) {
            .home-cases-grid { grid-template-columns: 1fr; }
        }
        .cases-soon-wrap {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 1rem;
            padding: 4rem 2rem;
            border: 1px dashed var(--border);
            border-radius: 24px;
            margin-top: 2rem;
        }
        .cases-soon-icon {
            width: 56px; height: 56px;
            border-radius: 50%;
            background: rgba(197,241,53,0.1);
            display: flex; align-items: center; justify-content: center;
            font-size: 1.4rem;
            color: var(--lime);
        }
        .cases-soon-label {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text);
        }
        .cases-soon-text {
            font-size: 0.9rem;
            color: var(--text-secondary);
            max-width: 380px;
            line-height: 1.6;
        }

        .case-detailed {
            background: var(--bg-card);
            border-radius: var(--radius);
            padding: 2rem;
            border: 1px solid var(--border);
            margin-bottom: 2rem;
        }

        .case-meta {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            margin: 1.5rem 0 0;
        }

        .meta-value {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--lime);
        }

        .slider-wrapper {
            position: relative;
            margin-top: 1rem;
        }

        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 60px;
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 5;
            transition: 0.2s;
        }

        .slider-nav:hover {
            background: var(--lime);
            color: #fff;
            border-color: var(--lime);
        }

        .slider-nav.prev {
            left: -20px;
        }

        .slider-nav.next {
            right: -20px;
        }

        .slider {
            display: flex;
            gap: 1.5rem;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
        }

        .slider::-webkit-scrollbar {
            display: none;
        }

        .case-info {
            padding: 1.2rem;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .case-info h4 {
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
            color: var(--text);
        }

        .case-info p {
            font-size: 0.85rem;
            color: var(--text-secondary);
            line-height: 1.4;
            flex: 1;
            min-height: 2.8em;
            margin-bottom: 0;
        }

        .case-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .case-actions .btn {
            font-size: 0.78rem;
            padding: 0.45rem 0.9rem;
        }

        .slider>* {
            flex: 0 0 auto;
            scroll-snap-align: start;
        }

        .pdf-card {
            width: 300px;
            background: var(--bg-card);
            border-radius: var(--radius-sm);
            overflow: hidden;
            border: 1px solid var(--border);
            transition: 0.2s;
            box-shadow: var(--shadow-sm);
        }

        .pdf-card {
            background: var(--bg-card);
            border-radius: var(--radius-sm);
            overflow: hidden;
            border: 1px solid var(--border);
            transition: 0.2s;
            box-shadow: var(--shadow-sm);
        }

        .pdf-card:hover {
            transform: translateY(-6px);
            border-color: var(--lime);
        }

        .pdf-preview {
            background: linear-gradient(145deg, #2c2a26, #1f1e1b);
            padding: 1.5rem 1rem;
            text-align: center;
            color: #e5e5e5;
            font-family: monospace;
            border-bottom: 2px solid var(--lime);
        }

        .pdf-preview i {
            font-size: 3rem;
            color: var(--lime);
            margin-bottom: 0.5rem;
        }

        .pdf-page-num {
            font-size: 0.7rem;
            background: rgba(0, 0, 0, 0.5);
            display: inline-block;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
        }

        .pdf-info {
            padding: 1rem 1.2rem 1.2rem;
        }

        /* Process */
        .process-section {
            padding: 5.5rem 0 6.5rem;
            background: var(--bg);
        }

        .process-inner {
            max-width: 980px;
            margin: 0 auto;
        }

        .process-list {
            margin-top: 3.25rem;
            border-top: 1px solid var(--border);
        }

        .process-row {
            display: grid;
            grid-template-columns: 2.75rem minmax(0, 1fr) minmax(0, 1.15fr);
            gap: 1.25rem 2rem;
            align-items: baseline;
            padding: 1.85rem 0;
            border-bottom: 1px solid var(--border);
        }

        .process-row .wf-num {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--lime);
            letter-spacing: 0.04em;
            line-height: 1.2;
        }

        .process-row h4 {
            margin: 0;
            font-size: clamp(1.05rem, 1.6vw, 1.25rem);
            font-weight: 700;
            letter-spacing: -0.03em;
            line-height: 1.25;
            color: var(--text);
        }

        .process-row p {
            margin: 0;
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.55;
        }

        .step-circle { display: none; }

        @media (max-width: 720px) {
            .process-row {
                grid-template-columns: 2.25rem 1fr;
                gap: 0.35rem 1rem;
                padding: 1.5rem 0;
            }
            .process-row p {
                grid-column: 2;
                margin-top: 0.35rem;
            }
        }

        .testimonial-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 1.8rem;
            transition: 0.2s;
            width: calc(33.333% - 1rem);
        }

        @media (max-width: 992px) {
            .testimonial-card {
                width: calc(50% - 0.75rem);
            }
        }

        @media (max-width: 768px) {
            .testimonial-card {
                width: 100%;
            }
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            border-color: var(--lime);
        }

        .stars {
            color: var(--lime);
            margin-bottom: 1rem;
            letter-spacing: 4px;
        }

        .testimonial-text {
            font-style: italic;
            color: var(--text-secondary);
            margin: 1rem 0 1.2rem;
        }

        .client-info {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .client-avatar {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--lime), #b38f48);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
        }

        .faq-list {
            max-width: 760px;
            margin: 2rem auto 0;
        }

        .faq-item {
            border-bottom: 1px solid var(--border);
            overflow: hidden;
        }

        .faq-item:first-child {
            border-top: 1px solid var(--border);
        }

        .faq-question {
            width: 100%;
            padding: 1.4rem 0;
            background: transparent;
            border: none;
            font-weight: 600;
            font-size: 1.05rem;
            font-family: 'Inter', system-ui, sans-serif;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1.5rem;
            cursor: pointer;
            user-select: none;
            color: var(--text);
            text-align: left;
            transition: color 0.2s;
        }

        .faq-question:hover { color: var(--lime); }
        .faq-question:focus { outline: none; }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1), opacity 0.3s, padding 0.3s;
            color: var(--text-secondary);
            font-size: 0.92rem;
            line-height: 1.7;
            padding: 0;
            opacity: 0;
        }

        .faq-item.active .faq-answer {
            max-height: 400px;
            padding-bottom: 1.4rem;
            opacity: 1;
        }

        .faq-icon {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            border: 1.5px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            color: var(--lime);
            transition: transform 0.3s ease, border-color 0.2s;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
            border-color: var(--lime);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: stretch;
        }

        .contact-left {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .map-container {
            border-radius: var(--radius);
            overflow: hidden;
            border: 1px solid var(--border);
            height: 280px;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .contact-details-row {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 1.2rem;
            justify-content: space-between;
            align-items: center;
        }

        .contact-detail-item {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .contact-detail-item i {
            font-size: 1.4rem;
            color: var(--lime);
            width: 32px;
            text-align: center;
        }

        .contact-cta-section {
            background: var(--bg-secondary);
            padding: 5rem 0;
        }

        .contact-cta {
            text-align: center;
            max-width: 760px;
            margin: 0 auto;
            padding: clamp(2rem, 4vw, 3.5rem);
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
        }

        .contact-cta-label {
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--lime);
            margin-bottom: 0.75rem;
        }

        .contact-cta h2 {
            font-family: 'Inter', system-ui, sans-serif;
            font-size: clamp(2rem, 4vw, 2.8rem);
            margin-bottom: 1rem;
            line-height: 1.15;
        }

        .contact-cta-text {
            color: var(--text-secondary);
            font-size: 1.05rem;
            line-height: 1.7;
            margin-bottom: 2rem;
        }

        .contact-cta-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            margin: 1.25rem 0 1.5rem;
        }

        .contact-cta-actions .btn { min-width: 260px; justify-content:center; }

        .contact-cta-email {
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        .contact-cta-email a {
            color: var(--lime);
            text-decoration: none;
            font-weight: 600;
        }

        .contact-cta-email a:hover {
            text-decoration: underline;
        }

        .reveal {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        @media (prefers-reduced-motion: reduce) {
            .reveal {
                opacity: 1;
                transform: none;
                transition: none;
            }
        }

        @media (max-width: 768px) {

            .slider-nav {
                display: none;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }

            .container {
                padding: 0 1.5rem;
            }

            h1 {
                font-size: 2.6rem;
            }

            h2 {
                font-size: 2rem;
                margin-bottom: 2rem;
            }

            .card h3 {
                font-size: 1.4rem;
            }

            .faq-question {
                font-size: 1.2rem;
                padding: 1.2rem 1.5rem;
            }

            .faq-answer {
                font-size: 0.9rem;
                padding: 0 1.5rem 1.2rem;
            }

            .contact-details-row {
                flex-direction: column;
                align-items: flex-start;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .hero-buttons .btn {
                width: 100%;
            }
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
            justify-content: center;
        }

        /* Hero stats */
        .hero-stats {
            display: flex;
            gap: 3rem;
            margin-top: 2.8rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .hero-stat {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .stat-num {
            font-family: 'Inter', sans-serif;
            font-size: 2.2rem;
            font-weight: 800;
            color: #C5F135;
            line-height: 1;
            letter-spacing: -0.04em;
        }

        .hero-stat span:last-child {
            font-size: 0.68rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.35);
            margin-top: 0.25rem;
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }


        /* Mobile menu close */
        .mobile-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            background: none;
            border: none;
            font-size: 2rem;
            color: var(--text-muted);
            cursor: pointer;
            line-height: 1;
            padding: 0.5rem;
            transition: color 0.2s;
        }

        .mobile-close:hover {
            color: var(--lime);
        }

        /* Visually hidden labels for accessibility */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
        }

        .portfolio-toolbar { display:flex; flex-wrap:wrap; gap:.65rem; margin:2rem 0; }
        .portfolio-copy { padding:1.15rem; }
        .portfolio-copy h3 { margin:0 0 .5rem; font-size:1.35rem; }
        .portfolio-copy p { margin:0 0 .9rem; color:var(--text-muted); line-height:1.55; }
        .portfolio-tags { display:flex; flex-wrap:wrap; gap:.45rem; }
        .portfolio-tag { font-size:.76rem; color:var(--lime); border:1px solid rgba(197,241,53,.35); border-radius:999px; padding:.25rem .55rem; }
        .proof-note { margin-top:1.5rem; color:rgba(255,255,255,0.3); font-size:.82rem; text-align:center; }
        #cases .slider-wrapper { display:block; }
        #cases .slider-nav { display:none; }
        #cases .slider { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:1.25rem; overflow:visible; }
        #cases .portfolio-toggle { min-width:190px; }
        .case-proof { margin-top:.9rem; padding-top:.9rem; border-top:1px solid var(--border); color:var(--text-secondary); font-size:.86rem; line-height:1.55; }
        .case-proof strong { color:var(--text); }
        /* ===== Hero stat cards ===== */
        .hero-cards-strip {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0.85rem;
            margin-top: 1.75rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.07);
            position: relative; z-index: 1;
            pointer-events: none;
        }
        .hsc {
            display: flex; align-items: center; gap: 0.9rem;
            padding: 1.1rem 1.4rem;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.07);
            border-radius: 16px;
            white-space: nowrap;
        }
        .hsc-icon {
            width: 44px; height: 44px; border-radius: 11px;
            background: #C5F135;
            display: flex; align-items: center; justify-content: center;
            color: #0D0D0D; font-size: 1.1rem; flex-shrink: 0;
        }
        .hsc-num {
            font-size: 1.3rem; font-weight: 800; color: #F0F0F0;
            letter-spacing: -0.03em; line-height: 1;
        }
        .hsc-lbl {
            font-size: 0.78rem; font-weight: 600;
            color: rgba(255,255,255,0.6); margin-top: 0.12rem;
        }
        .hsc-sub {
            font-size: 0.68rem; color: rgba(255,255,255,0.25); margin-top: 0.06rem;
        }
        @media (max-width: 860px) {
            .hero-cards-strip { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 480px) {
            .hero-cards-strip { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
            .hsc { padding: 0.85rem 0.9rem; }
        }

        /* ===== Calculator v2 ===== */

        .calc-section { background: #07090A; padding: 5rem 0 6rem; }
        .calc-header { text-align: center; margin-bottom: 2.5rem; }

        /* Card shell */
        .calc-card {
            background: #0F1117;
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 28px;
            overflow: hidden;
            max-width: 980px;
            margin: 0 auto;
            width: 100%;
        }
        .calc-card-inner {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(0, 300px);
        }

        /* Left - simulation */
        .calc-left {
            padding: 2.5rem;
            border-right: 1px solid rgba(255,255,255,0.06);
            min-width: 0;
        }
        .calc-left-head {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.75rem;
        }
        .calc-sim-title {
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.35);
        }
        /* Service tabs inside card */
        .calc-svc-tabs {
            display: flex; gap: 0.3rem;
        }
        .calc-svc-tab {
            padding: 0.38rem 0.85rem;
            border-radius: 8px; border: none;
            background: rgba(255,255,255,0.05);
            color: rgba(255,255,255,0.4);
            font: inherit; font-size: 0.76rem; font-weight: 600;
            cursor: pointer; transition: all 0.15s;
        }
        .calc-svc-tab.active { background: #C5F135; color: #0D0D0D; }
        .calc-svc-tab:hover:not(.active) { background: rgba(255,255,255,0.09); color: rgba(255,255,255,0.75); }

        /* Field rows */
        .calc-fields-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.7rem;
            margin-bottom: 1.25rem;
        }
        .calc-field {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.07);
            border-radius: 12px;
            padding: 0.75rem 1rem;
            transition: border-color 0.18s;
        }
        .calc-field:focus-within { border-color: rgba(197,241,53,0.45); }
        .calc-field-lbl {
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 0.07em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.25);
            display: block;
            margin-bottom: 0.35rem;
        }
        .calc-field select {
            width: 100%; background: none; border: none;
            color: #E8E8E8; font: inherit;
            font-size: 0.85rem; font-weight: 500;
            outline: none; cursor: pointer;
            appearance: none;
        }
        .calc-field select option { background: #1a1a1a; color: #E8E8E8; }

        /* Extras */
        .calc-extras-lbl {
            font-size: 0.65rem; font-weight: 700;
            letter-spacing: 0.07em; text-transform: uppercase;
            color: rgba(255,255,255,0.25); margin-bottom: 0.65rem;
        }
        .calc-extras-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 0.45rem;
        }
        .calc-extra {
            display: flex; align-items: center; gap: 0.55rem;
            padding: 0.55rem 0.8rem;
            background: rgba(255,255,255,0.02);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 10px; cursor: pointer; transition: all 0.15s;
            min-width: 0;
        }
        .calc-extra input { display: none; }
        .calc-extra-box {
            width: 14px; height: 14px; border-radius: 3px;
            border: 1.5px solid rgba(255,255,255,0.18);
            flex-shrink: 0; position: relative; transition: all 0.12s;
        }
        .calc-extra input:checked ~ .calc-extra-box {
            background: #C5F135; border-color: #C5F135;
        }
        .calc-extra-box::after {
            content: '';
            position: absolute;
            left: 3px; top: 1px;
            width: 4px; height: 7px;
            border: 1.5px solid #0D0D0D;
            border-top: none; border-left: none;
            transform: rotate(45deg);
            opacity: 0; transition: opacity 0.1s;
        }
        .calc-extra input:checked ~ .calc-extra-box::after { opacity: 1; }
        .calc-extra-txt {
            font-size: 0.74rem;
            color: rgba(255,255,255,0.38);
            flex: 1;
            min-width: 0;
            transition: color 0.15s;
        }
        .calc-extra-price {
            font-size: 0.68rem;
            color: rgba(255,255,255,0.22);
            flex-shrink: 0;
            white-space: nowrap;
        }
        .calc-extra:has(input:checked) { border-color: rgba(197,241,53,0.2); }
        .calc-extra:has(input:checked) .calc-extra-txt { color: rgba(255,255,255,0.78); }

        /* Right - result */
        .calc-right {
            padding: 2.5rem 1.75rem;
            display: flex; flex-direction: column;
            background: #090B0F;
            min-width: 0;
        }
        .calc-right-title {
            font-size: 0.7rem; font-weight: 700;
            letter-spacing: 0.1em; text-transform: uppercase;
            color: rgba(255,255,255,0.25); margin-bottom: 2rem;
        }
        .calc-price-block { margin-bottom: 1.25rem; }
        .calc-from-label {
            font-size: 0.72rem; color: rgba(255,255,255,0.3);
            font-weight: 500; margin-bottom: 0.2rem;
        }
        .calc-price-display {
            font-size: 3.2rem; font-weight: 800;
            color: #C5F135; letter-spacing: -0.04em; line-height: 1;
            word-break: break-word;
        }
        .calc-per-note {
            display: inline-block;
            margin-top: 0.6rem;
            padding: 0.3rem 0.85rem;
            background: rgba(197,241,53,0.08);
            border: 1px solid rgba(197,241,53,0.2);
            border-radius: 999px;
            font-size: 0.68rem; color: rgba(197,241,53,0.7); font-weight: 600;
        }
        .calc-tl-badge {
            display: flex; align-items: center; gap: 0.45rem;
            font-size: 0.74rem; color: rgba(255,255,255,0.38);
            margin: 1.25rem 0 1rem;
        }
        .calc-tl-dot {
            width: 6px; height: 6px; border-radius: 50%;
            background: #C5F135; flex-shrink: 0;
        }
        .calc-breakdown {
            border-top: 1px solid rgba(255,255,255,0.05);
            padding-top: 0.75rem; margin-bottom: 1.25rem; flex: 1;
        }
        .calc-br-row {
            display: flex; justify-content: space-between; gap: 0.75rem;
            font-size: 0.71rem; color: rgba(255,255,255,0.28); padding: 0.16rem 0;
        }
        .calc-br-row span:first-child { min-width: 0; }
        .calc-br-row span:last-child { color: rgba(255,255,255,0.52); flex-shrink: 0; }
        .calc-cta-btn {
            display: flex; align-items: center; justify-content: center; gap: 0.4rem;
            padding: 0.85rem; border-radius: 14px;
            background: #C5F135; color: #0D0D0D;
            font-weight: 700; font-size: 0.86rem;
            text-decoration: none; transition: opacity 0.2s;
        }
        .calc-cta-btn:hover { opacity: 0.86; }

        @media (max-width: 720px) {
            .calc-section { padding: 3.5rem 0 7.5rem; }
            .calc-card {
                max-width: 100%;
                border-radius: 20px;
                overflow: hidden;
            }
            .calc-card-inner {
                grid-template-columns: minmax(0, 1fr);
            }
            .calc-left {
                border-right: none;
                border-bottom: 1px solid rgba(255,255,255,0.06);
                padding: 1.25rem 1.1rem 1.5rem;
                min-width: 0;
            }
            .calc-right { padding: 1.5rem 1.1rem 1.35rem; }
            .calc-price-display { font-size: 2.4rem; }
            .calc-left-head {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.85rem;
                margin-bottom: 1.25rem;
            }
            .calc-svc-tabs {
                flex-wrap: wrap;
                width: 100%;
            }
            .calc-svc-tab { padding: 0.4rem 0.7rem; font-size: 0.72rem; }
            .calc-fields-grid,
            .calc-extras-grid {
                grid-template-columns: minmax(0, 1fr);
            }
            .calc-extra {
                min-width: 0;
                padding: 0.65rem 0.75rem;
            }
        }
        /* ===== end Calculator v2 ===== */

        .cases-soon-section { background: var(--bg-secondary); padding: 5rem 0; }
        .cases-soon {
            margin-top: 2rem;
            border: 1px solid var(--border);
            border-radius: 32px;
            background: var(--bg-card);
            padding: clamp(3rem, 8vw, 5.5rem) 2rem;
            text-align: center;
        }
        .cases-soon-label {
            margin: 0;
            font-family: 'Inter', system-ui, sans-serif;
            font-size: clamp(2rem, 5vw, 3.2rem);
            font-weight: 600;
            color: var(--text);
            letter-spacing: -0.02em;
        }
        .cases-soon-text {
            margin: 0.85rem auto 0;
            max-width: 420px;
            color: var(--text-muted);
            font-size: 1rem;
            line-height: 1.55;
        }

        /* ---- Form section split layout ---- */
        .aston-form-section {
            background: var(--bg-secondary);
            padding: 5rem 0 6rem;
        }
        .aston-form-split {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            align-items: center;
            max-width: 640px;
            margin: 0 auto;
        }
        .aston-form-left {
            padding-left: 1rem;
        }
        .aston-form-left h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            line-height: 1.1;
            margin: 0 0 0.6rem;
        }
        .aston-form-left p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0 0 2rem;
            max-width: 420px;
        }
        /* Form inputs */
        .aston-form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
        }
        .aston-form input,
        .aston-form select,
        .aston-form textarea {
            width: 100%;
            border: 1.5px solid var(--border);
            border-radius: 14px;
            padding: 0.9rem 1.1rem;
            background: var(--bg-card);
            color: var(--text);
            font: inherit;
            font-size: 0.9rem;
            box-sizing: border-box;
            transition: border-color 0.2s;
            outline: none;
        }
        .aston-form input:focus,
        .aston-form select:focus,
        .aston-form textarea:focus {
            border-color: var(--lime);
        }
        .aston-form input.is-invalid,
        .aston-form select.is-invalid,
        .aston-form textarea.is-invalid {
            border-color: #e5484d;
            background: rgba(229, 72, 77, 0.04);
            box-shadow: 0 0 0 3px rgba(229, 72, 77, 0.12);
        }
        .aston-form .quick-form-consent.is-invalid .consent-box {
            border-color: #e5484d;
            box-shadow: 0 0 0 3px rgba(229, 72, 77, 0.12);
        }
        .aston-form .quick-form-consent.is-invalid {
            color: #c23438;
        }
        .aston-form select { appearance: none; cursor: pointer; }
        .aston-form textarea {
            min-height: 120px;
            resize: vertical;
            margin-bottom: 1rem;
        }
        .aston-form input::placeholder,
        .aston-form textarea::placeholder { color: var(--text-muted); }
        /* Custom checkbox */
        .aston-form-consent { margin: 0 0 1.25rem; }
        .aston-form .quick-form-consent {
            display: flex;
            align-items: flex-start;
            gap: 0.65rem;
            color: var(--text-secondary);
            font-size: 0.82rem;
            line-height: 1.5;
            cursor: pointer;
        }
        .aston-form .quick-form-consent input[type="checkbox"] {
            display: none;
        }
        .aston-form .consent-box {
            flex-shrink: 0;
            width: 20px; height: 20px;
            border-radius: 6px;
            border: 1.5px solid var(--border);
            background: var(--bg-card);
            display: flex; align-items: center; justify-content: center;
            margin-top: 1px;
            transition: border-color 0.2s, background 0.2s;
        }
        .aston-form .quick-form-consent input[type="checkbox"]:checked + .consent-box {
            background: var(--lime);
            border-color: var(--lime);
        }
        .aston-form .consent-box::after {
            content: '';
            display: block;
            width: 5px; height: 9px;
            border: 2px solid #141414;
            border-top: none; border-left: none;
            transform: rotate(45deg) translateY(-1px);
            opacity: 0;
            transition: opacity 0.15s;
        }
        .aston-form .quick-form-consent input[type="checkbox"]:checked + .consent-box::after {
            opacity: 1;
        }
        /* Submit */
        .aston-form-submit {
            position: relative;
            width: 100%;
            min-height: 54px;
            border-radius: 999px;
            border: none;
            background: var(--lime);
            color: #141414;
            font: inherit;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: opacity 0.2s, transform 0.2s, background 0.2s;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }
        .aston-form-submit:hover { opacity: 0.88; transform: translateY(-1px); }
        .aston-form-submit:disabled,
        .aston-form-submit.is-loading {
            opacity: 1;
            cursor: wait;
            transform: none;
            background: #cfe86a;
        }
        .aston-form-submit-label {
            transition: opacity 0.15s;
        }
        .aston-form-submit-spinner {
            position: absolute;
            width: 1.15rem;
            height: 1.15rem;
            border: 2.5px solid rgba(20, 20, 20, 0.2);
            border-top-color: #141414;
            border-radius: 50%;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.15s;
        }
        .aston-form-submit.is-loading .aston-form-submit-label {
            opacity: 0;
        }
        .aston-form-submit.is-loading .aston-form-submit-spinner {
            opacity: 1;
            animation: dv-spin 0.7s linear infinite;
        }
        @keyframes dv-spin {
            to { transform: rotate(360deg); }
        }
        .aston-form-email {
            margin: 1.5rem 0 0;
            color: var(--text-secondary);
            font-size: 0.88rem;
            display: flex;
            flex-wrap: wrap;
            gap: 0.65rem 1.1rem;
            align-items: center;
        }
        .aston-form-channel {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            text-decoration: none !important;
        }
        .aston-form-email a {
            color: var(--text);
            text-decoration: underline;
            text-underline-offset: 3px;
            font-weight: 600;
        }
        .aston-form-email a:hover { color: var(--lime); }
        .aston-form-note { margin: 0 0 1rem; color: var(--text-muted); font-size: 0.78rem; }

        /* Floating toast */
        .dv-toast {
            position: fixed;
            left: 50%;
            bottom: 1.5rem;
            z-index: 10050;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            min-width: min(420px, calc(100vw - 2rem));
            max-width: calc(100vw - 2rem);
            padding: 0.9rem 1rem 0.9rem 0.95rem;
            border-radius: 16px;
            background: #141414;
            color: #f5f5f5;
            box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
            transform: translate(-50%, 120%);
            opacity: 0;
            pointer-events: none;
            transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
        }
        .dv-toast.is-visible {
            transform: translate(-50%, 0);
            opacity: 1;
            pointer-events: auto;
        }
        .dv-toast-icon {
            flex-shrink: 0;
            width: 2rem;
            height: 2rem;
            border-radius: 999px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
        }
        .dv-toast.is-success .dv-toast-icon {
            background: rgba(197, 241, 53, 0.2);
            color: var(--lime);
        }
        .dv-toast.is-error .dv-toast-icon {
            background: rgba(255, 90, 90, 0.18);
            color: #ff8f8f;
        }
        .dv-toast-text {
            flex: 1;
            font-size: 0.9rem;
            line-height: 1.4;
            font-weight: 500;
        }
        .dv-toast-close {
            flex-shrink: 0;
            width: 1.75rem;
            height: 1.75rem;
            border: none;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.08);
            color: rgba(255, 255, 255, 0.7);
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: background 0.15s, color 0.15s;
        }
        .dv-toast-close:hover {
            background: rgba(255, 255, 255, 0.14);
            color: #fff;
        }
        @media (max-width: 768px) {
            .dv-toast {
                bottom: 5.75rem;
            }
        }
        @media (max-width: 860px) {
            .aston-form-split { grid-template-columns: 1fr; }
        }

        @media (max-width: 768px) {
            
            .aston-form-grid { grid-template-columns: 1fr; }
            body { padding-bottom: 5.5rem; }
            .hero-stats {
                gap: 1.8rem;
            }

            .stat-num {
                font-size: 2rem;
            }
        }
        @media (min-width:769px) and (max-width:1050px) {  }

        /* ===== HERO REBRAND - TECH DARK ===== */
        .hero {
            background: #07090A;
            padding: 5.5rem 0 2.75rem;
        }

        .hero::before {
            background:
                radial-gradient(ellipse 55% 70% at 78% 45%, rgba(197, 241, 53, 0.07) 0%, transparent 65%),
                radial-gradient(ellipse 35% 45% at 8% 85%, rgba(197, 241, 53, 0.04) 0%, transparent 55%);
            opacity: 1;
        }

        .hero-grid-bg {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(197, 241, 53, 0.028) 1px, transparent 1px),
                linear-gradient(90deg, rgba(197, 241, 53, 0.028) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
            z-index: 0;
        }

        .hero-split {
            display: grid;
            grid-template-columns: 44% 56%;
            gap: 1rem;
            align-items: center;
            position: relative;
            z-index: 1;
            min-height: 0;
        }

        .hero-left { display: flex; flex-direction: column; align-items: flex-start; }

        .hero-content { max-width: none; margin: 0; text-align: left; }

        .hero .hero-badge {
            background: none;
            border: none;
            padding: 0;
            color: #C5F135;
            font-size: 0.82rem;
            letter-spacing: 0.04em;
            gap: 10px;
        }
        .hero .hero-badge i { font-size: 1rem; }
        .hero .hero-badge .badge-dot {
            width: 4px; height: 4px; border-radius: 50%;
            background: #C5F135; opacity: 0.6; flex-shrink: 0;
        }

        .hero h1 {
            font-family: 'Inter', sans-serif;
            font-weight: 800;
            letter-spacing: -0.04em;
            color: #F0F0F0;
            font-size: clamp(2.4rem, 5vw, 3.7rem);
        }

        .hero .lime-text { color: #C5F135; }
        .hero .lime-text::after { display: none; }

        .hero .hero-lead {
            color: rgba(235, 235, 235, 0.52);
            font-size: 1.05rem;
            max-width: 520px;
            margin: 0;
            text-align: left;
        }

        .hero .hero-buttons { justify-content: flex-start; }

        .hero .btn-primary {
            background: #C5F135;
            color: #07090A;
            font-weight: 700;
            box-shadow: 0 0 28px rgba(197, 241, 53, 0.28);
        }

        .hero .btn-primary:hover {
            background: #D4F858;
            box-shadow: 0 0 44px rgba(197, 241, 53, 0.5);
            transform: translateY(-2px);
        }

        .hero .btn-outline {
            border-color: rgba(242, 242, 242, 0.17);
            color: rgba(242, 242, 242, 0.6);
        }

        .hero .btn-outline:hover {
            background: rgba(242, 242, 242, 0.06);
            border-color: rgba(242, 242, 242, 0.38);
            color: #F0F0F0;
            transform: translateY(-2px);
        }

        .hero .hero-stats {
            justify-content: flex-start;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(242, 242, 242, 0.08);
        }

        .hero .hero-stat { align-items: flex-start; }

        .hero .stat-num {
            font-family: 'Inter', sans-serif;
            font-weight: 800;
            color: #C5F135;
        }

        .hero .hero-stat span:last-child { color: rgba(242, 242, 242, 0.38); }

        .hero .floating-shape {
            background: radial-gradient(circle, rgba(197, 241, 53, 0.05) 0%, transparent 70%);
        }

        /* ===== HERO VISUAL ===== */
        .hero-right {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: visible;
            min-height: 0;
        }

        .hero-stage {
            position: relative;
            width: 100%;
            max-width: 640px;
            aspect-ratio: 1.15 / 1;
            margin: 0 auto;
        }

        .hero-stage-glow {
            display: none;
        }

        .hero-laptop {
            position: absolute;
            right: -2%;
            top: 4%;
            width: 96%;
            height: auto;
            filter: drop-shadow(0 18px 36px rgba(0,0,0,0.35));
            z-index: 1;
        }

        .hero-phone {
            position: absolute;
            left: 0;
            bottom: 0;
            width: 28%;
            height: auto;
            filter: drop-shadow(0 16px 28px rgba(0,0,0,0.4));
            z-index: 2;
        }

        @media (max-width: 960px) {
            .hero {
                padding: 1.25rem 0 2rem;
            }
            .hero-split { grid-template-columns: 1fr; gap: 0; }
            .hero-right { display: none; }
            .hero .hero-content { text-align: center; }
            .hero .hero-lead { text-align: center; margin: 0 auto; }
            .hero .hero-buttons { justify-content: center; }
            .hero .hero-stats { justify-content: center; }
            .hero .hero-stat { align-items: center; }
            .hero h1 { font-size: clamp(1.85rem, 8vw, 2.5rem); }
        }

        /* ============================================================
           MARQUEE BAND
        ============================================================ */
        .marquee-band {
            overflow: hidden;
            background: #0D0D0D;
            padding: 1.1rem 0;
            border-top: 1px solid rgba(255,255,255,0.05);
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        .marquee-inner {
            display: flex;
            width: max-content;
            will-change: transform;
            backface-visibility: hidden;
            animation: marqueeScroll 36s linear infinite;
        }

        html[dir="rtl"] .marquee-inner {
            animation-name: marqueeScrollRtl;
        }

        @media (prefers-reduced-motion: reduce) {
            .marquee-inner { animation: none !important; }
        }

        .marquee-group {
            display: flex;
            flex-shrink: 0;
            align-items: center;
        }

        .marquee-item {
            display: inline-flex;
            align-items: center;
            padding: 0 1.75rem;
            font-family: inherit;
            font-size: 0.78rem;
            font-weight: 700;
            color: rgba(255,255,255,0.55);
            text-transform: uppercase;
            letter-spacing: 0.14em;
            white-space: nowrap;
        }

        .marquee-star {
            color: #C5F135;
            font-size: 0.85rem;
            padding: 0 0.35rem;
            flex-shrink: 0;
        }

        @keyframes marqueeScroll {
            from { transform: translate3d(0, 0, 0); }
            to { transform: translate3d(-50%, 0, 0); }
        }

        @keyframes marqueeScrollRtl {
            from { transform: translate3d(0, 0, 0); }
            to { transform: translate3d(50%, 0, 0); }
        }

        /* ============================================================
           NUMBERED SERVICES LIST
        ============================================================ */
        .svc-section {
            padding: 7rem 0;
            background: var(--bg);
        }

        .svc-section-head {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: end;
            margin-bottom: 3.5rem;
        }

        .svc-label {
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 0.6rem;
            margin-bottom: 0.85rem;
        }

        .svc-label::before {
            content: '';
            display: block;
            width: 28px;
            height: 2px;
            background: #C5F135;
        }

        .svc-section-heading {
            font-family: 'Inter', sans-serif;
            font-size: clamp(2.2rem, 4.5vw, 3.5rem);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.04em;
            color: var(--text);
            margin: 0;
            text-align: left;
        }

        .svc-section-sub {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.7;
            align-self: end;
            padding-left: 1.5rem;
            border-left: 2px solid var(--border);
        }

        .svc-action {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-shrink: 0;
            padding-top: 0.3rem;
        }

        .svc-btn-pill {
            background: #C5F135;
            color: #0D0D0D;
            font-weight: 700;
            font-size: 0.8rem;
            padding: 0.55rem 1.2rem;
            border-radius: 100px;
            text-decoration: none;
            white-space: nowrap;
            transition: background 0.2s;
        }

        .svc-btn-pill:hover { background: #D4F858; }

        .svc-btn-circle {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--text);
            color: var(--bg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            text-decoration: none;
            flex-shrink: 0;
            transition: background 0.2s;
        }

        .svc-btn-circle:hover { background: #C5F135; color: #0D0D0D; }

        .svc-price-tag {
            font-size: 0.78rem;
            font-weight: 600;
            color: #C5F135;
            margin-top: 0.5rem;
            display: block;
        }

        @media (max-width: 700px) {
            .svc-action { display: none; }
            .svc-section-head { grid-template-columns: 1fr; }
        }

        /* ============================================================
           GREEN CTA BAND
        ============================================================ */
        .cta-green-band {
            background: #C5F135;
            padding: 5rem 0;
        }

        .cta-green-layout {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
        }

        .cta-green-eyebrow {
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: rgba(7,9,10,0.5);
            margin-bottom: 0.75rem;
        }

        .cta-green-heading {
            font-family: 'Inter', sans-serif;
            font-size: clamp(2.4rem, 5vw, 4rem);
            font-weight: 800;
            letter-spacing: -0.04em;
            line-height: 1.1;
            color: #07090A;
            margin: 0;
        }

        .cta-green-right {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 1rem;
            flex-shrink: 0;
        }

        .cta-green-arrow {
            width: 90px;
            height: 90px;
            background: #07090A;
            border-radius: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: #C5F135;
            text-decoration: none;
            transition: transform 0.2s, border-radius 0.2s;
        }

        .cta-green-arrow:hover { transform: scale(1.06); border-radius: 50%; }

        .cta-green-sub {
            font-size: 0.82rem;
            color: rgba(7,9,10,0.55);
            text-align: right;
            max-width: 200px;
        }

        @media (max-width: 600px) {
            .cta-green-layout { flex-direction: column; align-items: flex-start; }
            .cta-green-right { align-items: flex-start; }
        }

        /* ============================================================
           TRUST STATS SECTION
        ============================================================ */
        .trust-section {
            padding: 7rem 0;
            background: var(--bg);
        }

        .trust-header {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 3rem;
            align-items: end;
            margin-bottom: 2.5rem;
        }

        .trust-heading {
            font-family: 'Inter', sans-serif;
            font-size: clamp(2.4rem, 5vw, 3.8rem);
            font-weight: 800;
            line-height: 1.08;
            letter-spacing: -0.04em;
            color: var(--text);
            margin: 0;
            text-align: left;
        }

        .trust-sub {
            font-size: 0.95rem;
            color: var(--text-secondary);
            max-width: 260px;
            line-height: 1.65;
            text-align: right;
            align-self: end;
        }

        .trust-body {
            display: grid;
            grid-template-columns: 130px 1fr 250px;
            gap: 1rem;
            align-items: stretch;
        }

        .trust-proof {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-top: 1.25rem;
        }

        .trust-proof-item {
            border: 1px solid rgba(0,0,0,0.08);
            background: var(--bg-secondary, #f7f7f5);
            border-radius: 1.1rem;
            padding: 1.15rem 1.25rem;
            display: flex;
            flex-direction: column;
            gap: 0.35rem;
        }

        .trust-proof-item strong {
            font-size: 0.95rem;
            letter-spacing: -0.01em;
        }

        .trust-proof-item span {
            color: var(--text-secondary);
            font-size: 0.88rem;
            line-height: 1.5;
        }

        html[dir="rtl"] .trust-heading,
        html[dir="rtl"] .trust-sub {
            text-align: start;
        }

        @media (max-width: 768px) {
            .trust-proof {
                grid-template-columns: 1fr;
            }
        }

        .trust-accent {
            background: #C5F135;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.8rem;
            color: #07090A;
            min-height: 200px;
        }

        .trust-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: repeat(2, 1fr);
            gap: 0;
            border: 1px solid var(--border);
            border-radius: 20px;
            overflow: hidden;
        }

        .trust-stat {
            padding: 1.6rem 1.4rem;
            border-right: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
        }

        .trust-stat:nth-child(3),
        .trust-stat:nth-child(6) { border-right: none; }
        .trust-stat:nth-child(4),
        .trust-stat:nth-child(5),
        .trust-stat:nth-child(6) { border-bottom: none; }

        .trust-stat-num {
            font-family: 'Inter', sans-serif;
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.03em;
            color: var(--text);
            line-height: 1;
        }

        .trust-plus { color: #C5F135; }
        .trust-unit { font-size: 1.1rem; font-weight: 600; color: var(--text-secondary); }

        .trust-stat-label {
            font-size: 0.78rem;
            color: var(--text-secondary);
            line-height: 1.4;
            margin-top: 0.15rem;
        }

        .trust-cta-card {
            background: #07090A;
            color: #F0F0F0;
            border-radius: 20px;
            padding: 2rem 1.75rem;
            text-decoration: none;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            font-family: 'Inter', sans-serif;
            font-size: 1.35rem;
            font-weight: 700;
            line-height: 1.25;
            transition: transform 0.2s;
        }

        .trust-cta-card:hover { transform: translateY(-3px); }

        .trust-arrow {
            width: 52px;
            height: 52px;
            background: #C5F135;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #07090A;
            font-size: 1.2rem;
            margin-top: 2rem;
            align-self: flex-end;
            flex-shrink: 0;
        }

        @media (max-width: 860px) {
            .trust-body { grid-template-columns: 1fr; }
            .trust-accent { min-height: 90px; flex-direction: row; gap: 1rem; font-size: 2rem; }
            .trust-header { grid-template-columns: 1fr; }
            .trust-sub { text-align: left; max-width: none; }
            .trust-cta-card { flex-direction: row; align-items: center; font-size: 1.1rem; }
            .trust-arrow { margin-top: 0; margin-left: auto; }
        }

        /* ============================================================
           TEAM SECTION
        ============================================================ */
        .team-section {
            padding: 7rem 0;
            background: var(--bg-secondary);
        }

        .team-layout {
            display: grid;
            grid-template-columns: minmax(0, 380px) minmax(0, 440px);
            gap: 4rem 5rem;
            align-items: center;
            justify-content: center;
            max-width: 960px;
            margin: 0 auto;
        }

        .team-avatars-wrap {
            position: relative;
            width: 100%;
        }

        .team-avatars {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.25rem;
        }

        .team-avatar {
            position: relative;
            width: 100%;
            aspect-ratio: 1 / 1;
            border-radius: 50%;
            overflow: hidden;
            display: block;
            clip-path: circle(50% at 50% 50%);
            -webkit-clip-path: circle(50% at 50% 50%);
            background: #1a1f18;
            isolation: isolate;
        }

        .team-avatar-media {
            display: block;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            overflow: hidden;
        }

        .team-avatar svg {
            display: block;
            width: 100%;
            height: 100%;
            border-radius: 50%;
        }
        .team-avatar--blurred .team-avatar-media {
            filter: blur(6px);
            transform: scale(1.12);
            transform-origin: center;
            opacity: 0.55;
        }
        .team-avatar-soon {
            position: absolute; inset: 0;
            display: flex; align-items: center; justify-content: center;
            font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
            color: rgba(255,255,255,0.45); text-transform: uppercase;
            z-index: 1;
            pointer-events: none;
        }

        .team-green-dot {
            position: absolute;
            background: #C5F135;
            border-radius: 50%;
        }

        .team-green-dot-1 {
            width: 48px; height: 48px;
            bottom: 8%; left: 46%;
            transform: translateX(-50%);
        }

        .team-green-dot-2 {
            width: 30px; height: 30px;
            top: 46%; right: -3%;
        }

        .team-text { display: flex; flex-direction: column; align-items: flex-start; }

        .team-badge {
            display: inline-flex;
            align-items: center;
            background: #C5F135;
            color: #07090A;
            font-size: 0.82rem;
            font-weight: 700;
            padding: 0.4rem 1rem;
            border-radius: 100px;
            margin-bottom: 1.25rem;
            letter-spacing: 0.02em;
        }

        .team-heading {
            font-family: 'Inter', sans-serif;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            letter-spacing: -0.04em;
            line-height: 1.1;
            margin: 0 0 1.5rem;
            text-align: left;
        }

        .team-desc {
            color: var(--text-secondary);
            font-size: 1rem;
            line-height: 1.75;
            margin-bottom: 2rem;
            max-width: 420px;
        }

        .team-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text);
            border: 1.5px solid var(--border);
            padding: 0.8rem 1.5rem;
            border-radius: 100px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: border-color 0.2s, color 0.2s;
        }

        .team-link:hover { border-color: #C5F135; color: #C5F135; }

        @media (max-width: 860px) {
            .team-layout {
                grid-template-columns: 1fr;
                gap: 3rem;
                max-width: 420px;
            }
            .team-avatars { max-width: 360px; margin: 0 auto; }
            .team-text { align-items: center; text-align: center; }
            .team-heading { text-align: center; }
            .team-desc { max-width: none; }
        }


/* ===== A11y ===== */
:focus-visible {
    outline: 2px solid #C5F135;
    outline-offset: 3px;
}
.calc-svc-tab:focus-visible,
.calc-extra:focus-within,
.calc-field:focus-within,
.calc-cta-btn:focus-visible,
.btn:focus-visible,
.team-link:focus-visible {
    outline: 2px solid #C5F135;
    outline-offset: 2px;
}
.hero .hero-lead { color: rgba(235, 235, 235, 0.72); }
.calc-sim-title,
.calc-right-title,
.calc-field-lbl,
.calc-extras-lbl { color: rgba(255,255,255,0.55); }
.calc-extra-txt { color: rgba(255,255,255,0.62); }
.calc-extra-price { color: rgba(255,255,255,0.45); }
.calc-from-label,
.calc-tl-badge { color: rgba(255,255,255,0.55); }
.calc-br-row { color: rgba(255,255,255,0.5); }
.calc-br-row span:last-child { color: rgba(255,255,255,0.78); }
.calc-header p { color: rgba(255,255,255,0.55) !important; }
.svc-label { color: #6b6b6b; }

