 /* ==========================================================
       بارگذاری فونت وزیرمتن از داخل CSS
       دلیل: وردپرس هنگام درج محتوای صفحه، تگ‌های <link> داخل <head> را
       نادیده می‌گیرد/حذف می‌کند و فونت هرگز بارگذاری نمی‌شود.
       نکته: @import باید همیشه اولین دستور داخل <style> باشد.
       ========================================================== */
        @import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;600;700;800;900&display=swap');

        /* ==========================================================
       CSS VARIABLES & DESIGN SYSTEM (FALAT THEME)
       ========================================================== */
        :root {
            --bg-main: #132524;
            --bg-darker: #0c1918;
            --bg-lighter: #1c3936;
            --bg-card: rgba(28, 57, 54, 0.45);
            --bg-card-hover: rgba(28, 57, 54, 0.75);

            --gold-primary: #e9c576;
            --gold-glow: rgba(233, 197, 118, 0.25);
            --gold-subtle: rgba(233, 197, 118, 0.12);

            --text-main: #fbf3de;
            --text-muted: #a9beba;
            --text-dim: #6d8480;

            --border-subtle: rgba(233, 197, 118, 0.18);
            --border-active: rgba(233, 197, 118, 0.6);

            --font-base: 'Vazirmatn', -apple-system, BlinkMacSystemFont, sans-serif;
            --transition-smooth: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
        }

        /* Reset & Base Setup */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            background-color: var(--bg-main);
            color: var(--text-main);
            font-family: var(--font-base);
        }

        /* ==========================================================
       تثبیت فونت در برابر استایل قالب وردپرس
       دلیل: قالب‌های وردپرس معمولاً روی «body» فونت تعریف می‌کنند و چون
       تعریف مستقیم روی body بر ارث‌بری از html اولویت دارد، فونت صفحه
       بازنویسی می‌شد. با «html body» + وراثت اجباری روی فرزندان،
       فونت در هر قالبی پایدار می‌ماند.
       ========================================================== */
        html body,
        html body *:not(svg):not(use):not(path):not(circle):not(rect):not(ellipse):not(.card-num) {
            font-family: var(--font-base) !important;
        }

        body {
            background-color: var(--bg-main);
            background-image:
                radial-gradient(circle at 15% 20%, rgba(233, 197, 118, 0.04) 0%, transparent 45%),
                radial-gradient(circle at 85% 65%, rgba(28, 57, 54, 0.6) 0%, transparent 55%),
                linear-gradient(to bottom, var(--bg-darker), var(--bg-main) 30%, var(--bg-darker));
            line-height: 1.75;
            overflow-x: hidden;
            font-feature-settings: 'cv01' on;
        }

        /* ==========================================================
       سیستم آیکون SVG: جایگزین فونت‌آیکون سنگین Material Symbols
       همه آیکون‌ها از یک اسپرایت (<symbol>) با <use> فراخوانی می‌شوند
       رنگ آیکون از currentColor گرفته می‌شود؛ اندازه با font-size والد تنظیم می‌شود
       ========================================================== */
        .icon {
            display: inline-block;
            flex-shrink: 0;
            vertical-align: middle;
            width: 1em;
            height: 1em;
            fill: none;
            stroke: currentColor;
            stroke-width: 1.8;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .pillar-item .item-icon .icon,
        .example-icon .icon {
            width: 22px;
            height: 22px;
        }

        .faq-toggle-icon .icon {
            width: 15px;
            height: 15px;
        }

        /* ==========================================================
       CUSTOM CURSOR
       ========================================================== */
        .cursor-dot,
        .cursor-ring {
            pointer-events: none;
            position: fixed;
            top: 0;
            left: 0;
            transform: translate(-50%, -50%);
            border-radius: 50%;
            z-index: 9999;
            transition: opacity 0.3s ease;
        }

        .cursor-dot {
            width: 8px;
            height: 8px;
            background-color: var(--gold-primary);
            box-shadow: 0 0 10px var(--gold-primary);
        }

        .cursor-ring {
            width: 36px;
            height: 36px;
            border: 1.5px solid var(--gold-primary);
            background-color: rgba(233, 197, 118, 0.05);
            transition: width 0.25s ease, height 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
        }

        .cursor-ring.active {
            width: 60px;
            height: 60px;
            background-color: rgba(233, 197, 118, 0.22);
            border-color: var(--gold-primary);
        }

        @media (pointer: coarse),
        (max-width: 992px) {

            .cursor-dot,
            .cursor-ring {
                display: none !important;
            }
        }

        /* ==========================================================
       LAYOUT & UTILITIES
       ========================================================== */
        .container {
            width: 100%;
            max-width: 1240px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 24px;
            padding-right: 24px;
        }

        section {
            padding: 100px 0;
            position: relative;
        }

        .section-header {
            text-align: center;
            max-width: 780px;
            margin: 0 auto 60px;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 16px;
            border-radius: 9999px;
            background: var(--gold-subtle);
            border: 1px solid var(--border-subtle);
            color: var(--gold-primary);
            font-size: 0.875rem;
            font-weight: 600;
            letter-spacing: 0.2px;
            margin-bottom: 20px;
        }

        .badge-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--gold-primary);
            box-shadow: 0 0 8px var(--gold-primary);
            animation: pulse 2s infinite ease-in-out;
        }

        h1,
        h2,
        h3,
        h4 {
            color: var(--text-main);
            font-weight: 800;
            line-height: 1.35;
        }

        .section-title {
            font-size: clamp(1.85rem, 3.5vw, 2.75rem);
            margin-bottom: 18px;
            letter-spacing: -0.5px;
        }

        .section-desc {
            color: var(--text-muted);
            font-size: 1.05rem;
            line-height: 1.85;
        }

        /* Button System */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 14px 28px;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: var(--transition-smooth);
            border: 1px solid transparent;
            font-family: inherit;
        }

        .btn-primary {
            background: linear-gradient(135deg, #e9c576, #c5a251);
            color: #0c1918;
            box-shadow: 0 10px 24px -6px rgba(233, 197, 118, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 14px 30px -4px rgba(233, 197, 118, 0.6);
        }

        .btn-secondary {
            background: rgba(28, 57, 54, 0.4);
            color: var(--text-main);
            border: 1px solid var(--border-subtle);
            backdrop-filter: blur(8px);
        }

        .btn-secondary:hover {
            background: rgba(28, 57, 54, 0.8);
            border-color: var(--gold-primary);
            color: var(--gold-primary);
            transform: translateY(-2px);
        }

        /* ==========================================================
       HERO SECTION
       ========================================================== */
        .hero-section {
            padding-top: 130px;
            padding-bottom: 80px;
            position: relative;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.15fr 0.85fr;
            gap: 50px;
            align-items: center;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-title {
            font-size: clamp(2.2rem, 4.5vw, 3.4rem);
            margin-bottom: 24px;
            font-weight: 900;
        }

        .hero-title span {
            background: linear-gradient(135deg, #fbf3de 20%, #e9c576 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-desc {
            color: var(--text-muted);
            font-size: 1.15rem;
            margin-bottom: 36px;
            text-align: justify;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 40px;
        }

        .hero-stats {
            display: flex;
            gap: 32px;
            border-top: 1px solid var(--border-subtle);
            padding-top: 24px;
        }

        .stat-item h4 {
            color: var(--gold-primary);
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 4px;
        }

        .stat-item p {
            color: var(--text-dim);
            font-size: 0.875rem;
        }

        /* Video Frame */
        .video-tech-container {
            position: relative;
            border-radius: 24px;
            padding: 8px;
            background: linear-gradient(145deg, rgba(233, 197, 118, 0.3), rgba(28, 57, 54, 0.4));
            box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.7);
        }

        .video-tech-container::before {
            content: '';
            position: absolute;
            inset: -1px;
            border-radius: 24px;
            background: radial-gradient(circle at 10% 10%, rgba(233, 197, 118, 0.6), transparent 60%);
            z-index: -1;
        }

        .video-inner {
            position: relative;
            border-radius: 18px;
            overflow: hidden;
            background: #000;
            border: 1px solid rgba(233, 197, 118, 0.2);
        }

        .video-inner video {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
        }

        .video-badge {
            position: absolute;
            top: 16px;
            right: 16px;
            background: rgba(12, 25, 24, 0.85);
            border: 1px solid var(--border-subtle);
            backdrop-filter: blur(10px);
            padding: 6px 14px;
            border-radius: 8px;
            font-size: 0.8rem;
            color: var(--gold-primary);
            display: flex;
            align-items: center;
            gap: 6px;
            z-index: 3;
        }

        /* ==========================================================
       FORM SECTION (EVALUATION)
       ========================================================== */
        .form-wrapper {
            background: linear-gradient(135deg, rgba(28, 57, 54, 0.6), rgba(12, 25, 24, 0.8));
            border: 1px solid var(--border-subtle);
            border-radius: 24px;
            padding: 48px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
            backdrop-filter: blur(12px);
            position: relative;
        }

        .form-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            right: 15%;
            width: 70%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
        }

        .form-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 30px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-group.full-width {
            grid-column: span 2;
        }

        .form-label {
            font-size: 0.9rem;
            color: var(--text-muted);
            font-weight: 500;
        }

        .form-control {
            width: 100%;
            padding: 14px 18px;
            background: rgba(12, 25, 24, 0.6);
            border: 1px solid var(--border-subtle);
            border-radius: 12px;
            color: var(--text-main);
            font-family: inherit;
            font-size: 0.95rem;
            transition: var(--transition-smooth);
            outline: none;
        }

        .form-control:focus {
            border-color: var(--gold-primary);
            box-shadow: 0 0 0 3px rgba(233, 197, 118, 0.15);
            background: rgba(12, 25, 24, 0.9);
        }

        select.form-control {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24px' viewBox='0 0 24 24' width='24px' fill='%23e9c576'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: left 14px center;
            cursor: pointer;
        }

        /* ==========================================================
       FRICTION & AUDIT SECTION
       ========================================================== */
        .audit-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .audit-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: 20px;
            padding: 32px 28px;
            transition: var(--transition-smooth);
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
        }

        .audit-card:hover {
            transform: translateY(-6px);
            border-color: var(--border-active);
            background: var(--bg-card-hover);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .card-num {
            position: absolute;
            top: 20px;
            left: 20px;
            color: rgba(233, 197, 118, 0.12);
            font-size: 3rem;
            font-weight: 900;
            line-height: 1;
            font-family: sans-serif;
        }

        .audit-icon-wrap {
            width: 54px;
            height: 54px;
            border-radius: 14px;
            background: var(--gold-subtle);
            border: 1px solid var(--border-subtle);
            color: var(--gold-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }

        .audit-icon-wrap .icon {
            width: 26px;
            height: 26px;
        }

        .audit-stat-tag {
            font-size: 0.85rem;
            color: var(--gold-primary);
            font-weight: 700;
            margin-bottom: 8px;
            opacity: 0.9;
        }

        .audit-card h3 {
            font-size: 1.25rem;
            margin-bottom: 14px;
        }

        .audit-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* ==========================================================
       ARCHITECTURE (NODES) SECTION
       ========================================================== */
        .node-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 28px;
            position: relative;
        }

        .node-card {
            background: linear-gradient(145deg, rgba(28, 57, 54, 0.4), rgba(12, 25, 24, 0.5));
            border: 1px solid var(--border-subtle);
            border-radius: 20px;
            padding: 36px;
            position: relative;
            transition: var(--transition-smooth);
        }

        .node-card:hover {
            border-color: var(--gold-primary);
            box-shadow: 0 16px 40px rgba(233, 197, 118, 0.08);
            transform: translateY(-4px);
        }

        .node-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 20px;
        }

        .node-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: linear-gradient(135deg, rgba(233, 197, 118, 0.2), rgba(28, 57, 54, 0.4));
            border: 1px solid var(--gold-primary);
            color: var(--gold-primary);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .node-card h3 {
            font-size: 1.25rem;
        }

        .node-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 20px;
        }

        .node-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .node-tag {
            font-size: 0.75rem;
            background: rgba(12, 25, 24, 0.7);
            padding: 4px 10px;
            border-radius: 6px;
            border: 1px solid rgba(233, 197, 118, 0.1);
            color: var(--text-main);
        }

        /* ==========================================================
       CORE PILLARS: SALES PIPELINE + SEO/CONTENT AUTOMATION
       ========================================================== */
        .pillars-wrap {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }

        .pillar-block {
            background: linear-gradient(145deg, rgba(28, 57, 54, 0.42), rgba(12, 25, 24, 0.55));
            border: 1px solid var(--border-subtle);
            border-radius: 24px;
            padding: 40px;
            transition: var(--transition-smooth);
        }

        .pillar-block:hover {
            border-color: var(--border-active);
        }

        .pillar-head {
            display: flex;
            align-items: center;
            gap: 18px;
            margin-bottom: 28px;
            padding-bottom: 24px;
            border-bottom: 1px solid var(--border-subtle);
        }

        .pillar-icon {
            width: 58px;
            height: 58px;
            flex-shrink: 0;
            border-radius: 16px;
            background: linear-gradient(135deg, rgba(233, 197, 118, 0.22), rgba(28, 57, 54, 0.4));
            border: 1px solid var(--gold-primary);
            color: var(--gold-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
        }

        .pillar-head h3 {
            font-size: 1.4rem;
            margin-bottom: 4px;
        }

        .pillar-head span {
            color: var(--text-dim);
            font-size: 0.9rem;
        }

        .pillar-items {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
            gap: 20px;
        }

        .pillar-item {
            background: rgba(12, 25, 24, 0.55);
            border: 1px solid rgba(233, 197, 118, 0.1);
            border-radius: 16px;
            padding: 22px;
            transition: var(--transition-smooth);
        }

        .pillar-item:hover {
            border-color: var(--gold-primary);
            background: rgba(12, 25, 24, 0.8);
            transform: translateY(-3px);
        }

        .pillar-item .item-icon {
            color: var(--gold-primary);
            margin-bottom: 12px;
            display: inline-flex;
        }

        .pillar-item h4 {
            font-size: 1.02rem;
            margin-bottom: 8px;
        }

        .pillar-item p {
            color: var(--text-muted);
            font-size: 0.88rem;
            line-height: 1.75;
        }

        /* ==========================================================
       OTHER AUTOMATION EXAMPLES (COMPACT GRID)
       ========================================================== */
        .example-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
        }

        .example-card {
            background: rgba(12, 25, 24, 0.5);
            border: 1px solid var(--border-subtle);
            border-radius: 16px;
            padding: 22px 18px;
            text-align: center;
            transition: var(--transition-smooth);
        }

        .example-card:hover {
            border-color: var(--gold-primary);
            background: var(--bg-card-hover);
            transform: translateY(-3px);
        }

        .example-icon {
            width: 44px;
            height: 44px;
            margin: 0 auto 14px;
            border-radius: 12px;
            background: var(--gold-subtle);
            border: 1px solid var(--border-subtle);
            color: var(--gold-primary);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .example-card h4 {
            font-size: 0.95rem;
            margin-bottom: 6px;
        }

        .example-card p {
            color: var(--text-dim);
            font-size: 0.8rem;
            line-height: 1.6;
        }

        /* ==========================================================
       IMPLEMENTATION ROADMAP
       ========================================================== */
        .roadmap-track {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 16px;
            position: relative;
        }

        .roadmap-track::before {
            content: '';
            position: absolute;
            top: 28px;
            right: 10%;
            left: 10%;
            height: 1px;
            background-image: linear-gradient(90deg, var(--border-active) 0 8px, transparent 8px 16px);
            background-size: 16px 1px;
        }

        .roadmap-step {
            position: relative;
            text-align: center;
            padding: 0 10px;
        }

        .roadmap-num {
            position: relative;
            z-index: 1;
            width: 56px;
            height: 56px;
            margin: 0 auto 18px;
            border-radius: 50%;
            background: var(--bg-darker);
            border: 1px solid var(--gold-primary);
            color: var(--gold-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.1rem;
            transition: var(--transition-smooth);
        }

        .roadmap-step:hover .roadmap-num {
            background: var(--gold-primary);
            color: var(--bg-darker);
        }

        .roadmap-step h4 {
            font-size: 1rem;
            margin-bottom: 8px;
        }

        .roadmap-step p {
            color: var(--text-muted);
            font-size: 0.82rem;
            line-height: 1.7;
        }

        /* ==========================================================
       FAQ ACCORDION
       ========================================================== */
        .faq-list {
            max-width: 860px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: 16px;
            overflow: hidden;
            transition: border-color 0.3s ease;
        }

        .faq-item:hover {
            border-color: var(--border-active);
        }

        .faq-item.is-open {
            border-color: var(--gold-primary);
        }

        .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 20px 24px;
            background: transparent;
            border: 0;
            margin: 0;
            cursor: pointer;
            text-align: right;
            color: var(--text-main);
            font-family: inherit;
            font-size: 1rem;
            font-weight: 600;
            line-height: 1.6;
            -webkit-tap-highlight-color: transparent;
            transition: color 0.2s ease, background-color 0.2s ease;
        }

        .faq-question:hover,
        .faq-question:focus-visible {
            color: var(--gold-primary);
            background-color: rgba(233, 197, 118, 0.06);
        }

        .faq-question:active {
            background-color: rgba(233, 197, 118, 0.12);
        }

        .faq-question:focus-visible {
            outline: 2px solid var(--gold-primary);
            outline-offset: -2px;
        }

        .faq-toggle-icon {
            flex-shrink: 0;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            border: 1px solid var(--border-active);
            color: var(--gold-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.25s ease, background-color 0.2s ease, color 0.2s ease;
        }

        .faq-item.is-open .faq-toggle-icon {
            transform: rotate(45deg);
            background: var(--gold-primary);
            color: var(--bg-darker);
        }

        .faq-answer {
            display: grid;
            grid-template-rows: 0fr;
            transition: grid-template-rows 0.25s ease-out;
        }

        .faq-item.is-open .faq-answer {
            grid-template-rows: 1fr;
        }

        .faq-answer-inner {
            overflow: hidden;
        }

        .faq-answer p {
            margin: 0;
            padding: 0 24px 22px;
            color: var(--text-muted);
            font-size: 0.92rem;
            line-height: 1.85;
        }

        /* ==========================================================
       SHOWCASE (IMAGE GRID) SECTION
       ========================================================== */
        .showcase-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .showcase-image-wrapper {
            position: relative;
            border-radius: 24px;
            background: linear-gradient(145deg, rgba(28, 57, 54, 0.5), rgba(12, 25, 24, 0.9));
            border: 1px solid var(--border-subtle);
            padding: 16px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .showcase-image-wrapper img {
            width: 100%;
            height: auto;
            object-fit: contain;
            border-radius: 16px;
            display: block;
        }

        .feature-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .feature-item {
            display: flex;
            gap: 16px;
            background: var(--bg-card);
            padding: 20px;
            border-radius: 16px;
            border: 1px solid var(--border-subtle);
            transition: var(--transition-smooth);
        }

        .feature-item:hover {
            border-color: var(--border-active);
            transform: translateX(-4px);
        }

        .feature-icon-box {
            color: var(--gold-primary);
            flex-shrink: 0;
        }

        .feature-text h4 {
            font-size: 1.1rem;
            margin-bottom: 6px;
        }

        .feature-text p {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        /* ==========================================================
       INTEGRATIONS SECTION
       ========================================================== */
        .integrations-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .integration-box {
            background: rgba(12, 25, 24, 0.6);
            border: 1px solid var(--border-subtle);
            border-radius: 16px;
            padding: 24px;
            text-align: center;
            transition: var(--transition-smooth);
        }

        .integration-box:hover {
            border-color: var(--gold-primary);
            background: rgba(28, 57, 54, 0.4);
            transform: translateY(-3px);
        }

        .integration-icon {
            font-size: 2.2rem;
            margin-bottom: 12px;
            display: inline-block;
            color: var(--gold-primary);
        }

        .integration-box h4 {
            font-size: 1.05rem;
            margin-bottom: 6px;
        }

        .integration-box p {
            color: var(--text-dim);
            font-size: 0.85rem;
        }

        /* ==========================================================
       FINAL CTA
       ========================================================== */
        .final-cta-box {
            background: linear-gradient(135deg, rgba(28, 57, 54, 0.9), rgba(12, 25, 24, 0.95));
            border: 1px solid var(--border-active);
            border-radius: 28px;
            padding: 70px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
        }

        .final-cta-box::before {
            content: '';
            position: absolute;
            top: -50%;
            left: 50%;
            transform: translateX(-50%);
            width: 450px;
            height: 450px;
            background: radial-gradient(circle, rgba(233, 197, 118, 0.15), transparent 70%);
            z-index: 0;
        }

        .final-cta-content {
            position: relative;
            z-index: 1;
            max-width: 720px;
            margin: 0 auto;
        }

        .final-cta-title {
            font-size: clamp(2rem, 3.5vw, 2.75rem);
            margin-bottom: 20px;
        }

        .final-cta-desc {
            color: var(--text-muted);
            font-size: 1.1rem;
            margin-bottom: 36px;
        }

        /* ==========================================================
       RESPONSIVE BREAKPOINTS
       ========================================================== */
        @media (max-width: 992px) {

            .hero-grid,
            .showcase-grid {
                grid-template-columns: 1fr;
            }

            .hero-content {
                order: 1;
            }

            .video-tech-container {
                order: 2;
                max-width: 600px;
                margin: 0 auto;
            }

            .audit-grid {
                grid-template-columns: 1fr;
            }

            .node-grid {
                grid-template-columns: 1fr;
            }

            .integrations-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .example-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .roadmap-track {
                grid-template-columns: repeat(3, 1fr);
                row-gap: 34px;
            }

            .roadmap-track::before {
                display: none;
            }

            .pillar-block {
                padding: 28px;
            }
        }

        @media (max-width: 768px) {
            section {
                padding: 60px 0;
            }

            .form-grid {
                grid-template-columns: 1fr;
            }

            .form-group.full-width {
                grid-column: span 1;
            }

            .form-wrapper {
                padding: 28px 20px;
            }

            .integrations-grid {
                grid-template-columns: 1fr;
            }

            .final-cta-box {
                padding: 40px 20px;
            }

            .example-grid {
                grid-template-columns: 1fr 1fr;
            }

            .roadmap-track {
                grid-template-columns: 1fr;
                gap: 22px;
            }

            .pillar-head {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }

            .pillar-items {
                grid-template-columns: 1fr;
            }

            .faq-question {
                padding: 16px 18px;
                font-size: 0.92rem;
            }

            .faq-answer p {
                padding: 0 18px 16px;
            }
        }

        @media (max-width: 480px) {
            .example-grid {
                grid-template-columns: 1fr;
            }
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
                opacity: 1;
            }

            50% {
                transform: scale(1.4);
                opacity: 0.6;
            }
        }