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

        :root {
            --red: #ba2025;
            --red-lt: #e8444b;
            --red-dk: #901519;
            --navy: #2D3480;
            --navy-lt: #241f61;
            --navy-dk: #1e2358;
            --black: #ffffff;
            --charcoal: #f8f9fa;
            --steel: #f1f3f5;
            --iron: #e9ecef;
            --white: #241f61;
            --muted: #5c5c70;
            --border: rgba(45, 52, 128, 0.12);
            --border-r: rgba(204, 34, 41, 0.15);
            --pure-white: #ffffff;
        }

        html {
            scroll-behavior: smooth
        }

        body {
            background: var(--black);
            color: var(--white);
            font-family: 'DM Sans', sans-serif;
            font-weight: 300;
            overflow-x: hidden;
            cursor: none
        }

        /* CURSOR */
        #cursor {
            position: fixed;
            top: 0;
            left: 0;
            z-index: 9999;
            width: 10px;
            height: 10px;
            background: var(--red);
            border-radius: 50%;
            pointer-events: none;
            transform: translate(-50%, -50%)
        }

        #cursor-ring {
            position: fixed;
            top: 0;
            left: 0;
            z-index: 9998;
            width: 38px;
            height: 38px;
            border: 1.5px solid var(--navy-lt);
            border-radius: 50%;
            pointer-events: none;
            transform: translate(-50%, -50%);
            opacity: .55
        }

        /* NOISE */
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            z-index: 1000;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
            opacity: .015;
            pointer-events: none
        }

        /* NAV */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 900;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 24px 60px;
            transition: background .5s, padding .4s, box-shadow .4s
        }

        nav.scrolled {
            background: rgba(255, 255, 255, .94);
            backdrop-filter: blur(14px);
            padding: 14px 60px;
            box-shadow: 0 1px 0 var(--border)
        }

        .nav-logo img {
            height: 60px;
            width: auto;
            display: block;
            transition: height .4s
        }

        nav.scrolled .nav-logo img {
            height: 40px
        }

        .nav-links {
            display: flex;
            gap: 36px;
            list-style: none
        }

        .nav-links a {
            font-size: .74rem;
            letter-spacing: .14em;
            text-transform: uppercase;
            color: var(--muted);
            text-decoration: none;
            transition: color .3s;
            position: relative
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1.5px;
            background: var(--red);
            transition: width .35s
        }

        .nav-links a:hover {
            color: var(--white)
        }

        .nav-links a:hover::after {
            width: 100%
        }

        .nav-cta {
            font-size: .72rem;
            letter-spacing: .14em;
            text-transform: uppercase;
            color: var(--red);
            text-decoration: none;
            border: 1.5px solid var(--red);
            padding: 10px 22px;
            transition: background .3s, color .3s
        }

        .nav-cta:hover {
            background: var(--red);
            color: var(--pure-white)
        }

        /* HERO */
        #hero {
            position: relative;
            height: 100vh;
            min-height: 680px;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            align-items: flex-end;
            padding: 0 60px 80px;
            overflow: hidden;
            gap: 40px
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 70% 55% at 65% 35%, rgba(45, 52, 128, .08) 0%, transparent 65%), radial-gradient(ellipse 45% 45% at 15% 75%, rgba(204, 34, 41, .05) 0%, transparent 60%), var(--black)
        }

        .hero-grid {
            position: absolute;
            inset: 0;
            background-image: linear-gradient(rgba(45, 52, 128, .055) 1px, transparent 1px), linear-gradient(90deg, rgba(45, 52, 128, .055) 1px, transparent 1px);
            background-size: 72px 72px;
            opacity: 0
        }

        .hero-accent {
            position: absolute;
            top: 0;
            right: 200px;
            bottom: 0;
            width: 1px;
            background: linear-gradient(to bottom, transparent, rgba(204, 34, 41, .28) 40%, rgba(45, 52, 128, .28) 70%, transparent);
            opacity: 0
        }

        .hero-eyebrow {
            font-size: .7rem;
            letter-spacing: .24em;
            text-transform: uppercase;
            color: var(--navy-lt);
            margin-bottom: 20px;
            opacity: 0;
            transform: translateY(18px)
        }

        .hero-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(4.5rem, 11vw, 10.5rem);
            line-height: .9;
            letter-spacing: .02em;
            color: var(--red);
            margin-bottom: 28px
        }

        .hero-title .line {
            display: block;
            overflow: hidden
        }

        .hero-title .line span {
            display: block;
            transform: translateY(110%)
        }

        .hero-title em {
            /* font-family: 'Cormorant Garamond', serif; */
            font-style: italic;
            color: var(--navy-lt);
            font-size: .82em
        }

        .hero-sub {
            max-width: 440px;
            font-size: .95rem;
            line-height: 1.75;
            color: var(--muted);
            opacity: 0;
            transform: translateY(18px);
            margin-bottom: 44px
        }

        .hero-vis {
            position: relative;
            z-index: 2;
            opacity: 0;
            transform: translateX(40px);
            display: flex;
            justify-content: center;
            align-items: flex-end;
            height: 100%;
            padding-bottom: 40px
        }

        .hero-vis img {
            width: 80%;
            max-width: 900px;
            height: auto;
            border-radius: 4px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
            animation: float 6s ease-in-out infinite;
            filter: grayscale(0.2) contrast(1.1)
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0) rotate(0);
            }

            50% {
                transform: translateY(-20px) rotate(1deg);
            }
        }

        .hero-actions {
            display: flex;
            gap: 18px;
            align-items: center;
            opacity: 0;
            transform: translateY(18px)
        }

        .btn-primary {
            display: inline-block;
            background: var(--red);
            color: var(--pure-white);
            font-size: .74rem;
            letter-spacing: .14em;
            text-transform: uppercase;
            font-weight: 500;
            padding: 15px 38px;
            text-decoration: none;
            transition: background .3s, transform .2s
        }

        .btn-primary:hover {
            background: var(--red-lt);
            transform: translateY(-2px)
        }

        .btn-ghost {
            font-size: .74rem;
            letter-spacing: .14em;
            text-transform: uppercase;
            color: var(--muted);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 9px;
            transition: color .3s
        }

        .btn-ghost::after {
            content: '→';
            transition: transform .3s
        }

        .btn-ghost:hover {
            color: var(--white)
        }

        .btn-ghost:hover::after {
            transform: translateX(5px)
        }

        .hero-scroll-hint {
            position: absolute;
            bottom: 36px;
            right: 60px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            opacity: 0
        }

        .hero-scroll-hint span {
            font-size: .62rem;
            letter-spacing: .2em;
            text-transform: uppercase;
            color: var(--muted);
            writing-mode: vertical-rl
        }

        .scroll-line {
            width: 1px;
            height: 55px;
            background: linear-gradient(to bottom, var(--navy-lt), transparent);
            animation: sp 2s ease-in-out infinite
        }

        @keyframes sp {

            0%,
            100% {
                transform: scaleY(1);
                opacity: 1
            }

            50% {
                transform: scaleY(.4);
                opacity: .2
            }
        }

        /* MARQUEE */
        .mq-wrap {
            overflow: hidden;
            background: var(--navy);
            padding: 13px 0
        }

        .mq-track {
            display: flex;
            white-space: nowrap;
            animation: mq 28s linear infinite
        }

        .mq-track span {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.05rem;
            letter-spacing: .1em;
            color: var(--pure-white);
            padding: 0 28px
        }

        .mq-track .dot {
            color: var(--red)
        }

        @keyframes mq {
            from {
                transform: translateX(0)
            }

            to {
                transform: translateX(-50%)
            }
        }

        /* SECTION COMMONS */
        .si {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 60px
        }

        .sec-label {
            font-size: .66rem;
            letter-spacing: .26em;
            text-transform: uppercase;
            color: var(--navy-lt);
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 44px
        }

        .sec-label::before {
            content: '';
            display: block;
            width: 36px;
            height: 1.5px;
            background: var(--red)
        }

        /* ABOUT */
        #about {
            padding: 130px 0;
            background: var(--charcoal)
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center
        }

        .about-h {
            /* font-family: 'Cormorant Garamond', serif; */
            font-size: clamp(2.2rem, 3.8vw, 3.5rem);
            font-weight: 300;
            line-height: 1.2;
            color: var(--white);
            margin-bottom: 28px
        }

        .about-h strong {
            font-weight: 600;
            color: var(--red);
            font-style: italic
        }

        .about-p {
            font-size: .91rem;
            line-height: 1.9;
            color: var(--muted);
            margin-bottom: 22px
        }

        .about-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1px;
            background: var(--border);
            margin-top: 44px
        }

        .stat-box {
            background: var(--charcoal);
            padding: 26px 28px
        }

        .stat-num {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2.8rem;
            color: var(--red);
            line-height: 1;
            display: block
        }

        .stat-lbl {
            font-size: .67rem;
            letter-spacing: .13em;
            text-transform: uppercase;
            color: var(--muted);
            margin-top: 5px
        }

        .about-vis {
            position: relative
        }

        .about-frame {
            width: 100%;
            aspect-ratio: 4/5;
            background: var(--steel);
            position: relative;
            overflow: hidden
        }

        .about-frame::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(45, 52, 128, .16) 0%, transparent 50%), repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(45, 52, 128, .04) 10px, rgba(45, 52, 128, .04) 11px)
        }

        .about-frame-inner {
            position: absolute;
            inset: 22px;
            border: 1px solid var(--border);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 18px
        }

        .mach-icon {
            width: 190px;
            opacity: .75
        }

        .frame-lbl {
            font-family: 'Bebas Neue', sans-serif;
            font-size: .95rem;
            letter-spacing: .17em;
            color: var(--navy-lt);
            opacity: .65
        }

        .about-corner {
            position: absolute;
            top: -18px;
            right: -18px;
            width: 70px;
            height: 70px;
            border-top: 2px solid var(--red);
            border-right: 2px solid var(--red)
        }

        /* SERVICES */
        #services {
            padding: 130px 0;
            background: var(--black)
        }

        .sec-h {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(2.8rem, 6.5vw, 5.8rem);
            letter-spacing: .03em;
            line-height: .95;
            margin-bottom: 72px
        }

        .sec-h em {
            /* font-family: 'Cormorant Garamond', serif; */
            font-style: italic;
            color: var(--red);
            font-size: .75em
        }

        .srv-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1px;
            background: var(--border)
        }

        .srv-card {
            background: var(--charcoal);
            padding: 48px 36px;
            position: relative;
            overflow: hidden;
            transition: background .4s
        }

        .srv-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2.5px;
            background: linear-gradient(90deg, var(--red), var(--navy));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform .5s
        }

        .srv-card:hover {
            background: var(--steel)
        }

        .srv-card:hover::after {
            transform: scaleX(1)
        }

        .srv-num {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 3.5rem;
            color: rgba(45, 52, 128, .2);
            line-height: 1;
            margin-bottom: 28px;
            display: block
        }

        .srv-icon {
            width: 44px;
            height: 44px;
            margin-bottom: 20px
        }

        .srv-title {
            /* font-family: 'Cormorant Garamond', serif; */
            font-size: 1.55rem;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 13px;
            line-height: 1.2
        }

        .srv-desc {
            font-size: .84rem;
            line-height: 1.8;
            color: var(--muted)
        }

        .srv-arrow {
            position: absolute;
            bottom: 28px;
            right: 28px;
            color: var(--red);
            font-size: 1.2rem;
            opacity: 0;
            transform: translate(-6px, 6px);
            transition: opacity .3s, transform .3s
        }

        .srv-card:hover .srv-arrow {
            opacity: 1;
            transform: translate(0, 0)
        }

        /* ═══════════════════════════
       DIE SHOWCASE — TAB PANELS
       No scroll pinning — 100% reliable
       ═══════════════════════════ */
        #die {
            padding: 130px 0;
            background: var(--black)
        }

        .die-tabs {
            display: flex;
            border-bottom: 1px solid var(--border);
            margin-bottom: 0;
            overflow-x: auto
        }

        .die-tab {
            background: none;
            border: none;
            border-bottom: 2.5px solid transparent;
            padding: 14px 30px;
            font-family: 'DM Sans', sans-serif;
            font-size: .72rem;
            letter-spacing: .16em;
            text-transform: uppercase;
            color: var(--muted);
            cursor: pointer;
            white-space: nowrap;
            transition: color .3s, border-color .3s
        }

        .die-tab:hover {
            color: var(--white)
        }

        .die-tab.active {
            color: var(--white);
            border-bottom-color: var(--red)
        }

        .die-panels {
            position: relative
        }

        /* all panels hidden by default via JS — set in script */
        .die-panel {
            display: none;
            grid-template-columns: 1fr 1fr;
            background: var(--border);
            gap: 1px
        }

        .die-panel.active {
            display: grid
        }

        .dp-left {
            background: var(--charcoal);
            padding: 64px 56px;
            display: flex;
            flex-direction: column;
            justify-content: center
        }

        .dp-num {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 5rem;
            color: rgba(204, 34, 41, .14);
            line-height: 1;
            margin-bottom: 14px
        }

        .dp-title {
            /* font-family: 'Cormorant Garamond', serif; */
            font-size: clamp(1.8rem, 2.6vw, 2.5rem);
            font-weight: 600;
            color: var(--white);
            line-height: 1.2;
            margin-bottom: 18px
        }

        .dp-desc {
            font-size: .88rem;
            line-height: 1.85;
            color: var(--muted);
            margin-bottom: 26px
        }

        .dp-tag {
            display: inline-block;
            font-size: .65rem;
            letter-spacing: .2em;
            text-transform: uppercase;
            color: var(--red);
            border: 1px solid var(--border-r);
            padding: 7px 16px;
            width: fit-content
        }

        .dp-feats {
            list-style: none;
            margin-top: 26px;
            display: flex;
            flex-direction: column;
            gap: 10px
        }

        .dp-feats li {
            font-size: .81rem;
            color: var(--muted);
            display: flex;
            align-items: center;
            gap: 10px
        }

        .dp-feats li::before {
            content: '';
            width: 18px;
            height: 1.5px;
            background: linear-gradient(90deg, var(--red), var(--navy));
            flex-shrink: 0
        }

        .dp-right {
            background: var(--steel);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 48px;
            min-height: 500px
        }

        .dp-right svg {
            max-width: 100%;
            max-height: 420px;
            width: 100%
        }

        .die-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 28px
        }

        .die-counter {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.1rem;
            letter-spacing: .1em;
            color: var(--muted)
        }

        .die-counter em {
            color: var(--red);
            font-style: normal
        }

        .die-arrows {
            display: flex;
            gap: 12px
        }

        .arr-btn {
            width: 44px;
            height: 44px;
            border: 1px solid var(--border);
            background: none;
            color: var(--muted);
            font-size: 1.1rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: border-color .3s, color .3s, background .3s
        }

        .arr-btn:hover {
            border-color: var(--red);
            color: var(--white);
            background: rgba(204, 34, 41, .1)
        }

        /* PROCESS */
        #process {
            padding: 130px 0;
            background: var(--charcoal)
        }

        .proc-h {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(2.4rem, 4.5vw, 4.2rem);
            letter-spacing: .03em;
            color: #241f61;
            margin-bottom: 72px
        }

        .proc-step {
            display: grid;
            grid-template-columns: 72px 1fr;
            gap: 36px;
            padding: 40px 0;
            border-bottom: 1px solid var(--border)
        }

        .proc-step:first-child {
            border-top: 1px solid var(--border)
        }

        .proc-n {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2.2rem;
            color: var(--navy-lt);
            opacity: .5;
            padding-top: 3px
        }

        .proc-title {
            /* font-family: 'Cormorant Garamond', serif; */
            font-size: 1.45rem;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 10px
        }

        .proc-desc {
            font-size: .85rem;
            line-height: 1.8;
            color: var(--muted)
        }

        /* WHY */
        #why {
            padding: 130px 0;
            background: var(--black)
        }

        .why-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 100px;
            align-items: center
        }

        .why-h {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(2.8rem, 4.8vw, 4.8rem);
            letter-spacing: .03em;
            line-height: .95;
            color: var(--white);
            margin-bottom: 28px
        }

        .why-h em {
            display: block;
            /* font-family: 'Cormorant Garamond', serif; */
            font-style: italic;
            color: var(--red);
            font-size: .68em
        }

        .why-sub {
            font-size: .89rem;
            line-height: 1.8;
            color: var(--muted)
        }

        .why-list {
            list-style: none
        }

        .why-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 28px 0;
            border-bottom: 1px solid var(--border)
        }

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

        .why-ico {
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, rgba(204, 34, 41, .1), rgba(45, 52, 128, .1));
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--red);
            font-size: .95rem;
            flex-shrink: 0
        }

        .why-t {
            /* font-family: 'Cormorant Garamond', serif; */
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 5px
        }

        .why-d {
            font-size: .8rem;
            line-height: 1.7;
            color: var(--muted)
        }

        /* CONTACT */
        #contact {
            padding: 130px 0 90px;
            background: var(--charcoal)
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            gap: 80px;
            align-items: start
        }

        .contact-h {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(2.8rem, 5.5vw, 5.2rem);
            letter-spacing: .03em;
            line-height: .95;
            color: var(--white);
            margin-bottom: 22px
        }

        .contact-h em {
            /* font-family: 'Cormorant Garamond', serif; */
            font-style: italic;
            color: var(--red)
        }

        .contact-sub {
            font-size: .89rem;
            line-height: 1.8;
            color: var(--muted);
            margin-bottom: 44px
        }

        .ci-list {
            display: flex;
            flex-direction: column;
            gap: 20px
        }

        .ci-item {
            display: flex;
            align-items: flex-start;
            gap: 14px
        }

        .ci-ico {
            width: 34px;
            height: 34px;
            background: var(--iron);
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--red);
            font-size: .85rem;
            flex-shrink: 0
        }

        .ci-lbl {
            font-size: .64rem;
            letter-spacing: .14em;
            text-transform: uppercase;
            color: var(--muted);
            margin-bottom: 3px
        }

        .ci-val {
            font-size: .9rem;
            color: var(--white)
        }

        .cform {
            display: flex;
            flex-direction: column;
            gap: 18px
        }

        .ff {
            display: flex;
            flex-direction: column;
            gap: 7px
        }

        .fl {
            font-size: .64rem;
            letter-spacing: .14em;
            text-transform: uppercase;
            color: var(--muted)
        }

        .fi,
        .fsel,
        .fta {
            background: var(--iron);
            border: 1px solid var(--border);
            color: var(--white);
            padding: 13px 16px;
            font-family: 'DM Sans', sans-serif;
            font-size: .88rem;
            outline: none;
            transition: border-color .3s;
            width: 100%
        }

        .fi:focus,
        .fsel:focus,
        .fta:focus {
            border-color: var(--red)
        }

        .fsel {
            appearance: none;
            cursor: pointer
        }

        .fta {
            resize: vertical;
            min-height: 110px
        }

        .frow {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px
        }

        .fsub {
            background: linear-gradient(90deg, var(--red), var(--navy));
            color: var(--pure-white);
            border: none;
            padding: 15px 38px;
            font-family: 'DM Sans', sans-serif;
            font-size: .74rem;
            letter-spacing: .14em;
            text-transform: uppercase;
            font-weight: 500;
            cursor: pointer;
            transition: opacity .3s, transform .2s;
            align-self: flex-start
        }

        .fsub:hover {
            opacity: .87;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(204, 34, 41, 0.2)
        }

        /* FOOTER */
        footer {
            background: var(--black);
            border-top: 1px solid var(--border);
            padding: 44px 60px;
            display: flex;
            align-items: center;
            justify-content: space-between
        }

        .ft-logo img {
            height: 32px;
            width: auto
        }

        .ft-copy {
            font-size: .71rem;
            color: var(--muted);
            letter-spacing: .05em
        }

        .ft-links {
            display: flex;
            gap: 28px;
            list-style: none
        }

        .ft-links a {
            font-size: .7rem;
            letter-spacing: .1em;
            text-transform: uppercase;
            color: var(--muted);
            text-decoration: none;
            transition: color .3s
        }

        .ft-links a:hover {
            color: var(--red)
        }

        /* RESPONSIVE */
        @media(max-width:1024px) {

            nav,
            footer {
                padding-left: 32px;
                padding-right: 32px
            }

            #hero {
                padding: 0 32px 60px;
                grid-template-columns: 1fr;
                height: auto;
                min-height: 100vh;
                padding-top: 120px;
                align-items: center
            }

            .hero-vis {
                padding-bottom: 0;
                transform: translateX(0) translateY(20px);
                order: -1
            }

            .si {
                padding: 0 32px
            }

            .about-grid,
            .why-grid,
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 44px
            }

            .srv-grid {
                grid-template-columns: 1fr 1fr
            }

            .die-panel {
                grid-template-columns: 1fr
            }

            .dp-right {
                min-height: 320px
            }
        }

        @media(max-width:768px) {
            nav {
                padding: 18px 20px
            }

            .nav-links {
                display: none
            }

            #hero {
                padding: 0 20px 56px
            }

            .si {
                padding: 0 20px
            }

            .srv-grid {
                grid-template-columns: 1fr
            }

            .dp-left {
                padding: 36px 24px
            }

            .dp-right {
                padding: 24px;
                min-height: 260px
            }

            .frow {
                grid-template-columns: 1fr
            }

            footer {
                flex-direction: column;
                gap: 18px;
                text-align: center
            }

            .ft-links {
                gap: 18px
            }
        }