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

        body {
            font-family: 'Space Mono', 'JetBrains Mono', monospace;
            background: var(--color-bg);
            color: var(--color-text);
            line-height: 1.6;
            overflow-x: hidden;
            transition: background 0.3s ease, color 0.3s ease;
        }

        /* ===== Code Brackets Decorations ===== */
        .bracket {
            display: inline-flex;
            align-items: center;
            font-weight: 500;
        }
        .bracket::before,
        .bracket::after {
            font-weight: 300;
            font-size: 1.1em;
            background: linear-gradient(90deg, #00BCE7, #E54581);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: transform 0.2s ease;
        }
        .bracket::before { content: '['; margin-right: 2px; }
        .bracket::after { content: ']'; margin-left: 2px; }
        .bracket--round::before { content: '('; }
        .bracket--round::after { content: ')'; }
        .bracket--curly::before { content: '{'; }
        .bracket--curly::after { content: '}'; }
        .bracket--angle::before { content: '<'; }
        .bracket--angle::after { content: '>'; }
        .bracket:hover::before { transform: translateX(-3px); }
        .bracket:hover::after { transform: translateX(3px); }
        .code-inline {
            font-family: inherit;
            background: linear-gradient(135deg, rgba(0, 188, 231, 0.08), rgba(229, 69, 129, 0.08));
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 0.9em;
            border: 1px solid rgba(0, 188, 231, 0.2);
        }

        main {
            max-width: 1600px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        /* Navigation */
        nav {
            padding: 40px 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid var(--color-border);
            background: var(--color-bg);
            position: sticky;
            top: 0;
            z-index: 100;
            transition: background 0.3s ease;
        }

        .logo {
            font-size: 28px;
            font-weight: 900;
            letter-spacing: -1px;
            background: linear-gradient(90deg, #00BCE7, #E54581);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        nav a {
            text-decoration: none;
            color: var(--color-text);
            font-size: 14px;
            margin-left: 40px;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #00BCE7, #E54581);
            transition: width 0.3s;
        }

        nav a:hover::after {
            width: 100%;
        }

        /* Hero */
        .hero {
            display: flex;
            justify-content: center;
            padding: 80px 60px;
            min-height: 700px;
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid var(--color-border);
        }

        .hero-bg-slider {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            transition: transform 0.5s ease-out;
            z-index: 1;
        }

        .hero-slide {
            min-width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            position: relative;
            overflow: hidden;
            background: #050505;
        }

        .hero-slide--gradient {
            background: linear-gradient(135deg, var(--color1), var(--color2));
        }

        .hero-slide--gradient::before {
            content: '';
            position: absolute;
            inset: 0;
            background: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 10px,
                rgba(255, 255, 255, 0.1) 10px,
                rgba(255, 255, 255, 0.1) 20px
            );
            animation: slide 20s linear infinite;
        }

        .hero-slide__cta {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 100%;
            width: 100%;
            padding: 40px 120px;
            color: #fff;
            margin-bottom: 40px;
            top: 10%;
        }

        .hero-slide__tag {
            display: inline-flex;
            align-items: center;
            padding: 6px 14px;
            border-radius: 999px;
            border: 1px solid rgba(255,255,255,0.4);
            font-size: 12px;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 20px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-slide__title {
            font-size: clamp(3rem, 6vw, 6rem);
            font-weight: 900;
            letter-spacing: -2px;
            line-height: 1.05;
            text-transform: uppercase;
            margin: 0 auto;
            max-width: 1200px;
        }

        .hero-slide__subtitle {
            font-size: 1.2rem;
            margin-top: 30px;
            max-width: 640px;
            margin-left: auto;
            margin-right: auto;
            color: rgba(255,255,255,0.85);
        }

        @keyframes slide {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        .hero-content {
            position: absolute;
            z-index: 10;
            max-width: 600px;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 16px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            bottom: 15%;
        }

        .hero-textarea {
            width: 100%;
            min-height: 200px;
            padding: 20px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-family: 'Space Mono', monospace;
            font-size: 16px;
            resize: none;
            background: #f9f9f9;
            color: #000;
            line-height: 1.6;
            cursor: default;
            overflow: hidden;
        }

        .hero-textarea::placeholder {
            color: #ccc;
        }

        .typing-cursor {
            display: inline-block;
            width: 2px;
            height: 1em;
            background: #E54581;
            animation: blink 0.7s infinite;
            margin-left: 2px;
        }

        @keyframes blink {
            0%, 49% { opacity: 1; }
            50%, 100% { opacity: 0; }
        }

        .cta-button {
            display: inline-block;
            padding: 10px;
            font-size: 16px;
            font-weight: 900;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            font-family: 'Space Mono', monospace;
            letter-spacing: 1px;
            text-transform: uppercase;
            background: linear-gradient(90deg, #00BCE7, #E54581);
            color: #fff;
            border-radius: 4px;
            position: absolute;
            overflow: hidden;
            width: 150px;
            bottom: 10px;
            right: 10px;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 188, 231, 0.3);
        }

        .hero-dots {
            position: absolute;
            left: 50%;
            bottom: 40px;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 20;
        }

        .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #e0e0e0;
            cursor: pointer;
            transition: all 0.3s;
        }

        .dot.active {
            background: linear-gradient(90deg, #00BCE7, #E54581);
            transform: scale(1.3);
        }

        /* Section */
        .section {
            padding: 100px 60px;
            border-bottom: 1px solid var(--color-border);
            position: relative;
            z-index: 2;
        }

        .section-title {
            font-size: 72px;
            font-weight: 900;
            margin-bottom: 60px;
            letter-spacing: -1px;
            color: var(--color-text);
        }

        .section-title span {
            background: linear-gradient(90deg, #00BCE7, #E54581);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Stages */
        .stages-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }

        .stage-block {
            padding: 40px;
            border: 1px solid var(--color-border);
            border-radius: 12px;
            transition: all 0.3s;
            background: var(--color-bg);
            position: relative;
            cursor: pointer;
        }

        .stage-block::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #00BCE7, #E54581);
            border-radius: 12px 12px 0 0;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s;
        }

        .stage-block:hover {
            border-color: #00BCE7;
            box-shadow: 0 15px 40px rgba(0, 188, 231, 0.15);
            transform: translateY(-8px);
        }

        .stage-block:hover::before {
            transform: scaleX(1);
        }

        .stage-number {
            font-size: 48px;
            font-weight: 900;
            background: linear-gradient(90deg, #00BCE7, #E54581);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 15px;
        }

        .stage-block h3 {
            font-size: 24px;
            margin-bottom: 15px;
            letter-spacing: -0.5px;
            color: var(--color-text);
        }

        .stage-block p {
            font-size: 14px;
            color: var(--color-muted);
            line-height: 1.8;
        }

        /* Cases Grid */
        .cases-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }

        .case-block {
            padding: 50px;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s;
            min-height: 320px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            border: none;
            position: relative;
            overflow: hidden;
            color: #fff;
        }

        .case-block:hover {
            transform: translateY(-12px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
        }

        .case-content {
            position: relative;
            z-index: 2;
        }

        .case-block h3 {
            font-size: 32px;
            margin-bottom: 15px;
            letter-spacing: -0.5px;
            text-transform: uppercase;
        }

        .case-block .metric {
            font-size: 56px;
            font-weight: 900;
            margin-bottom: 15px;
            color: #ffffff;
            -webkit-text-fill-color:#ffffff;
        }

        .case-block p {
            font-size: 14px;
            opacity: 0.9;
        }

        .case-1 { background: linear-gradient(135deg, #00BCE7 0%, #0099B8 100%); }
        .case-2 { background: linear-gradient(135deg, #E54581 0%, #C4245C 100%); }
        .case-3 { background: linear-gradient(135deg, #00BCE7 0%, #E54581 100%); }
        .case-4 { background: linear-gradient(135deg, #E54581 0%, #00BCE7 100%); }
        .case-5 { background: linear-gradient(135deg, #0099B8 0%, #C4245C 100%); }
        .case-6 { background: linear-gradient(135deg, #C4245C 0%, #0099B8 100%); }

        .case-block {
            text-decoration: none;
        }

        .case-tag {
            display: inline-block;
            padding: 4px 12px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 12px;
        }

        .case-link {
            display: inline-block;
            margin-top: 16px;
            font-size: 13px;
            font-weight: 600;
            opacity: 0.7;
            transition: opacity 0.3s;
        }

        .case-block:hover .case-link {
            opacity: 1;
        }

        .case-cta {
            border: 2px dashed rgba(255, 255, 255, 0.5);
            background: linear-gradient(135deg, rgba(196, 36, 92, 0.8) 0%, rgba(0, 153, 184, 0.8) 100%);
        }

        .cta-button-small {
            padding: 10px 24px;
            background: #fff;
            color: #000;
            border: none;
            border-radius: 6px;
            font-family: 'Space Mono', monospace;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 16px;
        }

        .cta-button-small:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .section-subtitle {
            font-size: 18px;
            color: var(--color-muted);
            margin-top: -40px;
            margin-bottom: 50px;
        }

        .section-footer {
            text-align: center;
            margin-top: 50px;
        }

        .button-outline {
            display: inline-block;
            padding: 14px 32px;
            border: 2px solid var(--color-text);
            background: transparent;
            color: var(--color-text);
            text-decoration: none;
            font-family: 'Space Mono', monospace;
            font-size: 14px;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s;
        }

        .button-outline:hover {
            background: var(--color-text);
            color: var(--color-bg);
        }

        /* Features */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .feature-block {
            padding: 40px;
            border: 1px solid var(--color-border);
            border-radius: 12px;
            transition: all 0.3s;
            background: var(--color-bg);
            position: relative;
        }

        .feature-block::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 188, 231, 0.05), rgba(229, 69, 129, 0.05));
            border-radius: 12px;
            opacity: 0;
            transition: opacity 0.3s;
            pointer-events: none;
        }

        .feature-block:hover {
            border-color: #00BCE7;
            box-shadow: 0 15px 40px rgba(0, 188, 231, 0.1);
            transform: translateY(-5px);
        }

        .feature-block:hover::after {
            opacity: 1;
        }

        .feature-block h3 {
            font-size: 20px;
            margin-bottom: 15px;
            letter-spacing: -0.5px;
            color: var(--color-text);
            text-transform: uppercase;
        }

        .feature-block p {
            font-size: 14px;
            color: var(--color-muted);
            line-height: 1.8;
        }

        /* CTA Section */
        .cta-section {
            background: var(--color-bg-soft);
            color: var(--color-text);
            padding: 100px 60px;
            text-align: center;
            border-bottom: 1px solid var(--color-border);
            position: relative;
            z-index: 2;
            transition: background 0.3s ease;
        }

        .cta-section h2 {
            font-size: 64px;
            margin-bottom: 30px;
            letter-spacing: -1px;
        }

        .cta-section h2 span {
            background: linear-gradient(90deg, #00BCE7, #E54581);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .cta-section p {
            font-size: 18px;
            margin-bottom: 50px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            color: var(--color-muted);
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Footer */
        footer {
            padding: 60px;
            border-top: 1px solid var(--color-border);
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            background: var(--color-bg);
            position: relative;
            z-index: 2;
            transition: background 0.3s ease;
        }

        footer h4 {
            font-size: 16px;
            margin-bottom: 20px;
            color: var(--color-text);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 900;
        }

        footer p, footer a {
            font-size: 14px;
            color: var(--color-muted);
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: all 0.3s;
        }

        footer a:hover {
            background: linear-gradient(90deg, #00BCE7, #E54581);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* ===== Theme Toggle ===== */
        .theme-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            background: transparent;
            border: 1px solid var(--color-border);
            border-radius: 8px;
            cursor: pointer;
            color: var(--color-text);
            transition: all 0.3s;
        }

        .theme-toggle:hover {
            border-color: #00BCE7;
            background: linear-gradient(135deg, rgba(0, 188, 231, 0.05), rgba(229, 69, 129, 0.05));
        }

        .theme-toggle__sun,
        .theme-toggle__moon {
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        .theme-toggle__sun { display: block; }
        .theme-toggle__moon { display: none; }

        [data-theme="dark"] .theme-toggle__sun { display: none; }
        [data-theme="dark"] .theme-toggle__moon { display: block; }

        .theme-toggle:hover .theme-toggle__sun { transform: rotate(15deg); }
        .theme-toggle:hover .theme-toggle__moon { transform: rotate(-15deg); }

        /* ===== Navigation Actions ===== */
        .nav__actions {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .nav__cta {
            padding: 10px 20px;
            background: transparent;
            border: 1px solid var(--color-border);
            border-radius: 8px;
            font-family: 'Space Mono', monospace;
            font-size: 13px;
            cursor: pointer;
            transition: all 0.3s;
            color: var(--color-text);
        }

        .nav__cta:hover {
            border-color: #00BCE7;
            background: linear-gradient(135deg, rgba(0, 188, 231, 0.05), rgba(229, 69, 129, 0.05));
        }

        /* ===== Burger Button ===== */
        .nav__burger {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 44px;
            height: 44px;
            background: transparent;
            border: 1px solid var(--color-border);
            border-radius: 8px;
            cursor: pointer;
            gap: 5px;
            padding: 10px;
            transition: all 0.3s;
            position: relative;
            z-index: 101;
            pointer-events: auto;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
        }

        .nav__burger span {
            display: block;
            width: 20px;
            height: 2px;
            background: linear-gradient(90deg, #00BCE7, #E54581);
            border-radius: 2px;
            transition: all 0.3s;
        }

        .nav__burger:hover {
            border-color: #00BCE7;
        }

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

        .nav__burger.is-active span:nth-child(2) {
            opacity: 0;
        }

        .nav__burger.is-active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* ===== Mobile Menu ===== */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 320px;
            max-width: 85vw;
            height: 100vh;
            background: var(--color-bg);
            z-index: 1000;
            display: flex;
            flex-direction: column;
            transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s;
            box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
        }

        .mobile-menu.is-open {
            right: 0;
        }

        .mobile-menu__header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 24px;
            border-bottom: 1px solid var(--color-border);
        }

        .mobile-menu__tag {
            font-size: 12px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--color-muted);
            font-family: 'Space Mono', monospace;
        }

        .mobile-menu__close {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            border: 1px solid var(--color-border);
            border-radius: 8px;
            font-size: 24px;
            cursor: pointer;
            color: var(--color-muted);
            transition: all 0.3s;
        }

        .mobile-menu__close:hover {
            border-color: #E54581;
            color: #E54581;
        }

        .mobile-menu__links {
            flex: 1;
            display: flex;
            flex-direction: column;
            padding: 24px;
            gap: 8px;
            overflow-y: auto;
        }

        .mobile-menu__links a {
            display: block;
            padding: 16px;
            text-decoration: none;
            color: var(--color-text);
            font-size: 18px;
            border-radius: 12px;
            transition: all 0.3s;
            margin-left: 0;
        }

        .mobile-menu__links a:hover {
            background: var(--color-bg-soft);
        }

        .mobile-menu__links a::after {
            display: none;
        }

        .mobile-menu__footer {
            padding: 24px;
            border-top: 1px solid var(--color-border);
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .mobile-menu__phone {
            font-size: 20px;
            font-weight: 700;
            background: linear-gradient(90deg, #00BCE7, #E54581);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
        }

        .mobile-menu__social {
            display: flex;
            gap: 12px;
        }

        .mobile-menu__social a {
            padding: 8px 14px;
            border: 1px solid var(--color-border);
            border-radius: 8px;
            text-decoration: none;
            color: var(--color-muted);
            font-family: 'Space Mono', monospace;
            font-size: 13px;
            transition: all 0.3s;
            margin-left: 0;
        }

        .mobile-menu__social a::after {
            display: none;
        }

        .mobile-menu__social a:hover {
            border-color: #00BCE7;
            color: #00BCE7;
            -webkit-text-fill-color: #00BCE7;
        }

        .mobile-menu__overlay {
            position: fixed;
            inset: 0;
            background: var(--overlay-bg);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: all 0.3s;
            backdrop-filter: blur(4px);
            cursor: pointer;
        }

        .mobile-menu__overlay.is-visible {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 30px;
            border-radius: 999px;
            font-weight: 700;
            border: none;
            cursor: pointer;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-family: 'Space Mono', monospace;
            font-size: 14px;
            transition: all 0.3s;
        }

        .button-primary {
            background: linear-gradient(120deg, #00BCE7, #E54581);
            color: #fff;
        }

        /* ===== Popup ===== */
        .popup {
            position: fixed;
            inset: 0;
            display: none;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.6);
            padding: 20px;
            z-index: 1001;
            backdrop-filter: blur(4px);
        }

        .popup.is-visible {
            display: flex;
        }

        .popup__dialog {
            background: var(--color-bg);
            padding: 40px;
            border-radius: 24px;
            max-width: 480px;
            width: 100%;
            position: relative;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
            animation: popupIn 0.3s ease;
        }

        @keyframes popupIn {
            from { opacity: 0; transform: translateY(20px) scale(0.95); }
            to { opacity: 1; transform: translateY(0) scale(1); }
        }

        .popup__dialog h3 {
            font-size: 24px;
            margin-bottom: 10px;
            color: var(--color-text);
        }

        .popup__dialog p {
            color: var(--color-muted);
            margin-bottom: 20px;
        }

        .popup__close {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            background: none;
            border: 1px solid var(--color-border);
            border-radius: 8px;
            cursor: pointer;
            color: var(--color-muted);
            transition: all 0.3s;
        }

        .popup__close:hover {
            border-color: #E54581;
            color: #E54581;
        }

        .popup-form {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .popup-form input,
        .popup-form textarea {
            width: 100%;
            padding: 14px;
            border-radius: 12px;
            border: 1px solid var(--color-border);
            background: var(--color-bg-soft);
            color: var(--color-text);
            font-family: 'Space Mono', monospace;
            font-size: 14px;
            transition: all 0.3s;
        }

        .popup-form input:focus,
        .popup-form textarea:focus {
            outline: none;
            border-color: #00BCE7;
            box-shadow: 0 0 0 3px rgba(0, 188, 231, 0.1);
        }

        .popup-form textarea {
            min-height: 100px;
            resize: vertical;
        }

        /* Mobile */
        @media (max-width: 1024px) {
            .hero {
                padding: 40px 20px;
                min-height: 600px;
            }
            .hero-slide__title{
                font-size: clamp(1.6rem, 6vw, 2rem);
            }
            .hero-slide__subtitle{
                font-size: 0,8rem;
            }
            .cases-grid, .stages-grid {
                grid-template-columns: 1fr;
            }
            .hero-slide__cta{
                padding: 10px;
            }
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            footer {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 900px) {
            .nav__links {
                display: none;
            }

            .nav__burger {
                display: flex;
            }

            .nav__cta {
                display: none;
            }

            nav {
                padding: 20px 24px;
                flex-direction: row;
                justify-content: space-between;
            }
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 48px;
            }

            .case-block {
                min-height: 200px;
                padding: 30px;
            }

            .case-block h3 {
                font-size: 24px;
            }

            .case-block .metric {
                font-size: 36px;
            }

            .cta-section h2 {
                font-size: 42px;
            }

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

            nav, .section, .cta-section {
                padding: 30px 20px;
            }
            .hero-content{
                bottom: 12%;
            }
            .hero-textarea {
                min-height: 180px;
                font-size: 14px;
            }
        }
    
