/* ================================================================
   SEDOT WC MOJOKERTO — BOLD MODERN RED THEME v2
   Completely fresh design: new layouts, new animations, new everything
   ================================================================ */

/* ===== CUSTOM PROPERTIES ===== */
:root {
    --white: #ffffff;
    --off-white: #f9fafb;
    --bg-subtle: #f3f4f6;
    --ink: #111827;
    --ink-2: #4b5563;
    --ink-3: #9ca3af;
    --ink-4: #d1d5db;
    --line: #e5e7eb;

    --red: #DC2626;
    --red-dark: #B91C1C;
    --red-deep: #7f1d1d;
    --red-light: #fef2f2;
    --red-100: #fee2e2;
    --red-200: #fecaca;
    --red-glow: 220 38 38;

    --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

    --fs-hero: clamp(2.8rem, 7vw, 5.5rem);
    --fs-h2: clamp(1.6rem, 3.5vw, 2.6rem);
    --fs-h3: 1.15rem;
    --fs-body: .95rem;
    --fs-sm: .85rem;
    --fs-xs: .75rem;

    --max: 1120px;
    --gap: 24px;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --radius-pill: 100px;
}

/* ===== RESET ===== */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{font-family:var(--font);background:var(--white);color:var(--ink);line-height:1.65;overflow-x:hidden;-webkit-font-smoothing:antialiased}
a{text-decoration:none;color:inherit}
ul{list-style:none}
img{max-width:100%;display:block}
svg{max-width:100%;overflow:visible}
button{font-family:var(--font);cursor:pointer}

.wrap{width:100%;max-width:var(--max);margin:0 auto;padding:0 20px}


/* ================================================================
   KEYFRAME ANIMATIONS — All New
   ================================================================ */

/* Clip reveal from bottom */
@keyframes clipUp {
    from { clip-path: inset(100% 0 0 0); opacity: 0; }
    to   { clip-path: inset(0 0 0 0); opacity: 1; }
}

/* Slide + fade from left */
@keyframes slideLeft {
    from { opacity: 0; transform: translateX(-60px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* Slide + fade from right */
@keyframes slideRight {
    from { opacity: 0; transform: translateX(60px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* Scale pop in */
@keyframes popIn {
    from { opacity: 0; transform: scale(.85); }
    to   { opacity: 1; transform: scale(1); }
}

/* Gentle bounce in */
@keyframes bounceIn {
    0%   { opacity: 0; transform: translateY(40px) scale(.9); }
    60%  { opacity: 1; transform: translateY(-8px) scale(1.02); }
    100% { transform: translateY(0) scale(1); }
}

/* Rotate + fade */
@keyframes spinFadeIn {
    from { opacity: 0; transform: rotate(-8deg) scale(.9); }
    to   { opacity: 1; transform: rotate(0) scale(1); }
}

/* Typing cursor blink */
@keyframes blink {
    0%,100% { opacity: 1; }
    50%     { opacity: 0; }
}

/* Marquee scroll */
@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Pulse ring */
@keyframes ringPulse {
    0%   { transform: scale(1); opacity: .6; }
    100% { transform: scale(2.2); opacity: 0; }
}

/* Float bob */
@keyframes bob {
    0%,100% { transform: translateY(0) rotate(0deg); }
    33%     { transform: translateY(-6px) rotate(1deg); }
    66%     { transform: translateY(3px) rotate(-1deg); }
}

/* Diagonal stripe */
@keyframes stripeMove {
    0%   { background-position: 0 0; }
    100% { background-position: 40px 40px; }
}

/* Number counter pop */
@keyframes counterPop {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.15); }
    100% { transform: scale(1); }
}

/* ===== SCROLL REVEAL SYSTEM ===== */
.reveal {
    opacity: 0;
    transition: none;
}
.reveal.is-visible {
    opacity: 1;
    animation-timing-function: cubic-bezier(.16, 1, .3, 1);
}
.reveal.r-up.is-visible     { animation: bounceIn .8s cubic-bezier(.16, 1, .3, 1) both; }
.reveal.r-left.is-visible   { animation: slideLeft .7s cubic-bezier(.16, 1, .3, 1) both; }
.reveal.r-right.is-visible  { animation: slideRight .7s cubic-bezier(.16, 1, .3, 1) both; }
.reveal.r-pop.is-visible    { animation: popIn .6s cubic-bezier(.16, 1, .3, 1) both; }
.reveal.r-clip.is-visible   { animation: clipUp .8s cubic-bezier(.16, 1, .3, 1) both; }
.reveal.r-spin.is-visible   { animation: spinFadeIn .7s cubic-bezier(.16, 1, .3, 1) both; }

.reveal[data-delay="1"] { animation-delay: .1s !important; }
.reveal[data-delay="2"] { animation-delay: .2s !important; }
.reveal[data-delay="3"] { animation-delay: .3s !important; }
.reveal[data-delay="4"] { animation-delay: .4s !important; }
.reveal[data-delay="5"] { animation-delay: .5s !important; }
.reveal[data-delay="6"] { animation-delay: .6s !important; }


/* ================================================================
   HEADER — Clean White Floating Navbar
   ================================================================ */
.topbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 20px 24px;
    transition: all .45s cubic-bezier(.22,1,.36,1);
}

.topbar-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    padding: 0 24px;
    border-radius: 100px;
    background: transparent;
    transition: all .45s cubic-bezier(.22,1,.36,1);
}

.topbar.sticky {
    padding: 12px 24px;
}

.topbar.sticky .topbar-inner {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px rgba(0,0,0,.06), 0 1px 3px rgba(0,0,0,.03);
}

/* Logo — Text */
.brand {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -.03em;
    color: var(--ink);
    z-index: 1001;
    flex-shrink: 0;
    transition: color .3s ease;
}
.brand i {
    font-style: normal;
    color: #F97316;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

/* Desktop Nav — Clean with dot indicator */
.desk-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.desk-nav a {
    position: relative;
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--ink-2);
    padding: 8px 0;
    transition: color .3s ease;
}

.desk-nav a:hover,
.desk-nav a.active {
    color: var(--ink);
}

/* Dot indicator */
.desk-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    width: 5px;
    height: 5px;
    background: #F97316;
    border-radius: 50%;
    transition: transform .3s cubic-bezier(.22,1,.36,1);
    transform-origin: center;
}

.desk-nav a:hover::after,
.desk-nav a.active::after {
    transform: translateX(-50%) scale(1);
}

/* Header CTA */
.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--ink);
    color: #fff;
    font-size: var(--fs-xs);
    font-weight: 700;
    border-radius: var(--radius-pill);
    border: none;
    transition: all .3s cubic-bezier(.22,1,.36,1);
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
    white-space: nowrap;
}

.header-cta:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,.2);
}

.header-cta svg { width: 14px; height: 14px; }

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    width: 40px; height: 40px;
    background: none;
    border: none;
    position: relative;
    z-index: 1001;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}
.menu-toggle span {
    display: block;
    width: 22px; height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: all .3s ease;
}
.menu-toggle.on span:nth-child(1) { transform: rotate(45deg) translate(3px,4px); }
.menu-toggle.on span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.on span:nth-child(3) { transform: rotate(-45deg) translate(3px,-4px); }

/* ===== Mobile Nav — Slide Panel ===== */
.mob-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1098;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;
}
.mob-backdrop.on {
    opacity: 1;
    pointer-events: auto;
}

.mob-nav {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 320px;
    max-width: 85vw;
    background: var(--white);
    z-index: 1099;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(.22,1,.36,1);
    box-shadow: -8px 0 40px rgba(0,0,0,.15);
}
.mob-nav.on {
    transform: translateX(0);
}

.mob-nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--line);
}
.mob-nav-head .brand {
    color: var(--ink);
}

.mob-close {
    width: 36px; height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-subtle);
    border: none;
    border-radius: 10px;
    color: var(--ink-2);
    cursor: pointer;
    transition: all .25s;
}
.mob-close svg { width: 18px; height: 18px; }
.mob-close:hover {
    background: var(--red-light);
    color: var(--red);
}

.mob-nav-links {
    flex: 1;
    overflow-y: auto;
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mob-nav-links a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
    border-radius: var(--radius-sm);
    transition: all .25s ease;
}
.mob-nav-links a svg {
    width: 20px; height: 20px;
    color: var(--ink-3);
    flex-shrink: 0;
    transition: color .25s;
}
.mob-nav-links a:hover {
    background: var(--red-light);
    color: var(--red);
}
.mob-nav-links a:hover svg {
    color: var(--red);
}

.mob-nav-foot {
    padding: 20px 24px;
    border-top: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mob-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--red);
    color: #fff;
    font-size: .95rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    transition: all .3s ease;
    box-shadow: 0 4px 16px rgba(var(--red-glow),.25);
}
.mob-cta svg { width: 20px; height: 20px; }
.mob-cta:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
}

.mob-tel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--bg-subtle);
    color: var(--ink-2);
    font-size: .9rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all .25s;
}
.mob-tel svg { width: 18px; height: 18px; }
.mob-tel:hover {
    background: var(--line);
    color: var(--ink);
}



/* ================================================================
   HERO — Bold Typography Centered
   ================================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0 60px;
}

/* Diagonal red accent */
.hero-bg {
    position: absolute;
    top: 0; right: 0;
    width: 42%;
    height: 100%;
    background: linear-gradient(160deg, var(--red) 0%, var(--red-dark) 100%);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 0;
}

/* Stripe pattern overlay on the red bg */
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(255,255,255,.04) 20px,
        rgba(255,255,255,.04) 40px
    );
    animation: stripeMove 3s linear infinite;
}

.hero .wrap {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Inline chip */
.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border: 1.5px solid var(--red-200);
    border-radius: var(--radius-pill);
    font-size: var(--fs-xs);
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    width: fit-content;
    background: var(--white);
}

.chip-dot {
    width: 6px; height: 6px;
    background: var(--red);
    border-radius: 50%;
    position: relative;
}
.chip-dot::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 1.5px solid var(--red);
    animation: ringPulse 2s infinite;
}

.hero-title {
    font-size: var(--fs-hero);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -.04em;
    color: var(--ink);
}

.hero-title .accent {
    display: inline-block;
    color: var(--red);
    position: relative;
    background: #fff;
    padding: 0 16px;
    border-radius: var(--radius-sm);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    margin-top: 8px;
}

/* Hide the underline swipe since we have a solid pill background now */
.hero-title .accent::after {
    display: none;
}

.hero-desc {
    font-size: 1.05rem;
    color: #fff;
    max-width: 440px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Primary CTA */
.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--red);
    color: #fff;
    font-size: var(--fs-body);
    font-weight: 700;
    border-radius: var(--radius-pill);
    border: none;
    transition: all .3s cubic-bezier(.22,1,.36,1);
    box-shadow: 0 6px 24px rgba(var(--red-glow),.25);
    position: relative;
    overflow: hidden;
}

.cta-primary::before {
    content: '';
    width: 150%;
    height: 150%;
    position: absolute;
    top: 50%; left: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.2) 0%, transparent 60%);
    transform: translate(-50%,-50%) scale(0);
    border-radius: 50%;
    transition: transform .5s ease;
}

.cta-primary:hover::before { transform: translate(-50%,-50%) scale(1); }

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 36px rgba(var(--red-glow),.35);
}

.cta-primary svg { width: 18px; height: 18px; }

/* Ghost CTA */
.cta-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    background: transparent;
    color: var(--ink);
    font-size: var(--fs-body);
    font-weight: 700;
    border: 2px solid var(--line);
    border-radius: var(--radius-pill);
    transition: all .3s ease;
}

.cta-ghost:hover {
    border-color: var(--red);
    color: var(--red);
    background: var(--red-light);
}

/* Hero image area */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img-wrap {
    position: relative;
    z-index: 2;
}

.hero-img-wrap img {
    max-height: 500px;
    object-fit: contain;
    filter: drop-shadow(0 24px 48px rgba(0,0,0,.12));
    animation: bob 5s ease-in-out infinite;
}

/* Floating stat badges */
.stat-float {
    position: absolute;
    z-index: 3;
    background: var(--white);
    border-radius: var(--radius);
    padding: 14px 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,.1);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.stat-float .stat-icon {
    width: 40px; height: 40px;
    background: var(--red-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    flex-shrink: 0;
}

.stat-float .stat-icon svg { width: 20px; height: 20px; }

.stat-float .stat-val {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--red);
    line-height: 1;
}

.stat-float .stat-lbl {
    font-size: var(--fs-xs);
    color: var(--ink-3);
    font-weight: 500;
}

.sf-1 { top: 12%; left: -8%; animation: bob 4s ease-in-out infinite; }
.sf-2 { bottom: 18%; right: -5%; animation: bob 4.5s ease-in-out infinite .8s; }


/* ================================================================
   SECTION COMMON
   ================================================================ */
.sec {
    padding: 96px 0;
}
.sec-alt {
    background: var(--off-white);
}

.sec-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: var(--fs-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--red);
    margin-bottom: 12px;
}

.sec-label::before {
    content: '';
    width: 24px; height: 2px;
    background: var(--red);
    border-radius: 2px;
}

.sec-title {
    font-size: var(--fs-h2);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.02em;
    margin-bottom: 12px;
}

.sec-title .hl {
    color: var(--red);
}

.sec-desc {
    font-size: var(--fs-body);
    color: var(--ink-2);
    max-width: 500px;
    line-height: 1.7;
}

.sec-head {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 56px;
}

.sec-head .sec-label::before { display: none; }
.sec-head .sec-label::after {
    content: '';
    width: 24px; height: 2px;
    background: var(--red);
    border-radius: 2px;
}
.sec-head .sec-desc {
    margin: 0 auto;
}


/* ================================================================
   LAYANAN — Bento Grid
   ================================================================ */
.bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

.bento-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all .35s cubic-bezier(.22,1,.36,1);
}

.bento-card:nth-child(1) { grid-column: span 7; }
.bento-card:nth-child(2) { grid-column: span 5; }
.bento-card:nth-child(3) { grid-column: span 5; }
.bento-card:nth-child(4) { grid-column: span 7; }

/* When exactly 3 cards: equal top row + centered bottom card */
.bento-card:nth-child(3):last-child {
    grid-column: 4 / 10;
}

/* Red gradient line at top */
.bento-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--red), transparent);
    opacity: 0;
    transition: opacity .35s;
}

.bento-card:hover::after { opacity: 1; }

.bento-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,.08);
    border-color: var(--red-100);
}

.bento-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 20px;
    transition: transform .35s cubic-bezier(.22,1,.36,1);
}

.bento-icon svg { width: 24px; height: 24px; }

.bento-card:hover .bento-icon {
    transform: rotate(-6deg) scale(1.1);
}

.bento-card h3 {
    font-size: var(--fs-h3);
    font-weight: 700;
    margin-bottom: 8px;
}

.bento-card p {
    font-size: var(--fs-sm);
    color: var(--ink-2);
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 16px;
}

.bento-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    font-size: var(--fs-sm);
    font-weight: 700;
    color: #fff;
    background: var(--red);
    border-radius: var(--radius-pill);
    transition: all .3s cubic-bezier(.22,1,.36,1);
    box-shadow: 0 4px 12px rgba(var(--red-glow),.2);
    width: fit-content;
}

.bento-link:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(var(--red-glow),.3);
}


/* ================================================================
   CARA KERJA — Numbered horizontal scrolling cards
   ================================================================ */
.process-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

/* Connecting line through all steps */
.process-track::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--red), var(--red-200), var(--red));
    z-index: 0;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}

.step-circle {
    width: 64px; height: 64px;
    background: var(--white);
    border: 3px solid var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--red);
    margin-bottom: 20px;
    transition: all .35s ease;
    position: relative;
}

.process-step:hover .step-circle {
    background: var(--red);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 8px 28px rgba(var(--red-glow),.3);
}

.step-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px 20px;
    width: 100%;
    transition: all .35s ease;
}

.step-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,.06);
    border-color: var(--red-100);
}

.step-card-icon {
    width: 44px; height: 44px;
    background: var(--red-light);
    border-radius: var(--radius-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    margin: 0 auto 14px;
    transition: all .35s;
}

.step-card-icon svg { width: 22px; height: 22px; }

.process-step:hover .step-card-icon {
    background: var(--red);
    color: #fff;
}

.step-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.step-card p {
    font-size: var(--fs-sm);
    color: var(--ink-2);
    line-height: 1.6;
}


/* ================================================================
   PRICING — Stacked asymmetric cards
   ================================================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

.price-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all .4s cubic-bezier(.22,1,.36,1);
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(0,0,0,.08);
}

/* Featured card lift */
.price-card.star {
    border-color: var(--red);
    transform: scale(1.04);
    box-shadow: 0 12px 40px rgba(var(--red-glow),.15);
}

.price-card.star:hover {
    transform: scale(1.04) translateY(-8px);
    box-shadow: 0 24px 56px rgba(var(--red-glow),.22);
}

.price-head {
    padding: 28px 28px 20px;
    border-bottom: 1px solid var(--line);
}

.price-card.star .price-head {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    border-bottom: none;
    color: #fff;
}

.price-label {
    display: inline-block;
    padding: 4px 12px;
    font-size: var(--fs-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    border-radius: var(--radius-pill);
    background: var(--bg-subtle);
    color: var(--ink-2);
    margin-bottom: 12px;
}

.price-card.star .price-label {
    background: rgba(255,255,255,.2);
    color: #fff;
}

.price-head h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.price-val {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-val .sym {
    font-size: .95rem;
    font-weight: 600;
    color: var(--ink-2);
}

.price-val .num {
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--red);
    line-height: 1;
}

.price-card.star .price-val .sym,
.price-card.star .price-val .num {
    color: #fff;
}

.price-val .per {
    font-size: var(--fs-sm);
    color: var(--ink-3);
}

.price-card.star .price-val .per { color: rgba(255,255,255,.7); }

.price-body {
    padding: 24px 28px;
    flex-grow: 1;
}

.price-body li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: var(--fs-sm);
    color: var(--ink-2);
}

.price-body li svg {
    width: 18px; height: 18px;
    color: var(--red);
    flex-shrink: 0;
    margin-top: 2px;
}

.price-foot {
    padding: 0 28px 28px;
}

.price-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    font-size: var(--fs-body);
    font-weight: 700;
    border-radius: var(--radius-sm);
    border: 2px solid var(--red);
    color: var(--red);
    background: transparent;
    transition: all .3s ease;
}

.price-btn:hover {
    background: var(--red);
    color: #fff;
    box-shadow: 0 6px 20px rgba(var(--red-glow),.2);
}

.price-card.star .price-btn {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
}

.price-card.star .price-btn:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    box-shadow: 0 8px 28px rgba(var(--red-glow),.3);
}


/* ================================================================
   TESTIMONI — Marquee/Ticker + Manual Cards
   ================================================================ */
.testi-scroll {
    overflow: hidden;
    position: relative;
    margin-bottom: 32px;
}

.testi-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.testi-scroll:hover .testi-track {
    animation-play-state: paused;
}

.testi-item {
    flex-shrink: 0;
    width: 340px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    transition: all .3s;
}

.testi-item:hover {
    border-color: var(--red-100);
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
}

.testi-stars {
    color: #facc15;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.testi-item blockquote {
    font-size: var(--fs-sm);
    color: var(--ink-2);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 18px;
    position: relative;
    padding-left: 16px;
    border-left: 3px solid var(--red-200);
}

.testi-who {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 40px; height: 40px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: var(--fs-xs);
    color: #fff;
}

.testi-avatar.v2 {
    background: var(--red-light);
    color: var(--red);
}

.testi-name {
    font-size: var(--fs-sm);
    font-weight: 700;
    line-height: 1.2;
}

.testi-loc {
    font-size: var(--fs-xs);
    color: var(--ink-3);
}


/* ================================================================
   CTA — Split Design
   ================================================================ */
.cta-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
    overflow: hidden;
}

.cta-left {
    background: linear-gradient(160deg, var(--red-deep), var(--red-dark), var(--red));
    color: #fff;
    padding: 64px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Decorative circles */
.cta-left::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 200px; height: 200px;
    border: 40px solid rgba(255,255,255,.05);
    border-radius: 50%;
    pointer-events: none;
}

.cta-left::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -30px;
    width: 160px; height: 160px;
    border: 30px solid rgba(255,255,255,.04);
    border-radius: 50%;
    pointer-events: none;
}

.cta-left h2 {
    font-size: var(--fs-h2);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    position: relative;
}

.cta-light { color: var(--red-200); }

.cta-left p {
    font-size: var(--fs-body);
    opacity: .85;
    margin-bottom: 32px;
    line-height: 1.7;
    max-width: 400px;
    position: relative;
}

.cta-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    position: relative;
}

.cta-right {
    background: var(--red-light);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.cta-right img {
    max-height: 380px;
    object-fit: contain;
    filter: drop-shadow(0 16px 32px rgba(0,0,0,.1));
}

/* Decorative red ring */
.cta-right::before {
    content: '';
    position: absolute;
    width: 320px; height: 320px;
    border: 2px dashed var(--red-200);
    border-radius: 50%;
    opacity: .5;
}


/* ================================================================
   FOOTER — Clean Minimal
   ================================================================ */
.site-footer {
    background: #111827;
    color: #fff;
    padding: 56px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer-about .brand {
    color: #fff;
    margin-bottom: 14px;
    display: inline-block;
}

.footer-about p {
    font-size: var(--fs-sm);
    color: rgba(255,255,255,.4);
    line-height: 1.7;
    max-width: 280px;
}

.foot-col h5 {
    font-size: var(--fs-sm);
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 10px;
}

.foot-col h5::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 20px; height: 2px;
    background: var(--red);
    border-radius: 2px;
}

.foot-col a {
    display: block;
    font-size: var(--fs-sm);
    color: rgba(255,255,255,.4);
    padding: 4px 0;
    transition: all .25s;
}

.foot-col a:hover {
    color: #f87171;
    padding-left: 4px;
}

.footer-bar {
    padding: 18px 0;
    text-align: center;
    font-size: var(--fs-xs);
    color: rgba(255,255,255,.2);
}


/* ================================================================
   FLOATING WA + NOTIFICATION
   ================================================================ */
.wa-float {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 56px; height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 998;
    box-shadow: 0 6px 24px rgba(37,211,102,.35);
    animation: bob 3s ease-in-out infinite;
    transition: transform .3s ease;
}

.wa-float:hover {
    transform: scale(1.15);
    box-shadow: 0 10px 32px rgba(37,211,102,.45);
}

.wa-float svg { width: 26px; height: 26px; }

/* Notification snackbar */
.notif {
    position: fixed;
    bottom: 96px; left: 20px;
    background: var(--white);
    border: 1px solid var(--line);
    border-left: 4px solid var(--red);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,.1);
    z-index: 997;
    max-width: 320px;
    opacity: 0;
    transform: translateY(20px) scale(.95);
    transition: all .4s cubic-bezier(.22,1,.36,1);
    pointer-events: none;
}

.notif.on {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.notif-emoji { font-size: 1.4rem; flex-shrink: 0; }
.notif strong { display: block; font-size: var(--fs-sm); }
.notif span { font-size: var(--fs-xs); color: var(--ink-3); }
.notif-time { font-size: var(--fs-xs); color: var(--red); font-weight: 700; white-space: nowrap; }


/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
    .bento-card:nth-child(1),
    .bento-card:nth-child(2),
    .bento-card:nth-child(3),
    .bento-card:nth-child(4) {
        grid-column: span 6;
    }
    .bento-card:nth-child(3):last-child {
        grid-column: 4 / 10;
    }

    .process-track { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .process-track::before { display: none; }

    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid .price-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
    }

    .footer-grid { grid-template-columns: repeat(2, 1fr); }

    .cta-split { grid-template-columns: 1fr; }
    .cta-right { display: none; }
    .cta-left { padding: 48px 32px; }
}

@media (max-width: 768px) {
    :root { --gap: 16px; }
    .sec { padding: 64px 0; }

    /* Mobile nav */
    .desk-nav, .header-cta { display: none; }
    .menu-toggle { display: flex; }

    /* Hero */
    .hero { min-height: auto; padding: 100px 0 48px; }
    .hero .wrap { grid-template-columns: 1fr; text-align: center; }
    .hero-bg { width: 100%; height: 35%; clip-path: polygon(0 40%, 100% 0, 100% 100%, 0% 100%); bottom: 0; top: auto; opacity: 0.9; }
    .hero-content { align-items: center; }
    .hero-desc { margin: 0 auto; }
    .hero-actions { justify-content: center; flex-direction: column; align-items: center; }
    .hero-visual { order: -1; margin-bottom: 16px; }
    .hero-img-wrap img { max-height: 260px; }
    .stat-float { display: none; }
    .hero-title { font-size: clamp(2rem, 8vw, 3rem); }

    /* Bento */
    .bento-card:nth-child(1),
    .bento-card:nth-child(2),
    .bento-card:nth-child(3),
    .bento-card:nth-child(4),
    .bento-card:nth-child(3):last-child {
        grid-column: span 12;
    }

    /* Process */
    .process-track { grid-template-columns: 1fr; gap: 20px; }

    /* Pricing */
    .pricing-grid { grid-template-columns: 1fr; }
    .price-card.star { transform: none; }
    .price-card.star:hover { transform: translateY(-8px); }
    .pricing-grid .price-card:last-child { max-width: none; grid-column: auto; }

    /* Testi */
    .testi-item { width: 280px; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer-about p { max-width: none; }

    /* CTA */
    .cta-left { padding: 40px 20px; text-align: center; align-items: center; }
    .cta-btns { justify-content: center; flex-direction: column; align-items: center; }

    /* Notif */
    .notif { left: 12px; right: 12px; max-width: none; bottom: 88px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.8rem; }
    .cta-primary, .cta-ghost { padding: 14px 24px; font-size: var(--fs-sm); }
    .sec-title { font-size: 1.45rem; }
    .price-val .num { font-size: 2.2rem; }
    .testi-item { width: 260px; padding: 22px; }
}


/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--red-dark); }
::selection { background: rgba(var(--red-glow),.12); }


/* ================================================================
   BLADE DYNAMIC OVERRIDES & EXTRA SECTIONS
   ================================================================ */

/* Force Typography */
h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:var(--font)!important;font-weight:800}
p,span,a,div,li{font-family:var(--font)}

/* WYSIWYG override in headings */
.hero-title *,.sec-title *{font-family:var(--font)!important;font-size:inherit!important;line-height:inherit!important;font-weight:inherit!important;background:transparent!important;margin:0!important;padding:0!important}
.hero-title span,.hero-title b,.hero-title strong,.hero-title font,.hero-title [style*="color"],
.sec-title span,.sec-title b,.sec-title strong,.sec-title font,.sec-title [style*="color"]{
  color:var(--red)!important;-webkit-text-fill-color:var(--red)!important;background:none!important;-webkit-background-clip:unset!important;background-clip:unset!important;
}

/* Accent color helpers */
.text-red,.accent{color:var(--red)!important}
.hl{color:var(--red)}

/* Container override for blade */
.container{width:100%;max-width:var(--max);margin:0 auto;padding:0 20px}

/* ===== DYNAMIC HEADER (matches topbar but uses .header class) ===== */
.header{position:fixed;top:0;left:0;right:0;z-index:1000;padding:20px 24px;transition:all .45s cubic-bezier(.22,1,.36,1)}
.header .nav-row{max-width:var(--max);margin:0 auto;display:flex;align-items:center;justify-content:space-between;height:60px;padding:0 24px;border-radius:100px;background:transparent;transition:all .45s cubic-bezier(.22,1,.36,1)}
.header.scrolled{padding:12px 24px}
.header.scrolled .nav-row{background:rgba(255,255,255,.95);backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);box-shadow:0 8px 32px rgba(0,0,0,.06),0 1px 3px rgba(0,0,0,.03)}
.header.menu-open{backdrop-filter:none!important;-webkit-backdrop-filter:none!important;background:var(--white)!important}
.logo{display:flex;align-items:center;gap:10px;font-size:1.25rem;font-weight:800;color:var(--ink);z-index:1001;flex-shrink:0}
.logo img{max-height:46px;width:auto;object-fit:contain}
.logo-icon{width:40px;height:40px;background:var(--red);border-radius:var(--radius-sm);display:flex;align-items:center;justify-content:center;color:#fff}
.logo-icon svg{width:22px;height:22px}

/* Nav pills */
.nav{display:flex;align-items:center;gap:4px;background:var(--bg-subtle);padding:6px;border-radius:var(--radius-pill)}
.nav-link{padding:10px 20px;font-size:var(--fs-sm);font-weight:600;color:var(--ink-2);border-radius:var(--radius-pill);transition:all .3s ease}
.nav-link:hover,.nav-link.active{background:var(--white);color:var(--ink);box-shadow:0 1px 3px rgba(0,0,0,.06)}
.btn-cta{display:inline-flex;align-items:center;gap:8px;padding:10px 24px;background:var(--ink);color:#fff;font-size:var(--fs-xs);font-weight:700;border-radius:var(--radius-pill);transition:all .3s ease;box-shadow:0 4px 12px rgba(0,0,0,.15);white-space:nowrap}
.btn-cta:hover{background:#000;transform:translateY(-2px);box-shadow:0 8px 24px rgba(0,0,0,.2)}
.btn-cta svg{width:14px;height:14px}
.burger{display:none;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;z-index:1001;padding:4px}
.burger span{display:block;width:22px;height:2px;background:var(--ink);border-radius:2px;transition:all .3s ease}
.burger.active span:nth-child(1){transform:rotate(45deg) translate(3px,4px)}
.burger.active span:nth-child(2){opacity:0;transform:scaleX(0)}
.burger.active span:nth-child(3){transform:rotate(-45deg) translate(3px,-4px)}

/* ===== BUTTONS ===== */
.btn{display:inline-flex;align-items:center;gap:10px;padding:16px 32px;font-family:var(--font);font-weight:700;font-size:var(--fs-body);border-radius:var(--radius-pill);border:none;cursor:pointer;transition:all .3s cubic-bezier(.22,1,.36,1)}
.btn-red{background:var(--red);color:#fff;box-shadow:0 6px 24px rgba(var(--red-glow),.25)}
.btn-red:hover{background:var(--red-dark);transform:translateY(-3px);box-shadow:0 10px 36px rgba(var(--red-glow),.35)}
.btn-outline{background:var(--white);color:var(--ink);border:2px solid var(--line);box-shadow:0 1px 3px rgba(0,0,0,.06)}
.btn-outline:hover{border-color:var(--red);color:var(--red);background:var(--red-light)}
.btn-white{background:#fff;color:var(--ink);box-shadow:0 4px 16px rgba(0,0,0,.1)}
.btn-white:hover{transform:translateY(-3px);box-shadow:0 20px 60px rgba(0,0,0,.1)}
.btn-outline-white{background:transparent;color:#fff;border:2px solid rgba(255,255,255,.3)}
.btn-outline-white:hover{background:rgba(255,255,255,.1);border-color:rgba(255,255,255,.6)}
.w-full{width:100%;justify-content:center}

/* ===== FLAGSHIP / LAYANAN TERSEDIA (Zigzag Cards) ===== */
.flagship-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.flagship-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px;
    transition: all .4s cubic-bezier(.22,1,.36,1);
}

.flagship-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 56px rgba(0,0,0,.08);
    border-color: var(--red-100);
}

.flagship-card--reverse {
    direction: rtl;
}

.flagship-card--reverse > * {
    direction: ltr;
}

.flagship-card__text {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.flagship-card__title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--ink);
    line-height: 1.3;
}

.flagship-card__desc {
    font-size: var(--fs-sm);
    color: var(--ink-2);
    line-height: 1.7;
}

.flagship-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--red);
    margin-top: 4px;
    transition: all .3s;
}

.flagship-card__link:hover {
    gap: 10px;
    color: var(--red-dark);
}

.flagship-card__img {
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: var(--bg-subtle);
}

.flagship-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.flagship-card:hover .flagship-card__img img {
    transform: scale(1.04);
}

.flagship-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--red-light);
}

@media (max-width: 768px) {
    .flagship-card {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
    .flagship-card--reverse {
        direction: ltr;
    }
    .flagship-card__img {
        order: -1;
    }
}

/* ===== FAQ SECTION ===== */
.faq-question{width:100%;text-align:left;background:none;border:none;padding:16px 0;font-size:1.05rem;font-weight:700;color:var(--ink);cursor:pointer;display:flex;justify-content:space-between;align-items:center;font-family:var(--font)}
.faq-answer{max-height:0;overflow:hidden;transition:max-height .3s}

/* ===== AREA LAYANAN SECTION ===== */
.service-area-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;max-width:1000px;margin:0 auto}
.area-item{display:flex;align-items:center;gap:12px;padding:16px 20px;background:var(--white);border:1px solid var(--line);border-radius:var(--radius-sm);transition:all .35s ease;cursor:default;position:relative;overflow:hidden}
.area-item::before{content:'';position:absolute;inset:0;background:linear-gradient(135deg,var(--red-light),transparent);opacity:0;transition:opacity .4s}
.area-item:hover{border-color:var(--red-100);transform:translateY(-4px);box-shadow:0 10px 40px rgba(0,0,0,.08)}
.area-item:hover::before{opacity:1}
.area-icon{position:relative;display:flex;align-items:center;justify-content:center;width:36px;height:36px;background:var(--red-light);color:var(--red);border-radius:50%;flex-shrink:0;transition:all .35s;z-index:1}
.area-item:hover .area-icon{background:var(--red);color:#fff;transform:scale(1.1) rotate(5deg);box-shadow:0 6px 24px rgba(var(--red-glow),.25)}
.area-name{position:relative;font-size:.95rem;font-weight:700;color:var(--ink);line-height:1.3;z-index:1}

/* ===== KEUNGGULAN & FLAGSHIP (EXTRA SECTIONS) ===== */
.card-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.card-grid-1{grid-template-columns:1fr;max-width:400px;margin:0 auto}
.card-grid-2{grid-template-columns:repeat(2,1fr)}
.card-grid-3{grid-template-columns:repeat(3,1fr)}
.card{background:var(--white);border:1px solid var(--line);border-radius:var(--radius);padding:32px 28px;transition:all .35s ease;display:flex;flex-direction:column}
.card:hover{transform:translateY(-6px);box-shadow:0 16px 48px rgba(0,0,0,.08);border-color:var(--red-100)}
.card-icon{width:52px;height:52px;border-radius:var(--radius-sm);display:flex;align-items:center;justify-content:center;margin-bottom:20px}
.card-icon svg{width:24px;height:24px}
.orange-bg{background:linear-gradient(135deg,var(--red),var(--red-dark))}
.blue-bg{background:linear-gradient(135deg,#3b82f6,#60a5fa)}
.red-bg{background:linear-gradient(135deg,#ef4444,#f87171)}
.green-bg{background:linear-gradient(135deg,#22c55e,#4ade80)}
.card h3{font-size:var(--fs-h3);font-weight:700;margin-bottom:8px}
.card p{font-size:var(--fs-sm);color:var(--ink-2);line-height:1.7;flex-grow:1;margin-bottom:16px}

/* ===== ANIM-UP (scroll reveal for blade) ===== */
.anim-up{opacity:0;transform:translateY(32px);transition:opacity .7s cubic-bezier(.22,1,.36,1),transform .7s cubic-bezier(.22,1,.36,1);transition-delay:var(--d,0s)}
.anim-up.visible,.anim-up.active{opacity:1;transform:translateY(0)}

/* ===== MOBILE CTA BAR ===== */
.mobile-cta-bar{display:none;position:fixed;bottom:0;left:0;right:0;z-index:999;background:var(--red);padding:0;box-shadow:0 -4px 20px rgba(0,0,0,.15)}
.mobile-cta-bar a{display:flex;align-items:center;justify-content:center;gap:10px;padding:16px 24px;color:#fff;font-family:var(--font);font-weight:700;font-size:1rem;text-decoration:none;width:100%}

/* ===== FOOTER (Dynamic) ===== */
.footer{background:#111827;color:#fff;padding:56px 0 0}
.footer .footer-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;gap:40px;padding-bottom:40px;border-bottom:1px solid rgba(255,255,255,.06)}
.footer .footer-brand .logo{color:#fff;margin-bottom:14px;display:inline-block}
.footer .footer-col p{font-size:var(--fs-sm);color:rgba(255,255,255,.4);line-height:1.7;max-width:280px;margin:0 0 16px 0;padding:0}
.footer .footer-col h4{font-size:var(--fs-sm);font-weight:700;margin:0 0 16px 0;position:relative;padding:0 0 10px 0;color:#fff}
.footer .footer-col h4::after{content:'';position:absolute;bottom:0;left:0;width:20px;height:2px;background:var(--red);border-radius:2px}
.footer .footer-col ul{list-style:none;padding:0;margin:0}
.footer .footer-col li{padding:0;margin:0}
.footer .footer-col a{display:block;font-size:var(--fs-sm);color:rgba(255,255,255,.4);padding:4px 0;margin:0;transition:all .25s}
.footer .footer-col a:hover{color:#f87171;padding-left:4px}
.footer-contact-item{display:flex;align-items:center;padding:6px 0;font-size:var(--fs-sm);color:rgba(255,255,255,.7)!important;transition:color .3s}
.footer-contact-item:hover{color:var(--red)!important}
.footer-contact-item i{color:var(--red)!important;margin-right:8px}
.footer .footer-bottom{padding:18px 0;text-align:center;font-size:var(--fs-xs);color:rgba(255,255,255,.2)}
.socials{display:flex;gap:12px;flex-wrap:wrap;margin-top:8px}
.socials a{display:flex!important;align-items:center;justify-content:center;width:40px;height:40px;border-radius:50%;background:rgba(255,255,255,.08);color:rgba(255,255,255,.6)!important;font-size:1.1rem;padding:0!important;transition:all .3s ease}
.socials a:hover{background:var(--red);color:#fff!important;transform:translateY(-3px);box-shadow:0 6px 20px rgba(var(--red-glow),.3)}

/* ===== FLOATING WA (override) ===== */
.fab-wa{position:fixed;bottom:24px;right:24px;width:56px;height:56px;background:#25D366;border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff;z-index:998;box-shadow:0 6px 24px rgba(37,211,102,.35);animation:bob 3s ease-in-out infinite;transition:transform .3s ease}
.fab-wa:hover{transform:scale(1.15);box-shadow:0 10px 32px rgba(37,211,102,.45)}

/* ===== NOTIFICATION POPUP ===== */
.notif-popup{position:fixed;bottom:96px;left:20px;background:var(--white);border:1px solid var(--line);border-left:4px solid var(--red);border-radius:var(--radius-sm);padding:12px 16px;display:flex;align-items:center;gap:10px;box-shadow:0 8px 32px rgba(0,0,0,.1);z-index:997;max-width:320px;opacity:0;transform:translateY(20px) scale(.95);transition:all .4s cubic-bezier(.22,1,.36,1);pointer-events:none}
.notif-popup.show{opacity:1;transform:translateY(0) scale(1);pointer-events:auto}
.notif-img{font-size:1.4rem;flex-shrink:0}
.notif-text strong{display:block;font-size:var(--fs-sm)}
.notif-text span{font-size:var(--fs-xs);color:var(--ink-3)}
.notif-time{font-size:var(--fs-xs);color:var(--red);font-weight:700;white-space:nowrap}

/* ===== EXTRA RESPONSIVE ===== */
@media(max-width:1024px){
  .card-grid,.card-grid-3,.card-grid-4{grid-template-columns:repeat(2,1fr)}
  .service-area-grid{grid-template-columns:repeat(3,1fr)}
  .footer .footer-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:768px){
  .nav{position:fixed;inset:0;background:#fff;flex-direction:column;align-items:center;justify-content:center;gap:8px;border-radius:0;display:none;z-index:999}
  .nav.open{display:flex}
  .nav .nav-link{font-size:1.3rem;font-weight:700;padding:14px 28px;background:transparent}
  .burger{display:flex}
  .hide-mobile{display:none!important}
  .btn-cta.hide-mobile{display:none!important}
  .card-grid,.card-grid-2,.card-grid-3,.card-grid-4{grid-template-columns:1fr}
  .service-area-grid{grid-template-columns:repeat(2,1fr)}
  .footer .footer-grid{grid-template-columns:1fr;gap:24px}
  .mobile-cta-bar{display:block}
  .fab-wa{display:none}
  .notif-popup{left:12px;right:12px;max-width:none;bottom:88px}
  .anim-up[style*="flex-direction"]{flex-direction:column-reverse!important}
}
@media(max-width:480px){
  .service-area-grid{grid-template-columns:1fr}
}
