:root {
    --font-primary: "Open Sans", Arial, sans-serif;
    --dark: #080c1d;
    --dark-2: #12182f;
    --dark-3: #1b2038;
    --purple: #5b46ff;
    --purple-2: #7867ff;
    --purple-3: #3425d7;
    --orange: #ffb536;
    --text: #10162a;
    --muted: #6f758a;
    --line: #e8ebf5;
    --soft: #f7f8ff;
    --white: #ffffff;
    --shadow: 0 26px 65px rgba(8, 12, 29, .15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-primary);
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(1120px, calc(100% - 42px)); margin-inline: auto; }
.section-dark { background: var(--dark); color: var(--white); }
.section-light { background: #fff; color: var(--text); position: relative; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Header */
.main-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 22px 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { width: 158px; display: inline-flex; align-items: center; }
.brand img { width: 158px; height: auto; }
.nav-menu { display: flex; align-items: center; gap: 32px; color: rgba(255,255,255,.78); font-size: 14px; font-weight: 600; }
.nav-menu a { transition: color .2s ease; }
.nav-menu a:hover { color: #fff; }
.nav-action { display: flex; align-items: center; gap: 13px; }
.nav-action-mobile { display: none; }
.nav-action-desktop { display: flex; }
.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.08);
    border-radius: 10px;
    cursor: pointer;
    padding: 10px;
}
.nav-toggle span { display: block; height: 2px; margin: 5px 0; background: #fff; border-radius: 99px; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 24px;
    border: 0;
    border-radius: 5px;
    font-weight: 800;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--purple), var(--purple-3));
    box-shadow: 0 18px 32px rgba(91,70,255,.32);
}
.btn-secondary { color: #fff; background: rgba(255,255,255,.11); }
.btn-muted { color: var(--purple); background: #eef0ff; }
.btn-small { min-height: 36px; padding: 0 18px; font-size: 12px; }

/* Hero: closer to reference */
.hero {
    position: relative;
    min-height: 780px;
    padding-top: 125px;
    overflow: hidden;
    isolation: isolate;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(157deg, transparent 0 67%, rgba(17,22,42,.92) 67.2% 100%);
    opacity: .55;
    z-index: -6;
}
.hero-shape { position: absolute; pointer-events: none; z-index: -4; }
.hero-shape-left {
    width: 640px;
    height: 720px;
    left: -415px;
    top: 105px;
    background: linear-gradient(135deg, #654fff 0%, #3826d9 100%);
    border-radius: 48% 52% 57% 43% / 42% 48% 52% 58%;
}
.hero-shape-left-inner {
    width: 240px;
    height: 270px;
    left: 110px;
    top: 350px;
    background: rgba(255,255,255,.08);
    border-radius: 52% 48% 58% 42%;
    z-index: -3;
}
.hero-shape-right {
    width: 520px;
    height: 560px;
    right: -160px;
    top: 42px;
    background: #1b2038;
    border-radius: 56% 44% 50% 50% / 42% 40% 60% 58%;
}
.hero-shape-right-plate {
    width: 570px;
    height: 310px;
    right: -58px;
    bottom: 42px;
    background: linear-gradient(150deg, rgba(20,25,47,.62), rgba(20,25,47,.1));
    clip-path: polygon(14% 16%, 100% 0, 100% 100%, 0 100%);
    opacity: .78;
    z-index: -5;
}
.decor { position: absolute; pointer-events: none; user-select: none; }
.decor-hero-a { width: 78px; top: 132px; left: calc(50% + 250px); }
.decor-hero-b { width: 94px; top: 382px; right: calc(50% - 570px); opacity: .95; }
.hero-content { position: relative; z-index: 2; text-align: center; }
.eyebrow {
    margin: 0 0 12px;
    color: #8c7dff;
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: 11px;
    line-height: 1.4;
    font-weight: 900;
}
.text-purple { color: var(--purple); }
.hero h1 {
    max-width: 760px;
    margin: 0 auto 16px;
    color: #fff;
    font-family: var(--font-primary);
    font-size: clamp(36px, 4.85vw, 64px);
    line-height: 1.08;
    letter-spacing: -0.026em;
    font-weight: 800;
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
    text-shadow: 0 2px 0 rgba(0,0,0,.06);
}
.hero-copy {
    max-width: 560px;
    margin: 0 auto 22px;
    color: rgba(255,255,255,.67);
    font-size: 15px;
}
.subscribe-form {
    display: flex;
    justify-content: center;
    max-width: 420px;
    margin-inline: auto;
    padding: 4px;
    border-radius: 4px;
    background: rgba(255,255,255,.08);
}
.subscribe-form input {
    flex: 1 1 auto;
    min-width: 0;
    height: 46px;
    border: 0;
    outline: 0;
    color: #fff;
    background: #24293e;
    padding: 0 18px;
    border-radius: 3px 0 0 3px;
}
.subscribe-form input::placeholder { color: rgba(255,255,255,.72); }
.subscribe-form .btn { min-height: 46px; border-radius: 0 3px 3px 0; padding-inline: 28px; }
.hero-device-wrap {
    position: relative;
    width: min(690px, 86vw);
    margin: 46px auto 0;
    z-index: 2;
}
.hero-device {
    width: 100%;
    margin: 0 auto;
    filter: drop-shadow(0 36px 44px rgba(0,0,0,.42));
}
.device-decor { position: absolute; z-index: -1; }
.device-decor-left { width: 84px; left: -72px; top: 15px; }
.device-decor-right { width: 86px; right: -68px; top: 92px; }

/* Trusted */
.trusted {
    position: relative;
    z-index: 2;
    padding: 0 0 82px;
    text-align: center;
}
.trusted-inner { transform: translateY(-6px); }
.trusted p { margin: 0 0 26px; color: rgba(255,255,255,.48); font-size: 12px; font-weight: 700; }
.trusted-logos { display: flex; align-items: center; justify-content: center; gap: 34px; flex-wrap: wrap; }
.trusted-logos img { max-width: 112px; max-height: 28px; object-fit: contain; filter: brightness(0) invert(1); opacity: .96; }
.slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 30px; }
.slider-dots span { width: 5px; height: 5px; border-radius: 50%; background: var(--purple); }

/* Common sections */
.section-heading { position: relative; z-index: 3; }
.section-heading.center { text-align: center; }
.section-heading h2,
.feature-copy h2,
.process-copy h2,
.video-content h2,
.contact-panel h2,
.dashboard-heading h1 {
    margin: 0 0 15px;
    font-size: clamp(28px, 4vw, 45px);
    line-height: 1.13;
    letter-spacing: -.04em;
}
.section-heading p,
.process-copy p,
.contact-panel p,
.dashboard-heading p { margin: 0 auto; color: var(--muted); max-width: 660px; }

/* Services / What We Build */
.services {
    padding: 140px 0 120px;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 64%, rgba(91, 70, 255, .08), transparent 18%),
        radial-gradient(circle at 88% 92%, rgba(120, 103, 255, .10), transparent 22%),
        #fff;
}
.white-wave-top {
    position: absolute;
    left: -8%;
    right: -8%;
    top: -120px;
    height: 210px;
    background: #fff;
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
    transform: rotate(-2.4deg);
    z-index: 1;
}
.soft-shape {
    position: absolute;
    z-index: 1;
    background: #f5f4ff;
    pointer-events: none;
    filter: blur(.2px);
}
.soft-a {
    width: 188px;
    height: 146px;
    top: 92px;
    right: 11%;
    border-radius: 60% 40% 70% 30% / 45% 45% 55% 55%;
    opacity: .95;
    animation: floatY 8s ease-in-out infinite;
}
.soft-b {
    width: 188px;
    height: 222px;
    top: 396px;
    left: 3%;
    border-radius: 48% 52% 40% 60%;
    opacity: .85;
    animation: floatY 10s ease-in-out infinite reverse;
}
.decor-service {
    width: 82px;
    left: 5.5%;
    top: 345px;
    z-index: 2;
    opacity: .5;
    animation: floatY 7s ease-in-out infinite;
}
.decor-service-right {
    width: 76px;
    right: 7.5%;
    top: 192px;
    z-index: 2;
    opacity: .5;
    animation: floatY 6.5s ease-in-out infinite reverse;
}
.services .section-heading p:not(.eyebrow) {
    max-width: 700px;
    font-size: 16px;
    line-height: 1.7;
}
.services-showcase {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
    gap: 38px;
    align-items: center;
    margin-top: 52px;
}
.services-media {
    position: relative;
    padding: 18px 0 0 18px;
}
.services-media-card {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 34px 80px rgba(11, 19, 52, .16);
    background: linear-gradient(180deg, #fff, #f6f7ff);
}
.services-media-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(91,70,255,.06));
    pointer-events: none;
}
.services-media-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transform: scale(1.01);
}
.services-media-badge {
    position: absolute;
    left: -18px;
    bottom: 26px;
    width: 94px;
    height: 94px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(33, 36, 105, .98), rgba(91, 70, 255, .96));
    box-shadow: 0 24px 45px rgba(91,70,255,.26);
    display: grid;
    place-items: center;
    animation: floatY 5.5s ease-in-out infinite;
}
.services-media-badge img {
    width: 42px;
    filter: brightness(0) invert(1);
    opacity: .95;
}
.services-stack {
    display: grid;
    gap: 24px;
}
.service-card {
    display: grid;
    grid-template-columns: 118px 1fr;
    gap: 26px;
    align-items: center;
    padding: 28px 30px;
    border: 1px solid rgba(110, 114, 170, .16);
    border-radius: 28px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 18px 45px rgba(17, 24, 52, .06);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 58px rgba(69, 49, 201, .12);
    border-color: rgba(91, 70, 255, .24);
}
.service-icon-shell {
    width: 112px;
    height: 112px;
    border-radius: 24px;
    background: linear-gradient(180deg, #f8f7ff, #f1efff);
    display: grid;
    place-items: center;
}
.service-card img {
    width: 60px;
    filter: saturate(.95);
}
.service-card h3 {
    margin: 0 0 10px;
    font-size: 21px;
    line-height: 1.2;
    letter-spacing: -.03em;
    color: #121933;
}
.service-card p {
    margin: 0;
    color: #656d86;
    font-size: 15px;
    line-height: 1.8;
}
.services-stack .service-card:nth-child(2) { transition-delay: .08s; }
.services-stack .service-card:nth-child(3) { transition-delay: .16s; }

/* Dark feature section */
.feature {
    position: relative;
    min-height: 820px;
    padding: 205px 0 210px;
    overflow: hidden;
    background: linear-gradient(180deg, #1b2038 0%, #080c1d 72%);
}
.feature::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 17% 64%, rgba(91,70,255,.24), transparent 20%),
        radial-gradient(circle at 78% 42%, rgba(255,181,54,.09), transparent 18%);
    opacity: .8;
}
.dark-wave {
    position: absolute;
    left: -9%;
    right: -9%;
    height: 190px;
    background: #fff;
    z-index: 2;
}
.dark-wave-top { top: -92px; border-radius: 0 0 50% 50% / 0 0 100% 100%; transform: rotate(-3deg); }
.dark-wave-bottom { bottom: -95px; border-radius: 50% 50% 0 0 / 100% 100% 0 0; transform: rotate(3deg); }
.feature-inner { position: relative; z-index: 3; display: grid; grid-template-columns: .94fr 1.06fr; align-items: center; gap: 54px; }
.feature-copy h2 { color: #fff; }
.feature-copy > p:not(.eyebrow) { color: rgba(255,255,255,.66); max-width: 520px; margin: 0 0 30px; }
.feature-list { display: grid; gap: 18px; max-width: 520px; }
.feature-list div { display: grid; grid-template-columns: 54px 1fr; column-gap: 16px; align-items: start; }
.feature-list strong { color: var(--orange); font-size: 28px; line-height: 1; grid-row: span 2; }
.feature-list h3 { margin: 0 0 4px; color: #fff; font-size: 18px; }
.feature-list p { grid-column: 2; margin: 0; color: rgba(255,255,255,.58); font-size: 14px; }
.feature-visual { position: relative; }
.feature-visual > img:last-child { position: relative; z-index: 2; width: min(620px, 100%); margin-left: auto; filter: drop-shadow(0 38px 48px rgba(0,0,0,.34)); }
.shape-vector { position: absolute; pointer-events: none; }
.shape-v1 { width: 210px; right: -5%; bottom: -2%; opacity: .7; }
.shape-v2 { width: 78px; left: 16%; top: 0; z-index: 1; }

/* Portfolio */
.portfolio { padding: 120px 0 70px; overflow: hidden; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 50px; }
.portfolio-card {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 24px 55px rgba(8,12,29,.08);
}
.portfolio-card.is-active { transform: translateY(-14px); box-shadow: 0 35px 75px rgba(91,70,255,.17); }
.portfolio-image {
    height: 235px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 20px;
    background: #f5f6fe;
    margin-bottom: 20px;
}
.portfolio-image img { width: 125%; max-width: none; height: 100%; object-fit: cover; }
.portfolio-card:nth-child(1) .portfolio-image img,
.portfolio-card:nth-child(3) .portfolio-image img { width: 135%; height: auto; object-fit: contain; }
.portfolio-card span { color: var(--orange); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.portfolio-card h3 { margin: 8px 0 8px; font-size: 21px; letter-spacing: -.03em; }
.portfolio-card p { margin: 0; color: var(--muted); font-size: 14px; }

/* Process / testimonials */
.process.section-light {
    position: relative;
    padding: 138px 0 118px;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 14% 18%, rgba(91,70,255,.20), transparent 22%),
        radial-gradient(circle at 82% 72%, rgba(91,70,255,.10), transparent 18%),
        linear-gradient(180deg, #111730 0%, #080c1d 78%);
}
.process.section-light::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(164deg, transparent 0 64%, rgba(28,34,62,.35) 64.3% 100%),
        linear-gradient(154deg, transparent 0 71%, rgba(36,42,72,.22) 71.2% 100%);
    opacity: .9;
    pointer-events: none;
}
.process.section-light::after {
    content: "";
    position: absolute;
    left: -10%;
    right: -10%;
    top: -132px;
    height: 190px;
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
    background: #fff;
    transform: rotate(-2.5deg);
    z-index: 1;
}
.process-inner { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); gap: 74px; align-items: start; }
.testimonial-slider { position: relative; padding-right: 76px; }
.testimonial-viewport { overflow: hidden; transition: height .55s cubic-bezier(.22, 1, .36, 1); }
.testimonial-track {
    display: grid;
    gap: 34px;
    align-content: start;
    transition: transform .72s cubic-bezier(.22, 1, .36, 1);
    will-change: transform;
}
.testimonial-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 34px;
    align-items: center;
    min-height: 206px;
}
.testimonial-photo-wrap {
    position: relative;
    width: 220px;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255,255,255,.08);
    box-shadow: 0 22px 44px rgba(0, 0, 0, .22);
}
.testimonial-photo-wrap::before {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    right: -22px;
    top: -10px;
    border-radius: 50%;
    background: #f6b13b;
    z-index: 1;
}
.testimonial-photo-wrap::after {
    content: "";
    position: absolute;
    right: 18px;
    top: 24px;
    width: 38px;
    height: 18px;
    background-image: radial-gradient(circle, rgba(255,255,255,.95) 0 2px, transparent 3px);
    background-size: 18px 18px;
    background-repeat: repeat-x;
    z-index: 3;
    opacity: .9;
}
.testimonial-photo-wrap img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.testimonial-card-copy h3 {
    margin: 0 0 4px;
    color: #f2f4fb;
    font-size: 23px;
    line-height: 1.15;
    letter-spacing: -.03em;
}
.testimonial-role {
    display: block;
    margin-bottom: 10px;
    color: rgba(255,255,255,.64);
    font-size: 14px;
    font-weight: 800;
}
.testimonial-quote {
    color: rgba(255,255,255,.10);
    font-size: 48px;
    line-height: .75;
    font-weight: 800;
}
.testimonial-card p {
    margin: 10px 0 18px;
    color: rgba(255,255,255,.74);
    font-size: 15px;
    line-height: 1.55;
    max-width: 420px;
}
.testimonial-social { display: flex; gap: 18px; }
.testimonial-social span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    color: rgba(255,255,255,.55);
    font-size: 11px;
    font-weight: 800;
    text-transform: lowercase;
}
.testimonial-dots {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}
.testimonial-dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    border: 1px solid rgba(91,70,255,.65);
    background: transparent;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.testimonial-dot.is-active {
    background: var(--purple);
    border-color: var(--purple);
    transform: scale(1.05);
}
.process-copy { position: relative; }
.decor-process { width: 76px; left: -72px; top: 90px; }
.process-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.process-copy h2 { color: #fff; }
.process-copy > p:not(.eyebrow) { color: rgba(255,255,255,.68); }
.process-copy .btn-muted { background: rgba(255,255,255,.12); color: #fff; }
.process-copy .btn-muted:hover { background: rgba(255,255,255,.18); }

/* Video CTA */
.video-cta {
    position: relative;
    min-height: 260px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    padding: 84px 0;
    background:
        radial-gradient(circle at 14% 18%, rgba(91,70,255,.20), transparent 22%),
        radial-gradient(circle at 82% 72%, rgba(91,70,255,.10), transparent 18%),
        linear-gradient(180deg, #111730 0%, #080c1d 78%);
}
.video-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(164deg, transparent 0 64%, rgba(28,34,62,.35) 64.3% 100%),
        linear-gradient(154deg, transparent 0 71%, rgba(36,42,72,.22) 71.2% 100%);
    opacity: .9;
    pointer-events: none;
}
.video-cta video,
.video-overlay { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-cta video { opacity: .12; }
.video-overlay { background: linear-gradient(90deg, rgba(8,12,29,.66), rgba(8,12,29,.72)); }
.video-content { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 420px; gap: 42px; align-items: center; }
.video-content h2 { color: #fff; max-width: 540px; }
.video-content .eyebrow { color: #8f88ff; }
.cta-form { max-width: none; margin: 0; }

/* Pricing */
.pricing { padding: 115px 0 110px; overflow: hidden; }
.pricing::after { content: ""; position: absolute; right: 12%; top: 92px; width: 230px; height: 170px; background: #f5f6fe; border-radius: 54% 46% 44% 56%; z-index: 0; }
.pricing-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; margin-top: 54px; }
.pricing-card { position: relative; padding: 28px; border: 1px solid var(--line); border-radius: 28px; background: #fff; box-shadow: 0 24px 58px rgba(10,15,34,.08); }
.pricing-card.popular { border-color: rgba(91,70,255,.26); transform: translateY(-14px); box-shadow: 0 34px 70px rgba(91,70,255,.17); }
.badge { position: absolute; top: 18px; right: 18px; padding: 7px 12px; border-radius: 999px; color: var(--purple); background: rgba(91,70,255,.1); font-size: 11px; font-weight: 900; }
.pricing-card h3 { margin: 0 0 10px; font-size: 20px; }
.pricing-card strong { display: block; margin-bottom: 14px; color: var(--purple); font-size: 26px; letter-spacing: -.04em; }
.pricing-card p { margin: 0 0 18px; color: var(--muted); font-size: 14px; }
.pricing-card ul { display: grid; gap: 10px; padding: 0; margin: 0 0 24px; list-style: none; }
.pricing-card li { position: relative; padding-left: 22px; color: #454b5f; font-size: 13.5px; }
.pricing-card li::before { content: ""; position: absolute; left: 0; top: 9px; width: 9px; height: 9px; border-radius: 50%; background: var(--orange); }
.pricing-card .btn { width: 100%; }

/* Contact */
.contact-section.section-light {
    position: relative;
    padding: 26px 0 125px;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 14% 18%, rgba(91,70,255,.20), transparent 22%),
        radial-gradient(circle at 82% 72%, rgba(91,70,255,.10), transparent 18%),
        linear-gradient(180deg, #111730 0%, #080c1d 78%);
}
.contact-section.section-light::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(164deg, transparent 0 64%, rgba(28,34,62,.35) 64.3% 100%),
        linear-gradient(154deg, transparent 0 71%, rgba(36,42,72,.22) 71.2% 100%);
    opacity: .9;
    pointer-events: none;
}
.contact-panel {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 48px;
    align-items: start;
    padding: 44px;
    background: rgba(9, 14, 31, .46);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 34px;
    box-shadow: 0 28px 64px rgba(0,0,0,.24);
    backdrop-filter: blur(8px);
}
.contact-panel .eyebrow { color: #8f88ff; }
.contact-panel h2 { color: #fff; }
.contact-panel > div > p:not(.eyebrow) { color: rgba(255,255,255,.68); }
.alert { margin-top: 18px; padding: 14px 16px; border-radius: 14px; font-size: 14px; font-weight: 800; }
.alert.success { color: #dff8ea; background: rgba(19, 116, 66, .22); border: 1px solid rgba(128,255,193,.18); }
.alert.error { color: #ffdada; background: rgba(165, 49, 49, .24); border: 1px solid rgba(255,170,170,.16); }
.contact-form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label,
.admin-login-card label { display: grid; gap: 8px; color: rgba(255,255,255,.88); font-weight: 800; font-size: 13px; }
.contact-form input,
.contact-form select,
.contact-form textarea,
.admin-login-card input { width: 100%; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.05); border-radius: 14px; outline: 0; padding: 14px 16px; color: #fff; transition: border .2s ease, box-shadow .2s ease, background .2s ease; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,.48); }
.contact-form select { color: rgba(255,255,255,.86); }
.contact-form option { color: #121933; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.admin-login-card input:focus { border-color: rgba(91,70,255,.62); box-shadow: 0 0 0 4px rgba(91,70,255,.12); background: rgba(255,255,255,.07); }
.contact-form textarea { resize: vertical; }
.contact-form .btn { justify-self: start; }

/* Footer */
.footer {
    position: relative;
    overflow: hidden;
    padding: 128px 0 42px;
    background:
        radial-gradient(circle at 16% 18%, rgba(120,103,255,.34), transparent 25%),
        radial-gradient(circle at 84% 72%, rgba(255,181,54,.16), transparent 23%),
        linear-gradient(135deg, #171f47 0%, #24175f 46%, #5b46ff 120%);
}
.footer::before,
.footer::after {
    content: "";
    position: absolute;
    pointer-events: none;
    border-radius: 999px;
    filter: blur(18px);
    opacity: .55;
    animation: footerGlowMove 9s ease-in-out infinite;
}
.footer::before {
    width: 360px;
    height: 360px;
    left: -130px;
    bottom: -160px;
    background: rgba(91,70,255,.58);
}
.footer::after {
    width: 300px;
    height: 300px;
    right: -90px;
    top: 14px;
    background: rgba(255,255,255,.11);
    animation-delay: -3s;
}
.footer-top-shape {
    position: absolute;
    left: -10%;
    right: -10%;
    top: -86px;
    height: 168px;
    background: linear-gradient(180deg, rgba(8,12,29,.08), rgba(255,255,255,.08));
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
    transform: rotate(3deg);
    box-shadow: inset 0 -1px 0 rgba(255,255,255,.10);
}
.footer-cta {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 330px;
    height: 170px;
    padding-top: 56px;
    text-align: center;
    color: rgba(255,255,255,.74);
    font-size: 14px;
    font-weight: 900;
    background: linear-gradient(135deg, rgba(255,255,255,.16), rgba(255,255,255,.04));
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 50% 50% 0 0;
    box-shadow: 0 28px 70px rgba(0,0,0,.20), inset 0 0 0 1px rgba(255,255,255,.04);
    backdrop-filter: blur(10px);
    z-index: 2;
}
.footer-inner { position: relative; z-index: 3; display: grid; grid-template-columns: 1.45fr .8fr 1fr; gap: 62px; }
.footer-brand img { width: 160px; margin-bottom: 18px; }
.footer p,
.footer a { display: block; margin: 0 0 10px; color: rgba(255,255,255,.74); font-size: 14px; }
.footer a { transition: color .2s ease, transform .2s ease; }
.footer a:hover { color: #fff; transform: translateX(3px); }
.footer h3 { margin: 0 0 16px; color: #fff; font-size: 15px; }
.footer-bottom { position: relative; z-index: 3; margin-top: 58px; color: rgba(255,255,255,.56); text-align: center; font-size: 12px; }

/* Admin */
.admin-body { min-height: 100vh; background: radial-gradient(circle at 20% 20%, rgba(91,70,255,.42), transparent 24%), linear-gradient(135deg, #080c1d, #171d38); color: #fff; padding: 32px; }
.admin-login-card { width: min(430px, 100%); margin: 7vh auto; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 28px; padding: 34px; box-shadow: 0 40px 80px rgba(0,0,0,.28); backdrop-filter: blur(14px); }
.admin-login-card img { width: 180px; margin-bottom: 24px; }
.admin-login-card h1 { margin: 0 0 8px; font-size: 30px; }
.admin-login-card p,
.admin-login-card small { color: rgba(255,255,255,.65); }
.admin-login-card form { display: grid; gap: 16px; margin-top: 24px; }
.admin-login-card label { color: #fff; }
.admin-login-card small { display: block; margin-top: 18px; }
.back-link { display: inline-block; margin-top: 22px; color: #fff; }
.admin-topbar { width: min(1120px, 100%); margin: 0 auto 34px; display: flex; align-items: center; justify-content: space-between; }
.admin-topbar img { width: 160px; }
.admin-topbar nav { display: flex; gap: 18px; }
.admin-topbar a { color: rgba(255,255,255,.8); }
.admin-dashboard { width: min(1120px, 100%); margin: 0 auto; }
.dashboard-heading { margin-bottom: 28px; }
.dashboard-heading p { color: rgba(255,255,255,.72); }
.message-table-wrap { overflow: auto; border-radius: 22px; background: #fff; box-shadow: 0 40px 80px rgba(0,0,0,.25); }
.message-table { width: 100%; min-width: 900px; border-collapse: collapse; color: var(--text); }
.message-table th,
.message-table td { padding: 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; font-size: 14px; }
.message-table th { background: #f7f8ff; color: #373d52; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.message-table small { color: var(--muted); }

/* Reveal animation */
.reveal-item { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal-item.is-visible { opacity: 1; transform: translateY(0); }
.portfolio-card.is-active.reveal-item,
.pricing-card.popular.reveal-item { transform: translateY(-14px); }
.portfolio-card.is-active.reveal-item.is-visible,
.pricing-card.popular.reveal-item.is-visible { transform: translateY(-14px); }

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}


@media (max-width: 1080px) {
    .nav-menu { gap: 20px; }
    .hero { min-height: 735px; }
    .hero-device-wrap { width: min(630px, 88vw); }
    .hero-shape-left { left: -465px; }
    .feature-inner,
    .process-inner,
    .contact-panel,
    .video-content { grid-template-columns: 1fr; }
    .testimonial-slider { padding-right: 0; }
    .testimonial-dots { position: static; transform: none; flex-direction: row; justify-content: center; margin-top: 24px; }
    .feature-visual > img:last-child { margin: 0 auto; }
    .portfolio-grid { grid-template-columns: 1fr; max-width: 620px; }
    .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 820px; }
    .portfolio-card.is-active,
    .pricing-card.popular { transform: none; }
    .portfolio-card.is-active.reveal-item,
    .pricing-card.popular.reveal-item,
    .portfolio-card.is-active.reveal-item.is-visible,
    .pricing-card.popular.reveal-item.is-visible { transform: translateY(0); }
    .portfolio-image { height: 300px; }
    .services-showcase { grid-template-columns: 1fr; gap: 28px; }
    .services-media { max-width: 760px; margin: 0 auto; }
    .services-stack { max-width: 760px; margin: 0 auto; }
}

@media (max-width: 860px) {
    .main-header { padding: 16px 0; }
    .nav-toggle { display: block; }
    .nav { position: relative; }
    .nav-menu,
    .nav-action {
        position: absolute;
        left: 0;
        right: 0;
        top: 58px;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding: 16px;
        background: rgba(8,12,29,.97);
        border: 1px solid rgba(255,255,255,.12);
        border-radius: 18px;
        box-shadow: 0 24px 60px rgba(0,0,0,.24);
    }
    .nav-menu a { padding: 12px 4px; }
    .nav-action { top: 270px; flex-direction: row; justify-content: center; }
    body.nav-open .nav-menu,
    body.nav-open .nav-action { display: flex; }
    .hero { min-height: 710px; padding-top: 112px; }
    .decor-hero-a, .decor-hero-b, .device-decor { display: none; }
    .trusted-logos { gap: 22px; }
    .trusted-logos img { max-width: 96px; }
    .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 620px) {
    .container { width: min(100% - 28px, 1120px); }
    .brand, .brand img { width: 138px; }
    .hero { min-height: 640px; padding-top: 106px; }
    .hero h1 { font-size: 35px; }
    .hero-copy { font-size: 14px; }
    .subscribe-form { flex-direction: column; gap: 8px; background: transparent; padding: 0; }
    .subscribe-form input,
    .subscribe-form .btn { width: 100%; border-radius: 8px; }
    .hero-device-wrap { width: 102vw; margin-left: 50%; transform: translateX(-50%); margin-top: 34px; }
    .hero-shape-left { width: 470px; height: 530px; left: -330px; top: 170px; }
    .hero-shape-right { width: 340px; height: 360px; right: -210px; }
    .trusted { padding-bottom: 62px; }
    .services { padding: 108px 0 88px; }
    .service-card { grid-template-columns: 88px 1fr; gap: 18px; padding: 22px; border-radius: 22px; }
    .service-icon-shell { width: 80px; height: 80px; border-radius: 20px; }
    .service-card img { width: 44px; }
    .service-card h3 { font-size: 18px; }
    .service-card p { font-size: 14px; line-height: 1.65; }
    .services-media-badge { width: 78px; height: 78px; left: -8px; bottom: 18px; }
    .feature { padding: 150px 0 155px; min-height: auto; }
    .feature-list div { grid-template-columns: 42px 1fr; }
    .feature-list strong { font-size: 22px; }
    .portfolio { padding: 90px 0 50px; }
    .portfolio-image { height: 220px; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 440px; }
    .process { padding: 50px 0 85px; }
    .testimonial-card { grid-template-columns: 96px 1fr; gap: 18px; align-items: start; }
    .testimonial-photo-wrap { width: 96px; }
    .testimonial-card-copy h3 { font-size: 20px; }
    .testimonial-card p { font-size: 14px; margin-bottom: 14px; }
    .form-row { grid-template-columns: 1fr; }
    .contact-panel { padding: 26px; border-radius: 24px; }
    .video-cta { padding: 68px 0; }
    .admin-body { padding: 18px; }
    .admin-login-card { padding: 24px; }
    .admin-topbar { align-items: flex-start; gap: 16px; flex-direction: column; }
}


/* =========================================================
   HERO V3 — dibuat lebih dekat dengan referensi Shape
   ========================================================= */
.main-header {
    padding: 24px 0 0;
}
.nav.container {
    width: min(1110px, calc(100% - 42px));
}
.brand,
.brand img {
    width: 160px;
}
.nav-menu {
    gap: 36px;
    font-size: 14px;
    color: rgba(255,255,255,.86);
}
.nav-action {
    gap: 14px;
}
.btn-small {
    min-height: 40px;
    min-width: 86px;
    padding: 0 20px;
    border-radius: 6px;
    font-size: 12px;
}
.btn-primary {
    background: linear-gradient(135deg, #715dff 0%, #4f36f4 100%);
    box-shadow: 0 16px 36px rgba(88,69,255,.38);
}
.btn-secondary {
    background: rgba(255,255,255,.14);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
}
.hero.section-dark {
    min-height: 900px;
    padding-top: 154px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 8%, rgba(23,31,60,.38) 0, rgba(8,12,29,0) 34%),
        linear-gradient(180deg, #090d1e 0%, #070b1a 100%);
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(164deg, transparent 0 64%, rgba(28,34,62,.42) 64.3% 100%),
        linear-gradient(154deg, transparent 0 71%, rgba(36,42,72,.34) 71.2% 100%);
    opacity: .9;
    z-index: -6;
}
.hero::after {
    content: "";
    position: absolute;
    left: -10%;
    right: -10%;
    bottom: -214px;
    height: 375px;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    background: #070b19;
    box-shadow: 0 -22px 65px rgba(0,0,0,.18);
    z-index: 5;
    pointer-events: none;
}
.hero-shape-left {
    width: 805px;
    height: 900px;
    left: -510px;
    top: 118px;
    border-radius: 47% 53% 60% 40% / 42% 48% 52% 58%;
    background: linear-gradient(142deg, #6a55ff 0%, #4630e8 55%, #3824d1 100%);
    box-shadow: 80px 0 120px rgba(63,46,230,.18) inset;
    z-index: -5;
}
.hero-shape-left-inner {
    width: 262px;
    height: 304px;
    left: 95px;
    top: 560px;
    border-radius: 48% 52% 56% 44% / 47% 43% 57% 53%;
    background: rgba(255,255,255,.075);
    z-index: -4;
}
.hero-shape-right {
    width: 555px;
    height: 585px;
    right: -170px;
    top: 72px;
    border-radius: 55% 45% 47% 53% / 48% 43% 57% 52%;
    background: linear-gradient(145deg, rgba(35,41,72,.88), rgba(23,29,53,.86));
    z-index: -5;
}
.hero-shape-right-plate {
    width: 635px;
    height: 344px;
    right: -72px;
    bottom: 92px;
    clip-path: polygon(15% 16%, 100% 0, 100% 100%, 0 100%);
    background:
        repeating-linear-gradient(153deg, rgba(255,255,255,.025) 0 20px, transparent 20px 42px),
        linear-gradient(150deg, rgba(27,33,60,.68), rgba(16,21,40,.18));
    opacity: .9;
    z-index: -6;
}
.decor-hero-a {
    width: 82px;
    top: 185px;
    left: calc(50% + 247px);
    opacity: .95;
    z-index: 1;
}
.decor-hero-b {
    width: 92px;
    top: 478px;
    right: calc(50% - 545px);
    opacity: .78;
    z-index: 1;
}
.hero-content {
    width: min(1000px, calc(100% - 42px));
    text-align: center;
}
.hero .eyebrow {
    margin-bottom: 16px;
    color: #7663ff;
    letter-spacing: .24em;
    font-size: 12px;
    font-weight: 900;
}
.hero h1 {
    max-width: 760px;
    margin: 0 auto 16px;
    font-family: var(--font-primary);
    font-size: clamp(42px, 5.05vw, 64px);
    line-height: 1.08;
    letter-spacing: -0.026em;
    font-weight: 800;
    color: #fff;
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
    text-shadow: 0 6px 26px rgba(0,0,0,.18);
}
.hero-copy {
    max-width: 585px;
    margin: 0 auto 26px;
    color: rgba(255,255,255,.62);
    font-size: 16px;
    line-height: 1.58;
}
.hero-form {
    max-width: 558px;
    height: 56px;
    gap: 12px;
    padding: 0;
    background: transparent;
    border-radius: 7px;
}
.hero-form input {
    height: 56px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 6px;
    background: rgba(45,51,80,.9);
    color: #fff;
    padding: 0 24px;
    font-weight: 700;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}
.hero-form input::placeholder {
    color: rgba(255,255,255,.75);
}
.hero-form .btn {
    min-width: 150px;
    min-height: 56px;
    height: 56px;
    border-radius: 6px;
    padding: 0 28px;
    font-size: 13px;
}
.hero-device-wrap {
    width: min(735px, 78vw);
    margin: 48px auto 0;
    z-index: 3;
}
.hero-device {
    width: 100%;
    filter: drop-shadow(0 40px 55px rgba(0,0,0,.46));
}
.device-decor-left {
    width: 93px;
    left: -92px;
    top: 28px;
    opacity: .9;
}
.device-decor-right {
    width: 88px;
    right: -86px;
    top: 98px;
    opacity: .82;
}
.trusted.section-dark {
    position: relative;
    z-index: 8;
    margin-top: -100px;
    padding: 0 0 86px;
    background: #070b19;
    text-align: center;
}
.trusted-inner {
    transform: none;
}
.trusted p {
    margin: 0 0 32px;
    color: rgba(255,255,255,.45);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .02em;
}
.trusted-logos {
    gap: 46px;
}
.trusted-logos img {
    max-width: 152px;
    max-height: 34px;
    filter: brightness(0) invert(1);
    opacity: .98;
}
.slider-dots {
    gap: 11px;
    margin-top: 36px;
}
.slider-dots span {
    width: 7px;
    height: 7px;
    background: #5b46ff;
    box-shadow: 0 0 0 1px rgba(91,70,255,.6);
}
.slider-dots span:first-child {
    background: transparent;
}

@media (max-width: 1080px) {
    .hero.section-dark {
        min-height: 835px;
        padding-top: 136px;
    }
    .hero h1 {
        font-size: clamp(38px, 5.7vw, 58px);
        line-height: 1.08;
        letter-spacing: -0.026em;
    }
    .hero-device-wrap {
        width: min(680px, 82vw);
        margin-top: 42px;
    }
    .hero-shape-left {
        left: -580px;
        top: 130px;
    }
    .hero-shape-right {
        right: -235px;
    }
    .trusted.section-dark {
        margin-top: -92px;
    }
    .trusted-logos {
        gap: 30px;
    }
    .trusted-logos img {
        max-width: 126px;
    }
}

@media (max-width: 860px) {
    .main-header {
        padding-top: 16px;
    }
    .nav.container {
        width: min(100% - 30px, 1110px);
    }
    .nav-menu,
    .nav-action {
        top: 62px;
        z-index: 99;
    }
    .nav-action {
        top: 264px;
    }
    .hero.section-dark {
        min-height: 790px;
        padding-top: 118px;
    }
    .hero h1 {
        max-width: 620px;
        font-size: clamp(36px, 8.2vw, 52px);
        line-height: 1.08;
        letter-spacing: -0.026em;
    }
    .hero-copy {
        font-size: 15px;
    }
    .hero-form {
        max-width: 500px;
    }
    .hero-device-wrap {
        width: min(660px, 92vw);
    }
    .hero-shape-left {
        width: 650px;
        height: 760px;
        left: -460px;
        top: 150px;
    }
    .hero-shape-right {
        width: 420px;
        height: 460px;
        right: -240px;
        top: 78px;
    }
    .trusted.section-dark {
        margin-top: -72px;
        padding-bottom: 70px;
    }
}

@media (max-width: 620px) {
    .brand,
    .brand img {
        width: 142px;
    }
    .hero.section-dark {
        min-height: 720px;
        padding-top: 108px;
    }
    .hero::after {
        bottom: -170px;
        height: 290px;
    }
    .hero .eyebrow {
        font-size: 10px;
        letter-spacing: .18em;
    }
    .hero h1 {
        font-size: 36px;
        line-height: 1.08;
        letter-spacing: -0.026em;
    }
    .hero-copy {
        max-width: 360px;
        font-size: 14px;
    }
    .hero-form {
        height: auto;
        flex-direction: column;
        gap: 10px;
        max-width: 360px;
    }
    .hero-form input,
    .hero-form .btn {
        width: 100%;
        height: 50px;
        min-height: 50px;
        border-radius: 7px;
    }
    .hero-device-wrap {
        width: 108vw;
        margin-top: 34px;
        margin-left: 50%;
        transform: translateX(-50%);
    }
    .hero-shape-left {
        width: 500px;
        height: 610px;
        left: -360px;
        top: 185px;
    }
    .hero-shape-left-inner,
    .hero-shape-right-plate {
        display: none;
    }
    .trusted.section-dark {
        margin-top: -58px;
    }
    .trusted p {
        font-size: 12px;
        margin-bottom: 24px;
    }
    .trusted-logos {
        gap: 20px 28px;
    }
    .trusted-logos img {
        max-width: 105px;
        max-height: 26px;
    }
}

/* =========================================================
   ADMIN CMS V5
   ========================================================= */
.btn-danger {
    color: #fff;
    background: #d84343;
    box-shadow: 0 14px 26px rgba(216,67,67,.24);
}
.cms-body { background-attachment: fixed; }
.cms-dashboard { padding-bottom: 80px; }
.cms-section { margin-top: 34px; scroll-margin-top: 24px; }
.cms-section-title {
    margin: 0 0 18px;
    padding: 26px 28px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 24px;
    box-shadow: 0 30px 70px rgba(0,0,0,.18);
}
.cms-section-title h2 { margin: 0 0 8px; color: #fff; font-size: 28px; letter-spacing: -.03em; }
.cms-section-title p { margin: 0; color: rgba(255,255,255,.68); }
.cms-section-title code { color: #fff; background: rgba(255,255,255,.1); border-radius: 7px; padding: 2px 6px; }
.cms-panel {
    margin-bottom: 20px;
    padding: 24px;
    border-radius: 24px;
    background: #fff;
    color: var(--text);
    box-shadow: 0 34px 80px rgba(0,0,0,.20);
    border: 1px solid rgba(255,255,255,.12);
}
.cms-panel h3 { margin: 0 0 16px; color: #171d34; font-size: 20px; letter-spacing: -.03em; }
.cms-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.cms-field {
    display: grid;
    gap: 8px;
    align-content: start;
    color: #252b3d;
    font-weight: 800;
    font-size: 13px;
}
.cms-field span { color: #252b3d; }
.cms-field small { color: var(--muted); font-weight: 700; }
.cms-field input[type="text"],
.cms-field input[type="number"],
.cms-field input[type="file"],
.cms-field textarea,
.cms-field select {
    width: 100%;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 13px;
    outline: 0;
    padding: 12px 14px;
    color: var(--text);
    font-weight: 700;
    transition: border .2s ease, box-shadow .2s ease;
}
.cms-field textarea { resize: vertical; min-height: 94px; }
.cms-field input:focus,
.cms-field textarea:focus {
    border-color: rgba(91,70,255,.55);
    box-shadow: 0 0 0 4px rgba(91,70,255,.10);
}
.cms-preview-img {
    max-width: 190px;
    max-height: 90px;
    width: auto;
    height: auto;
    object-fit: contain;
    padding: 10px;
    border-radius: 14px;
    background: #10162a;
    border: 1px solid #242b45;
}
.cms-preview-img.small { max-width: 150px; max-height: 82px; }
.cms-save-main { margin-top: 10px; }
.content-manager-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 18px;
}
.content-manager-head p { margin: -6px 0 0; color: var(--muted); }
.count-pill {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 13px;
    border-radius: 999px;
    color: var(--purple);
    background: #eef0ff;
    font-weight: 900;
    font-size: 12px;
}
.content-item-list { display: grid; gap: 14px; }
.content-item-card {
    display: grid;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--line);
    background: #fbfcff;
    border-radius: 20px;
}
.content-item-card.new { margin-top: 16px; background: #fff; }
.content-item-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.item-description,
.item-message,
.item-features { grid-column: 1 / -1; }
.item-is_active .switch-row {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    color: #252b3d;
    font-weight: 800;
    padding: 10px 12px;
    border-radius: 12px;
    background: #eef0ff;
}
.content-item-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.add-content-box { margin-top: 16px; }
.add-content-box summary {
    cursor: pointer;
    width: fit-content;
    padding: 11px 15px;
    border-radius: 13px;
    color: var(--purple);
    background: #eef0ff;
    font-weight: 900;
}
.admin-topbar nav { flex-wrap: wrap; }
.admin-topbar nav a {
    padding: 8px 10px;
    border-radius: 10px;
    background: rgba(255,255,255,.06);
}
@media (max-width: 820px) {
    .cms-grid,
    .content-item-grid { grid-template-columns: 1fr; }
    .content-manager-head { flex-direction: column; }
}


/* =========================================================
   MOBILE HERO REFINEMENT V7
   ========================================================= */
@media (max-width: 620px) {
    .main-header {
        padding-top: 12px;
    }
    .nav.container {
        width: calc(100% - 28px);
    }
    .nav {
        gap: 12px;
    }
    .nav-toggle {
        width: 58px;
        height: 58px;
        padding: 14px;
        border-radius: 10px;
        background: rgba(255,255,255,.04);
        border-color: rgba(255,255,255,.15);
    }
    .nav-toggle span {
        margin: 6px 0;
    }
    .nav-menu,
    .nav-action {
        top: 70px;
    }
    .nav-action {
        top: 278px;
    }
    .hero.section-dark {
        min-height: 860px;
        padding-top: 98px;
    }
    .hero::after {
        bottom: -138px;
        height: 250px;
    }
    .hero-content {
        padding-inline: 2px;
    }
    .hero .eyebrow {
        display: none;
    }
    .hero h1 {
        max-width: 400px;
        margin-bottom: 24px;
        font-size: clamp(31px, 8.8vw, 48px);
        line-height: 1.07;
        letter-spacing: -.03em;
    }
    .hero-copy {
        max-width: 420px;
        margin-bottom: 30px;
        color: rgba(255,255,255,.75);
        font-size: 16px;
        line-height: 1.55;
    }
    .hero-form {
        max-width: 396px;
        gap: 16px;
        background: transparent;
        padding: 0;
    }
    .hero-form input {
        height: 60px;
        padding: 0 30px;
        border-radius: 5px;
        background: #2d3155;
        font-size: 15px;
        font-weight: 700;
    }
    .hero-form input::placeholder {
        color: rgba(255,255,255,.88);
    }
    .hero-form .btn {
        width: min(170px, 100%);
        height: 58px;
        min-height: 58px;
        margin: 0 auto;
        border-radius: 8px;
        font-size: 14px;
        box-shadow: 0 16px 34px rgba(88,69,255,.33);
    }
    .hero-device-wrap {
        width: min(540px, 122vw);
        margin-top: 42px;
        margin-left: 50%;
        transform: translateX(-50%);
    }
    .hero-device {
        filter: drop-shadow(0 26px 34px rgba(0,0,0,.40));
    }
    .hero-shape-left {
        width: 470px;
        height: 540px;
        left: -210px;
        top: 372px;
    }
    .hero-shape-right {
        width: 355px;
        height: 430px;
        right: -214px;
        top: 146px;
    }
    .trusted.section-dark {
        margin-top: -26px;
        padding-bottom: 56px;
    }
}

@media (max-width: 480px) {
    .brand,
    .brand img {
        width: 134px;
    }
    .hero.section-dark {
        min-height: 835px;
        padding-top: 92px;
    }
    .hero h1 {
        max-width: 360px;
        font-size: 29px;
    }
    .hero-copy {
        max-width: 360px;
        font-size: 14px;
    }
    .hero-form {
        max-width: 364px;
    }
    .hero-form input {
        height: 58px;
        padding-inline: 24px;
    }
    .hero-device-wrap {
        width: min(560px, 129vw);
        margin-top: 40px;
    }
    .hero-shape-left {
        width: 430px;
        height: 500px;
        left: -220px;
        top: 392px;
    }
    .hero-shape-right {
        width: 315px;
        height: 400px;
        right: -212px;
        top: 155px;
    }
}

/* =========================================================
   MOBILE HERO V8 — disesuaikan dengan referensi Shape mobile
   ========================================================= */
@media (max-width: 620px) {
    .main-header {
        padding-top: 15px;
    }

    .nav.container {
        width: calc(100% - 24px);
    }

    .brand,
    .brand img {
        width: 150px;
    }

    .nav-toggle {
        width: 52px;
        height: 52px;
        border-radius: 8px;
        background: rgba(255,255,255,.04);
        border: 1px solid rgba(255,255,255,.16);
        box-shadow: none;
    }

    .hero.section-dark {
        min-height: 835px;
        padding-top: 102px;
        background:
            radial-gradient(circle at 48% 2%, rgba(18,25,52,.38) 0, rgba(8,12,29,0) 36%),
            linear-gradient(180deg, #090d1e 0%, #070b1a 100%);
    }

    .hero::after {
        left: -18%;
        right: -18%;
        bottom: -128px;
        height: 238px;
        z-index: 5;
    }

    .hero .eyebrow {
        display: none;
    }

    .hero h1 {
        max-width: 395px;
        margin: 0 auto 26px;
        font-size: clamp(27px, 6.25vw, 31px);
        line-height: 1.08;
        letter-spacing: -.025em;
        font-weight: 800;
    }

    .hero-copy {
        max-width: 420px;
        margin: 0 auto 31px;
        font-size: 16px;
        line-height: 1.5;
        color: rgba(255,255,255,.70);
    }

    .hero-form {
        max-width: 396px;
        margin-inline: auto;
        padding: 0;
        gap: 16px;
        background: transparent;
        flex-direction: column;
    }

    .hero-form input {
        width: 100%;
        height: 61px;
        min-height: 61px;
        padding: 0 28px;
        border-radius: 5px;
        background: #303451;
        color: #fff;
        font-size: 15px;
        font-weight: 800;
        box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
    }

    .hero-form input::placeholder {
        color: rgba(255,255,255,.88);
        font-weight: 800;
    }

    .hero-form .btn {
        width: 170px;
        height: 58px;
        min-height: 58px;
        margin: 0 auto;
        border-radius: 7px;
        font-size: 14px;
        box-shadow: 0 16px 36px rgba(91,70,255,.35);
    }

    .hero-device-wrap {
        width: min(430px, 96vw);
        margin-top: 78px;
        margin-left: 50%;
        transform: translateX(-50%);
    }

    .hero-device {
        width: 100%;
        filter: drop-shadow(0 24px 34px rgba(0,0,0,.42));
    }

    .hero-shape-left {
        width: 455px;
        height: 555px;
        left: -275px;
        top: 340px;
        border-radius: 48% 52% 58% 42% / 42% 48% 52% 58%;
    }

    .hero-shape-right {
        width: 345px;
        height: 425px;
        right: -214px;
        top: 172px;
        opacity: .92;
    }

    .decor-hero-a,
    .decor-hero-b,
    .device-decor {
        display: none;
    }

    .trusted.section-dark {
        margin-top: -34px;
        padding-bottom: 56px;
    }
}

@media (max-width: 480px) {
    .brand,
    .brand img {
        width: 106px;
    }

    .main-header {
        padding-top: 16px;
    }

    .nav.container {
        width: calc(100% - 22px);
    }

    .nav-toggle {
        width: 54px;
        height: 54px;
    }

    .hero.section-dark {
        min-height: 820px;
        padding-top: 104px;
    }

    .hero h1 {
        max-width: 360px;
        font-size: 28px;
        line-height: 1.08;
        margin-bottom: 28px;
    }

    .hero-copy {
        max-width: 430px;
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 31px;
    }

    .hero-form {
        max-width: calc(100% - 76px);
    }

    .hero-form input {
        height: 61px;
        min-height: 61px;
        padding-inline: 46px;
    }

    .hero-form .btn {
        width: 170px;
    }

    .hero-device-wrap {
        width: 430px;
        max-width: 96vw;
        margin-top: 78px;
    }

    .hero-shape-left {
        width: 440px;
        height: 540px;
        left: -286px;
        top: 342px;
    }

    .hero-shape-right {
        width: 340px;
        height: 430px;
        right: -230px;
        top: 170px;
    }

    .hero::after {
        bottom: -128px;
        height: 236px;
    }
}

/* =========================================================
   PORTFOLIO SLIDER V10 — full kiri-kanan + detail click
   ========================================================= */
.portfolio.section-light {
    position: relative;
    padding: 118px 0 115px;
    overflow: hidden;
    background:
        radial-gradient(circle at 9% 9%, rgba(91,70,255,.08), transparent 22%),
        radial-gradient(circle at 88% 82%, rgba(91,70,255,.08), transparent 24%),
        #fff;
}
.portfolio-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(91,70,255,.07);
    filter: blur(35px);
    pointer-events: none;
}
.portfolio-glow-left { left: -210px; top: 24px; }
.portfolio-glow-right { right: -190px; bottom: 42px; }
.portfolio-head {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(0, 720px) auto;
    align-items: end;
    gap: 28px;
    margin-bottom: 52px;
}
.portfolio-head .section-heading {
    text-align: left;
}
.portfolio-head .section-heading h2 {
    max-width: 720px;
    margin-bottom: 16px;
}
.portfolio-head .section-heading p:not(.eyebrow) {
    margin: 0;
    max-width: 650px;
    font-size: 16px;
    line-height: 1.75;
}
.portfolio-controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    padding-bottom: 8px;
}
.portfolio-arrow {
    width: 54px;
    height: 54px;
    border: 1px solid rgba(91,70,255,.22);
    border-radius: 17px;
    background: rgba(255,255,255,.9);
    color: var(--purple);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 20px 44px rgba(42,47,86,.08);
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.portfolio-arrow:hover {
    transform: translateY(-3px);
    background: #fff;
    box-shadow: 0 28px 56px rgba(91,70,255,.14);
}
.portfolio-slider-viewport {
    position: relative;
    z-index: 3;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow-x: auto;
    overflow-y: visible;
    padding: 8px 0 28px;
    scroll-behavior: smooth;
    scrollbar-width: none;
}
.portfolio-slider-viewport::-webkit-scrollbar { display: none; }
.portfolio-track {
    display: flex;
    align-items: stretch;
    gap: 30px;
    width: max-content;
    padding-inline: clamp(22px, 3.5vw, 58px);
}
.portfolio-slider-card {
    flex: 0 0 clamp(310px, 24vw, 390px);
    min-height: 535px;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(20,26,48,.08);
    background: #fff;
    box-shadow: 0 25px 65px rgba(11,17,42,.09);
    color: var(--text);
    scroll-snap-align: start;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.portfolio-slider-card:hover {
    transform: translateY(-10px);
    border-color: rgba(91,70,255,.20);
    box-shadow: 0 38px 82px rgba(91,70,255,.16);
}
.portfolio-cover {
    height: 265px;
    margin: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #eff0ff, #fff);
}
.portfolio-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .36s ease;
}
.portfolio-slider-card:hover .portfolio-cover img { transform: scale(1.05); }
.portfolio-card-body {
    display: flex;
    min-height: 270px;
    flex-direction: column;
    padding: 26px 28px 28px;
}
.portfolio-card-body span {
    width: fit-content;
    margin-bottom: 16px;
    padding: 8px 13px;
    border-radius: 999px;
    color: var(--purple);
    background: rgba(91,70,255,.09);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .14em;
}
.portfolio-card-body h3 {
    margin: 0 0 12px;
    color: #11172f;
    font-size: 24px;
    line-height: 1.18;
    letter-spacing: -.04em;
}
.portfolio-card-body p {
    margin: 0 0 24px;
    color: #697189;
    font-size: 15px;
    line-height: 1.8;
}
.portfolio-card-body strong {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: auto;
    color: #11172f;
    font-size: 14px;
    font-weight: 900;
}
.portfolio-card-body strong i {
    color: var(--purple);
    font-style: normal;
    transition: transform .2s ease;
}
.portfolio-slider-card:hover .portfolio-card-body strong i { transform: translateX(4px); }

/* Portfolio detail page */
.portfolio-detail-body {
    min-height: 100vh;
    background: #fff;
    color: var(--text);
}
.detail-hero {
    position: relative;
    overflow: hidden;
    padding: 32px 0 92px;
    background:
        radial-gradient(circle at 15% 22%, rgba(91,70,255,.32), transparent 24%),
        linear-gradient(180deg, #090d1e 0%, #10162c 100%);
    color: #fff;
}
.detail-hero::after {
    content: "";
    position: absolute;
    left: -10%;
    right: -10%;
    bottom: -95px;
    height: 170px;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    background: #fff;
}
.detail-nav {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.detail-nav img { width: 160px; }
.detail-back {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 10px;
    background: rgba(255,255,255,.10);
    color: #fff;
    font-weight: 900;
}
.detail-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr .86fr;
    align-items: center;
    gap: 58px;
    padding-top: 74px;
}
.detail-hero h1 {
    margin: 0 0 18px;
    max-width: 720px;
    font-size: clamp(38px, 6vw, 72px);
    line-height: 1.05;
    letter-spacing: -.055em;
}
.detail-hero p:not(.eyebrow) {
    margin: 0 0 28px;
    max-width: 620px;
    color: rgba(255,255,255,.72);
    font-size: 17px;
    line-height: 1.75;
}
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.detail-meta span {
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.86);
    font-size: 12px;
    font-weight: 900;
}
.detail-cover {
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 42px 90px rgba(0,0,0,.35);
    background: rgba(255,255,255,.08);
}
.detail-cover img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}
.detail-gallery {
    padding: 100px 0 120px;
}
.detail-gallery-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 34px;
}
.detail-gallery-head h2 {
    margin: 0 0 8px;
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.12;
    letter-spacing: -.045em;
}
.detail-gallery-head p {
    margin: 0;
    color: var(--muted);
    max-width: 620px;
}
.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}
.screenshot-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(8,12,29,.08);
}
.screenshot-card img {
    width: 100%;
    min-height: 360px;
    max-height: 560px;
    object-fit: cover;
    object-position: top;
}
.screenshot-caption {
    padding: 18px 22px;
    color: #11172f;
    font-weight: 900;
}
@media (max-width: 920px) {
    .portfolio-head { grid-template-columns: 1fr; }
    .portfolio-controls { justify-content: flex-start; padding-bottom: 0; }
    .detail-hero-content { grid-template-columns: 1fr; }
    .detail-cover img { height: 320px; }
    .screenshot-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
    .portfolio.section-light { padding: 86px 0 86px; }
    .portfolio-head { margin-bottom: 34px; }
    .portfolio-controls { display: none; }
    .portfolio-track { gap: 18px; padding-inline: 16px; }
    .portfolio-slider-card { flex-basis: min(315px, 82vw); min-height: 488px; border-radius: 24px; }
    .portfolio-cover { height: 220px; }
    .portfolio-card-body { padding: 22px; min-height: 250px; }
    .portfolio-card-body h3 { font-size: 21px; }
    .portfolio-card-body p { font-size: 14px; line-height: 1.65; }
    .detail-hero { padding-top: 24px; }
    .detail-nav img { width: 138px; }
    .detail-hero-content { padding-top: 54px; gap: 34px; }
    .detail-cover img { height: 260px; }
    .detail-gallery { padding: 70px 0 88px; }
    .detail-gallery-head { display: block; }
    .screenshot-card img { min-height: 260px; }
}

/* =========================================================
   PORTFOLIO GRID V11 — 2 baris x 4 portfolio, tanpa slider
   ========================================================= */
.portfolio.section-light {
    padding: 118px 0 110px;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 10%, rgba(91,70,255,.08), transparent 22%),
        radial-gradient(circle at 92% 90%, rgba(91,70,255,.08), transparent 24%),
        #fff;
}
.portfolio-head.portfolio-head-grid {
    display: block;
    width: min(960px, calc(100% - 42px));
    margin: 0 auto 52px;
}
.portfolio-head-grid .section-heading {
    text-align: center;
}
.portfolio-head-grid .section-heading h2 {
    max-width: 830px;
    margin-inline: auto;
}
.portfolio-head-grid .section-heading p:not(.eyebrow) {
    max-width: 720px;
    margin-inline: auto;
    font-size: 16px;
    line-height: 1.75;
}
.portfolio-preview-grid.container {
    width: min(1320px, calc(100% - 42px));
}
.portfolio-preview-grid {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px;
}
.portfolio-preview-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(20,26,48,.08);
    background: #fff;
    color: var(--text);
    box-shadow: 0 24px 58px rgba(11,17,42,.08);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.portfolio-preview-card:hover {
    transform: translateY(-10px);
    border-color: rgba(91,70,255,.22);
    box-shadow: 0 36px 78px rgba(91,70,255,.15);
}
.portfolio-preview-card .portfolio-cover {
    height: 205px;
    margin: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #eff0ff, #fff);
}
.portfolio-preview-card .portfolio-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .36s ease;
}
.portfolio-preview-card:hover .portfolio-cover img {
    transform: scale(1.05);
}
.portfolio-preview-card .portfolio-card-body {
    display: flex;
    min-height: 240px;
    flex-direction: column;
    padding: 22px 22px 24px;
}
.portfolio-preview-card .portfolio-card-body span {
    width: fit-content;
    margin-bottom: 14px;
    padding: 7px 11px;
    border-radius: 999px;
    color: var(--purple);
    background: rgba(91,70,255,.09);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .13em;
}
.portfolio-preview-card .portfolio-card-body h3 {
    margin: 0 0 10px;
    color: #11172f;
    font-size: 20px;
    line-height: 1.18;
    letter-spacing: -.04em;
}
.portfolio-preview-card .portfolio-card-body p {
    margin: 0 0 22px;
    color: #697189;
    font-size: 14px;
    line-height: 1.7;
}
.portfolio-preview-card .portfolio-card-body strong {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: auto;
    color: #11172f;
    font-size: 13px;
    font-weight: 900;
}
.portfolio-preview-card .portfolio-card-body strong i {
    color: var(--purple);
    font-style: normal;
    transition: transform .2s ease;
}
.portfolio-preview-card:hover .portfolio-card-body strong i {
    transform: translateX(4px);
}
.portfolio-more {
    position: relative;
    z-index: 3;
    width: min(760px, calc(100% - 42px));
    margin: 42px auto 0;
    text-align: center;
}
.portfolio-more span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 20px;
    border-radius: 999px;
    color: var(--purple);
    background: rgba(91,70,255,.09);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.portfolio-more p {
    max-width: 580px;
    margin: 15px auto 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

@media (max-width: 1180px) {
    .portfolio-preview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .portfolio-preview-card .portfolio-cover {
        height: 245px;
    }
}
@media (max-width: 620px) {
    .portfolio.section-light {
        padding: 86px 0 82px;
    }
    .portfolio-head.portfolio-head-grid {
        margin-bottom: 34px;
    }
    .portfolio-preview-grid.container {
        width: min(100% - 28px, 1320px);
    }
    .portfolio-preview-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .portfolio-preview-card {
        border-radius: 24px;
    }
    .portfolio-preview-card .portfolio-cover {
        height: 226px;
    }
    .portfolio-preview-card .portfolio-card-body {
        min-height: 220px;
        padding: 22px;
    }
    .portfolio-preview-card .portfolio-card-body h3 {
        font-size: 21px;
    }
    .portfolio-more {
        margin-top: 32px;
    }
}


@media (max-width: 900px) {
    .process.section-light { padding: 108px 0 102px; }
    .testimonial-card { grid-template-columns: 168px 1fr; gap: 26px; }
    .testimonial-photo-wrap { width: 168px; }
}

@media (max-width: 620px) {
    .process-inner { gap: 38px; }
    .testimonial-track { gap: 26px; }
    .testimonial-card { grid-template-columns: 88px 1fr; gap: 16px; }
    .testimonial-photo-wrap { width: 88px; }
    .testimonial-card-copy h3 { font-size: 18px; }
    .testimonial-role { font-size: 13px; }
    .testimonial-quote { font-size: 38px; }
    .testimonial-card p { font-size: 14px; line-height: 1.6; }
    .testimonial-social { gap: 10px; flex-wrap: wrap; }
    .testimonial-social span { min-width: 18px; font-size: 10px; }
}


@media (max-width: 620px) {
    .process.section-light {
        padding: 96px 0 92px;
    }
    .process.section-light::after {
        top: -108px;
        height: 156px;
    }
}


@media (max-width: 900px) {
    .testimonial-card { min-height: 0; }
}

/* =========================================================
   ADMIN DASHBOARD V16 — Sidebar CMS per Section
   ========================================================= */
.sidebar-admin-body {
    padding: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 15% 10%, rgba(91,70,255,.28), transparent 28%),
        linear-gradient(135deg, #080c1d 0%, #111733 100%);
}
.admin-shell {
    display: grid;
    grid-template-columns: 292px minmax(0, 1fr);
    min-height: 100vh;
}
.admin-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 26px 20px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    background: rgba(8,12,29,.82);
    border-right: 1px solid rgba(255,255,255,.10);
    backdrop-filter: blur(18px);
    overflow-y: auto;
    z-index: 30;
}
.admin-sidebar-brand {
    display: flex;
    align-items: center;
    min-height: 56px;
    padding: 0 10px 18px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.admin-sidebar-brand img {
    width: 170px;
    height: auto;
}
.admin-sidebar-nav {
    display: grid;
    gap: 7px;
}
.admin-sidebar-nav a,
.admin-sidebar-actions a {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 0 13px;
    border-radius: 13px;
    color: rgba(255,255,255,.72);
    font-size: 13px;
    font-weight: 800;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}
.admin-sidebar-nav a:hover,
.admin-sidebar-actions a:hover {
    color: #fff;
    background: rgba(255,255,255,.08);
    transform: translateX(2px);
}
.admin-sidebar-nav a span {
    width: 20px;
    height: 20px;
    border-radius: 8px;
    display: inline-grid;
    place-items: center;
    color: #fff;
    background: rgba(91,70,255,.26);
    font-size: 12px;
}
.admin-sidebar-nav .is-overview span {
    background: linear-gradient(135deg, var(--purple), var(--purple-3));
}
.admin-sidebar-actions {
    margin-top: auto;
    display: grid;
    gap: 8px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.08);
}
.admin-main-area {
    min-width: 0;
}
.admin-mobile-bar {
    display: none;
}
.sidebar-admin-body .admin-dashboard {
    width: min(1180px, calc(100% - 52px));
    padding: 36px 0 90px;
}
.cms-hero-panel {
    position: relative;
    overflow: hidden;
    padding: 38px;
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(255,255,255,.11), rgba(255,255,255,.055));
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 36px 90px rgba(0,0,0,.24);
}
.cms-hero-panel::after {
    content: "";
    position: absolute;
    right: -70px;
    top: -90px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(91,70,255,.22);
    filter: blur(4px);
}
.cms-hero-panel h1 {
    position: relative;
    z-index: 1;
    max-width: 780px;
    color: #fff;
    font-size: clamp(32px, 4vw, 54px);
}
.cms-hero-panel > p:not(.eyebrow) {
    position: relative;
    z-index: 1;
    margin: 0;
    max-width: 820px;
    color: rgba(255,255,255,.72);
}
.admin-stat-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 720px;
    margin-top: 26px;
}
.admin-stat-grid div {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.10);
}
.admin-stat-grid strong {
    display: block;
    color: #fff;
    font-size: 28px;
    line-height: 1;
}
.admin-stat-grid span {
    display: block;
    margin-top: 6px;
    color: rgba(255,255,255,.58);
    font-size: 12px;
    font-weight: 800;
}
.cms-section-block {
    scroll-margin-top: 26px;
    margin-top: 32px;
}
.cms-section-block .cms-section-title {
    position: relative;
    overflow: hidden;
    padding: 28px 30px;
    border-radius: 28px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.11);
}
.cms-section-block .cms-section-title::after {
    content: "";
    position: absolute;
    right: -44px;
    top: -54px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(91,70,255,.16);
}
.cms-section-block .cms-section-title h2 {
    font-size: clamp(26px, 3vw, 38px);
}
.cms-section-block .cms-section-title p:not(.eyebrow) {
    max-width: 760px;
}
.sidebar-admin-body .cms-panel {
    margin: 18px 0 0;
    border-radius: 26px;
    box-shadow: 0 26px 70px rgba(0,0,0,.18);
}
.sidebar-admin-body .cms-panel.no-padding {
    padding: 0;
}
.content-manager-head.compact {
    align-items: center;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
}
.content-manager-head.compact .btn {
    flex: 0 0 auto;
}
.sidebar-admin-body .cms-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.sidebar-admin-body .cms-field span {
    color: #30364c;
}
.cms-file-link {
    width: fit-content;
    padding: 8px 11px;
    border-radius: 10px;
    color: var(--purple);
    background: #eef0ff;
    font-size: 12px;
    font-weight: 900;
}
.cms-accordion-item.content-item-card {
    display: block;
    padding: 0;
    overflow: hidden;
    background: #fbfcff;
}
.content-item-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    cursor: pointer;
    list-style: none;
    padding: 18px 20px;
    border-radius: 20px;
}
.content-item-summary::-webkit-details-marker {
    display: none;
}
.content-item-summary strong {
    display: block;
    color: #171d34;
    font-size: 16px;
    line-height: 1.25;
}
.content-item-summary small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}
.status-pill {
    flex: 0 0 auto;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-style: normal;
    font-weight: 900;
}
.status-pill.active {
    color: #1b8a52;
    background: #e9fff4;
}
.status-pill.inactive {
    color: #a64a4a;
    background: #fff0f0;
}
.content-item-form {
    padding: 0 20px 20px;
}
.content-item-form .content-item-grid {
    padding-top: 16px;
    border-top: 1px solid var(--line);
}
.content-item-card.new {
    display: grid;
}
.add-content-box summary {
    margin-top: 6px;
}
.message-table-wrap.cms-panel {
    overflow: auto;
}
.message-table-wrap.cms-panel .message-table th {
    position: sticky;
    top: 0;
    z-index: 1;
}

@media (max-width: 1100px) {
    .admin-shell {
        grid-template-columns: 250px minmax(0, 1fr);
    }
    .admin-sidebar-brand img {
        width: 150px;
    }
    .sidebar-admin-body .admin-dashboard {
        width: min(100% - 34px, 1180px);
    }
    .sidebar-admin-body .cms-grid,
    .content-item-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .admin-shell {
        display: block;
    }
    .admin-sidebar {
        position: static;
        height: auto;
        padding: 14px;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.10);
    }
    .admin-sidebar-brand {
        display: none;
    }
    .admin-sidebar-nav {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding-bottom: 4px;
    }
    .admin-sidebar-nav a {
        flex: 0 0 auto;
        white-space: nowrap;
    }
    .admin-sidebar-actions {
        display: none;
    }
    .admin-mobile-bar {
        position: sticky;
        top: 0;
        z-index: 40;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
        padding: 14px 18px;
        background: rgba(8,12,29,.94);
        border-bottom: 1px solid rgba(255,255,255,.10);
        backdrop-filter: blur(12px);
    }
    .admin-mobile-bar img {
        width: 140px;
    }
    .admin-mobile-bar div {
        display: flex;
        gap: 10px;
    }
    .admin-mobile-bar a {
        color: #fff;
        font-size: 12px;
        font-weight: 900;
    }
    .sidebar-admin-body .admin-dashboard {
        width: min(100% - 28px, 1180px);
        padding-top: 22px;
    }
    .cms-hero-panel {
        padding: 28px;
        border-radius: 26px;
    }
    .admin-stat-grid {
        grid-template-columns: 1fr;
    }
    .content-manager-head.compact,
    .content-manager-head {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 560px) {
    .cms-hero-panel h1 {
        font-size: 31px;
    }
    .cms-section-block .cms-section-title,
    .cms-hero-panel,
    .sidebar-admin-body .cms-panel {
        padding: 22px;
        border-radius: 22px;
    }
    .content-item-summary {
        align-items: flex-start;
        flex-direction: column;
    }
    .content-item-form {
        padding: 0 16px 16px;
    }
}

/* =========================================================
   ADMIN PORTFOLIO SCREENSHOT MANAGER V17
   ========================================================= */
.portfolio-screenshot-manager {
    grid-column: 1 / -1;
    padding: 18px;
    border-radius: 20px;
    background: #f7f8ff;
    border: 1px solid var(--line);
}
.portfolio-screenshot-manager > span {
    display: block;
    margin-bottom: 4px;
}
.portfolio-screenshot-manager > small {
    display: block;
    margin-bottom: 14px;
    color: var(--muted);
    font-weight: 700;
}
.portfolio-screenshot-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}
.portfolio-screenshot-card {
    display: grid;
    gap: 10px;
    align-content: start;
    padding: 14px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(111,117,138,.14);
    box-shadow: 0 12px 26px rgba(8,12,29,.04);
}
.portfolio-screenshot-card strong {
    color: #171d34;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.portfolio-screenshot-card .screenshot-preview,
.empty-screenshot-preview {
    width: 100%;
    max-width: none;
    height: 112px;
    max-height: none;
    object-fit: cover;
    border-radius: 12px;
    padding: 0;
    background: #eef0ff;
    border: 1px solid var(--line);
}
.empty-screenshot-preview {
    display: grid;
    place-items: center;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}
.portfolio-screenshot-card input[type="text"],
.portfolio-screenshot-card input[type="file"] {
    font-size: 12px;
}
.item-screenshots {
    grid-column: 1 / -1;
}

@media (max-width: 1200px) {
    .portfolio-screenshot-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .portfolio-screenshot-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   DOMAIN CHECKER PAGE V19
   ========================================================= */
.domain-hero {
    position: relative;
    min-height: 640px;
    padding: 150px 0 96px;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(circle at 50% 8%, rgba(23,31,60,.40), transparent 36%),
        linear-gradient(180deg, #090d1e 0%, #070b1a 100%);
}
.domain-hero::after {
    content: "";
    position: absolute;
    left: -10%;
    right: -10%;
    bottom: -110px;
    height: 210px;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    background: #fff;
    z-index: 1;
}
.domain-hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}
.domain-hero h1 {
    max-width: 820px;
    margin: 0 auto 18px;
    color: #fff;
    font-size: clamp(40px, 6vw, 70px);
    line-height: 1.04;
    letter-spacing: -.045em;
    font-weight: 800;
}
.domain-hero p:not(.eyebrow) {
    max-width: 710px;
    margin: 0 auto 32px;
    color: rgba(255,255,255,.72);
    font-size: 17px;
    line-height: 1.75;
}
.domain-search-card {
    width: min(760px, 100%);
    margin: 0 auto;
    padding: 8px;
    display: grid;
    grid-template-columns: 1fr 180px;
    gap: 8px;
    border-radius: 14px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 35px 80px rgba(0,0,0,.25);
    backdrop-filter: blur(16px);
}
.domain-search-card input {
    width: 100%;
    height: 58px;
    border: 0;
    outline: 0;
    border-radius: 10px;
    padding: 0 22px;
    color: #fff;
    background: #24293e;
    font-weight: 800;
}
.domain-search-card input::placeholder { color: rgba(255,255,255,.62); }
.domain-search-card .btn { min-height: 58px; border-radius: 10px; }
.domain-quick-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}
.domain-quick-tags span {
    padding: 7px 12px;
    color: rgba(255,255,255,.78);
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}
.domain-result-section {
    padding: 30px 0 120px;
    overflow: hidden;
}
.domain-panel {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 34px;
    align-items: start;
}
.domain-info-box {
    padding: 34px;
    border-radius: 28px;
    background: linear-gradient(135deg, #f7f8ff, #fff);
    border: 1px solid var(--line);
    box-shadow: 0 26px 65px rgba(8,12,29,.08);
}
.domain-info-box h2 {
    margin: 0 0 14px;
    font-size: 28px;
    line-height: 1.18;
    letter-spacing: -.04em;
}
.domain-info-box p:not(.eyebrow) {
    margin: 0;
    color: var(--muted);
}
.domain-results {
    display: grid;
    gap: 14px;
}
.domain-empty-state,
.domain-result-card {
    padding: 22px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 22px 55px rgba(8,12,29,.08);
}
.domain-empty-state strong { display: block; margin-bottom: 6px; color: var(--text); }
.domain-empty-state p { margin: 0; color: var(--muted); }
.domain-result-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: center;
}
.domain-result-card h3 {
    margin: 0 0 6px;
    font-size: 22px;
    letter-spacing: -.03em;
}
.domain-result-card p { margin: 0; color: var(--muted); }
.domain-badge {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 13px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
}
.domain-badge.available { color: #167848; background: #eafff3; }
.domain-badge.registered { color: #a53b3b; background: #fff0f0; }
.domain-badge.unknown,
.domain-badge.invalid { color: #8a5b0f; background: #fff7e6; }
.domain-result-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    grid-column: 1 / -1;
}
.domain-result-actions .btn { min-height: 40px; padding-inline: 16px; font-size: 12px; }
.domain-loading {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 22px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 22px 55px rgba(8,12,29,.08);
    color: var(--muted);
    font-weight: 800;
}
.domain-spinner {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 3px solid #e8e8ff;
    border-top-color: var(--purple);
    animation: domainSpin .7s linear infinite;
}
@keyframes domainSpin { to { transform: rotate(360deg); } }
.domain-footer { padding-top: 70px; }

@media (max-width: 900px) {
    .domain-panel { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
    .domain-hero { padding-top: 112px; min-height: 610px; }
    .domain-hero h1 { font-size: 36px; }
    .domain-hero p:not(.eyebrow) { font-size: 15px; }
    .domain-search-card { grid-template-columns: 1fr; }
    .domain-result-card { grid-template-columns: 1fr; }
    .domain-result-actions { justify-content: flex-start; }
}


/* =========================================================
   MOBILE NAV FIX V20 — tombol login & brief project tidak bertumpuk
   ========================================================= */
@media (max-width: 860px) {
    .nav-menu {
        gap: 0;
        padding: 16px 18px 18px;
    }
    .nav-menu a {
        padding: 14px 4px;
        border-bottom: 1px solid rgba(255,255,255,.07);
    }
    .nav-menu a:last-of-type {
        border-bottom: 0;
    }
    .nav-action-desktop {
        display: none !important;
    }
    .nav-action-mobile {
        position: static !important;
        display: none;
        width: 100%;
        margin-top: 14px;
        padding-top: 16px;
        border-top: 1px solid rgba(255,255,255,.10);
        flex-direction: row;
        justify-content: center;
        gap: 12px;
        background: transparent;
        box-shadow: none;
        border-radius: 0;
        border-left: 0;
        border-right: 0;
        border-bottom: 0;
    }
    .nav-action-mobile .btn {
        flex: 1 1 0;
        min-width: 0;
        max-width: 170px;
    }
    body.nav-open .nav-menu,
    body.nav-open .nav-menu .nav-action-mobile {
        display: flex;
    }
    body.nav-open .nav-action:not(.nav-action-mobile) {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        top: 72px;
        padding: 16px 14px 16px;
        border-radius: 20px;
    }
    .nav-action-mobile {
        gap: 10px;
    }
    .nav-action-mobile .btn {
        max-width: none;
        flex: 1 1 50%;
        padding-inline: 10px;
        font-size: 14px;
    }
}


@media (max-width: 620px) {
    .contact-section.section-light {
        padding: 18px 0 96px;
    }
    .contact-panel {
        padding: 24px 18px;
    }
}


@media (max-width: 620px) {
    .footer {
        padding: 108px 0 34px;
    }
    .footer-cta {
        width: 260px;
        height: 140px;
        padding-top: 44px;
        font-size: 12px;
    }
}

/* =========================================================
   PORTFOLIO DETAIL LIGHTBOX V26 — 8 screenshots popup slider
   ========================================================= */
.screenshot-trigger {
    display: block;
    width: 100%;
    padding: 0;
    border: 1px solid var(--line);
    text-align: left;
    cursor: pointer;
    font: inherit;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.screenshot-trigger:hover {
    transform: translateY(-6px);
    border-color: rgba(91,70,255,.26);
    box-shadow: 0 32px 70px rgba(91,70,255,.13);
}
.screenshot-trigger:focus-visible {
    outline: 4px solid rgba(91,70,255,.22);
    outline-offset: 4px;
}
.screenshot-trigger .screenshot-caption {
    display: block;
}
body.lightbox-open {
    overflow: hidden;
}
.portfolio-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 34px clamp(18px, 4vw, 64px);
    background: rgba(5, 8, 20, .88);
    backdrop-filter: blur(14px);
}
.portfolio-lightbox.is-open {
    display: flex;
}
.lightbox-figure {
    position: relative;
    width: min(1180px, 100%);
    max-height: 88vh;
    margin: 0;
    display: grid;
    gap: 14px;
}
.lightbox-figure img {
    width: 100%;
    max-height: 82vh;
    object-fit: contain;
    border-radius: 24px;
    background: #11172f;
    box-shadow: 0 36px 90px rgba(0,0,0,.45);
}
.lightbox-figure figcaption {
    color: rgba(255,255,255,.82);
    text-align: center;
    font-weight: 800;
    letter-spacing: .02em;
}
.lightbox-close,
.lightbox-arrow {
    position: absolute;
    z-index: 2;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 18px;
    color: #fff;
    background: rgba(255,255,255,.10);
    cursor: pointer;
    font-weight: 900;
    transition: background .2s ease, transform .2s ease;
}
.lightbox-close:hover,
.lightbox-arrow:hover {
    background: rgba(91,70,255,.78);
    transform: translateY(-2px);
}
.lightbox-close {
    top: 24px;
    right: 24px;
    font-size: 34px;
    line-height: 1;
}
.lightbox-arrow {
    top: 50%;
    transform: translateY(-50%);
    font-size: 42px;
    line-height: 1;
}
.lightbox-arrow:hover {
    transform: translateY(calc(-50% - 2px));
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

@media (max-width: 720px) {
    .portfolio-lightbox {
        padding: 74px 14px 24px;
    }
    .lightbox-close {
        top: 16px;
        right: 16px;
        width: 48px;
        height: 48px;
    }
    .lightbox-arrow {
        top: auto;
        bottom: 18px;
        width: 48px;
        height: 48px;
        transform: none;
    }
    .lightbox-arrow:hover {
        transform: translateY(-2px);
    }
    .lightbox-prev { left: 18px; }
    .lightbox-next { right: 18px; }
    .lightbox-figure img {
        max-height: 72vh;
        border-radius: 18px;
    }
    .lightbox-figure figcaption {
        padding-inline: 70px;
        font-size: 13px;
    }
}


/* =========================================================
   PORTFOLIO PREVIEW UP V47
   Kurangi space putih sebelum section Portfolio Preview
   ========================================================= */
.portfolio.section-light {
    padding-top: 76px !important;
}
.portfolio-head {
    margin-bottom: 34px !important;
}
.portfolio-preview-grid {
    margin-top: 32px !important;
}
@media (max-width: 900px) {
    .portfolio.section-light {
        padding-top: 58px !important;
    }
    .portfolio-head {
        margin-bottom: 26px !important;
    }
    .portfolio-preview-grid {
        margin-top: 24px !important;
    }
}


/* =========================================================
   SERVICES LOWER RIGHT PURPLE TINT REMOVE V48
   Hapus elemen / tint ungu transparan di kanan bawah section What We Build
   ========================================================= */
.services {
    background:
        radial-gradient(circle at 12% 64%, rgba(91, 70, 255, .08), transparent 18%),
        #fff !important;
}


/* =========================================================
   PROJECT PACKAGES PREMIUM GRID V49
   Kolom lebih proporsional, premium, dan animasi hover/reveal
   ========================================================= */
.pricing.section-light {
    position: relative;
    padding-top: 118px !important;
    padding-bottom: 132px !important;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 10%, rgba(91,70,255,.08), transparent 20%),
        radial-gradient(circle at 18% 84%, rgba(91,70,255,.055), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #fbfbff 100%) !important;
}

.pricing-grid {
    width: min(1380px, calc(100vw - 64px)) !important;
    max-width: 1380px !important;
    margin: 62px auto 0 !important;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(270px, 1fr)) !important;
    gap: 28px !important;
    align-items: stretch !important;
}

.pricing-card {
    position: relative !important;
    isolation: isolate;
    min-height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 34px 34px 30px !important;
    border-radius: 30px !important;
    border: 1px solid rgba(102, 111, 171, .18) !important;
    background:
        linear-gradient(180deg, rgba(255,255,255,.97), rgba(250,251,255,.94)) !important;
    box-shadow: 0 22px 58px rgba(18, 25, 51, .075) !important;
    overflow: hidden !important;
    transform: translateY(0) !important;
    transition:
        transform .32s cubic-bezier(.2,.75,.2,1),
        box-shadow .32s ease,
        border-color .32s ease,
        background .32s ease !important;
}

.pricing-card::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: -1 !important;
    background:
        radial-gradient(circle at 20% 0%, rgba(91,70,255,.10), transparent 34%),
        linear-gradient(135deg, rgba(91,70,255,.08), rgba(255,255,255,0) 42%) !important;
    opacity: 0 !important;
    transition: opacity .32s ease !important;
}

.pricing-card::after {
    content: "" !important;
    position: absolute !important;
    top: -120%;
    left: -70%;
    width: 75%;
    height: 260%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.68), transparent);
    transform: rotate(18deg) translateX(-20%);
    opacity: 0;
    transition: transform .85s cubic-bezier(.2,.75,.2,1), opacity .45s ease;
    pointer-events: none;
}

.pricing-card:hover {
    transform: translateY(-12px) !important;
    border-color: rgba(91,70,255,.32) !important;
    box-shadow: 0 34px 78px rgba(91,70,255,.145) !important;
}

.pricing-card:hover::before {
    opacity: 1 !important;
}

.pricing-card:hover::after {
    opacity: .75;
    transform: rotate(18deg) translateX(260%);
}

.pricing-card.popular {
    transform: translateY(-18px) !important;
    border-color: rgba(91,70,255,.42) !important;
    background:
        linear-gradient(180deg, rgba(255,255,255,.99), rgba(248,247,255,.98)) !important;
    box-shadow:
        0 34px 86px rgba(91,70,255,.18),
        0 0 0 1px rgba(91,70,255,.06) inset !important;
}

.pricing-card.popular:hover {
    transform: translateY(-28px) !important;
    box-shadow:
        0 44px 98px rgba(91,70,255,.23),
        0 0 0 1px rgba(91,70,255,.10) inset !important;
}

.pricing-card.popular .badge {
    top: 28px !important;
    right: 28px !important;
    padding: 8px 14px !important;
    border-radius: 999px !important;
    background: linear-gradient(135deg, rgba(91,70,255,.14), rgba(91,70,255,.08)) !important;
    color: #5b46ff !important;
    box-shadow: 0 12px 30px rgba(91,70,255,.12) !important;
}

.pricing-card h3 {
    margin-bottom: 18px !important;
    font-size: 22px !important;
    line-height: 1.18 !important;
    letter-spacing: -.035em !important;
}

.pricing-card .price,
.pricing-price {
    font-size: clamp(27px, 2vw, 34px) !important;
    line-height: 1.1 !important;
    letter-spacing: -.045em !important;
    margin-bottom: 20px !important;
    color: #5b46ff !important;
}

.pricing-card > p {
    min-height: 92px !important;
    margin-bottom: 24px !important;
    color: #66708d !important;
    line-height: 1.72 !important;
}

.pricing-card ul {
    display: grid !important;
    gap: 14px !important;
    margin: 0 0 28px !important;
    padding: 0 !important;
}

.pricing-card li {
    position: relative !important;
    padding-left: 28px !important;
    color: #2f3958 !important;
    line-height: 1.55 !important;
}

.pricing-card li::before {
    width: 10px !important;
    height: 10px !important;
    top: .56em !important;
    background: linear-gradient(135deg, #ffb12f, #ff8d23) !important;
    box-shadow: 0 0 0 5px rgba(255,177,47,.10) !important;
}

.pricing-card .btn,
.pricing-card a.btn,
.pricing-card button {
    margin-top: auto !important;
    width: 100% !important;
    min-height: 54px !important;
    border-radius: 10px !important;
    font-weight: 800 !important;
    box-shadow: none !important;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease !important;
}

.pricing-card:hover .btn,
.pricing-card:hover a.btn,
.pricing-card:hover button {
    transform: translateY(-2px);
}

.pricing-card.popular .btn,
.pricing-card.popular a.btn,
.pricing-card.popular button {
    box-shadow: 0 18px 36px rgba(91,70,255,.26) !important;
}

/* reveal animation khusus pricing */
.pricing-card.reveal-item {
    opacity: 0;
    transform: translateY(26px) scale(.985) !important;
    transition:
        opacity .68s ease,
        transform .68s cubic-bezier(.2,.75,.2,1),
        box-shadow .32s ease,
        border-color .32s ease !important;
}

.pricing-card.reveal-item.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1) !important;
}

.pricing-card.popular.reveal-item.is-visible {
    transform: translateY(-18px) scale(1) !important;
}

.pricing-card.popular.reveal-item.is-visible:hover {
    transform: translateY(-28px) scale(1) !important;
}

@media (min-width: 981px) {
    .pricing-grid .pricing-card:nth-child(1) { transition-delay: 0ms !important; }
    .pricing-grid .pricing-card:nth-child(2) { transition-delay: 90ms !important; }
    .pricing-grid .pricing-card:nth-child(3) { transition-delay: 180ms !important; }
    .pricing-grid .pricing-card:nth-child(4) { transition-delay: 270ms !important; }
}

@media (max-width: 1180px) {
    .pricing-grid {
        width: min(980px, calc(100vw - 48px)) !important;
        grid-template-columns: repeat(2, minmax(280px, 1fr)) !important;
        gap: 26px !important;
    }
    .pricing-card.popular {
        transform: translateY(0) !important;
    }
    .pricing-card.popular:hover {
        transform: translateY(-12px) !important;
    }
    .pricing-card.popular.reveal-item.is-visible {
        transform: translateY(0) scale(1) !important;
    }
    .pricing-card.popular.reveal-item.is-visible:hover {
        transform: translateY(-12px) scale(1) !important;
    }
}

@media (max-width: 680px) {
    .pricing.section-light {
        padding-top: 88px !important;
        padding-bottom: 96px !important;
    }
    .pricing-grid {
        width: min(100%, calc(100vw - 28px)) !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        margin-top: 42px !important;
    }
    .pricing-card {
        padding: 28px 22px 24px !important;
        border-radius: 24px !important;
    }
    .pricing-card > p {
        min-height: 0 !important;
    }
}


/* =========================================================
   FEATURE TOP CURVE SAFE FIX V51
   Revisi dari V50: hapus pseudo layer yang bikin bentuk aneh,
   pakai 1 bidang curve lebar agar kanan halus dan natural.
   ========================================================= */
.feature .dark-wave-top::before,
.feature .dark-wave-top::after {
    content: none !important;
    display: none !important;
}

.feature .dark-wave-top {
    left: -28% !important;
    right: -36% !important;
    top: -118px !important;
    height: 220px !important;
    background: #ffffff !important;
    border-radius: 0 0 54% 46% / 0 0 100% 100% !important;
    transform: rotate(-1.15deg) !important;
    transform-origin: center bottom !important;
    box-shadow: none !important;
}

@media (max-width: 1200px) {
    .feature .dark-wave-top {
        left: -30% !important;
        right: -38% !important;
        top: -102px !important;
        height: 194px !important;
        transform: rotate(-1deg) !important;
    }
}

@media (max-width: 900px) {
    .feature .dark-wave-top {
        left: -34% !important;
        right: -42% !important;
        top: -86px !important;
        height: 164px !important;
        transform: rotate(-.9deg) !important;
    }
}


/* =========================================================
   FEATURE BOTTOM CURVE SMOOTHER V52
   Haluskan tekukan bawah section feature sebelum Portfolio
   agar sisi kanan tidak kaku / datar.
   ========================================================= */
.feature .dark-wave-bottom {
    left: -20% !important;
    right: -20% !important;
    bottom: -112px !important;
    height: 210px !important;
    background: #ffffff !important;
    border-radius: 52% 48% 0 0 / 100% 100% 0 0 !important;
    transform: rotate(1.1deg) !important;
    transform-origin: center top !important;
}

.feature .dark-wave-bottom::before,
.feature .dark-wave-bottom::after {
    content: none !important;
    display: none !important;
}

@media (max-width: 1200px) {
    .feature .dark-wave-bottom {
        left: -18% !important;
        right: -18% !important;
        bottom: -98px !important;
        height: 188px !important;
        transform: rotate(.95deg) !important;
    }
}

@media (max-width: 900px) {
    .feature .dark-wave-bottom {
        left: -16% !important;
        right: -16% !important;
        bottom: -84px !important;
        height: 154px !important;
        transform: rotate(.7deg) !important;
    }
}


/* =========================================================
   PROCESS TOP CURVE SMOOTHER V53
   Haluskan lekukan atas section process/testimonial agar
   sisi kanan lebih organik dan tidak terlihat datar.
   ========================================================= */
.process.section-light::after {
    left: -18% !important;
    right: -18% !important;
    top: -122px !important;
    height: 212px !important;
    background: #ffffff !important;
    border-radius: 0 0 54% 46% / 0 0 100% 100% !important;
    transform: rotate(-1.35deg) !important;
    transform-origin: center bottom !important;
}

@media (max-width: 1200px) {
    .process.section-light::after {
        left: -16% !important;
        right: -16% !important;
        top: -108px !important;
        height: 190px !important;
        transform: rotate(-1.15deg) !important;
    }
}

@media (max-width: 900px) {
    .process.section-light::after {
        left: -14% !important;
        right: -14% !important;
        top: -88px !important;
        height: 156px !important;
        transform: rotate(-0.9deg) !important;
    }
}


/* =========================================================
   PROCESS CONTENT LOWER V54
   Turunkan testimonial dan our workflow agar tidak terlalu mepet ke atas
   ========================================================= */
.process-inner {
    padding-top: 26px !important;
}

.testimonial-slider,
.process-copy {
    margin-top: 16px !important;
}

@media (max-width: 1200px) {
    .process-inner {
        padding-top: 20px !important;
    }

    .testimonial-slider,
    .process-copy {
        margin-top: 12px !important;
    }
}

@media (max-width: 900px) {
    .process-inner {
        padding-top: 14px !important;
    }

    .testimonial-slider,
    .process-copy {
        margin-top: 8px !important;
    }
}


/* =========================================================
   FLOAT WHATSAPP FORM V55
   Tombol WhatsApp melayang + popup form brief project
   ========================================================= */
.wa-float {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 999;
    font-family: inherit;
}

.wa-float-toggle {
    border: 0;
    cursor: pointer;
    min-height: 58px;
    padding: 10px 18px 10px 10px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: #ffffff;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    box-shadow: 0 18px 45px rgba(18, 140, 126, .28);
    transition: transform .25s ease, box-shadow .25s ease;
}

.wa-float-toggle:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 58px rgba(18, 140, 126, .36);
}

.wa-float-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #128c7e;
    background: #ffffff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: -.02em;
}

.wa-float-text {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -.02em;
}

.wa-float-panel {
    position: absolute;
    right: 0;
    bottom: 78px;
    width: min(380px, calc(100vw - 32px));
    padding: 24px;
    border: 1px solid rgba(91, 70, 255, .14);
    border-radius: 28px;
    background:
        radial-gradient(circle at 100% 0%, rgba(37, 211, 102, .12), transparent 34%),
        linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,249,255,.96));
    box-shadow: 0 28px 80px rgba(12, 18, 44, .20);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px) scale(.96);
    transform-origin: right bottom;
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
}

.wa-float.is-open .wa-float-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.wa-panel-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    color: #121933;
    background: rgba(18, 25, 51, .06);
    font-size: 22px;
    line-height: 1;
    transition: background .2s ease, transform .2s ease;
}

.wa-panel-close:hover {
    background: rgba(91,70,255,.12);
    transform: rotate(90deg);
}

.wa-panel-head {
    padding-right: 34px;
    margin-bottom: 18px;
}

.wa-panel-head span {
    display: inline-flex;
    margin-bottom: 8px;
    color: #25a85a;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.wa-panel-head h3 {
    margin: 0 0 8px;
    color: #111730;
    font-size: 24px;
    line-height: 1.15;
    letter-spacing: -.04em;
}

.wa-panel-head p {
    margin: 0;
    color: #66708d;
    font-size: 14px;
    line-height: 1.6;
}

.wa-form {
    display: grid;
    gap: 13px;
}

.wa-form label {
    display: grid;
    gap: 7px;
    color: #121933;
    font-size: 13px;
    font-weight: 800;
}

.wa-form input,
.wa-form textarea {
    width: 100%;
    border: 1px solid rgba(102, 111, 171, .20);
    border-radius: 15px;
    padding: 13px 14px;
    outline: none;
    color: #121933;
    background: rgba(255,255,255,.86);
    font: inherit;
    font-size: 14px;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.wa-form textarea {
    resize: vertical;
    min-height: 108px;
}

.wa-form input:focus,
.wa-form textarea:focus {
    border-color: rgba(37, 211, 102, .60);
    box-shadow: 0 0 0 4px rgba(37, 211, 102, .12);
    background: #ffffff;
}

.wa-form .btn {
    width: 100%;
    margin-top: 4px;
    border: 0;
    min-height: 52px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    box-shadow: 0 16px 34px rgba(18, 140, 126, .26);
}

@media (max-width: 640px) {
    .wa-float {
        right: 16px;
        bottom: 16px;
    }

    .wa-float-toggle {
        min-height: 54px;
        padding-right: 14px;
    }

    .wa-float-text {
        display: none;
    }

    .wa-float-icon {
        width: 42px;
        height: 42px;
    }

    .wa-float-panel {
        right: 0;
        bottom: 70px;
        width: calc(100vw - 32px);
        padding: 22px 18px 18px;
        border-radius: 24px;
    }
}


/* =========================================================
   WHATSAPP INLINE SVG ICON V57
   Icon langsung dari HTML, bukan teks WA / mask CSS
   ========================================================= */
.wa-float-icon {
    font-size: 0 !important;
}

.wa-float-icon svg {
    display: block;
    width: 27px;
    height: 27px;
    fill: #128c7e;
}

.wa-float-toggle:hover .wa-float-icon svg {
    transform: scale(1.06);
}

.wa-float-icon svg {
    transition: transform .22s ease;
}


/* =========================================================
   PORTFOLIO EXPAND MORE V65
   Default tampil 2 baris, tombol membuka 1 baris lagi tanpa reload.
   ========================================================= */
.portfolio-preview-card.is-hidden-by-expand {
    display: none !important;
}

.portfolio-preview-card.is-expanded-row {
    animation: portfolioExpandIn .52s cubic-bezier(.2,.75,.2,1) both;
}

@keyframes portfolioExpandIn {
    from {
        opacity: 0;
        transform: translateY(22px) scale(.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.portfolio-expand-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 24px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    color: #5b46ff;
    background:
        linear-gradient(180deg, rgba(255,255,255,.92), rgba(243,241,255,.96));
    box-shadow: 0 18px 42px rgba(91,70,255,.14);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    transition: transform .24s ease, box-shadow .24s ease, background .24s ease;
}

.portfolio-expand-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 54px rgba(91,70,255,.20);
    background:
        linear-gradient(180deg, rgba(255,255,255,.98), rgba(237,234,255,.98));
}

.portfolio-expand-btn i {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, #6b53ff, #4f37e8);
    font-style: normal;
    line-height: 1;
    transition: transform .24s ease;
}

.portfolio-expand-btn:hover i {
    transform: translateY(2px);
}

.portfolio-more.is-complete {
    display: none;
}


/* =========================================================
   PORTFOLIO EXPAND MORE STRONGER V66
   CSS fallback: walau JS/cache belum jalan, default tetap hanya 2 baris.
   Desktop 4 kolom = 8 item, tablet 2 kolom = 4 item, mobile 1 kolom = 2 item.
   ========================================================= */
.portfolio-preview-grid[data-portfolio-expand-grid]:not(.is-expand-initialized) .portfolio-preview-card:nth-child(n+9) {
    display: none !important;
}

.portfolio-preview-grid.is-expand-initialized .portfolio-preview-card.is-hidden-by-expand {
    display: none !important;
}

.portfolio-preview-grid.is-expand-initialized .portfolio-preview-card.is-expanded-row {
    animation: portfolioExpandInV66 .52s cubic-bezier(.2,.75,.2,1) both;
}

@keyframes portfolioExpandInV66 {
    from {
        opacity: 0;
        transform: translateY(22px) scale(.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

[data-portfolio-expand-wrap].is-complete {
    display: none !important;
}

.portfolio-expand-btn {
    border: 0;
    font-family: inherit;
}

@media (max-width: 1180px) {
    .portfolio-preview-grid[data-portfolio-expand-grid]:not(.is-expand-initialized) .portfolio-preview-card:nth-child(n+5) {
        display: none !important;
    }
}

@media (max-width: 620px) {
    .portfolio-preview-grid[data-portfolio-expand-grid]:not(.is-expand-initialized) .portfolio-preview-card:nth-child(n+3) {
        display: none !important;
    }
}


/* =========================================================
   PORTFOLIO EXPAND MORE BUTTON VISIBLE V67
   Pastikan tombol Expand More tampil, bukan tersembunyi oleh reveal/is-complete.
   ========================================================= */
.portfolio-more[data-portfolio-expand-wrap] {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.portfolio-more[data-portfolio-expand-wrap].is-complete {
    display: none !important;
}

.portfolio-expand-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 24px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    color: #5b46ff;
    background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(243,241,255,.98));
    box-shadow: 0 18px 42px rgba(91,70,255,.16);
    font-family: inherit;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    transition: transform .24s ease, box-shadow .24s ease, background .24s ease;
}

.portfolio-expand-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 54px rgba(91,70,255,.22);
}

.portfolio-expand-btn i {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, #6b53ff, #4f37e8);
    font-style: normal;
    line-height: 1;
}


/* =========================================================
   PORTFOLIO EXPAND 16 + COLLAPSE V68
   Default 4 portfolio, Expand More tambah 4, sampai 16 lalu Collapse All.
   ========================================================= */
.portfolio-preview-grid[data-portfolio-expand-grid]:not(.is-expand-initialized) .portfolio-preview-card:nth-child(n+5) {
    display: none !important;
}

.portfolio-preview-grid.is-expand-initialized .portfolio-preview-card.is-hidden-by-expand {
    display: none !important;
}

.portfolio-more[data-portfolio-expand-wrap].is-complete {
    display: block !important;
}

.portfolio-expand-btn.is-collapse-mode {
    color: #ffffff !important;
    background: linear-gradient(135deg, #111730, #5b46ff) !important;
    box-shadow: 0 18px 42px rgba(17, 23, 48, .20) !important;
}

.portfolio-expand-btn.is-collapse-mode i {
    background: rgba(255,255,255,.18) !important;
    color: #ffffff !important;
    transform: rotate(180deg);
}

.portfolio-expand-btn.is-collapse-mode:hover {
    box-shadow: 0 26px 62px rgba(91,70,255,.25) !important;
}
