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

        :root {
            --ink: #0e1524;
            --navy: #12243c;
            --teal: #0b9e8a;
            --teal-2: #0dd4b8;
            --teal-bg: #e8f9f7;
            --amber: #c88a1e;
            --amber-bg: #fef5e4;
            --off: #f8f7f3;
            --white: #ffffff;
            --muted: #6b7280;
            --border: #e2dfd8;
            --card: #ffffff;
            --sidebar: #12243c;
            --fd: 'Fraunces', Georgia, serif;
            --fb: 'DM Sans', system-ui, sans-serif;
        }

        html {
            scroll-behavior: smooth
        }

        body {
            font-family: var(--fb);
            background: var(--off);
            color: var(--ink);
            overflow-x: hidden
        }

        /* lang */
        body.en .lang-id {
            display: none
        }

        body.id .lang-en {
            display: none
        }

        /* nav */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 56px;
            height: 68px;
            background: rgba(248, 247, 243, .94);
            backdrop-filter: blur(14px);
            border-bottom: 1px solid var(--border)
        }

        .logo {
            font-family: var(--fd);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--ink);
            letter-spacing: -.03em;
            text-decoration: none
        }

        .logo span {
            color: var(--teal)
        }

        .nav-r {
            display: flex;
            align-items: center;
            gap: 28px
        }

        .nav-r a {
            font-size: .84rem;
            font-weight: 500;
            color: var(--muted);
            text-decoration: none;
            transition: color .2s
        }

        .nav-r a:hover,
        .nav-r a.active {
            color: var(--teal);
            font-weight: 700;
        }

        .nav-cta {
            background: var(--ink) !important;
            color: #fff !important;
            padding: 8px 20px;
            border-radius: 6px;
            font-size: .84rem !important
        }

        .nav-cta:hover {
            background: var(--teal) !important
        }

        .lbtn {
            display: flex;
            align-items: center;
            gap: 6px;
            background: none;
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 4px 12px;
            cursor: pointer;
            font-family: var(--fb);
            font-size: .79rem;
            font-weight: 500;
            color: var(--muted);
            transition: border-color .2s, color .2s
        }

        .lbtn:hover {
            border-color: var(--teal);
            color: var(--teal)
        }

        /* hero */
        #hero {
            min-height: 100vh;
            display: grid;
            grid-template-columns: 1fr 1fr;
            padding-top: 68px;
            overflow: hidden
        }

        .hl {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 80px 56px 80px 80px
        }

        .hbadge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--teal-bg);
            color: var(--teal);
            border: 1px solid rgba(11, 158, 138, .2);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: .76rem;
            font-weight: 600;
            letter-spacing: .06em;
            text-transform: uppercase;
            width: fit-content;
            margin-bottom: 32px;
            animation: fu .6s ease both
        }

        .hbadge::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--teal);
            animation: pulse 2s infinite
        }

        @keyframes pulse {

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

            50% {
                opacity: .4;
                transform: scale(1.5)
            }
        }

        h1 {
            font-family: var(--fd);
            font-size: clamp(2.8rem, 4vw, 3.8rem);
            font-weight: 900;
            line-height: 1.07;
            letter-spacing: -.03em;
            margin-bottom: 24px;
            animation: fu .6s .1s ease both
        }

        h1 em {
            font-style: italic;
            color: var(--teal)
        }

        .hsub {
            font-size: 1rem;
            line-height: 1.7;
            color: var(--muted);
            max-width: 480px;
            margin-bottom: 40px;
            animation: fu .6s .2s ease both
        }

        .hbtns {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            animation: fu .6s .3s ease both
        }

        .bp {
            background: var(--ink);
            color: #fff;
            padding: 13px 26px;
            border-radius: 8px;
            font-size: .9rem;
            font-weight: 600;
            text-decoration: none;
            transition: background .2s, transform .15s;
            display: inline-flex;
            align-items: center;
            gap: 8px
        }

        .bp:hover {
            background: var(--teal);
            transform: translateY(-1px)
        }

        .bo {
            border: 1.5px solid var(--border);
            color: var(--ink);
            padding: 12px 22px;
            border-radius: 8px;
            font-size: .9rem;
            font-weight: 500;
            text-decoration: none;
            transition: border-color .2s, color .2s
        }

        .bo:hover {
            border-color: var(--teal);
            color: var(--teal)
        }

        .hstats {
            display: flex;
            gap: 36px;
            margin-top: 48px;
            padding-top: 32px;
            border-top: 1px solid var(--border);
            animation: fu .6s .4s ease both
        }

        .sv {
            font-family: var(--fd);
            font-size: 1.9rem;
            font-weight: 700;
            color: var(--ink);
            letter-spacing: -.03em
        }

        .sl {
            font-size: .76rem;
            color: var(--muted);
            font-weight: 500;
            margin-top: 3px
        }

        /* hero right */
        .hr {
            background: var(--navy);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center
        }

        .hr::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 70% 30%, rgba(11, 158, 138, .18) 0%, transparent 60%), radial-gradient(ellipse at 20% 80%, rgba(200, 138, 30, .08) 0%, transparent 50%)
        }

        .grid-bg {
            position: absolute;
            inset: 0;
            opacity: .07;
            background-image: linear-gradient(rgba(255, 255, 255, .4) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .4) 1px, transparent 1px);
            background-size: 40px 40px
        }

        .fw {
            position: relative;
            z-index: 2;
            width: 400px;
            animation: fu .7s .3s ease both
        }

        .fwin {
            background: rgba(255, 255, 255, .07);
            border: 1px solid rgba(255, 255, 255, .13);
            border-radius: 14px;
            overflow: hidden
        }

        .fbar {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 16px;
            background: rgba(255, 255, 255, .04);
            border-bottom: 1px solid rgba(255, 255, 255, .08)
        }

        .fd {
            width: 10px;
            height: 10px;
            border-radius: 50%
        }

        .ft {
            font-size: .76rem;
            color: rgba(255, 255, 255, .35);
            margin-left: auto
        }

        .fbody {
            padding: 18px;
            display: flex;
            flex-direction: column;
            gap: 7px
        }

        .fr {
            display: flex;
            align-items: center;
            gap: 11px;
            padding: 9px 13px;
            border-radius: 8px;
            background: rgba(255, 255, 255, .04);
            border: 1px solid rgba(255, 255, 255, .07);
            animation: si .4s ease both
        }

        .fr:nth-child(1) {
            animation-delay: .5s
        }

        .fr:nth-child(2) {
            animation-delay: .65s
        }

        .fr:nth-child(3) {
            animation-delay: .8s
        }

        .fr:nth-child(4) {
            animation-delay: .95s
        }

        .fr:nth-child(5) {
            animation-delay: 1.1s
        }

        .fr.hl2 {
            background: rgba(11, 158, 138, .15);
            border-color: rgba(11, 158, 138, .3)
        }

        @keyframes si {
            from {
                opacity: 0;
                transform: translateX(16px)
            }

            to {
                opacity: 1;
                transform: translateX(0)
            }
        }

        .fn {
            width: 24px;
            height: 24px;
            border-radius: 5px;
            background: rgba(11, 158, 138, .2);
            color: var(--teal-2);
            font-size: .7rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0
        }

        .fr.hl2 .fn {
            background: var(--teal);
            color: #fff
        }

        .fx {
            font-size: .81rem;
            color: rgba(255, 255, 255, .7);
            flex: 1
        }

        .fr.hl2 .fx {
            color: #fff;
            font-weight: 500
        }

        .ftag {
            font-size: .67rem;
            padding: 2px 7px;
            border-radius: 10px;
            background: rgba(255, 255, 255, .08);
            color: rgba(255, 255, 255, .35)
        }

        .fr.hl2 .ftag {
            background: rgba(11, 158, 138, .3);
            color: var(--teal-2)
        }

        .ffoot {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 11px 18px;
            border-top: 1px solid rgba(255, 255, 255, .08)
        }

        .fstat {
            font-size: .71rem;
            color: rgba(255, 255, 255, .3)
        }

        .flive {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: .71rem;
            color: var(--teal-2);
            font-weight: 500
        }

        .flive::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--teal-2);
            animation: pulse 1.5s infinite
        }

        /* sections */
        section {
            padding: 96px 80px
        }

        .sl2 {
            font-size: .71rem;
            font-weight: 600;
            letter-spacing: .1em;
            text-transform: uppercase;
            color: var(--teal);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px
        }

        .sl2::after {
            content: '';
            flex: 1;
            height: 1px;
            background: var(--teal-bg);
            max-width: 60px
        }

        h2 {
            font-family: var(--fd);
            font-size: clamp(1.9rem, 2.8vw, 2.7rem);
            font-weight: 700;
            letter-spacing: -.03em;
            line-height: 1.15;
            color: var(--ink)
        }

        .ssub {
            font-size: .97rem;
            color: var(--muted);
            line-height: 1.7;
            max-width: 520px;
            margin-top: 14px
        }

        /* problem */
        #problem {
            background: var(--white)
        }

        .pgrid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            margin-top: 52px;
            border: 1px solid var(--border);
            border-radius: 16px;
            overflow: hidden
        }

        .pcol {
            padding: 36px
        }

        .pcol:first-child {
            border-right: 1px solid var(--border)
        }

        .plbl {
            font-size: .71rem;
            font-weight: 600;
            letter-spacing: .08em;
            text-transform: uppercase;
            margin-bottom: 18px;
            display: block
        }

        .plbl.bef {
            color: #c0392b
        }

        .plbl.aft {
            color: var(--teal)
        }

        .pi {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 11px 0;
            border-bottom: 1px solid var(--border)
        }

        .pi:last-child {
            border-bottom: none
        }

        .pic {
            width: 28px;
            height: 28px;
            border-radius: 6px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .82rem
        }

        .pic.x {
            background: #fef2f2;
            color: #c0392b
        }

        .pic.ok {
            background: var(--teal-bg);
            color: var(--teal)
        }

        .ptxt {
            font-size: .88rem;
            color: var(--ink);
            line-height: 1.5
        }

        .psub {
            font-size: .78rem;
            color: var(--muted);
            margin-top: 2px
        }

        .psub.g {
            color: var(--teal)
        }

        /* services */
        #services {
            background: var(--off)
        }

        .sgrid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
            margin-top: 52px
        }

        .sc {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 14px;
            padding: 30px 26px;
            transition: transform .2s, box-shadow .2s, border-color .2s;
            position: relative;
            overflow: hidden
        }

        .sc:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 48px rgba(14, 21, 36, .07);
            border-color: var(--teal)
        }

        .sc::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--border);
            transition: background .2s
        }

        .sc:hover::before {
            background: var(--teal)
        }

        .snum {
            font-family: var(--fd);
            font-size: 2.4rem;
            font-weight: 900;
            color: var(--teal-bg);
            letter-spacing: -.04em;
            line-height: 1;
            margin-bottom: 18px
        }

        .stitle {
            font-size: .97rem;
            font-weight: 600;
            color: var(--ink);
            margin-bottom: 9px;
            line-height: 1.3
        }

        .sbody {
            font-size: .86rem;
            color: var(--muted);
            line-height: 1.65;
            margin-bottom: 18px
        }

        .tools {
            display: flex;
            flex-wrap: wrap;
            gap: 5px
        }

        .tp {
            font-size: .69rem;
            font-weight: 600;
            padding: 3px 9px;
            border-radius: 20px;
            background: var(--off);
            color: var(--muted);
            border: 1px solid var(--border)
        }

        /* process */
        #process {
            background: var(--navy);
            color: #fff
        }

        #process .sl2 {
            color: var(--teal-2)
        }

        #process .sl2::after {
            background: rgba(11, 158, 138, .25)
        }

        #process h2 {
            color: #fff
        }

        #process .ssub {
            color: rgba(255, 255, 255, .5)
        }

        .psteps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-top: 52px;
            position: relative
        }

        .psteps::before {
            content: '';
            position: absolute;
            top: 27px;
            left: calc(12.5% + 14px);
            right: calc(12.5% + 14px);
            height: 1px;
            background: rgba(255, 255, 255, .08)
        }

        .step {
            position: relative;
            z-index: 1;
            text-align: center;
            padding: 0 8px
        }

        .stepn {
            width: 54px;
            height: 54px;
            border-radius: 13px;
            background: rgba(255, 255, 255, .06);
            border: 1px solid rgba(255, 255, 255, .11);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 18px;
            font-family: var(--fd);
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--teal-2);
            transition: background .2s
        }

        .step:hover .stepn {
            background: rgba(11, 158, 138, .2)
        }

        .stept {
            font-size: .9rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 7px
        }

        .stepb {
            font-size: .81rem;
            color: rgba(255, 255, 255, .45);
            line-height: 1.6
        }

        /* work */
        #work {
            background: var(--off)
        }

        .cgrid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
            margin-top: 52px
        }

        .cc {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 14px;
            overflow: hidden;
            transition: transform .2s, box-shadow .2s
        }

        .cc:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 60px rgba(14, 21, 36, .09)
        }

        .ch {
            padding: 22px 22px 18px;
            background: var(--navy);
            position: relative;
            overflow: hidden
        }

        .ch::after {
            content: '';
            position: absolute;
            top: -40px;
            right: -40px;
            width: 110px;
            height: 110px;
            border-radius: 50%;
            background: rgba(11, 158, 138, .1)
        }

        .cn {
            font-size: .69rem;
            font-weight: 600;
            letter-spacing: .07em;
            color: rgba(255, 255, 255, .28);
            margin-bottom: 7px
        }

        .ct {
            font-size: .96rem;
            font-weight: 600;
            color: #fff;
            line-height: 1.4
        }

        .cdept {
            display: inline-block;
            margin-top: 8px;
            font-size: .69rem;
            padding: 3px 10px;
            border-radius: 10px;
            background: rgba(11, 158, 138, .2);
            color: var(--teal-2);
            font-weight: 500
        }

        .cb {
            padding: 18px 22px
        }

        .cm {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 7px 0;
            border-bottom: 1px solid var(--border);
            font-size: .81rem
        }

        .cm:last-child {
            border-bottom: none
        }

        .cml {
            color: var(--muted)
        }

        .cmv {
            font-weight: 600;
            color: var(--teal)
        }

        /* pricing */
        #pricing {
            background: var(--white)
        }

        .prgrid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
            margin-top: 52px;
            align-items: start
        }

        .plan {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 16px;
            overflow: hidden;
            transition: transform .2s, box-shadow .2s
        }

        .plan:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 44px rgba(14, 21, 36, .07)
        }

        .plan.feat {
            border-color: var(--teal);
            transform: scale(1.03);
            box-shadow: 0 18px 60px rgba(11, 158, 138, .14)
        }

        .plan.feat:hover {
            transform: scale(1.03) translateY(-4px)
        }

        .ph {
            padding: 26px 26px 22px;
            border-bottom: 1px solid var(--border)
        }

        .plan.feat .ph {
            background: var(--navy);
            border-bottom-color: rgba(255, 255, 255, .08)
        }

        .pbadge {
            display: inline-block;
            font-size: .67rem;
            font-weight: 700;
            letter-spacing: .06em;
            text-transform: uppercase;
            padding: 3px 10px;
            border-radius: 10px;
            background: var(--amber-bg);
            color: var(--amber);
            margin-bottom: 11px
        }

        .pname {
            font-family: var(--fd);
            font-size: 1.28rem;
            font-weight: 700;
            letter-spacing: -.02em
        }

        .plan.feat .pname {
            color: #fff
        }

        .psub2 {
            font-size: .81rem;
            color: var(--muted);
            margin-top: 4px;
            line-height: 1.5
        }

        .plan.feat .psub2 {
            color: rgba(255, 255, 255, .45)
        }

        .ppr {
            margin-top: 14px;
            display: flex;
            align-items: baseline;
            gap: 3px
        }

        .pcurr {
            font-size: .83rem;
            color: var(--muted);
            font-weight: 500;
            margin-top: 5px
        }

        .plan.feat .pcurr {
            color: rgba(255, 255, 255, .35)
        }

        .pamt {
            font-family: var(--fd);
            font-size: 2.1rem;
            font-weight: 900;
            letter-spacing: -.04em;
            color: var(--ink)
        }

        .plan.feat .pamt {
            color: #fff
        }

        .pper {
            font-size: .77rem;
            color: var(--muted)
        }

        .plan.feat .pper {
            color: rgba(255, 255, 255, .35)
        }

        .pbody {
            padding: 22px 26px
        }

        .pf {
            display: flex;
            align-items: flex-start;
            gap: 9px;
            padding: 6px 0;
            font-size: .86rem;
            color: var(--ink)
        }

        .chk {
            width: 18px;
            height: 18px;
            border-radius: 4px;
            flex-shrink: 0;
            margin-top: 1px;
            background: var(--teal-bg);
            color: var(--teal);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .63rem;
            font-weight: 700
        }

        .pcta {
            display: block;
            text-align: center;
            text-decoration: none;
            margin: 18px 26px 26px;
            padding: 12px;
            border-radius: 8px;
            font-size: .87rem;
            font-weight: 600;
            background: var(--off);
            color: var(--ink);
            border: 1.5px solid var(--border);
            transition: background .2s, color .2s, border-color .2s
        }

        .pcta:hover {
            background: var(--ink);
            color: #fff;
            border-color: var(--ink)
        }

        .plan.feat .pcta {
            background: var(--teal);
            color: #fff;
            border-color: var(--teal)
        }

        .plan.feat .pcta:hover {
            background: var(--teal-2);
            border-color: var(--teal-2)
        }

        /* contact */
        #contact {
            background: var(--off);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: start
        }

        .cl {
            padding-right: 40px
        }

        .ch2 {
            font-family: var(--fd);
            font-size: clamp(1.9rem, 2.8vw, 2.5rem);
            font-weight: 700;
            letter-spacing: -.03em;
            line-height: 1.15;
            color: var(--ink);
            margin-bottom: 14px
        }

        .csub {
            font-size: .95rem;
            color: var(--muted);
            line-height: 1.7;
            margin-bottom: 30px
        }

        .cpt {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            margin-bottom: 18px
        }

        .cpi {
            width: 36px;
            height: 36px;
            border-radius: 9px;
            flex-shrink: 0;
            background: var(--teal-bg);
            color: var(--teal);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .95rem
        }

        .cptit {
            font-size: .87rem;
            font-weight: 600;
            color: var(--ink);
            margin-bottom: 3px
        }

        .cpb {
            font-size: .81rem;
            color: var(--muted);
            line-height: 1.5
        }

        .iform {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 34px
        }

        .ftit {
            font-family: var(--fd);
            font-size: 1.28rem;
            font-weight: 700;
            margin-bottom: 5px;
            letter-spacing: -.02em
        }

        .fsubt {
            font-size: .81rem;
            color: var(--muted);
            margin-bottom: 26px
        }

        .frow {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 13px;
            margin-bottom: 13px
        }

        .fg {
            display: flex;
            flex-direction: column;
            gap: 5px;
            margin-bottom: 13px
        }

        label {
            font-size: .76rem;
            font-weight: 600;
            color: var(--ink);
            letter-spacing: .02em
        }

        .req {
            color: var(--teal)
        }

        input,
        select,
        textarea {
            font-family: var(--fb);
            font-size: .87rem;
            padding: 10px 13px;
            border: 1.5px solid var(--border);
            border-radius: 8px;
            background: var(--off);
            color: var(--ink);
            outline: none;
            transition: border-color .2s, box-shadow .2s;
            width: 100%
        }

        input:focus,
        select:focus,
        textarea:focus {
            border-color: var(--teal);
            box-shadow: 0 0 0 3px rgba(11, 158, 138, .1)
        }

        textarea {
            resize: vertical;
            min-height: 88px
        }

        .sbtn {
            width: 100%;
            padding: 13px;
            border: none;
            cursor: pointer;
            background: var(--ink);
            color: #fff;
            border-radius: 8px;
            font-family: var(--fb);
            font-size: .91rem;
            font-weight: 600;
            transition: background .2s, transform .15s;
            margin-top: 7px
        }

        .sbtn:hover {
            background: var(--teal);
            transform: translateY(-1px)
        }

        .fnote {
            font-size: .73rem;
            color: var(--muted);
            text-align: center;
            margin-top: 11px
        }

        #fsuccess {
            display: none;
            text-align: center;
            padding: 40px 20px
        }

        .sico {
            font-size: 2.4rem;
            margin-bottom: 14px
        }

        .stit2 {
            font-family: var(--fd);
            font-size: 1.38rem;
            font-weight: 700;
            color: var(--ink);
            margin-bottom: 7px
        }

        .ssubt {
            font-size: .87rem;
            color: var(--muted)
        }

        /* footer */
        footer {
            background: var(--navy);
            color: rgba(255, 255, 255, .45);
            padding: 44px 80px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-top: 1px solid rgba(255, 255, 255, .05)
        }

        .flogo {
            font-family: var(--fd);
            font-size: 1.3rem;
            font-weight: 700;
            color: #fff;
            letter-spacing: -.03em
        }

        .flogo span {
            color: var(--teal-2)
        }

        .flinks {
            display: flex;
            gap: 22px;
            list-style: none
        }

        .flinks a {
            font-size: .79rem;
            color: rgba(255, 255, 255, .35);
            text-decoration: none;
            transition: color .2s
        }

        .flinks a:hover {
            color: var(--teal-2)
        }

        .fcopy {
            font-size: .77rem
        }

        /* animations */
        @keyframes fu {
            from {
                opacity: 0;
                transform: translateY(20px)
            }

            to {
                opacity: 1;
                transform: translateY(0)
            }
        }

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

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

        /* responsive */
        @media(max-width:1100px) {
            #hero {
                grid-template-columns: 1fr
            }

            .hr {
                display: none
            }

            .hl {
                padding: 80px 40px
            }

            section {
                padding: 72px 40px
            }

            .sgrid,
            .cgrid,
            .prgrid,
            .psteps {
                grid-template-columns: 1fr 1fr
            }

            #contact {
                grid-template-columns: 1fr
            }

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

        @media(max-width:700px) {
            nav {
                padding: 0 20px
            }

            .nav-r a:not(.nav-cta):not(:last-child) {
                display: none
            }

            .hl {
                padding: 80px 22px
            }

            section {
                padding: 56px 22px
            }

            .sgrid,
            .cgrid,
            .prgrid,
            .pgrid,
            .psteps,
            .frow {
                grid-template-columns: 1fr
            }

            footer {
                padding: 32px 22px
            }
        }
