/* =====================================================
   DIGITAL PANDA ONLINE — Main Stylesheet
   Palette: Deep Navy #0A1628 | Royal #1E3A6E | Blue #2563EB | Gold #F59E0B | White #FFFFFF
   ===================================================== */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --navy:       #0A1628;
    --navy-mid:   #0F2040;
    --navy-light: #1E3A6E;
    --blue:       #2563EB;
    --blue-light: #3B82F6;
    --blue-glow:  #60A5FA;
    --gold:       #F59E0B;
    --gold-light: #FCD34D;
    --white:      #FFFFFF;
    --off-white:  #F0F4FF;
    --gray-100:   #E8EEFF;
    --gray-400:   #94A3B8;
    --gray-600:   #64748B;
    --text-dark:  #0A1628;
    --text-muted: #64748B;

    --font-display: 'Manrope', sans-serif;
    --font-body:    'Inter', sans-serif;

    --radius-sm:  8px;
    --radius-md:  16px;
    --radius-lg:  24px;
    --radius-xl:  40px;

    --shadow-card: 0 4px 24px rgba(10, 22, 40, 0.12);
    --shadow-glow: 0 0 40px rgba(37, 99, 235, 0.3);
    --shadow-gold: 0 0 30px rgba(245, 158, 11, 0.4);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --header-h: 76px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    line-height: 1.15;
    font-weight: 800;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.3);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.75rem);
    color: var(--navy);
    margin-bottom: 16px;
}

.section-title span { color: var(--blue); }

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 560px;
    line-height: 1.7;
}

/* ── Layout ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section { position: relative; }

/* ── Buttons ── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--blue);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.35);
}
.btn-primary:hover {
    background: var(--blue-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.5);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 13px 28px;
    border-radius: var(--radius-md);
    border: 2px solid rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
}
.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--navy);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1rem;
    padding: 16px 32px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(245, 158, 11, 0.6);
}

/* ──────────────────────────────
   HEADER / NAVIGATION
────────────────────────────── */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--header-h);
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: var(--transition);
}
.site-header.scrolled {
    background: rgba(10, 22, 40, 0.97);
    box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
}
.logo-icon { font-size: 1.6rem; line-height: 1; }
.logo-accent { color: var(--gold); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-link {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.nav-link:hover {
    color: var(--white);
    background: rgba(255,255,255,0.08);
}

.nav-cta {
    color: var(--navy);
    background: var(--gold);
    font-size: 0.9rem;
    font-weight: 700;
    font-family: var(--font-display);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.5);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ──────────────────────────────
   HERO SECTION
────────────────────────────── */
.hero {
    min-height: 100vh;
    background: var(--navy);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--header-h);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(37, 99, 235, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 20% 80%, rgba(245, 158, 11, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 50% at 10% 20%, rgba(30, 58, 110, 0.5) 0%, transparent 60%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.4);
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 100px;
    margin-bottom: 28px;
}
.hero-badge-dot {
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.4); } }

.hero-title {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.1;
}
.hero-title .accent { color: var(--gold); }
.hero-title .blue-accent { color: var(--blue-glow); }

.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-num {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}
.hero-stat-num span { color: var(--gold); }
.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ── POS Illustration ── */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.pos-scene {
    position: relative;
    width: 420px;
    max-width: 100%;
}

.pos-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: glow-pulse 3s ease-in-out infinite;
}
@keyframes glow-pulse { 0%, 100% { opacity: 0.6; transform: translate(-50%,-50%) scale(1); } 50% { opacity: 1; transform: translate(-50%,-50%) scale(1.1); } }

.pos-svg {
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 60px rgba(37, 99, 235, 0.5));
    animation: float 8s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.float-chip {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 100px;
    padding: 8px 14px;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    z-index: 3;
}
.float-chip .chip-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
.float-chip-1 { top: 10%;  left: -10%; animation: chip-float 3.5s ease-in-out infinite; }
.float-chip-2 { top: 25%;  right: -8%; animation: chip-float 4s ease-in-out infinite 0.5s; }
.float-chip-3 { bottom: 25%; left: -12%; animation: chip-float 3.8s ease-in-out infinite 1s; }
.float-chip-4 { bottom: 10%; right: -8%; animation: chip-float 4.2s ease-in-out infinite 0.8s; }
@keyframes chip-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ──────────────────────────────
   MARQUEE / TRUST STRIP
────────────────────────────── */
.trust-strip {
    background: var(--navy-mid);
    border-top: 1px solid rgba(255,255,255,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 14px 0;
    overflow: hidden;
    position: relative;
}

/* Fade edges */
.trust-strip::before,
.trust-strip::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.trust-strip::before {
    left: 0;
    background: linear-gradient(to right, var(--navy-mid), transparent);
}
.trust-strip::after {
    right: 0;
    background: linear-gradient(to left, var(--navy-mid), transparent);
}

.marquee-track {
    display: flex;
    gap: 0;
    animation: marquee 38s linear infinite;
    width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }

.marquee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 28px;
    color: rgba(255,255,255,0.55);
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    letter-spacing: 0.04em;
}
.marquee-item svg { flex-shrink: 0; opacity: 0.9; }
.marquee-item .dot {
    width: 3px; height: 3px;
    border-radius: 50%;
    background: var(--blue);
    opacity: 0.6;
    flex-shrink: 0;
}

@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ──────────────────────────────
   SERVICES SECTION
────────────────────────────── */
.services {
    padding: 100px 0;
    background: var(--off-white);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}
.section-header .section-subtitle { margin: 0 auto; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    opacity: 0;
    transition: var(--transition);
    border-radius: var(--radius-lg);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
    border-color: transparent;
}
.service-card:hover::before { opacity: 1; }

/* Keep SVG strokes visible on hover by switching to white/gold */
.service-card:hover .service-icon { background: rgba(255,255,255,0.1); }
.service-card:hover .service-icon svg { filter: brightness(0) invert(1); }

.service-card:hover .service-title { color: var(--white); }
.service-card:hover .service-desc { color: rgba(255,255,255,0.7); }
.service-card:hover .service-tag { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.6); }

.service-icon {
    width: 56px; height: 56px;
    background: var(--off-white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}
.service-icon svg { transition: filter 0.3s ease; }

.service-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.service-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.service-tag {
    display: inline-block;
    background: var(--off-white);
    color: var(--blue);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

/* ──────────────────────────────
   POS FEATURE SECTION
────────────────────────────── */
.pos-section {
    background: var(--navy);
    padding: 100px 0;
    overflow: hidden;
}

.pos-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.pos-content .section-title { color: var(--white); }
.pos-content .section-subtitle { color: rgba(255,255,255,0.65); }

.pos-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 36px;
}

.pos-feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    transition: var(--transition);
}
.pos-feature-item:hover {
    background: rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.3);
}

.pos-feature-icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    background: rgba(37, 99, 235, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pos-feature-icon svg { flex-shrink: 0; }

.pos-feature-text h4 {
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 4px;
}
.pos-feature-text p {
    font-size: 0.83rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

/* POS Screen Preview */
.pos-screen-preview { position: relative; }

.pos-screen-card {
    background: linear-gradient(145deg, #141F35, #0F2040);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.07);
}

.pos-screen-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.pos-screen-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
}
.pos-screen-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: #4ADE80;
    font-weight: 600;
}
.status-dot { width: 7px; height: 7px; background: #4ADE80; border-radius: 50%; animation: pulse 2s infinite; }

.pos-items { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.pos-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: rgba(255,255,255,0.04);
    border-radius: var(--radius-sm);
}
.pos-item-name { font-size: 0.83rem; color: rgba(255,255,255,0.8); }
.pos-item-qty { font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.pos-item-price { font-size: 0.85rem; font-weight: 700; color: var(--gold); }

.pos-total {
    background: var(--blue);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pos-total-label { font-size: 0.85rem; color: rgba(255,255,255,0.8); }
.pos-total-amount { font-size: 1.3rem; font-weight: 800; color: var(--white); }

.pos-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 24px;
}
.pos-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 100px;
    transition: var(--transition);
}
.pos-tag:hover {
    background: rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.3);
    color: var(--white);
}
.pos-tag svg { flex-shrink: 0; opacity: 0.7; }

/* ──────────────────────────────
   WHY US
────────────────────────────── */
.why-us {
    padding: 100px 0;
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.why-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.why-card {
    background: var(--off-white);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}
.why-card:hover {
    background: var(--navy);
    border-color: var(--navy);
}
.why-card:hover .why-card-title,
.why-card:hover .why-card-desc { color: rgba(255,255,255,0.9); }
.why-card:hover .why-card-icon { background: rgba(255,255,255,0.12); }
.why-card:hover .why-card-icon svg { filter: brightness(0) invert(1); }

.why-card-icon {
    width: 44px; height: 44px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    transition: var(--transition);
}
.why-card-icon svg { transition: filter 0.3s ease; }

.why-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
    transition: var(--transition);
}
.why-card-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    transition: var(--transition);
}

.why-content .section-subtitle { margin-bottom: 32px; }

.why-cta-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.why-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* SVG checkmark circle */
.check-icon {
    width: 22px; height: 22px;
    background: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
}
.check-icon svg { display: block; }

/* ──────────────────────────────
   TESTIMONIALS
────────────────────────────── */
.testimonials {
    padding: 100px 0;
    background: var(--off-white);
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.testi-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.testi-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
}

/* SVG star row */
.testi-stars {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    line-height: 1;
}
.testi-stars svg { display: block; }

.testi-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.75;
    flex: 1;
    margin-bottom: 24px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-100);
}
.testi-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--navy-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.testi-role { font-size: 0.78rem; color: var(--text-muted); }

/* ──────────────────────────────
   CONTACT SECTION
────────────────────────────── */
.contact {
    padding: 100px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}
.contact::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.contact-info .section-title { color: var(--white); }
.contact-info .section-subtitle { color: rgba(255,255,255,0.6); margin-bottom: 40px; }

.contact-detail-list { display: flex; flex-direction: column; gap: 16px; }
.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    transition: var(--transition);
}
.contact-detail-item:hover { background: rgba(37, 99, 235, 0.15); border-color: rgba(37, 99, 235, 0.3); }

.contact-detail-icon {
    width: 38px; height: 38px;
    background: rgba(37, 99, 235, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-detail-icon svg { width: 18px; height: 18px; color: var(--blue-glow); }

/* Contact Form */
.contact-form-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-xl);
    padding: 40px 36px;
    backdrop-filter: blur(8px);
}

.form-group { margin-bottom: 20px; }

.form-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
    letter-spacing: 0.03em;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 13px 16px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-md);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.92rem;
    transition: var(--transition);
    outline: none;
    -webkit-appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--blue);
    background: rgba(37, 99, 235, 0.1);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}
.form-select option { background: var(--navy); color: var(--white); }
.form-textarea { resize: vertical; min-height: 120px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; padding: 15px; font-size: 1rem; }

.form-success {
    display: none;
    text-align: center;
    padding: 20px;
    color: #4ADE80;
    font-weight: 600;
    font-size: 0.95rem;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* ──────────────────────────────
   FOOTER
────────────────────────────── */
.site-footer {
    background: #060E1A;
    color: rgba(255,255,255,0.7);
}

.footer-top { padding: 72px 0 48px; }

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
}

.footer-tagline {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    margin-top: 16px;
    margin-bottom: 24px;
}

.footer-socials { display: flex; gap: 12px; }
.social-link {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}
.social-link svg { width: 16px; height: 16px; }
.social-link:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-heading {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
}

.footer-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-list a {
    font-size: 0.87rem;
    color: rgba(255,255,255,0.4);
    transition: var(--transition);
}
.footer-list a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}
.footer-contact-list svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--blue-light); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 24px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.3);
}
.footer-map {
    margin-top: 18px;
    overflow: hidden;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.08);
}
.footer-map iframe {
    width: 100%;
    display: block;
}

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: var(--transition);
    animation: whatsapp-pulse 2.5s ease-in-out infinite;
}
.whatsapp-float svg {
    width: 30px;
    height: 30px;
    color: white;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.7);
}

@keyframes whatsapp-pulse {
    0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5), 0 0 0 8px rgba(37, 211, 102, 0.15); }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 52px;
        height: 52px;
    }
    .whatsapp-float svg { width: 26px; height: 26px; }
}
/* ──────────────────────────────
   RESPONSIVE
────────────────────────────── */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .testi-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }

    .nav-links {
        display: none;
        position: fixed;
        top: var(--header-h);
        left: 0; right: 0;
        background: rgba(10, 22, 40, 0.98);
        backdrop-filter: blur(16px);
        padding: 24px;
        flex-direction: column;
        gap: 4px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .nav-links.open { display: flex; }
    .nav-link { padding: 12px 16px; display: block; width: 100%; }
    .nav-cta { display: block; text-align: center; padding: 12px; margin-top: 8px; }

    .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px 40px; }
    .hero-visual { display: none; }
    .hero-title { font-size: 2.2rem; }
    .hero-stats { gap: 20px; }
    .hero-stat-num { font-size: 1.4rem; }

    .services-grid { grid-template-columns: 1fr; }
    .pos-inner { grid-template-columns: 1fr; }
    .pos-screen-preview { order: -1; }
    .why-grid { grid-template-columns: 1fr; }
    .why-cards { order: -1; }
    .testi-grid { grid-template-columns: 1fr; }
    .contact-inner { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .pos-scene { width: 300px; }
    .float-chip { display: none; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .btn-primary, .btn-outline { width: 100%; justify-content: center; }
    .contact-form-card { padding: 28px 20px; }
}

/* ──────────────────────────────
   SCROLL ANIMATIONS
────────────────────────────── */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }

