/* ================================================================
   SEDOT WC MOJOKERTO — CLEAN WHITE + ORANGE THEME
   Inspired by warungrebahan.com: soft shadows, rounded cards,
   scale hover, clean typography, warm white background
   ================================================================ */

/* ===== Root & Reset ===== */
:root {
    --white: #ffffff;
    --bg: #f8fafc;
    --bg-gray: #f1f5f9;
    --text: #0f172a;
    --text-2: #475569;
    --text-3: #94a3b8;
    --border: #e2e8f0;

    --orange: #f97316;
    --orange-dark: #ea580c;
    --orange-light: #fff7ed;
    --orange-100: #ffedd5;
    --orange-50: #fffbf5;

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

    --h1: clamp(2.5rem, 6vw, 4.2rem);
    --h2: clamp(1.8rem, 4vw, 2.8rem);
    --h3: 1.25rem;
    --body: 1rem;
    --sm: 0.875rem;

    --max-w: 1180px;
    --sec-pad: 100px;
    --r-sm: 12px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-xl: 32px;
    --r-full: 100px;

    --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
    --shadow: 0 4px 16px rgba(0,0,0,.06);
    --shadow-lg: 0 10px 40px rgba(0,0,0,.08);
    --shadow-xl: 0 20px 60px rgba(0,0,0,.1);
    --shadow-orange: 0 10px 40px rgba(249,115,22,.2);

    --ease: cubic-bezier(.22,1,.36,1);
    --spring: cubic-bezier(.175,.885,.32,1.275);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--white);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== OVERRIDES FOR DYNAMIC CONTENT (Bootstrap / Filament) ===== */
.text-primary { color: var(--orange) !important; }
.text-secondary { color: var(--text-2) !important; }
.text-dark { color: var(--text) !important; }
.text-white { color: var(--white) !important; }

/* Force Typography to override Bootstrap */
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);
}

/* Force Typography in Hero and Headings to override WYSIWYG tags (like <p>, <span>, <font>) */
.hero-h1 * {
    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;
}

.section-head h2 * {
    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;
}

/* Force Orange Highlights in Headings manually colored by Admin */
/* IMPORTANT: Must override .hero h1 span from style.css which uses
   -webkit-text-fill-color: transparent with undefined gradient vars */
.hero-h1 span, .hero-h1 b, .hero-h1 strong, .hero-h1 font, .hero-h1 a, .hero-h1 u, .hero-h1 em, .hero-h1 i, .hero-h1 [style*="color"],
.hero h1 span,
.section-head h2 span, .section-head h2 b, .section-head h2 strong, .section-head h2 font, .section-head h2 a, .section-head h2 [style*="color"] {
    color: var(--orange) !important;
    -webkit-text-fill-color: var(--orange) !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
}

.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}


/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(249,115,22,.5); }
    50%      { box-shadow: 0 0 0 10px rgba(249,115,22,0); }
}

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

@keyframes slideIn {
    from { opacity: 0; transform: translateX(100px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes slideOut {
    from { opacity: 1; transform: translateX(0); }
    to   { opacity: 0; transform: translateX(100px); }
}

.anim-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
    transition-delay: var(--d, 0s);
}
.anim-up.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: padding .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease);
}

.header.scrolled {
    padding: 10px 0;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
}

/* When mobile menu is open, disable backdrop-filter to prevent
   it from creating a new containing block for position:fixed nav */
.header.menu-open {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: var(--white) !important;
    transition: none !important;
}

.nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text);
    z-index: 1001;
}

.logo b { color: var(--orange); font-weight: 800; }

.logo-icon {
    width: 40px; height: 40px;
    background: var(--orange);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

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

.nav {
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--bg-gray);
    padding: 6px;
    border-radius: var(--r-full);
}

.nav-link {
    padding: 10px 20px;
    font-size: var(--sm);
    font-weight: 500;
    color: var(--text-2);
    border-radius: var(--r-full);
    transition: all .3s var(--ease);
}

.nav-link:hover,
.nav-link.active {
    background: var(--white);
    color: var(--text);
    box-shadow: var(--shadow-sm);
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--orange);
    color: #fff;
    font-family: var(--font);
    font-weight: 700;
    font-size: var(--sm);
    border-radius: var(--r-full);
    transition: all .3s var(--spring);
    box-shadow: var(--shadow-orange);
}

.btn-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 14px 44px rgba(249,115,22,.3);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none; border: none;
    cursor: pointer; z-index: 1001;
    padding: 4px;
}
.burger span {
    display: block;
    width: 24px; height: 2.5px;
    background: var(--text);
    border-radius: 2px;
    transition: all .3s var(--ease);
    transform-origin: center;
}
.burger.active span:nth-child(1) { transform: rotate(45deg) translateY(5.3px); }
.burger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translateY(-5.3px); }


/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font);
    font-weight: 700;
    font-size: var(--body);
    border-radius: var(--r-full);
    border: none;
    cursor: pointer;
    transition: all .3s var(--spring);
}

.btn-orange {
    background: var(--orange);
    color: #fff;
    box-shadow: var(--shadow-orange);
}
.btn-orange:hover {
    background: var(--orange-dark);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 16px 48px rgba(249,115,22,.3);
}

.btn-outline {
    background: var(--white);
    color: var(--text) !important;
    border: 1px solid var(--border) !important;
    box-shadow: var(--shadow-sm);
}
.btn-outline:hover {
    border-color: var(--orange-100) !important;
    color: var(--orange) !important;
    background: var(--orange-50) !important;
    box-shadow: var(--shadow);
}

.btn-white {
    background: var(--white);
    color: var(--text);
}
.btn-white:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: var(--shadow-xl);
}

.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; }


/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 130px 0 60px;
    background: linear-gradient(180deg, #fff 0%, #fff7ed 100%);
    overflow: hidden;
}

/* Split Hero Layout */
.hero-split {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 32px;
}

.hero-text {
    text-align: left;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: var(--orange-light);
    border: 1px solid var(--orange-100);
    border-radius: var(--r-full);
    font-size: var(--sm);
    font-weight: 600;
    color: var(--orange-dark);
    margin-bottom: 24px;
}

.pulse-dot {
    width: 8px; height: 8px;
    background: var(--orange);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-h1 {
    font-size: var(--h1);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -.03em;
    margin-bottom: 18px;
    color: var(--text);
}

.text-orange { color: var(--orange); }

.hero-p {
    font-size: 1.05rem;
    color: var(--text-2);
    max-width: 480px;
    margin: 0 0 32px;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* Hero Visual — Image with Blob */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 460px;
}

.hero-blob {
    position: absolute;
    width: 420px;
    height: 420px;
    background: linear-gradient(135deg, var(--orange) 0%, #fbbf24 100%);
    border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: .15;
    animation: blobMorph 8s ease-in-out infinite;
}

@keyframes blobMorph {
    0%, 100% { border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%; }
    25%      { border-radius: 40% 60% 55% 45% / 55% 40% 60% 45%; }
    50%      { border-radius: 50% 50% 40% 60% / 40% 55% 50% 50%; }
    75%      { border-radius: 55% 45% 60% 40% / 45% 50% 45% 55%; }
}

.hero-img {
    position: relative;
    z-index: 1;
    max-width: 90%;
    height: auto;
    max-height: 480px;
    object-fit: contain;
    filter: drop-shadow(0 16px 30px rgba(0,0,0,.08));
}

/* Floating Badges */
.float-badge {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--white);
    border-radius: var(--r-full);
    box-shadow: var(--shadow-lg);
    font-size: .85rem;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
}

.float-icon {
    font-size: 1.1rem;
}

.float-1 {
    top: 15%;
    right: -5%;
    animation: floatBadge 3s ease-in-out infinite;
}

.float-2 {
    bottom: 18%;
    left: -5%;
    animation: floatBadge 3.5s ease-in-out infinite .5s;
}

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

/* Trust Row — inline under buttons */
.trust-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.trust-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 16px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all .3s var(--ease);
    flex: 1;
    min-width: 120px;
}

.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--orange-100);
}

.trust-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
}

.trust-suffix {
    font-size: .9rem;
    font-weight: 700;
    color: var(--orange-dark);
}

.trust-label {
    display: block;
    margin-top: 4px;
    font-size: .75rem;
    font-weight: 500;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: .5px;
}


/* ===== SECTIONS ===== */
.section {
    padding: var(--sec-pad) 0;
}

.section-gray {
    background: var(--bg);
}

.section-head {
    text-align: center;
    margin-bottom: 56px;
}

.tag {
    display: inline-block;
    padding: 8px 20px;
    background: var(--orange-light);
    border: 1px solid var(--orange-100);
    border-radius: var(--r-full);
    font-size: var(--sm);
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

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

.section-head p {
    font-size: var(--body);
    color: var(--text-2);
    max-width: 520px;
    margin: 0 auto;
}


/* ===== SERVICE CARDS ===== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.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(--border);
    border-radius: var(--r-xl);
    padding: 36px 28px;
    transition: all .3s var(--ease);
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.card-icon {
    width: 56px; height: 56px;
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

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

.orange-bg { background: linear-gradient(135deg, #f97316, #fb923c); }
.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(--h3);
    font-weight: 700;
    margin-bottom: 10px;
}

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

.card-action {
    font-weight: 700;
    font-size: var(--sm);
    color: var(--orange);
    transition: all .3s;
}

.card-action:hover {
    color: var(--orange-dark);
    letter-spacing: .3px;
}


/* ===== STEPS ===== */
.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.step {
    flex: 1;
    text-align: center;
    padding: 0 16px;
    position: relative;
}

.step-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.step-num {
    width: 36px; height: 36px;
    background: var(--orange);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: var(--sm);
    flex-shrink: 0;
}

.step-icon {
    width: 64px; height: 64px;
    background: var(--orange-light);
    border: 1px solid var(--orange-100);
    border-radius: var(--r-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    transition: all .3s var(--ease);
    flex-shrink: 0;
}

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

.step:hover .step-icon {
    background: var(--orange);
    color: #fff;
    transform: scale(1.08);
    box-shadow: var(--shadow-orange);
}

.step h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

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

.step-line {
    width: 60px;
    height: 2px;
    background: var(--border);
    margin-top: 56px;
    flex-shrink: 0;
}


/* ===== PRICING ===== */
.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    perspective: 800px;
}

.price-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 40px 32px;
    transition: all .4s var(--ease);
    display: flex;
    flex-direction: column;
    transform-style: preserve-3d;
}

.price-card:hover {
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.price-card.featured {
    border-color: var(--orange);
    background: var(--orange-50);
    box-shadow: var(--shadow-orange);
    position: relative;
}

.price-card.featured::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--r-xl);
    padding: 2px;
    background: linear-gradient(135deg, var(--orange), #fbbf24);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.price-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: var(--r-full);
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    background: var(--bg-gray);
    color: var(--text-2);
    margin-bottom: 20px;
    width: fit-content;
}

.featured-badge {
    background: var(--orange-light);
    color: var(--orange);
    border: 1px solid var(--orange-100);
}

.price-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.price-amount {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}

.currency {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-2);
}

.value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
}

.unit {
    font-size: var(--body);
    color: var(--text-3);
    font-weight: 500;
}

.price-list {
    flex-grow: 1;
    margin-bottom: 28px;
}

.price-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: var(--sm);
    color: var(--text-2);
    border-bottom: 1px solid var(--bg-gray);
}

.price-list li svg {
    width: 18px; height: 18px;
    color: var(--orange);
    flex-shrink: 0;
}


/* ===== TESTIMONIALS ===== */
.testi-wrapper {
    overflow: hidden;
    border-radius: var(--r-xl);
}

.testi-track {
    display: flex;
    transition: transform .6s var(--ease);
}

.testi-slide {
    min-width: 100%;
    padding: 0 8px;
}

.testi-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 48px;
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
    box-shadow: var(--shadow);
}

.testi-stars {
    font-size: 1.4rem;
    color: #fbbf24;
    margin-bottom: 20px;
    letter-spacing: 4px;
}

.testi-card p {
    font-size: 1.15rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 28px;
    font-style: italic;
}

.testi-footer {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
}

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

.testi-avatar.alt {
    background: var(--bg-gray);
    color: var(--orange);
}

.testi-footer strong {
    display: block;
    font-size: var(--sm);
    text-align: left;
}

.testi-footer span {
    font-size: .8rem;
    color: var(--text-3);
}

.testi-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 28px;
}

.testi-btn {
    width: 44px; height: 44px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    cursor: pointer;
    transition: all .3s var(--ease);
}

.testi-btn svg { width: 18px; height: 18px; }

.testi-btn:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
    box-shadow: var(--shadow-orange);
}

.testi-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all .3s;
}

.dot.active {
    background: var(--orange);
    width: 28px;
    border-radius: 4px;
}


/* ===== CTA ===== */
.cta {
    padding: var(--sec-pad) 0;
    background: var(--white);
}

.cta-inner {
    background: linear-gradient(135deg, #ea580c, #f97316, #fb923c);
    border-radius: var(--r-xl);
    padding: 72px 40px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-inner::before {
    content: '';
    position: absolute;
    top: -40%; right: -10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,.12), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-inner::after {
    content: '';
    position: absolute;
    bottom: -30%; left: -8%;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,.08), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

.text-white-orange { color: #ffedd5; }

.cta-inner p {
    font-size: var(--body);
    opacity: .9;
    margin-bottom: 36px;
    line-height: 1.7;
    position: relative;
}

.cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}


/* ===== FOOTER ===== */
.footer {
    padding: 64px 0 0;
    background: #0f172a;
    color: #fff;
    --text-white-dim: rgba(255,255,255,.5);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-light { color: #fff; }
.logo-light .logo-icon { background: var(--orange); }

.footer-col p {
    color: rgba(255,255,255,.5);
    font-size: var(--sm);
    line-height: 1.7;
    max-width: 300px;
    margin-bottom: 0;
}

.footer-col h4 {
    font-size: var(--body);
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}

.footer-col a {
    display: block;
    padding: 5px 0;
    font-size: var(--sm);
    color: rgba(255,255,255,.5);
    transition: color .3s;
}

.footer-col a:hover { color: var(--orange); }

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    padding: 0;
    margin: 0;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    padding: 6px 0;
    margin-bottom: 8px;
    font-size: var(--sm);
    color: rgba(255,255,255,.7);
    text-decoration: none;
    transition: color .3s;
}

.footer-contact-item:hover {
    color: var(--orange);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: var(--sm);
    color: rgba(255,255,255,.3);
}

/* Social Icons */
.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 var(--ease);
}

.socials a:hover {
    background: var(--orange);
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(249,115,22,.3);
}


/* ===== FLOATING WA ===== */
.fab-wa {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 60px; height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 999;
    box-shadow: 0 8px 28px rgba(37,211,102,.4);
    animation: float 3s ease-in-out infinite;
    transition: transform .3s var(--spring);
}

.fab-wa:hover {
    transform: scale(1.15);
    box-shadow: 0 12px 36px rgba(37,211,102,.5);
}

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

/* ===== MOBILE CTA BAR ===== */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 999;
    background: #25D366;
    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%;
}

@media (max-width: 768px) {
    .mobile-cta-bar { display: block; }
    .fab-wa { display: none; }
}

/* ===== NOTIFICATION POPUP ===== */
.notif-popup {
    position: fixed;
    bottom: 100px; left: 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    z-index: 998;
    opacity: 0;
    transform: translateX(-100px);
    transition: all .5s var(--ease);
    pointer-events: none;
    max-width: 360px;
}

.notif-popup.show {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.notif-img {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.notif-text strong {
    display: block;
    font-size: var(--sm);
    color: var(--text);
}

.notif-text span {
    font-size: .8rem;
    color: var(--text-3);
}

.notif-time {
    font-size: .75rem;
    color: var(--orange);
    font-weight: 600;
    white-space: nowrap;
}


/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-split { grid-template-columns: 1fr 1fr; gap: 24px; }
    .hero-img { max-height: 400px; }
    .card-grid, .card-grid-3, .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .price-grid { grid-template-columns: repeat(2, 1fr); }
    .price-card:last-child { grid-column: span 2; max-width: 480px; margin: 0 auto; width: 100%; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { flex-wrap: wrap; gap: 20px; }
    .step-line { display: none; }
    .step { flex: 0 0 calc(50% - 10px); }
}

@media (max-width: 768px) {
    :root { --sec-pad: 72px; }

    .nav {
        position: fixed;
        inset: 0;
        background: #ffffff;
        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; }

    .hero { padding: 120px 0 48px; }
    .hero-split { grid-template-columns: 1fr; }
    .hero-text { text-align: center; }
    .hero-p { margin: 0 auto 32px; }
    .hero-btns { justify-content: center; }
    .hero-h1 { font-size: clamp(2rem, 8vw, 3rem); }
    .hero-visual { order: -1; min-height: 300px; }
    .hero-img { max-height: 280px; }
    .hero-blob { width: 280px; height: 280px; }
    .float-badge { display: none; }

    .hero-btns { flex-direction: column; align-items: center; }
    .trust-row { justify-content: center; }
    .trust-card { min-width: 100px; flex: 0 1 auto; }

    .card-grid, .card-grid-2, .card-grid-3, .card-grid-4 { grid-template-columns: 1fr; }
    .price-grid { grid-template-columns: 1fr; }
    .price-card:last-child { grid-column: span 1; max-width: none; }

    .step { flex: 0 0 100%; }

    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-col p { max-width: none; }

    .cta-btns { flex-direction: column; align-items: center; }
    .cta-inner { padding: 48px 24px; }

    .testi-card { padding: 32px 20px; }

    .notif-popup { left: 12px; right: 12px; max-width: none; bottom: 96px; }
}

@media (max-width: 480px) {
    .hero-h1 { font-size: 1.8rem; }
    .trust-num { font-size: 1.8rem; }
    .value { font-size: 2.5rem; }
}


/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--orange-dark); }

::selection { background: rgba(249,115,22,.15); color: var(--text); }
