/*
Theme Name: Gudangweb
Theme URI: https://www.gudangweb.com/
Author: GudangWEB
Author URI: https://www.gudangweb.com/
Description: Theme WordPress modern untuk GudangWeb dengan hero background penuh, layanan, keunggulan, dan demo website berbasis custom post type yang lebih nyaman dilihat, mobile friendly.
Version: 1.9.2
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gudangWEB
Tags: custom-logo, custom-menu, featured-images, translation-ready, blog, e-commerce, one-column, two-columns
*/

:root {
    --gw-primary: #0f46b8;
    --gw-primary-dark: #072c7b;
    --gw-primary-soft: #eaf2ff;
    --gw-accent: #ff7f2a;
    --gw-accent-dark: #ff6412;
    --gw-text: #183153;
    --gw-muted: #65748b;
    --gw-white: #ffffff;
    --gw-surface: #f5f8ff;
    --gw-border: rgba(15, 70, 184, 0.1);
    --gw-shadow: 0 20px 60px rgba(10, 52, 132, 0.12);
    --gw-shadow-soft: 0 12px 30px rgba(22, 59, 125, 0.1);
    --gw-radius: 24px;
    --gw-container: 1200px;
    --gw-header-h: 86px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--gw-text);
    background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
    line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button,
input,
textarea,
select { font: inherit; }

.screen-reader-text {
    position: absolute;
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0;
    border: 0;
    height: 1px;
    width: 1px;
    overflow: hidden;
}
.screen-reader-text:focus {
    clip: auto;
    height: auto;
    width: auto;
    display: block;
    background: #fff;
    color: #000;
    padding: 10px 15px;
    top: 5px;
    left: 5px;
    z-index: 99999;
}

.gw-container {
    width: min(calc(100% - 32px), var(--gw-container));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(7, 33, 97, 0.82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-header__inner {
    min-height: var(--gw-header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.site-branding {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gw-white);
    min-width: 0;
}
.custom-logo-link img {
    max-height: 46px;
    width: auto;
}
.site-branding__mark {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: linear-gradient(135deg, #7cd1ff 0%, #2f75ff 50%, #0a3db3 100%);
    position: relative;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), 0 14px 30px rgba(0,0,0,0.18);
}
.site-branding__mark::before,
.site-branding__mark::after {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 12px;
    border: 2px solid rgba(255,255,255,0.86);
    transform: skewY(-12deg);
}
.site-branding__mark::after {
    inset: 16px;
    border-width: 1.5px;
    opacity: 0.75;
}
.site-title {
    margin: 0;
    font-size: 1.6rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.03em;
}
.site-title a { color: #fff; }
.site-description {
    margin: 4px 0 0;
    font-size: 0.93rem;
    color: rgba(255,255,255,0.72);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}
.menu-toggle {
    display: none;
    border: 1px solid rgba(255,255,255,0.3);
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(8,20,54,0.9), rgba(8,20,54,0.78));
    color: #fff;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
    transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.menu-toggle:hover,
.menu-toggle:focus-visible,
.menu-toggle.is-active {
    background: linear-gradient(180deg, rgba(10,25,66,0.96), rgba(10,25,66,0.86));
    border-color: rgba(255,255,255,0.44);
    box-shadow: 0 16px 32px rgba(0,0,0,0.24);
}
.menu-toggle__bars {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 24px;
}
.menu-toggle__bar {
    display: block;
    width: 24px;
    height: 2.8px;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 1px 6px rgba(0,0,0,0.35);
    transform-origin: center;
    transition: transform 0.22s ease, opacity 0.18s ease;
}
.menu-toggle.is-active .menu-toggle__bar:nth-child(1) {
    transform: translateY(7.8px) rotate(45deg);
}
.menu-toggle.is-active .menu-toggle__bar:nth-child(2) {
    opacity: 0;
}
.menu-toggle.is-active .menu-toggle__bar:nth-child(3) {
    transform: translateY(-7.8px) rotate(-45deg);
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 16px;
}
.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.main-navigation li { position: relative; }
.main-navigation a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    color: rgba(255,255,255,0.88);
    font-weight: 600;
    border-radius: 14px;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.main-navigation .current-menu-item > a,
.main-navigation a:hover {
    background: rgba(255,255,255,0.12);
    color: #fff;
    transform: translateY(-1px);
}

.gw-btn,
.wp-block-button__link,
button,
input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 14px 24px;
    border: 0;
    border-radius: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.gw-btn:hover,
.wp-block-button__link:hover,
button:hover,
input[type="submit"]:hover {
    transform: translateY(-2px);
}
.gw-btn--primary,
input[type="submit"] {
    color: #fff;
    background: linear-gradient(135deg, var(--gw-accent) 0%, var(--gw-accent-dark) 100%);
    box-shadow: 0 16px 30px rgba(255, 127, 42, 0.25);
}
.gw-btn--secondary {
    color: var(--gw-primary);
    background: rgba(255,255,255,0.92);
    box-shadow: 0 16px 32px rgba(13, 36, 95, 0.12);
}
.gw-btn--light {
    color: #fff;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
}
.header-cta {
    white-space: nowrap;
}

.site-main { display: block; }
.section {
    position: relative;
    padding: 88px 0;
}
.section--tight { padding-top: 72px; padding-bottom: 72px; }
.section__heading {
    max-width: 720px;
    margin-bottom: 40px;
}
.section__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(15, 70, 184, 0.08);
    color: var(--gw-primary);
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.section__heading h2,
.entry-title {
    margin: 0 0 14px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
}
.section__heading p,
.entry-content p,
.entry-summary {
    margin: 0;
    font-size: 1.06rem;
    color: var(--gw-muted);
}

.hero {
    padding: 56px 0 70px;
    color: #fff;
    background:
        radial-gradient(circle at top right, rgba(125, 208, 255, 0.35), transparent 30%),
        radial-gradient(circle at left bottom, rgba(48, 119, 255, 0.4), transparent 24%),
        linear-gradient(135deg, #072060 0%, #0d44b2 50%, #1c73f0 100%);
    overflow: hidden;
}
.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.hero::before {
    width: 520px;
    height: 520px;
    right: -120px;
    top: -180px;
    background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 65%);
}
.hero::after {
    width: 640px;
    height: 640px;
    left: -240px;
    bottom: -350px;
    background: radial-gradient(circle, rgba(255,255,255,0.14), transparent 70%);
}
.hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 44px;
    align-items: center;
}
.hero__content h1 {
    margin: 0 0 18px;
    font-size: clamp(2.6rem, 6vw, 4.8rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
}
.hero__content h1 span {
    color: #8cd3ff;
}
.hero__content p {
    max-width: 620px;
    margin: 0 0 30px;
    color: rgba(255,255,255,0.82);
    font-size: 1.12rem;
}
.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 36px;
}
.hero__meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.hero-stat {
    padding: 18px 18px 16px;
    border-radius: 20px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}
.hero-stat strong {
    display: block;
    font-size: 1.45rem;
    line-height: 1;
    margin-bottom: 8px;
}
.hero-stat span {
    display: block;
    font-size: 0.96rem;
    color: rgba(255,255,255,0.78);
}

.hero-visual {
    position: relative;
    min-height: 560px;
}
.hero-screen {
    position: absolute;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(236,244,255,0.97));
    box-shadow: 0 30px 80px rgba(6, 26, 77, 0.25);
    border: 1px solid rgba(255,255,255,0.55);
    overflow: hidden;
}
.hero-screen::before {
    content: "";
    display: block;
    height: 46px;
    background: linear-gradient(180deg, rgba(18,64,160,0.08), rgba(18,64,160,0.02));
    border-bottom: 1px solid rgba(20, 66, 154, 0.08);
}
.hero-screen--main {
    inset: 90px 12px 0 72px;
}
.hero-screen--mini {
    width: 220px;
    height: 180px;
    right: 0;
    top: 36px;
}
.hero-screen--chart {
    width: 240px;
    height: 170px;
    left: 12px;
    top: 0;
}
.hero-screen__body {
    padding: 22px;
}
.hero-screen__line,
.hero-screen__pill,
.hero-screen__card,
.hero-screen__bar {
    border-radius: 12px;
}
.hero-screen__line {
    height: 12px;
    background: linear-gradient(90deg, rgba(11,70,184,0.2), rgba(11,70,184,0.06));
    margin-bottom: 14px;
}
.hero-screen__line.is-short { width: 48%; }
.hero-screen__line.is-mid { width: 76%; }
.hero-screen__line.is-mini { width: 34%; height: 10px; }
.hero-screen__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 18px 0;
}
.hero-screen__pill {
    height: 62px;
    background: linear-gradient(180deg, rgba(17,86,232,0.12), rgba(17,86,232,0.06));
}
.hero-screen__cards {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 14px;
    margin-top: 10px;
}
.hero-screen__card {
    min-height: 140px;
    background: linear-gradient(135deg, rgba(52,120,255,0.1), rgba(255,127,42,0.12));
}
.hero-screen__card.is-dark {
    background: linear-gradient(180deg, rgba(7,44,123,0.95), rgba(18,85,214,0.9));
}
.hero-screen__bars {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: end;
    gap: 10px;
    height: 74px;
    margin-top: 12px;
}
.hero-screen__bar {
    background: linear-gradient(180deg, #49a4ff, #0f46b8);
}
.hero-screen__bar:nth-child(1) { height: 32px; }
.hero-screen__bar:nth-child(2) { height: 56px; }
.hero-screen__bar:nth-child(3) { height: 74px; }
.hero-screen__bar:nth-child(4) { height: 44px; }
.hero-screen__bar:nth-child(5) { height: 60px; }
.hero-floating {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(12px);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
.hero-floating strong { display: block; font-size: 1rem; }
.hero-floating span { display: block; font-size: 0.88rem; color: rgba(255,255,255,0.8); }
.hero-floating--one { left: 40px; bottom: 36px; }
.hero-floating--two { right: 20px; bottom: 68px; }
.hero-floating__icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: rgba(255,255,255,0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.feature-strip {
    margin-top: -44px;
    position: relative;
    z-index: 2;
}
.feature-strip__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.glass-card,
.service-card,
.demo-card,
.why-card,
.testimonial-card,
.contact-card,
.post-card,
.page-card {
    background: rgba(255,255,255,0.94);
    border: 1px solid var(--gw-border);
    box-shadow: var(--gw-shadow-soft);
    border-radius: var(--gw-radius);
}
.glass-card {
    padding: 26px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
}
.icon-chip {
    flex: 0 0 auto;
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(15,70,184,0.12), rgba(15,70,184,0.06));
    color: var(--gw-primary);
}
.icon-chip svg {
    width: 28px;
    height: 28px;
}
.glass-card h3,
.service-card h3,
.demo-card h3,
.why-card h3,
.testimonial-card h3,
.contact-card h3,
.post-card h2,
.page-card h1,
.page-card h2 {
    margin: 0 0 10px;
    line-height: 1.2;
    letter-spacing: -0.03em;
}
.glass-card p,
.service-card p,
.demo-card p,
.why-card p,
.contact-card p,
.post-card p,
.page-card p,
.site-footer p,
.site-footer li {
    margin: 0;
    color: var(--gw-muted);
}

.services {
    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.92), transparent 18%),
        linear-gradient(180deg, var(--gw-services-bg) 0%, #ffffff 100%);
}
.services .section__heading--center {
    max-width: 940px;
    margin: 0 auto 42px;
    text-align: center;
}
.services .section__eyebrow {
    background: none;
    padding: 0;
    color: var(--gw-services-title-color);
    text-transform: none;
    font-size: clamp(1.5rem, 2.6vw, 2.05rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}
.services .section__eyebrow--decorated::before,
.services .section__eyebrow--decorated::after {
    content: "";
    width: clamp(70px, 10vw, 140px);
    height: 1px;
    background: var(--gw-services-line-color);
    display: inline-block;
}
.services .section__heading h2 {
    color: var(--gw-services-title-color);
    font-size: clamp(2rem, 4vw, 3rem);
}
.services .section__heading p {
    color: var(--gw-services-text-color);
    max-width: 720px;
    margin: 0 auto;
}
.services-grid,
.why-grid,
.posts-grid,
.footer-grid {
    display: grid;
    gap: 22px;
}
.services-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
}
.service-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 0;
    background: var(--gw-services-card-bg);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 42px rgba(20, 48, 102, 0.14);
}
.service-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 4px;
    background: linear-gradient(90deg, rgba(47, 101, 245, 0), rgba(47, 101, 245, 0.18), rgba(255, 145, 44, 0.32), rgba(47, 101, 245, 0));
}
.service-card__media {
    min-height: 182px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 22px 18px;
    background: linear-gradient(180deg, rgba(248, 250, 255, 0.96) 0%, rgba(238, 243, 252, 0.96) 100%);
    border-bottom: 1px solid rgba(20, 58, 128, 0.06);
}
.service-card__media img {
    width: 100%;
    max-width: 205px;
    max-height: 138px;
    object-fit: contain;
}
.service-card__content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    flex: 1 1 auto;
    padding: 22px 20px 24px;
    text-align: center;
}
.service-card h3 {
    margin: 0;
    color: var(--gw-services-title-color);
    font-size: clamp(1.2rem, 2vw, 1.55rem);
}
.service-card p {
    color: var(--gw-services-text-color);
    font-size: 1rem;
    line-height: 1.65;
    max-width: 240px;
    margin: 0 auto;
}
.service-card--has-link {
    cursor: pointer;
}
.service-card__stretched-link {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.demo-showcase {
    background: linear-gradient(180deg, #f5f8ff 0%, #ffffff 100%);
}
.demo-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}
.demo-card {
    overflow: hidden;
}
.demo-card__image {
    position: relative;
    aspect-ratio: 4 / 3;
    padding: 18px;
    background: linear-gradient(180deg, #fff, #eff4ff);
}
.demo-card__browser {
    height: 100%;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(15, 70, 184, 0.12);
    background: #fff;
    box-shadow: 0 18px 35px rgba(18, 51, 120, 0.12);
}
.demo-card__browser::before {
    content: "";
    display: block;
    height: 34px;
    background: linear-gradient(180deg, #f7f9ff, #edf3ff);
    border-bottom: 1px solid rgba(15,70,184,0.08);
}
.demo-card__preview {
    height: calc(100% - 34px);
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.demo-card__hero,
.demo-card__row,
.demo-card__thumb,
.demo-card__footer {
    border-radius: 12px;
}
.demo-card__hero {
    min-height: 60px;
}
.demo-card__row {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 10px;
    flex: 1;
}
.demo-card__thumb,
.demo-card__footer {
    min-height: 42px;
}
.demo-card--travel .demo-card__hero,
.demo-card--travel .demo-card__thumb,
.demo-card--travel .demo-card__footer {
    background: linear-gradient(135deg, #2ea4ff, #0f46b8);
}
.demo-card--store .demo-card__hero,
.demo-card--store .demo-card__thumb,
.demo-card--store .demo-card__footer {
    background: linear-gradient(135deg, #ffb36e, #ff7f2a);
}
.demo-card--business .demo-card__hero,
.demo-card--business .demo-card__thumb,
.demo-card--business .demo-card__footer {
    background: linear-gradient(135deg, #2648a2, #12316d);
}
.demo-card--food .demo-card__hero,
.demo-card--food .demo-card__thumb,
.demo-card--food .demo-card__footer {
    background: linear-gradient(135deg, #f24e1e, #ff8e2a);
}
.demo-card__row .demo-card__thumb:nth-child(1) {
    background: linear-gradient(135deg, rgba(15,70,184,0.08), rgba(15,70,184,0.18));
}
.demo-card__row .demo-card__thumb:nth-child(2) {
    background: linear-gradient(135deg, rgba(255,127,42,0.08), rgba(255,127,42,0.18));
}
.demo-card__content {
    padding: 24px;
}
.demo-card__meta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--gw-primary-soft);
    color: var(--gw-primary);
    font-size: 0.84rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.demo-card p { margin-top: 10px; margin-bottom: 18px; }
.demo-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gw-primary);
    font-weight: 700;
}
.center-actions {
    margin-top: 34px;
    text-align: center;
}

.why-us {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, var(--gw-advantages-bg) 100%);
}
.why-us::before,
.why-us::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.why-us::before {
    background:
        radial-gradient(120% 80% at 0% 0%, rgba(213, 228, 255, 0.72), transparent 52%),
        radial-gradient(130% 88% at 100% 100%, rgba(198, 226, 255, 0.58), transparent 50%);
    opacity: 0.95;
}
.why-us::after {
    inset: auto -10% -80px;
    height: 240px;
    background:
        radial-gradient(55% 100% at 15% 40%, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0) 70%),
        radial-gradient(55% 100% at 85% 55%, rgba(255, 255, 255, 0.76) 0%, rgba(255, 255, 255, 0) 70%);
}
.why-us .gw-container {
    position: relative;
    z-index: 1;
}
.why-us__heading {
    max-width: 940px;
    margin: 0 auto 42px;
}
.why-us .section__eyebrow {
    color: var(--gw-advantages-title-color);
}
.why-us .section__eyebrow--decorated::before,
.why-us .section__eyebrow--decorated::after {
    background: var(--gw-advantages-line-color);
}
.why-us__title {
    display: block;
    color: var(--gw-advantages-title-color);
    font-size: clamp(2rem, 4vw, 3rem);
    text-wrap: balance;
}
.why-us__title::before,
.why-us__title::after {
    display: none;
}
.why-us__heading p {
    max-width: 720px;
    margin: 0 auto;
    color: var(--gw-advantages-text-color);
}
.why-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    align-items: stretch;
    padding-top: 40px;
}
.why-card {
    position: relative;
    padding: 0 26px 28px;
    text-align: center;
    border-radius: 24px;
    border: 1px solid rgba(22, 62, 130, 0.08);
    background: var(--gw-advantages-card-bg);
    box-shadow: 0 18px 44px rgba(20, 56, 126, 0.1);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(20, 56, 126, 0.14);
}
.why-card__badge {
    width: 74px;
    height: 74px;
    border-radius: 22px;
    margin: -26px auto 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gw-advantages-icon-color);
    background: var(--gw-advantages-icon-bg);
    box-shadow: 0 18px 36px rgba(15, 70, 184, 0.22);
}
.why-card__badge svg {
    width: 30px;
    height: 30px;
}
.why-card h3 {
    margin: 4px 0 12px;
    color: var(--gw-advantages-title-color);
    font-size: clamp(1.18rem, 2vw, 1.5rem);
}
.why-card p {
    margin: 0 auto;
    max-width: 250px;
    color: var(--gw-advantages-text-color);
    line-height: 1.68;
}

.testimonial-section {
    color: #fff;
    background:
        radial-gradient(circle at right top, rgba(116,198,255,0.25), transparent 25%),
        linear-gradient(135deg, #082969 0%, #1046b8 60%, #082969 100%);
}
.testimonial-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
    gap: 24px;
    align-items: stretch;
}
.testimonial-card,
.contact-card {
    padding: 32px;
    background: rgba(255,255,255,0.96);
    color: var(--gw-text);
}
.testimonial-card__top {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 24px;
    align-items: center;
}
.testimonial-avatar {
    width: 130px;
    height: 130px;
    border-radius: 28px;
    background: linear-gradient(135deg, #d6e5ff, #ffffff);
    position: relative;
    overflow: hidden;
}
.testimonial-avatar::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 18px;
    width: 72px;
    height: 72px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: linear-gradient(135deg, #1846a9, #69c6ff);
}
.testimonial-avatar::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -12px;
    width: 104px;
    height: 88px;
    transform: translateX(-50%);
    border-radius: 42px 42px 12px 12px;
    background: linear-gradient(135deg, #0f46b8, #2a82ff);
}
.testimonial-card blockquote {
    margin: 0;
    padding: 0;
    font-size: 1.1rem;
    color: var(--gw-text);
    font-weight: 600;
}
.testimonial-card cite {
    margin-top: 14px;
    display: block;
    font-style: normal;
    color: var(--gw-muted);
}
.contact-card {
    background: linear-gradient(180deg, rgba(11,53,140,0.98), rgba(8,35,102,0.98));
    color: #fff;
    border-color: rgba(255,255,255,0.12);
}
.contact-card p,
.contact-card li { color: rgba(255,255,255,0.76); }
.contact-list {
    list-style: none;
    padding: 0;
    margin: 22px 0 0;
    display: grid;
    gap: 16px;
}
.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.contact-list__icon {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(255,255,255,0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.contact-list__icon svg { width: 20px; height: 20px; }
.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}
.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(255,255,255,0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.social-links svg { width: 18px; height: 18px; }

.cta-band {
    padding: 36px 0 0;
}
.cta-band--footer {
    padding: 0 0 42px;
}
.footer-cta-shell {
    color: #fff;
    background:
        radial-gradient(circle at center top, rgba(105, 198, 255, 0.2), transparent 22%),
        linear-gradient(180deg, #082354 0%, #041836 100%);
    padding-top: 80px;
}
.cta-panel {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 32px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.08));
    border: 1px solid rgba(255,255,255,0.12);
}
.cta-panel h3 {
    margin: 0 0 8px;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}
.cta-panel p {
    margin: 0;
    color: rgba(255,255,255,0.76);
}
.cta-panel--footer {
    background: linear-gradient(135deg, rgba(255,255,255,0.16), rgba(255,255,255,0.07));
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 24px 50px rgba(2, 15, 37, 0.28);
}
.cta-panel--footer .gw-btn {
    min-width: 220px;
    justify-content: center;
}

.content-area {
    padding: 84px 0;
}
.page-card,
.post-card {
    padding: 34px;
}
.entry-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    color: var(--gw-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
}
.entry-content > *:first-child { margin-top: 0; }
.entry-content > *:last-child { margin-bottom: 0; }
.entry-content h2,
.entry-content h3,
.entry-content h4 {
    margin-top: 1.7em;
    margin-bottom: 0.6em;
    line-height: 1.15;
    letter-spacing: -0.03em;
}
.entry-content ul,
.entry-content ol { padding-left: 1.25rem; }
.entry-content a { color: var(--gw-primary); }
.entry-content blockquote {
    margin: 28px 0;
    padding: 22px 24px;
    border-left: 4px solid var(--gw-primary);
    background: var(--gw-primary-soft);
    border-radius: 0 20px 20px 0;
}
.post-navigation,
.posts-navigation,
.comment-navigation {
    margin-top: 28px;
}
.posts-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.post-card__meta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--gw-primary);
    font-weight: 700;
    font-size: 0.94rem;
}
.post-card__link {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gw-primary);
    font-weight: 700;
}

.site-footer {
    color: #fff;
    background:
        radial-gradient(circle at center top, rgba(105, 198, 255, 0.2), transparent 22%),
        linear-gradient(180deg, #082354 0%, #041836 100%);
    padding-top: 80px;
}
.footer-grid {
    grid-template-columns: 1.2fr 0.9fr 0.9fr 1.1fr;
    padding-bottom: 36px;
}
.site-footer .widget-area.footer-grid {
    padding-top: 6px;
}
.footer-brand {
    padding-right: 24px;
}
.footer-brand .site-title {
    color: #fff;
    font-size: 1.7rem;
}
.footer-brand p {
    margin-top: 14px;
    color: rgba(255,255,255,0.74);
}
.footer-nav h4,
.footer-contact h4 {
    margin: 0 0 18px;
    font-size: 1.1rem;
}
.footer-nav ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}
.footer-nav a,
.footer-contact a {
    color: rgba(255,255,255,0.76);
}
.footer-nav a:hover,
.footer-contact a:hover { color: #fff; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0 28px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: rgba(255,255,255,0.62);
    font-size: 0.95rem;
}
.footer-bottom a { color: #fff; }

.widget-area {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}
.widget {
    background: rgba(255,255,255,0.9);
    padding: 20px;
    border-radius: 22px;
}

.error-404 .page-card,
.search-no-results .page-card { text-align: center; }

@media (max-width: 1160px) {
    .services-grid,
    .demo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .hero__grid,
    .testimonial-wrap,
    .footer-grid { grid-template-columns: 1fr; }
    .hero-visual { min-height: 500px; }
    .footer-brand { padding-right: 0; }
    .footer-cta-shell { padding-top: 64px; }
}

@media (max-width: 940px) {
    :root { --gw-header-h: 78px; }
    .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
    .footer-cta-shell { padding-top: 52px; }
    .header-actions { gap: 12px; }
    .main-navigation {
        position: absolute;
        left: 16px;
        right: 16px;
        top: calc(100% + 12px);
        display: none;
        padding: 16px;
        border-radius: 24px;
        border: 1px solid rgba(255,255,255,0.12);
        background: rgba(6, 24, 71, 0.98);
        box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22);
        backdrop-filter: blur(16px);
    }
    .main-navigation.is-open { display: block; }
    .main-navigation a {
        min-height: 48px;
        padding: 14px 16px;
        border: 1px solid transparent;
    }
    .main-navigation .current-menu-item > a,
    .main-navigation a:hover,
    .main-navigation a:focus-visible {
        background: rgba(255,255,255,0.14);
        border-color: rgba(255,255,255,0.08);
    }
    .main-navigation ul {
        flex-direction: column;
        align-items: stretch;
    }
    .main-navigation a { width: 100%; }
    .header-cta { display: none; }
    .feature-strip__grid,
    .why-grid,
    .posts-grid,
    .widget-area { grid-template-columns: 1fr; }
    .services .section__eyebrow {
        gap: 18px;
    }
    .why-us__title::before,
    .why-us__title::after {
        width: 72px;
    }
    .hero__meta { grid-template-columns: 1fr; }
    .testimonial-card__top { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
    .section,
    .content-area { padding: 68px 0; }
    .section--tight { padding-top: 58px; padding-bottom: 58px; }
    .hero { padding: 42px 0 60px; }
    .hero__content h1 { font-size: clamp(2.2rem, 10vw, 3.2rem); }
    .hero-visual {
        min-height: 420px;
    }
    .hero-screen--main { inset: 80px 0 0 20px; }
    .hero-screen--chart { width: 180px; height: 140px; }
    .hero-screen--mini { width: 170px; height: 138px; }
    .hero-floating--one { left: 12px; bottom: 24px; }
    .hero-floating--two { right: 8px; bottom: 46px; }
    .feature-strip { margin-top: -18px; }
    .services-grid,
    .demo-grid { grid-template-columns: 1fr; }
    .cta-panel,
    .footer-bottom { align-items: flex-start; }
    .gw-btn,
    .wp-block-button__link,
    button,
    input[type="submit"] { width: 100%; }
    .hero__cta .gw-btn { width: auto; }
}

@media (max-width: 520px) {
    .site-title { font-size: 1.38rem; }
    .site-description { display: none; }
    .hero__cta { flex-direction: column; }
    .hero__cta .gw-btn { width: 100%; }
    .glass-card,
    .demo-card__content,
    .why-card,
    .testimonial-card,
    .contact-card,
    .page-card,
    .post-card { padding-left: 22px; padding-right: 22px; }
    .services .section__eyebrow {
        gap: 16px;
        font-size: 1.3rem;
    }
    .why-grid {
        padding-top: 30px;
    }
    .why-us__title {
        gap: 12px;
        flex-wrap: nowrap;
        font-size: clamp(1.7rem, 8vw, 2.2rem);
    }
    .why-us__title::before,
    .why-us__title::after {
        width: 42px;
    }
    .why-card {
        padding-left: 20px;
        padding-right: 20px;
    }
    .services .section__eyebrow--decorated::before,
    .services .section__eyebrow--decorated::after {
        width: 48px;
    }
    .service-card__media {
        min-height: 168px;
        padding: 22px 18px 14px;
    }
    .service-card__content {
        padding: 20px 18px 22px;
    }
}


/* Elementor compatibility */
.content-area--elementor {
    padding: 0;
}

.elementor-entry,
.elementor-entry .entry-content {
    max-width: 100%;
}

.elementor-entry > .elementor {
    width: 100%;
}

.elementor-page .site-content {
    overflow: clip;
}

.elementor-widget-container p:last-child {
    margin-bottom: 0;
}

.elementor-editor-active .site-header {
    z-index: 999;
}

@media (max-width: 767px) {
    .elementor-entry .elementor-section.elementor-section-boxed > .elementor-container {
        max-width: calc(100% - 24px);
    }
}

/* Improvements for usability, mobile friendliness, and missing theme features */
html {
    scroll-padding-top: calc(var(--gw-header-h) + 18px);
}
body {
    overflow-x: hidden;
}
body.menu-open {
    overflow: hidden;
}
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
.site-content,
.site-main,
.gw-container,
.page-card,
.post-card,
.entry-content {
    min-width: 0;
}
section[id],
footer[id],
article[id],
[id="beranda"],
[id="layanan"],
[id="demo"],
[id="keunggulan"],
[id="blog"],
[id="kontak"] {
    scroll-margin-top: calc(var(--gw-header-h) + 18px);
}
p,
li,
a,
span,
strong,
blockquote,
.entry-content,
.widget,
.comment-body {
    overflow-wrap: anywhere;
}
.skip-link {
    z-index: 9999;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="search"],
textarea,
select {
    width: 100%;
    min-height: 52px;
    padding: 14px 16px;
    border: 1px solid rgba(15, 70, 184, 0.14);
    border-radius: 16px;
    background: rgba(255,255,255,0.96);
    color: var(--gw-text);
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
textarea {
    min-height: 140px;
    resize: vertical;
}
input:focus,
textarea:focus,
select:focus,
a:focus-visible,
button:focus-visible {
    border-color: rgba(15, 70, 184, 0.45);
    box-shadow: 0 0 0 4px rgba(15, 70, 184, 0.12);
    outline: none;
}
.main-navigation ul ul {
    position: absolute;
    left: 0;
    top: calc(100% + 8px);
    min-width: 220px;
    padding: 10px;
    display: grid;
    gap: 4px;
    border-radius: 20px;
    background: rgba(7, 33, 97, 0.98);
    box-shadow: 0 24px 46px rgba(4, 17, 52, 0.3);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.main-navigation li:hover > ul,
.main-navigation li:focus-within > ul {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.main-navigation ul ul a {
    width: 100%;
    padding: 12px 14px;
}
.hero__cta,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.contact-actions {
    margin-top: 22px;
}
.contact-actions .gw-btn {
    flex: 1 1 220px;
}
.contact-form-panel {
    margin-top: 28px;
}
.section__heading--compact {
    max-width: 100%;
    margin-bottom: 24px;
}
.contact-form-panel .wpcf7,
.contact-form-panel .wpforms-container,
.contact-form-panel form {
    max-width: 100%;
}
.contact-form-panel .wpcf7-form,
.contact-form-panel form {
    display: grid;
    gap: 16px;
}
.contact-form-panel .wpcf7-form p {
    margin: 0;
}
.post-card,
.page-card,
.comments-card,
.post-navigation-wrap {
    overflow: hidden;
}
.post-card__body {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.post-card__thumb,
.entry-featured-image {
    display: block;
    overflow: hidden;
    border-radius: 22px;
    margin-bottom: 22px;
    background: linear-gradient(180deg, #eef4ff, #dbe8ff);
}
.post-card__thumb img,
.entry-featured-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}
.page-card--single {
    max-width: 860px;
    margin: 0 auto;
}
.entry-tags {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.entry-tags a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--gw-primary-soft);
    color: var(--gw-primary);
    font-weight: 700;
}
.nav-links,
.post-navigation .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
}
.nav-next,
.nav-previous {
    flex: 1 1 260px;
}
.nav-next a,
.nav-previous a {
    display: block;
    padding: 18px 20px;
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--gw-shadow-soft);
}
.search-form {
    display: flex;
    align-items: stretch;
    gap: 12px;
    margin-top: 20px;
}
.search-form__label {
    flex: 1 1 auto;
}
.search-form button {
    flex: 0 0 auto;
}
.widget-area > div {
    min-width: 0;
}
.widget {
    color: var(--gw-text);
    box-shadow: var(--gw-shadow-soft);
}
.widget-title {
    margin-top: 0;
    margin-bottom: 14px;
    font-size: 1.1rem;
}
.widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}
.widget a {
    color: var(--gw-primary);
}
.comments-card {
    max-width: 860px;
    margin: 24px auto 0;
}
.comments-title {
    margin-top: 0;
    margin-bottom: 22px;
}
.comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: grid;
    gap: 18px;
}
.comment-body {
    padding: 22px;
    border-radius: 20px;
    background: var(--gw-surface);
}
.comment-meta {
    margin-bottom: 10px;
}
.comment-author {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}
.comment-author img {
    border-radius: 50%;
}
.comment-metadata {
    margin-top: 6px;
    font-size: 0.92rem;
    color: var(--gw-muted);
}
.comment-content p:last-child {
    margin-bottom: 0;
}
.comment-reply-link {
    display: inline-flex;
    margin-top: 12px;
    color: var(--gw-primary);
    font-weight: 700;
}
.comment-form {
    display: grid;
    gap: 16px;
}
.comment-form .comment-form-comment,
.comment-form .comment-form-author,
.comment-form .comment-form-email,
.comment-form .comment-form-url {
    margin: 0;
}
.mobile-contact-bar {
    position: fixed;
    left: 50%;
    right: auto;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    transform: translateX(-50%);
    z-index: 1100;
    display: none;
    gap: 8px;
    width: min(calc(100% - 24px), 330px);
    padding: 8px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(7, 23, 66, 0.92);
    box-shadow: 0 18px 38px rgba(0,0,0,0.24);
    backdrop-filter: blur(14px);
}
.mobile-contact-bar__item {
    flex: 1 1 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}
.mobile-contact-bar__item--accent {
    background: linear-gradient(135deg, var(--gw-accent), var(--gw-accent-dark));
}
.mobile-contact-bar,
.mobile-contact-bar__item {
    box-sizing: border-box;
}
.mobile-contact-bar {
    overflow: hidden;
}
.mobile-contact-bar__item {
    min-width: 0;
}
.empty-state-card {
    grid-column: 1 / -1;
    text-align: center;
}
@media (max-width: 940px) {
    .main-navigation {
        max-height: calc(100vh - 120px);
        overflow: auto;
    }
    .main-navigation ul ul {
        position: static;
        min-width: 100%;
        margin-top: 8px;
        padding: 8px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        box-shadow: none;
        background: rgba(255,255,255,0.06);
    }
    .post-card__thumb img {
        aspect-ratio: 16 / 9;
    }
}
@media (max-width: 720px) {
    .search-form {
        flex-direction: column;
    }
    .nav-next,
    .nav-previous {
        flex-basis: 100%;
    }
    .post-card,
    .page-card,
    .comments-card,
    .post-navigation-wrap {
        border-radius: 24px;
    }
}
@media (max-width: 520px) {
    html,
    body {
        max-width: 100%;
        overflow-x: clip;
    }
    body.has-mobile-contact-bar {
        padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
    }
    .mobile-contact-bar {
        display: flex;
        left: 12px;
        right: 12px;
        width: auto;
        max-width: calc(100vw - 24px);
        transform: none;
        bottom: calc(10px + env(safe-area-inset-bottom, 0px));
        padding: 8px;
        overflow: hidden;
    }
    .mobile-contact-bar__item {
        min-width: 0;
        min-height: 42px;
        padding: 10px 10px;
        font-size: 0.88rem;
        white-space: nowrap;
    }
    .site-header__inner {
        gap: 12px;
    }
    .site-branding__mark {
        width: 44px;
        height: 44px;
        border-radius: 14px;
    }
    .section__heading h2,
    .entry-title {
        line-height: 1.15;
    }
    .hero-visual {
        min-height: 360px;
    }
    .hero-screen--main {
        inset: 78px 0 0 10px;
    }
    .hero-screen--chart {
        width: 150px;
        height: 120px;
    }
    .hero-screen--mini {
        width: 144px;
        height: 116px;
    }
    .hero-floating {
        max-width: 220px;
    }
    .hero-floating--one {
        left: 0;
        bottom: 12px;
    }
    .hero-floating--two {
        right: 0;
        bottom: 32px;
    }
    .contact-actions {
        flex-direction: column;
    }
}


/* Hero showcase v1.3.1 */
:root {
    --gw-hero-bg-start: #eff4fb;
    --gw-hero-bg-end: #0d63ef;
    --gw-hero-bg-orb: #9dc3ff;
    --gw-hero-surface: #ffffff;
    --gw-hero-title-color: #0e1b3d;
    --gw-hero-text-color: #4b5a71;
    --gw-hero-primary-bg: #2f65f5;
    --gw-hero-primary-text-color: #ffffff;
    --gw-hero-secondary-bg: #ffffff;
    --gw-hero-secondary-text-color: #2756d9;
    --gw-hero-background-image: none;
    --gw-faq-bg: #ffffff;
    --gw-faq-card-bg: #ffffff;
    --gw-faq-title: #163e82;
    --gw-faq-text: #5a6c85;
    --gw-faq-line: #d8e4f6;
    --gw-faq-border: #dbe8ff;
    --gw-faq-accent: #2f73f3;
}

.hero--showcase {
    padding: 52px 0 118px;
    min-height: clamp(420px, 54vw, 560px);
    color: var(--gw-hero-title-color);
    background-color: var(--gw-hero-bg-start);
    background-image:
        linear-gradient(90deg, rgba(246, 250, 255, 0.97) 0%, rgba(239, 246, 255, 0.94) 32%, rgba(228, 239, 255, 0.82) 48%, rgba(42, 101, 224, 0.24) 72%, rgba(9, 53, 157, 0.36) 100%),
        radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.64) 0%, transparent 28%),
        radial-gradient(circle at 84% 12%, rgba(255, 255, 255, 0.18) 0%, transparent 20%),
        var(--gw-hero-background-image);
    background-repeat: no-repeat;
    background-position: center center, left top, right top, center center;
    background-size: cover, auto, auto, cover;
    overflow: visible;
}
.hero--showcase::before,
.hero--showcase::after {
    content: "";
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
}
.hero--showcase::before {
    width: 720px;
    height: 720px;
    right: -220px;
    top: -260px;
    background: radial-gradient(circle, rgba(255,255,255,0.28) 0%, rgba(255,255,255,0.09) 40%, transparent 66%);
}
.hero--showcase::after {
    width: 560px;
    height: 560px;
    right: 10%;
    bottom: -280px;
    background: radial-gradient(circle, rgba(255,255,255,0.16) 0%, transparent 68%);
}
.hero--showcase .gw-container {
    position: relative;
    z-index: 1;
}
.hero--showcase .hero__grid {
    gap: 24px;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    min-height: clamp(360px, 44vw, 500px);
}
.hero--showcase .hero__content {
    max-width: 620px;
    position: relative;
    z-index: 1;
}
.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(88, 131, 255, 0.12);
    color: #2051d6;
    font-size: 0.94rem;
    font-weight: 700;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.55);
}
.hero__eyebrow-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    color: #ff9b2a;
    font-size: 0.95rem;
}
.hero--showcase .hero__content h1 {
    margin: 0 0 20px;
    max-width: 11ch;
    color: var(--gw-hero-title-color);
    font-size: clamp(2.75rem, 5vw, 4.4rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}
.hero--showcase .hero__content p {
    max-width: 560px;
    margin: 0 0 32px;
    color: var(--gw-hero-text-color);
    font-size: clamp(1rem, 1.5vw, 1.14rem);
}
.hero--showcase .hero__cta {
    gap: 14px;
    margin-bottom: 0;
}
.hero__btn {
    min-height: 56px;
    padding: 14px 22px;
    border-radius: 14px;
    font-weight: 700;
}
.hero__btn--primary {
    background: var(--gw-hero-primary-bg);
    color: var(--gw-hero-primary-text-color);
    box-shadow: 0 18px 32px rgba(47, 101, 245, 0.24);
}
.hero__btn--secondary {
    background: var(--gw-hero-secondary-bg);
    color: var(--gw-hero-secondary-text-color);
    border: 1px solid rgba(40, 85, 217, 0.12);
    box-shadow: 0 14px 30px rgba(21, 54, 130, 0.12);
}
.hero__btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}
.hero__btn-icon svg {
    width: 18px;
    height: 18px;
}
.hero__btn-icon--play {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    color: var(--gw-hero-secondary-text-color);
}
.hero-metrics {
    position: relative;
    z-index: 3;
    margin-top: -64px;
    margin-bottom: 18px;
}
.hero-metrics__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    background: var(--gw-hero-surface);
    border: 1px solid rgba(34, 78, 177, 0.08);
    border-radius: 28px;
    box-shadow: 0 18px 50px rgba(14, 38, 97, 0.12);
    overflow: hidden;
}
.hero-metric {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
    padding: 26px 22px;
    position: relative;
}
.hero-metric + .hero-metric::before {
    content: "";
    position: absolute;
    left: 0;
    top: 22px;
    bottom: 22px;
    width: 1px;
    background: rgba(22, 56, 125, 0.08);
}
.hero-metric__icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    background: #eef3ff;
    color: #2d5ef2;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}
.hero-metric__icon svg {
    width: 28px;
    height: 28px;
}
.hero-metric__body {
    min-width: 0;
}
.hero-metric__body strong {
    display: block;
    margin-bottom: 2px;
    color: var(--gw-hero-title-color);
    font-size: clamp(1.55rem, 2vw, 1.9rem);
    line-height: 1.1;
    letter-spacing: -0.04em;
}
.hero-metric__body span {
    display: block;
    color: #6d7787;
    font-size: 1rem;
}

@media (max-width: 1160px) {
    .hero--showcase .hero__content h1 {
        max-width: none;
    }
    .hero-metrics__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .hero-metric:nth-child(3),
    .hero-metric:nth-child(4) {
        border-top: 1px solid rgba(22, 56, 125, 0.08);
    }
    .hero-metric:nth-child(3)::before,
    .hero-metric:nth-child(4)::before {
        display: none;
    }
}

@media (max-width: 940px) {
    .hero--showcase {
        padding: 40px 0 102px;
        min-height: 0;
        background-position: 18% center, left top, right top, 68% center;
    }
    .hero--showcase .hero__grid {
        gap: 20px;
        min-height: 0;
    }
}

@media (max-width: 720px) {
    .hero--showcase {
        padding: 28px 0 96px;
        background-image:
            linear-gradient(180deg, rgba(246, 250, 255, 0.96) 0%, rgba(239, 246, 255, 0.9) 44%, rgba(225, 237, 255, 0.82) 62%, rgba(28, 84, 197, 0.2) 100%),
            var(--gw-hero-background-image);
        background-repeat: no-repeat;
        background-position: center top, 70% center;
        background-size: cover, cover;
    }
    .hero--showcase .hero__grid {
        grid-template-columns: 1fr;
    }
    .hero--showcase .hero__content {
        max-width: 100%;
    }
    .hero--showcase .hero__content h1 {
        font-size: clamp(2.2rem, 9vw, 3.2rem);
    }
    .hero--showcase .hero__content p {
        font-size: 1rem;
    }
    .hero__cta {
        width: 100%;
    }
    .hero-metrics {
        margin-top: -54px;
    }
    .hero-metrics__grid {
        grid-template-columns: 1fr 1fr;
        border-radius: 24px;
    }
    .hero-metric {
        padding: 20px 18px;
    }
    .hero-metric:nth-child(2n + 1)::before {
        display: none;
    }
    .hero-metric:nth-child(n + 3) {
        border-top: 1px solid rgba(22, 56, 125, 0.08);
    }
}

@media (max-width: 520px) {
    .hero__eyebrow {
        font-size: 0.86rem;
        padding: 9px 14px;
    }
    .hero--showcase .hero__cta {
        flex-direction: column;
    }
    .hero--showcase .hero__cta .hero__btn {
        width: 100%;
    }
    .hero__btn {
        justify-content: center;
    }
    .hero-metrics {
        margin-top: -44px;
    }
    .hero-metrics__grid {
        grid-template-columns: 1fr;
    }
    .hero-metric + .hero-metric::before {
        display: none;
    }
    .hero-metric:nth-child(n + 2) {
        border-top: 1px solid rgba(22, 56, 125, 0.08);
    }
}


/* Demo Website CPT */
.demo-showcase {
    background: linear-gradient(180deg, var(--gw-demo-bg) 0%, #ffffff 100%);
}
.demo-showcase .section__heading,
.why-us .section__heading,
.testimonial-section .section__heading,
.blog-section .section__heading {
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.demo-showcase .section__eyebrow,
.why-us .section__eyebrow,
.blog-section .section__eyebrow,
.testimonial-section .section__eyebrow {
    background: none;
    padding: 0;
    text-transform: none;
    font-size: clamp(1.5rem, 2.6vw, 2.05rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}
.demo-showcase .section__eyebrow--decorated::before,
.demo-showcase .section__eyebrow--decorated::after,
.why-us .section__eyebrow--decorated::before,
.why-us .section__eyebrow--decorated::after,
.blog-section .section__eyebrow--decorated::before,
.blog-section .section__eyebrow--decorated::after,
.testimonial-section .section__eyebrow--decorated::before,
.testimonial-section .section__eyebrow--decorated::after {
    content: "";
    width: clamp(70px, 10vw, 140px);
    height: 1px;
    display: inline-block;
}
.demo-showcase .section__eyebrow {
    color: var(--gw-demo-title);
}
.demo-showcase .section__eyebrow--decorated::before,
.demo-showcase .section__eyebrow--decorated::after {
    background: color-mix(in srgb, var(--gw-demo-title) 22%, transparent);
}
.demo-showcase .section__heading h2,
.demo-card h3,
.demo-card h3 a,
.demo-detail .entry-title {
    color: var(--gw-demo-title);
}
.demo-showcase .section__heading p,
.demo-card p,
.demo-detail__excerpt {
    color: var(--gw-demo-text);
}
.demo-showcase .section__heading p {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.demo-grid--cpt,
.demo-grid--archive {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.demo-card--entry {
    background: var(--gw-demo-card-bg);
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(22, 63, 134, 0.1);
    box-shadow: 0 18px 50px rgba(18, 55, 121, 0.1);
    display: flex;
    flex-direction: column;
}
.demo-card__media-link {
    display: block;
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, #dbe9ff 0%, #f7fbff 100%);
}
.demo-card__media-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}
.demo-card__media-link:hover .demo-card__media-image {
    transform: scale(1.04);
}
.demo-card__media-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at top right, rgba(47, 101, 245, 0.14), transparent 30%),
        linear-gradient(135deg, #edf4ff 0%, #dbe9ff 100%);
}
.demo-card__placeholder-icon {
    width: 76px;
    height: 76px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background: rgba(255,255,255,0.92);
    color: var(--gw-primary);
    box-shadow: 0 14px 34px rgba(24, 63, 134, 0.12);
}
.demo-card__placeholder-icon svg {
    width: 34px;
    height: 34px;
}
.demo-card__content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1 1 auto;
}
.demo-card__meta {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--gw-demo-meta-bg);
    color: var(--gw-demo-meta-color);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.demo-card__content h3 {
    margin: 0;
    font-size: 1.35rem;
    line-height: 1.25;
}
.demo-card__content p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
}
.demo-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: auto;
    padding-top: 6px;
}
.demo-card__btn {
    min-height: 42px;
    padding: 10px 14px;
    border-radius: 13px;
    flex: 0 1 auto;
    font-size: 0.94rem;
    box-shadow: none;
}
.demo-empty-state {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}
.demo-empty-state h3,
.demo-empty-state h2 {
    margin-top: 0;
    color: var(--gw-demo-title);
}
.demo-detail {
    max-width: 960px;
    margin: 0 auto 28px;
}
.demo-detail__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 18px;
}
.demo-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(47, 101, 245, 0.08);
    color: var(--gw-primary);
    font-size: 0.9rem;
    font-weight: 700;
}
.demo-detail__excerpt {
    font-size: 1.08rem;
    margin-bottom: 24px;
}
.demo-detail__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}
.demo-detail__image img,
.demo-detail__image {
    border-radius: 24px;
    overflow: hidden;
}
.archive-actions {
    margin-top: 28px;
}
@media (max-width: 1100px) {
    .demo-grid--cpt,
    .demo-grid--archive {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 767px) {
    .demo-grid--cpt,
    .demo-grid--archive {
        grid-template-columns: 1fr;
    }
    .demo-card__content {
        padding: 20px;
    }
    .demo-card__actions {
        gap: 10px;
    }
    .demo-card__btn {
        min-height: 40px;
        padding: 9px 12px;
        font-size: 0.9rem;
    }
    .demo-detail__actions .gw-btn {
        width: 100%;
    }
    .demo-detail__actions {
        flex-direction: column;
    }
}


/* Demo Website Single Sticky Sidebar Enhancement */
.demo-single-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
    gap: 32px;
    align-items: start;
    margin-bottom: 28px;
}
.demo-detail--single {
    max-width: none;
    margin: 0;
    padding: 32px;
    background:
        radial-gradient(circle at top right, rgba(47, 101, 245, 0.12), transparent 34%),
        linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,250,255,0.96));
}
.demo-preview-card {
    position: relative;
    margin-top: 28px;
    padding: 18px;
    border-radius: 30px;
    overflow: hidden;
    background:
        radial-gradient(circle at top center, rgba(47, 101, 245, 0.16), transparent 34%),
        linear-gradient(135deg, rgba(235, 242, 255, 0.95), rgba(250, 252, 255, 0.98));
    border: 1px solid rgba(24, 63, 134, 0.08);
    box-shadow: 0 20px 50px rgba(18, 55, 121, 0.12);
}
.demo-preview-card::before,
.demo-preview-card::after {
    content: "";
    position: absolute;
    inset: auto;
    border-radius: 999px;
    pointer-events: none;
}
.demo-preview-card::before {
    width: 160px;
    height: 160px;
    right: -48px;
    top: -48px;
    background: rgba(47, 101, 245, 0.09);
}
.demo-preview-card::after {
    width: 120px;
    height: 120px;
    left: -42px;
    bottom: -42px;
    background: rgba(255, 127, 42, 0.1);
}
.demo-preview-card .demo-detail__image,
.demo-preview-card .demo-detail__image img,
.demo-preview-card__placeholder {
    position: relative;
    z-index: 1;
}
.demo-preview-card .demo-detail__image img {
    width: 100%;
    display: block;
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(12, 38, 95, 0.16);
}
.demo-preview-card__placeholder {
    min-height: 420px;
    border-radius: 24px;
}
.demo-sidebar {
    position: relative;
}
.demo-sidebar__sticky {
    position: sticky;
    top: calc(var(--gw-header-h) + 20px);
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 24px;
    border-radius: 28px;
    background: var(--gw-demo-sidebar-bg);
    border: 1px solid var(--gw-demo-sidebar-border);
    box-shadow: 0 24px 55px rgba(18, 55, 121, 0.12);
}
.demo-sidebar__cta,
.demo-sidebar__order,
.demo-sidebar__archive {
    width: 100%;
    justify-content: center;
}
.demo-sidebar__section {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.demo-sidebar__section h2,
.demo-content-card__title {
    margin: 0;
    color: var(--gw-demo-title);
    font-size: 1.5rem;
}
.demo-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}
.demo-feature-list li {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    color: var(--gw-demo-text);
    font-weight: 600;
    line-height: 1.55;
}
.demo-feature-list__icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--gw-demo-check-bg);
    color: var(--gw-demo-check-color);
    box-shadow: inset 0 0 0 1px rgba(23, 160, 100, 0.08);
}
.demo-feature-list__icon svg {
    width: 22px;
    height: 22px;
}
.demo-price-card {
    padding: 22px;
    border-radius: 24px;
    text-align: center;
    background: linear-gradient(180deg, rgba(237, 243, 255, 0.88), rgba(255, 255, 255, 0.96));
    border: 1px solid rgba(41, 91, 216, 0.12);
}
.demo-price-card__label {
    margin: 0 0 10px;
    color: var(--gw-demo-title);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
.demo-price-card__value {
    display: block;
    margin: 0;
    color: var(--gw-demo-price-color);
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    line-height: 1.08;
}
.demo-price-card__note {
    margin: 10px 0 0;
    color: var(--gw-demo-text);
    font-size: 0.95rem;
    line-height: 1.6;
}
.demo-sidebar__order {
    background: var(--gw-demo-order-bg);
    color: var(--gw-demo-order-text);
    border-color: transparent;
    box-shadow: 0 16px 30px rgba(226, 58, 58, 0.22);
}
.demo-sidebar__order:hover {
    color: var(--gw-demo-order-text);
    transform: translateY(-1px);
}
.demo-content-card {
    grid-column: 1 / -1;
    padding: 32px;
    border-radius: 30px;
}
.demo-content-card .entry-content > :first-child {
    margin-top: 0;
}
.demo-content-card .entry-content > :last-child {
    margin-bottom: 0;
}
@media (max-width: 1080px) {
    .demo-single-layout {
        grid-template-columns: 1fr;
    }
    .demo-sidebar__sticky {
        position: static;
    }
}
@media (max-width: 767px) {
    .demo-detail--single,
    .demo-sidebar__sticky,
    .demo-content-card {
        padding: 20px;
        border-radius: 24px;
    }
    .demo-preview-card {
        margin-top: 22px;
        padding: 14px;
        border-radius: 24px;
    }
    .demo-preview-card__placeholder {
        min-height: 260px;
    }
    .demo-sidebar__section h2,
    .demo-content-card__title {
        font-size: 1.3rem;
    }
    .demo-feature-list li {
        grid-template-columns: 34px minmax(0, 1fr);
        gap: 10px;
    }
    .demo-feature-list__icon {
        width: 34px;
        height: 34px;
    }
}


/* Testimonials slider refresh */
.testimonial-section {
    color: var(--gw-testimonials-heading-color);
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 30%),
        radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.12), transparent 26%),
        linear-gradient(135deg, var(--gw-testimonials-bg-start) 0%, var(--gw-testimonials-bg-end) 100%);
    overflow: hidden;
}
.testimonial-section__heading {
    max-width: 940px;
    margin: 0 auto 42px;
}
.testimonial-section__heading h2 {
    color: var(--gw-testimonials-heading-color);
}
.testimonial-section__heading p {
    color: var(--gw-testimonials-section-text);
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}
.testimonial-section__eyebrow.section__eyebrow--decorated,
.testimonial-section .section__eyebrow {
    color: var(--gw-testimonials-heading-color);
}
.testimonial-section__eyebrow.section__eyebrow--decorated::before,
.testimonial-section__eyebrow.section__eyebrow--decorated::after,
.testimonial-section .section__eyebrow--decorated::before,
.testimonial-section .section__eyebrow--decorated::after {
    background: rgba(255, 255, 255, 0.26);
}
.testimonial-slider {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 22px;
    margin-top: 34px;
}
.testimonial-slider__viewport {
    overflow: hidden;
}
.testimonial-slider__track {
    display: flex;
    transition: transform 0.45s ease;
    will-change: transform;
}
.testimonial-slide {
    flex: 0 0 100%;
    min-width: 100%;
}
.testimonial-slide__shell {
    display: grid;
    grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
    gap: 28px;
    align-items: center;
    padding: 32px;
    border-radius: 30px;
    background: var(--gw-testimonials-card-bg);
    color: var(--gw-testimonials-card-text);
    box-shadow: 0 28px 60px rgba(7, 36, 102, 0.18);
}
.testimonial-slide__aside {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
.testimonial-slide__avatar {
    width: 140px;
    height: 140px;
    border-radius: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(105, 198, 255, 0.25), rgba(47, 101, 245, 0.18));
    box-shadow: inset 0 0 0 1px rgba(22, 62, 130, 0.08);
}
.testimonial-slide__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonial-slide__avatar--initials {
    color: var(--gw-testimonials-card-title);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.06em;
}
.testimonial-slide__rating {
    display: inline-flex;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(105, 198, 255, 0.14);
    color: var(--gw-testimonials-accent);
    font-size: 1.05rem;
}
.testimonial-slide__content {
    min-width: 0;
}
.testimonial-slide blockquote {
    margin: 0 0 24px;
}
.testimonial-slide blockquote p {
    margin: 0;
    color: var(--gw-testimonials-card-text);
    font-size: clamp(1.05rem, 2.1vw, 1.32rem);
    line-height: 1.8;
    font-weight: 600;
}
.testimonial-slide__author {
    display: grid;
    gap: 6px;
}
.testimonial-slide__author strong {
    color: var(--gw-testimonials-card-title);
    font-size: 1.22rem;
}
.testimonial-slide__author span,
.testimonial-slide__author small {
    color: var(--gw-testimonials-card-text);
    font-size: 0.98rem;
}
.testimonial-slide__author small {
    opacity: 0.86;
}
.testimonial-slider__control {
    width: 56px;
    height: 56px;
    border: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    box-shadow: 0 14px 30px rgba(3, 18, 49, 0.18);
    transition: transform 0.2s ease, background 0.2s ease;
}
.testimonial-slider__control:hover,
.testimonial-slider__control:focus-visible {
    background: rgba(255, 255, 255, 0.24);
    transform: translateY(-1px);
}
.testimonial-slider__control span {
    font-size: 1.5rem;
    line-height: 1;
}
.testimonial-slider__dots {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 4px;
}
.testimonial-slider__dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.36);
    transition: transform 0.2s ease, background 0.2s ease, width 0.2s ease;
}
.testimonial-slider__dot.is-active {
    width: 34px;
    background: var(--gw-testimonials-accent);
}
.testimonial-slider.is-static {
    grid-template-columns: minmax(0, 1fr);
}
.testimonial-slider.is-static .testimonial-slider__viewport {
    overflow: visible;
}
.testimonial-slider.is-static .testimonial-slide__shell {
    box-shadow: 0 20px 46px rgba(7, 36, 102, 0.16);
}
.testimonial-contact-form-panel {
    margin-top: 28px;
}
@media (max-width: 940px) {
    .testimonial-slider {
        grid-template-columns: repeat(2, auto);
        gap: 16px;
        justify-content: space-between;
    }
    .testimonial-slider__viewport,
    .testimonial-slider__dots {
        grid-column: 1 / -1;
    }
    .testimonial-slider__control {
        order: 2;
    }
    .testimonial-slider__control--prev {
        justify-self: start;
    }
    .testimonial-slider__control--next {
        justify-self: end;
    }
    .testimonial-slide__shell {
        grid-template-columns: 1fr;
        padding: 28px;
        text-align: center;
    }
    .testimonial-slide__author {
        justify-items: center;
    }
}
@media (max-width: 640px) {
    .testimonial-slide__shell {
        padding: 20px;
        border-radius: 24px;
        gap: 20px;
    }
    .testimonial-slide__avatar {
        width: 108px;
        height: 108px;
        border-radius: 28px;
    }
    .testimonial-slide__avatar--initials {
        font-size: 1.5rem;
    }
    .testimonial-slide blockquote p {
        font-size: 1rem;
    }
    .testimonial-slider__control {
        width: 46px;
        height: 46px;
    }
}

/* Artikel section refresh */
.blog-section {
    background: linear-gradient(180deg, var(--gw-blog-bg) 0%, #ffffff 100%);
}
.blog-section__heading {
    max-width: 940px;
    margin: 0 auto 42px;
}
.blog-section .section__eyebrow {
    color: var(--gw-blog-title);
}
.blog-section .section__eyebrow--decorated::before,
.blog-section .section__eyebrow--decorated::after {
    background: color-mix(in srgb, var(--gw-blog-title) 22%, transparent);
}
.blog-section__heading h2,
.blog-section .post-card h3,
.blog-section .post-card h3 a {
    color: var(--gw-blog-title);
}
.blog-section__heading p,
.blog-section .post-card p,
.blog-section .post-card__meta-date {
    color: var(--gw-blog-text);
}
.blog-section__heading p {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.blog-section .posts-grid {
    gap: 28px;
}
.blog-section .post-card {
    background: var(--gw-blog-card-bg);
    border: 1px solid rgba(22, 62, 130, 0.08);
    box-shadow: 0 18px 42px rgba(18, 45, 99, 0.08);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}
.blog-section .post-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 54px rgba(18, 45, 99, 0.12);
}
.post-card__thumb {
    display: block;
    aspect-ratio: 16 / 10;
}
.post-card__thumb img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    display: block;
}
.post-card__thumb--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 25% 25%, rgba(15, 70, 184, 0.12), transparent 35%),
        linear-gradient(180deg, #eef4ff 0%, #d9e6ff 100%);
}
.post-card__placeholder-icon {
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    color: #ffffff;
    background: linear-gradient(135deg, #0f46b8 0%, #2f73f3 100%);
    box-shadow: 0 16px 34px rgba(15, 70, 184, 0.2);
}
.post-card__placeholder-icon svg {
    width: 28px;
    height: 28px;
}
.post-card__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.post-card__meta-pill {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--gw-blog-meta-bg);
    color: var(--gw-blog-meta-color);
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1;
}
.blog-section .post-card__body {
    gap: 0;
}
.blog-section .post-card h3 {
    margin: 0 0 12px;
    font-size: 1.32rem;
    line-height: 1.2;
}
.blog-section .post-card p {
    margin-top: 0;
    margin-bottom: 0;
}
.blog-section__footer {
    margin-top: 34px;
    display: flex;
    justify-content: center;
}
.blog-section__footer .gw-btn {
    min-width: 220px;
    justify-content: center;
}
@media (max-width: 940px) {
    .blog-section .posts-grid {
        gap: 22px;
    }
}
@media (max-width: 720px) {
    .blog-section .post-card {
        padding: 22px;
    }
    .blog-section .post-card h3 {
        font-size: 1.18rem;
    }
    .post-card__placeholder-icon {
        width: 62px;
        height: 62px;
        border-radius: 18px;
    }
}


/* FAQ section */
.faq-section {
    background:
        radial-gradient(circle at 12% 18%, rgba(47, 115, 243, 0.08) 0%, transparent 30%),
        radial-gradient(circle at 88% 12%, rgba(105, 198, 255, 0.1) 0%, transparent 24%),
        linear-gradient(180deg, #ffffff 0%, var(--gw-faq-bg) 100%);
}
.faq-showcase {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: 28px;
    align-items: start;
}
.faq-showcase__intro {
    position: sticky;
    top: calc(var(--gw-header-h) + 24px);
    padding: 30px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(47, 115, 243, 0.16), transparent 34%),
        linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,250,255,0.98));
    border: 1px solid rgba(47, 115, 243, 0.1);
    box-shadow: 0 20px 54px rgba(18, 45, 99, 0.1);
}
.faq-section__heading {
    max-width: 100%;
    margin: 0 0 24px;
}
.faq-section__heading h2 {
    color: var(--gw-faq-title);
}
.faq-section__heading p {
    color: var(--gw-faq-text);
}
.faq-section .section__eyebrow::before,
.faq-section .section__eyebrow::after {
    background: linear-gradient(90deg, transparent, var(--gw-faq-line), transparent);
}
.faq-showcase__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}
.faq-showcase__chip {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(47, 115, 243, 0.08);
    color: var(--gw-faq-title);
    font-size: 0.92rem;
    font-weight: 700;
}
.faq-showcase__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.faq-showcase__actions .gw-btn {
    flex: 1 1 180px;
}
.faq-section__shell {
    max-width: 100%;
    margin: 0;
    display: grid;
    gap: 16px;
}
.faq-item {
    counter-increment: faq;
    background: var(--gw-faq-card-bg);
    border: 1px solid var(--gw-faq-border);
    border-radius: 24px;
    box-shadow: 0 16px 42px rgba(18, 45, 99, 0.08);
    overflow: hidden;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}
.faq-item[open] {
    border-color: rgba(47, 115, 243, 0.38);
    box-shadow: 0 20px 50px rgba(18, 45, 99, 0.12);
}
.faq-item:hover {
    transform: translateY(-2px);
}
.faq-item summary {
    list-style: none;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding: 22px 24px;
    cursor: pointer;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item__index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(47, 115, 243, 0.14), rgba(47, 115, 243, 0.22));
    color: var(--gw-faq-accent);
    font-weight: 800;
    font-size: 0.95rem;
}
.faq-item__question {
    color: var(--gw-faq-title);
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.45;
}
.faq-item__toggle {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border-radius: 16px;
    position: relative;
    background: linear-gradient(135deg, rgba(47, 115, 243, 0.12) 0%, rgba(47, 115, 243, 0.2) 100%);
    color: var(--gw-faq-accent);
}
.faq-item__toggle::before,
.faq-item__toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transform: translate(-50%, -50%);
}
.faq-item__toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform 0.2s ease;
}
.faq-item[open] .faq-item__toggle::after {
    transform: translate(-50%, -50%) rotate(0deg);
}
.faq-item__answer {
    padding: 0 24px 24px 84px;
}
.faq-item__answer p {
    margin: 0;
    color: var(--gw-faq-text);
    line-height: 1.75;
}
@media (max-width: 1024px) {
    .faq-showcase {
        grid-template-columns: 1fr;
    }
    .faq-showcase__intro {
        position: static;
    }
}
@media (max-width: 720px) {
    .faq-showcase__intro {
        padding: 22px;
        border-radius: 24px;
    }
    .faq-showcase__chips,
    .faq-section__shell {
        gap: 12px;
    }
    .faq-item summary {
        grid-template-columns: auto minmax(0, 1fr) auto;
        padding: 18px 18px;
        gap: 12px;
    }
    .faq-item__index {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        font-size: 0.86rem;
    }
    .faq-item__question {
        font-size: 0.98rem;
    }
    .faq-item__toggle {
        width: 36px;
        height: 36px;
        border-radius: 12px;
    }
    .faq-item__answer {
        padding: 0 18px 20px 18px;
    }
}


/* Mobile overflow hotfix v1.9.2 */
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
    overscroll-behavior-x: none;
}
body {
    position: relative;
}
.site,
.site-content,
.site-main,
.site-footer,
.footer-cta-shell,
.hero,
.hero--showcase,
.services,
.why-us,
.demo-section,
.testimonial-section,
.blog-section,
.faq-section,
.page-card,
.post-card,
.main-navigation,
.mobile-contact-bar {
    max-width: 100%;
    overflow-x: clip;
}
.hero--showcase,
.testimonial-section,
.faq-section,
.demo-preview-card {
    overflow: hidden;
}
.menu-toggle {
    border-color: rgba(255,255,255,0.5);
    background: linear-gradient(180deg, rgba(6,18,54,0.96), rgba(6,18,54,0.88));
}
.menu-toggle__bars {
    width: 24px;
}
.menu-toggle__bar {
    height: 3px;
    background: #ffffff;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.06), 0 2px 8px rgba(0,0,0,0.4);
}
@media (max-width: 767px) {
    .mobile-contact-bar {
        left: max(12px, env(safe-area-inset-left, 0px));
        right: max(12px, env(safe-area-inset-right, 0px));
        width: auto;
        max-width: none;
        transform: none;
        margin: 0;
        padding: 8px;
        gap: 8px;
    }
    .mobile-contact-bar__item {
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .main-navigation {
        left: 12px;
        right: 12px;
        width: auto;
        max-width: none;
    }
}
